﻿:root {
    /* Color Palette */
    --brand-blue: #124093;
    --brand-orange: #FE9A00;
    --brand-dark: #1a1a1a;
    --brand-light: #f8f9fa;
    --gray: #777777;
    --gray-text: #555;
    --transition-speed: 0.3s;
    --nav-height: 100px;
    --graylight: #FBFCFF;
    --black:#000;
}
.black_text{color:var(--black)}

.top-bar .text-secondary {
    color: #000 !important;
}
section {
    padding: 50px 0;
}
html { 
    scroll-behavior: smooth; 
    scroll-padding-top: var(--nav-height); 
}
/* Base Styles */
body { 
    font-family: 'Poppins', sans-serif; 
    color: #333; 
    background-color: #fff;
}
.gray_light{background: var(--graylight);}

a { text-decoration: none; }
.gray { color: var(--gray); }

/* --- Top Bar & Navigation --- */
.top-bar { 
    background: #fff; 
    border-bottom: 1px solid #eee; 
    padding: 5px 0; 
    font-size: 14px; 
}

.navbar { 
    background: #fff; 
    padding: 5px 0; 
    border-bottom: 2px solid var(--brand-blue); 
}

.logo_main { height: 55px; }

#navbarNav ul li a { 
    padding: 10px 30px; 
    font-weight: 500; 
}

.navbar-nav .nav-link {
    color: var(--brand-dark) !important;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size:15px;
   
}

<style >
/* 1. Desktop Specific Padding (1200px se badi screens par) */
@media (min-width: 1200px) {
    .custom-container-padding

{
    padding-left: 100px !important; /* Itna gap left side se */
    padding-right: 100px !important; /* Itna gap right side se */
}

}

/* 2. Mobile View Settings (Takki content screen se bahar na ho) */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 45px !important; /* Mobile par logo thoda chota */
    }

    .offcanvas-body .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid #f8f9fa;
    }
    /* Mobile dropdown items spacing */
    .dropdown-menu {
        padding-left: 20px;
        background: #fdfdfd;
    }
}

/* 3. Link Styling */
.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #ff9800 !important; /* Active & Hover color */
    }

/* 4. Dropdown Left Arrow */
.arrow-icon {
    font-size: 10px;
    color: #ff9800;
}

</style >

.navbar-nav .nav-link:hover {
    color: var(--brand-orange) !important;
}

.navbar-nav .nav-link.active {
    color: var(--brand-orange) !important;
    border-bottom: 2px solid var(--brand-orange);
}

/* --- Hero & Sections --- */
.custom-control {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.custom-icon {
    width: 50px;
    height: 50px;
    background: rgb(18 64 147);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

    .custom-icon:hover {
        background: var(--brand-orange);
        color: #fff;
        transform: scale(1.1);
    }



.hero {
   
    height: 40vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}
.about_top {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/about_top.jpg');
    background-size: cover;
    background-position: center;
}

.contact_top {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/contact_top.jpg');
    background-size: cover;
    background-position: center;
}

.enquiry_top {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/enquiry_top.jpg');
    background-size: cover;
    background-position: center;
}

.career_top {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/career_top.jpg');
    background-size: cover;
    background-position: center;
}

.solution_top {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/solution_top.jpg');
    background-size: cover;
    background-position: center;
}

.line_top {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/line_top.jpg');
    background-size: cover;
    background-position: center;
}

.product_top {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/product_top.jpg');
    background-size: cover;
    background-position: center;
}



/* Global Section Title */
.section-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    position: relative;
}

/* Brand Slider Specific Decorative Title */
.title-divider { 
    display: flex; 
    align-items: center; 
    margin-bottom: 30px; 
}

.title-divider .circle {
    width: 18px; height: 18px; 
    border: 2px solid #333; 
    border-radius: 50%;
    position: relative; 
    display: inline-block;
}

.title-divider .circle::after {
    content: ''; 
    width: 8px; height: 8px; 
    background: #333;
    border-radius: 50%; 
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translate(-50%, -50%);
}

.title-divider .line { 
    height: 2px; width: 80px; 
    background: #333; 
    margin-left: 10px; 
}

/* --- Components --- */
.bg-gold-section { background-color: var(--brand-blue); color: white; }

.custom-card { 
    border: none; 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    transition: 0.3s; 
}

.custom-card:hover { transform: translateY(-10px); }

.icon-box { text-align: center; padding: 20px; }
.icon-box i { 
    font-size: 3rem; color: #fff; 
    margin-bottom: 15px; 
    border: 2px solid rgba(255,255,255,0.3); 
    padding: 20px; 
    border-radius: 10px; 
}

.btn-brand { 
    background: var(--brand-blue); 
    color: white; border: none; 
    padding: 10px 30px; 
    border-radius: 5px; 
}
.btn-brand:hover { background: #96764d; color: white; }

/* Social Icons */
.socialbx a img { width: 30px; height:30px;}
.socialbx a { transition: all .5s ease-in-out; display: inline-block; }
.socialbx a:hover { transform: scale(1.1); }

/* --- Brand Slider Specifics --- */
.nav-btn {
    background: var(--brand-blue); 
    color: white; border: none;
    width: 40px; height: 40px; 
    border-radius: 4px; 
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.nav-btn:hover { background: #0f3274; }

.brand-card {
    background: #fff; 
    border: 1px solid #F5E0BA; 
    border-radius: 8px;
    height: 120px; 
    display: flex; 
    align-items: center; 
    padding: 5px;
    justify-content: center;
   
    transition: 0.3s;
}
.brand-card img { max-width: 100%; max-height: 100%; object-fit: contain; }

.swiper { padding-bottom: 20px; }

/* --- Utilities --- */



.text-gold { color: var(--brand-blue); }
    .gray-text { color: var(--black); font-size: 1.05rem; line-height: 1.7; }

    .section-heading {
        font-weight: 700;
        font-size: 2rem;
        letter-spacing: 1px;
    }

    /* Decorative Divider Styling */
    .title-divider { display: flex; align-items: center; }
    .title-divider .circle {
        width: 20px; height: 20px; border: 2.5px solid #222; border-radius: 50%;
        position: relative; display: inline-block;
    }
    .title-divider .circle::after {
        content: ''; width: 10px; height: 10px; background: #222;
        border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    }
    .title-divider .line { height: 2px; width: 80px; background: #222; margin-left: 12px; }

    /* Button Styling */
    .btn-brand {
        background: var(--brand-blue);
        color: white;
        border-radius: 4px;
        font-weight: 500;
        transition: 0.3s;
    }
    .btn-brand:hover {
        background: #0f3274;
        color: white;
        box-shadow: 0 4px 12px rgba(166, 137, 75, 0.3);
    }

    /* Background (Optional: matching the subtle circuit pattern in image) */
    .about-section {
       
        background-image: url('../images/wlbg.jpg');
        background-size: cover;
    }

    /*key*/
    /* Decorative White Divider for Gold Section */
.line-white {
    height: 1px;
    width: 100px;
    background-color: rgba(255,255,255,0.6);
}

.circle-white {
    width: 15px;
    height: 15px;
    border: 1px solid white;
    border-radius: 50%;
    position: relative;
}

.circle-white::after {
    content: '';
    width: 7px;
    height: 7px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

/* Highlight Items */
.icon-box-white {
   
    width: 80px;
    height: 30px;
    margin: 20px auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 2.5rem;
    color: white;
    
}
 .highlight-item{color: rgb(255, 255, 255);
    cursor: default;
    background: rgb(12 11 6 / 7%);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.15);
    border-image: initial;
    border-radius: var(--radius);
    padding: 28px 16px 22px;
    transition: var(--transition);
    border-radius: 30px;
    padding: 30px;}
.highlight-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
}

/* Background Highlight (Matching Image Gradient) */
.bg-gold-section {
    background: transparent linear-gradient(359deg, var(--unnamed-color-124093) 0%, #4070C8 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(359deg, #124093 0%, #4070C8 100%) 0% 0% no-repeat padding-box;
    border: 1px solid #707070;
}

.highlight-item {
    /* Your existing styles... */
    transition: all var(--transition-speed) ease-in-out;
    position: relative;
    top: 0;
}

/* The Hover State */
.highlight-item:hover {
    top: -10px; /* Lift the card up */
    background: rgba(255, 255, 255, 0.12); /* Slightly lighten the card background */
    border-color: rgba(255, 255, 255, 0.4); /* Make border more visible */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* Soft shadow for depth */
    cursor: pointer;
}

/* Icon Box Hover Effect */
.highlight-item:hover .icon-box-white {
   
    transform: scale(1.05); /* Slight pop for the icon */
    transition: all var(--transition-speed) ease-in-out;
}

/* Optional: Text brightness on hover */
.highlight-item:hover .highlight-text {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}


/*our product*/
/* Section Title Decoration */
.line-black {
    height: 1px;
    width: 60px;
    background-color: #000;
}

.circle-black {
    width: 14px;
    height: 14px;
    border: 2px solid #000;
    border-radius: 50%;
    position: relative;
}

.circle-black::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

/* Card Styling */
.product-card {
    border-radius: 25px !important; /* Large rounded corners for the card */
    transition: transform 0.3s ease;
    background: #FBFCFF;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    height: 200px; /* Adjust height as needed */
    object-fit: cover;
    border-radius: 20px !important; /* Matches the inner image rounding */
}

.card-title {
    font-size: 1.1rem;
    color: #1a1a1a;
    padding-bottom: 10px;
}



/* --- 1. Key Highlights Section (Prefix: kh-) --- */
.kh-gold-section {
    background: linear-gradient(359deg, #A48544 0%, #D2AC5C 100%);
    border-top: 1px solid rgba(0,0,0,0.1);
}

.kh-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.kh-line {
    height: 1px;
    width: 100px;
    background-color: rgba(255,255,255,0.6);
}

.kh-circle {
    width: 15px;
    height: 15px;
    border: 1px solid white;
    border-radius: 50%;
    position: relative;
    margin: 0 10px;
}

.kh-circle::after {
    content: '';
    width: 7px;
    height: 7px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.kh-item {
    color: #fff;
    background: rgba(12, 11, 6, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 30px;
    transition: all var(--transition-speed) ease-in-out;
    text-align: center;
    height: 100%;
}

.kh-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.kh-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* --- 2. Our Products Section (Prefix: prod-) --- */
.prod-card {
    border-radius: 25px !important;
    transition: all var(--transition-speed) ease;
    background: #FBFCFF;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.prod-img-wrapper {
    padding: 15px 15px 0 15px;
}

.prod-img {
    height: 200px;
    object-fit: cover;
    border-radius: 20px !important;
    width: 100%;
}

/* --- 3. ZigZag Info Section (Prefix: info-) --- */
.info-section h2{font-size: 25px;}
.info-row {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.info-img-container {
    position: relative;
    min-height: 350px;
}

.info-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Triangular Pointers */
.info-pointer-right, .info-pointer-left {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    z-index: 2;
}

.info-pointer-right {
    right: 0;
    border-right: 20px solid #fff;
}

.info-pointer-left {
    left: 0;
    border-left: 20px solid #fff;
}

@media (max-width: 991px) {
    .info-pointer-right, .info-pointer-left { display: none; }
}

/* --- ZigZag Info Section Hover Logic --- */

/* 1. The Main Row Container */
.gray_light {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
   
}

.gray_light:hover {
    transform: translateY(-8px); /* Card "lifts" up */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
    border-color: rgba(166, 137, 75, 0.2); /* Subtle hint of your brand-gold */
    cursor: pointer;
}

/* 2. Image Subtle Zoom */
.gray_light img {
    transition: transform 0.6s ease;
}

.gray_light:hover img {
    transform: scale(1.05); /* Image grows slightly inside the rounded box */
}

/* 3. The Pointers (Triangle Arrows) */
.arrow-right, .arrow-left {
    transition: transform 0.4s ease, border-color 0.4s ease;
}


/* Make arrows "point" deeper into the text on hover */
.gray_light:hover .arrow-right {
    transform: translateY(-50%) translateX(5px);
}

.gray_light:hover .arrow-left {
    transform: translateY(-50%) translateX(-5px);
}

/* 4. Text Heading Color Shift */
.gray_light:hover h2 {
    color: var(--brand-blue); /* Transitions title to your brand color */
    transition: color 0.3s ease;
}

/* 5. Content Smoothness */
.gray_light p {
    transition: color 0.3s ease;
}

.gray_light:hover p {
    color: #333 !important; /* Makes text slightly darker/sharper on hover */
}



/*testimonial*/
/* Prefix: testi- (Testimonials) */

.testi-section {
    background: linear-gradient(359deg, #A48544 0%, #D2AC5C 100%);
    padding: 80px 0;
}

.testi-content {
    max-width: 800px;
}

.testi-avatar {
    width: 120px;
    height: 120px;
   color:#fff;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
   
    border: 5px solid #fff;
}

.testi-text {
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 400;
}

.testi-company {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Custom Navigation Styling */
.testi-nav-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15); /* Translucent background */
    border-radius: 8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: background 0.3s ease;
}

.testi-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-control-prev { left: 5%; }
.carousel-control-next { right: 5%; }

/* Mobile adjustments */
@media (max-width: 768px) {
    .testi-nav-btn { display: none; } /* Hide arrows on mobile for better text space */
    .testi-text { font-size: 1rem; }
}


/*why*/
/* Prefix: wcu- (Why Choose Us) */

.wcu-section {
    padding: 60px 0;
}

.wcu-card {
    background: #FBFCFF; /* Slight off-white as seen in image */
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 15px;
    padding: 40px 20px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hover Effect */
.wcu-card:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    cursor: default;
}

.wcu-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcu-icon img {
    max-width: 100%;
    height: auto;
    /* Optional: filter to make icons look consistent if they are different colors */
    transition: transform 0.3s ease;
}

.wcu-card:hover .wcu-icon img {
    transform: scale(1.1);
}

.wcu-text {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Reusing your black divider styles */
.line-black { height: 1px; width: 60px; background-color: #000; }
.circle-black { 
    width: 14px; height: 14px; border: 2px solid #000; border-radius: 50%; position: relative; 
}
.circle-black::after {
    content: ''; width: 6px; height: 6px; background: #000; border-radius: 50%;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}


.map iframe{width: 100%; height: 350px;}

/* Desktop view par hover enable karne aur animate karne ke liye */
@media (min-width: 992px) {
    /* Dropdown ko default chhupa ke thoda upar shift karein */
    .navbar-nav .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease-in-out;
        transform: translateY(10px); /* Halki slide-down movement ke liye */
        border: none;
        box-shadow: 0px 8px 15px rgba(0,0,0,0.1);
    }

    /* Hover karne par menu dikhayein aur original position par layein */
    .nav-item.dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown items par hover effect */
.dropdown-item {
    transition: background 0.2s ease, padding-left 0.2s ease;
    font-size:14px;
}

    .dropdown-item.active i{color:#fff;}
    /* Arrow (Caret) ki animation */
    .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg); /* Mouse le jane par arrow ulta ho jayega */
}


/* Default state for the left arrow icon */
.arrow-icon {
    font-size: 12px;
    color: #ff9800; /* Orange color from your design */
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.5; /* Shuruat mein thoda halka */
}

/* Dropdown item hover effects */
.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
}

    .dropdown-item:hover {
        background-color: #f8f9fa;
        color: var(--brand-orange) !important; /* Blue color on hover */
        padding-left: 25px; /* Pura text thoda slide hoga */
    }

        /* Hover karne par arrow move hoga aur dark ho jayega */
        .dropdown-item:hover .arrow-icon {
            transform: translateX(5px); /* Arrow thoda aage badhega */
            opacity: 1;
        }

/* Mobile view adjustments */
@media (max-width: 991px) {
    .dropdown-menu {
        border-left: 2px solid #ff9800 !important; /* Mobile mein left side orange line */
        margin-left: 10px;
    }
}


/* 1. Shine Effect (BOM Button ke liye) */
.btn-animate-shine {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-animate-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-animate-shine:hover::after {
    left: 120%; /* Hover karne par chamak (shine) cross karegi */
}

/* 2. Pulse Effect (Line Card ke liye) */
.btn-pulse-blue {
    animation: pulse-blue 2s infinite;
    transition: all 0.3s ease;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 71, 161, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(13, 71, 161, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 71, 161, 0);
    }
}

/* 3. Icon Animations */
.btn-animate-shine:hover .icon-move {
    transform: translateY(-3px); /* Upload icon upar jayega */
}

.btn-pulse-blue:hover .icon-bounce {
    transform: scale(1.2); /* Icon halka bada hoga */
}

.icon-move, .icon-bounce {
    transition: transform 0.3s ease;
}

/* 4. Hover Lift Effect */
.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn1_top {
    background-color: #ff9800;
    border: none;
    padding: 10px 22px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.btn2_top {
    background-color: #0d47a1;
    border: none;
    padding: 10px 22px;
    border-radius: 5px;
}

/* --- Contact Section (Prefix: contact-) --- */
.contact-icon-box {
    width: 60px;
    height: 60px;
    background-color: #eef4ff; /* Soft Blue */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--brand-blue);
    margin-right: 20px;
}

.contact-form-card {
    background-color: #f0f5ff; /* Image wala light blue */
    border-radius: 20px;
    padding: 40px;
    border: none;
}

/* Captcha styling jo sirff isi form par dikhegi */
.contact-captcha-box {
    background-color: #c4dbff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    min-width: 100px;
}

/* --- Professional Form Design (Prefix: contact-) --- */

.contact-form-card {
    background-color: #f3f7ff; /* Very soft blue-white */
    border-radius: 25px;
    padding: 45px;
    border: 1px solid rgba(225, 235, 255, 0.8);
    transition: all 0.3s ease;
}

/* Form Labels */
.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

/* Input Fields */
.contact-input {
    background-color: #ffffff !important;
    border: 1px solid #d8e2f3;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

    /* Input Focus Effect */
    .contact-input:focus {
        background-color: #fff !important;
        border-color: var(--brand-blue);
        box-shadow: 0 0 12px rgba(18, 64, 147, 0.1); /* Subtle glow */
        outline: none;
    }

    .contact-input::placeholder {
        color: #a0aec0;
        font-size: 13px;
    }

/* Captcha Box Design */
.contact-captcha-box {
    background: linear-gradient(135deg, #c4dbff 0%, #dbe8ff 100%);
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 3px;
    color: #2c5282;
    font-style: italic;
    border: 1px dashed #a0c4ff;
    user-select: none; /* Prevents text selection */
}

/* Send Button */
.contact-btn-send {
    background-color: #164396; /* Matching your image blue */
    color: #ffffff;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.4s ease;
    margin-top: 10px;
}

    .contact-btn-send:hover {
        background-color: #0d2d6b;
        box-shadow: 0 8px 20px rgba(22, 67, 150, 0.25);
        transform: translateY(-2px);
        color: #fff;
    }

/* Mobile Adjustments */
@media (max-width: 576px) {
    .contact-form-card {
        padding: 25px;
        border-radius: 15px;
    }
}


/*=========footer==========*/
/* --- Footer Custom Styles --- */
.footer-section {
    background-color: #0e1628; /* Dark navy blue from image */
    color: #b0b8c1;
    padding: 80px 0 20px;
    font-size: 14px;
}

.footer-logo {
    max-height: 50px;
    filter: brightness(0) invert(1); /* Logo white karne ke liye (optional) */
}

.footer-about {
    line-height: 1.6;
    margin-top: 15px;
}

.footer-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 25px;
}

/* Links & Hover Effects */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #b0b8c1;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        font-size:12px;
    }

        .footer-links a i {
            font-size: 10px;
            margin-right: 10px;
            color: #b0b8c1; /* Arrow color */
            transition: all 0.3s ease;
        }

        /* Hover State */
        .footer-links a:hover {
            color: #4169e1; /* Brand Blue color on hover */
            padding-left: 5px; /* Subtle movement */
        }

            .footer-links a:hover i {
                color: #4169e1;
                transform: translateX(3px);
            }

/* Social Icons */
.social-icon {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}

    .social-icon:hover {
        background-color: #4169e1;
        color: #fff;
        transform: translateY(-3px);
    }

/* Bottom Bar */
.footer-hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.copyright-text {
    font-size: 13px;
    opacity: 0.7;
}

.webshree-link {
    color: #4169e1;
    text-decoration: none;
}

    .webshree-link:hover {
        text-decoration: underline;
    }



    /*about us */
.cyber-section {
    background-color: #0b0f17; /* Futuristic deep dark blue/black */
    color: #ffffff;
    position: relative;
}

.cyber-title {
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff 50%, #fe9a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* The Secret Sauce: Chamfered (Cut) Corners using clip-path */
.cyber-card-wrapper {
    filter: drop-shadow(0px 0px 2px rgba(18, 64, 147, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cyber-card {
    background: #141c2b;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    /* Custom polygon shape for the tech-cut look */
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

/* Cyber Hover Effect */
.cyber-card-wrapper:hover {
    transform: translateY(-5px) scale(1.02);
    filter: drop-shadow(0px 10px 20px rgba(254, 154, 0, 0.15));
}

    .cyber-card-wrapper:hover .cyber-card {
        background: #1a2436;
    }

/* Glowing accent lines inside the cut corners */
.cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--brand-orange, #fe9a00);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    opacity: 0.3;
    transition: opacity 0.3s;
}

.cyber-card-wrapper:hover .cyber-card::before {
    opacity: 1;
}

.cyber-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.cyber-card-wrapper:hover .cyber-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #fe9a00 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cyber-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8fa0bc;
    text-align: center;
    transition: color 0.3s;
}

.cyber-card-wrapper:hover .cyber-text {
    color: #ffffff;
}

.lt-section {
    background-color: #ffffff; /* Pure White Background as requested */
    color: #333333;
    position: relative;
}

.lt-title {
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a1a;
    position: relative;
}

/* Grid container for alignment */
.lt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* The Unique Card: Chamfered bottom-right corner */
.lt-card {
    background: #FBFCFF; /* Slight off-white to contrast with pure white bg */
    padding: 35px 25px;
    position: relative;
    border: 1px solid #eef2f7;
    /* Technical laser-cut effect on the bottom right corner */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left aligned for a clean blueprint look */
}

/* Tech Indicator Number */
.lt-card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #e2e8f0;
    transition: color 0.3s ease;
}

/* Top Accent Line */
.lt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #FE9A00; /* Your Brand Orange */
    transition: width 0.4s ease;
}

/* Hover State */
.lt-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(18, 64, 147, 0.08); /* Soft brand-blue shadow */
    border-color: #dbe3f0;
}

    .lt-card:hover::before {
        width: 100%; /* Line expands on hover */
    }

    .lt-card:hover .lt-card-number {
        color: rgba(254, 154, 0, 0.3); /* Number turns orange-tinted */
    }

/* Icon styling */
.lt-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #f4f7fc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #124093; /* Your Brand Blue */
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.lt-card:hover .lt-icon-wrapper {
    background: #124093;
    color: #ffffff;
    transform: rotateY(180deg); /* Smooth flip effect on hover */
}

.lt-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #124093; /* Your Brand Blue */
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.lt-card-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Custom Zoom Styling */
.custom-card img {
    transition: transform var(--transition-speed) ease;
}

.custom-card:hover img {
    transform: scale(1.03);
}


.text-gold {
    color: var(--brand-blue) !important;
    font-size: 1.2rem;
}


.modal-backdrop.show {
    opacity: 0.85;
}

/*products*/

/* Tab Navigation Styling */
.tabs-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
}

/* MAIN */
.custom-tabs {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 10px;
    min-width: max-content;
    padding: 10px 15px;
    margin-bottom:0;
}

    /* ITEMS */
    .custom-tabs li {
        list-style: none;
    }

    /* LINKS */
    .custom-tabs .nav-link {
        white-space: nowrap;
        border-radius: 30px;
    }

/* HIDE SCROLLBAR */
.tabs-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.tabs-scroll-wrapper {
    scrollbar-width: none;
}

.custom-tabs .nav-link {
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 30px;
    padding: 10px 18px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-size: 14px;
}

  
    .custom-tabs .nav-link.active {
        background-color: var(--brand-orange, #FE9A00) !important;
        color: white !important;
        border-color: var(--brand-orange, #FE9A00);
        box-shadow: 0 4px 10px rgba(254, 154, 0, 0.3);
    }

    .custom-tabs .nav-link:hover:not(.active) {
        background-color: #e9ecef;
        border-color: #ced4da;
    }

/* Content Area Styling */
.tab-content {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .custom-tabs {
        justify-content: flex-start !important; 
        padding-left: 15px;
        padding-right: 15px;
    }

        .custom-tabs .nav-link {
            font-size: 13px;
            padding: 8px 15px;
        }
}



/* Discrete Section Styling */
.section-heading-custom {
    font-weight: 800;
    letter-spacing: 1px;
    color: #222;
    text-transform: uppercase;
}

.heading-divider {
    width: 60px;
    height: 4px;
    background-color: var(--brand-orange, #FE9A00);
    border-radius: 2px;
}

.lead-text {
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--black);
}

/* Category Image styling */
.img-fluid.rounded-4 {
    border-radius: 20px !important;
    max-height: 250px;
    object-fit: contain;
    border: 1px solid #f0f0f0;
    padding: 10px;
    background: #fff;
}

/* Product List & Partner Card Styling */
.product-list-card, .partner-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-list-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
    }

/* Dot List (Icon-based) */
.custom-dot-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--black);
}

.partner-card p, .product-list-card p, .contact-info-text p, .gray_light p {
    color: var(--black) !important;
}

.custom-dot-list li::before {
    content: "\f00c"; /* FontAwesome Check Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--brand-orange, #FE9A00);
    font-size: 0.9rem;
}

/* Partner Badges Design */
.partner-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-item {
    background: #fdf2e2;
    color: #b36b00;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid #f9e1bc;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

    .badge-item:hover {
        background-color: #f9e1bc;
        transform: scale(1.05);
    }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .discrete-content-wrapper {
        padding: 0 !important;
    }

    .product-list-card, .partner-card {
        padding: 20px;
    }

    .lead-text {
        font-size: 0.95rem;
    }

    .img-fluid.rounded-4 {
        max-height: 180px;
        margin-top: 10px;
    }
}


/* Section */
.feature-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #eef2f7, #ffffff);
}

/* Card */
.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    overflow: hidden;
}

    /* Gradient border */
    .feature-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        padding: 1px;
        background: linear-gradient(135deg, var(--brand-blue), #4da3ff);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        opacity: 0;
        transition: 0.4s;
    }

    /* Hover */
    .feature-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 45px rgba(18,64,147,0.25);
    }

        .feature-card:hover::before {
            opacity: 1;
        }

/* Icon */
.feature-icon {
    width: 75px;
    height: 75px;
    display: flex !important; /* KEY FIX */
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */

    margin: 0 auto 18px; /* center block + spacing */

    border-radius: 50%;
    font-size: 30px;
    background: linear-gradient(135deg, var(--brand-blue), #4da3ff);
    color: #fff;
    box-shadow: 0 10px 25px rgba(18,64,147,0.35);
    transition: all 0.4s ease;
}
    .feature-icon i {
        display: flex;
    }
/* Icon hover */
.feature-card:hover .feature-icon {
    transform: rotate(8deg) scale(1.15);
    box-shadow: 0 15px 35px rgba(18,64,147,0.5);
}

/* Title */
.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.3px;
}





.wework_n1 {
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
}

@media (max-width: 991px) {
    .wework_n1 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .wework_n1 {
        flex: 0 0 50%;
        max-width: 50%;
        display: flex;
    }
}

@media (max-width: 575px) {
    .wework_n1 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


.card_wework {
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%;
}


.highlight-item {
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card_wework:hover .highlight-item {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


/*timeline*/
/* ===== Timeline Wrapper ===== */
/* ================= TIMELINE ================= */
/* ===== JOURNEYTIME TIMELINE ===== */
.journeytime {
    position: relative;
    max-width: 1100px;
    margin: 30px auto;
}

    /* Center line */
    .journeytime::after {
        content: '';
        position: absolute;
        width: 3px;
        background: linear-gradient(var(--brand-blue), var(--brand-orange));
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

.journeytime-item {
    position: relative;
    width: 50%;
    padding: 5px 30px; /* Vertical spacing bohot kam kar di */
    box-sizing: border-box;
}

    .journeytime-item.left {
        left: 0;
    }

    .journeytime-item.right {
        left: 50%;
    }

/* Card with Flex Layout */
.journeytime-card {
    display: flex;
    align-items: flex-start;
    gap: 15px; /* Icon aur text ke beech ka gap */
    background: #fff;
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .journeytime-card:hover {
        transform: translateX(5px);
    }

.journeytime-item.left .journeytime-card:hover {
    transform: translateX(-5px);
}

/* Compact Icon */
.journeytime-icon {
    flex-shrink: 0; /* Icon pichke nahi */
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: var(--brand-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Content adjustment */
.journeytime-content {
    flex-grow: 1;
}

.journeytime-year {
    font-size: 14px;
    font-weight: 800;
    color: var(--brand-blue);
    line-height: 1;
}

.journeytime-title {
    font-size: 14px;
    font-weight: 700;
    margin: 2px 0;
    color: #333;
}

.journeytime-card p {
    font-size: 12px;
    margin: 0;
    line-height: 1.3;
    color: var(--black);
}

/* Step Badge (Optional: Small & Subtle) */
.journeytime-step {
    font-size: 9px;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    float: right;
}

/* Center Dots */
.journeytime-item::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--brand-orange);
    border: 2px solid #fff;
    border-radius: 50%;
    top: 22px;
    z-index: 2;
}

.journeytime-item.left::before {
    right: -6px;
}

.journeytime-item.right::before {
    left: -6px;
}

/* Mobile */
@media(max-width:768px) {
    .journeytime::after {
        left: 15px;
    }

    .journeytime-item {
        width: 100%;
        padding-left: 40px;
        left: 0 !important;
    }

        .journeytime-item::before {
            left: 10px !important;
        }
}




/*=========kpsemi==========*/

.kpsemi-sidebar-nav {
    position: sticky;
    top: 110px;
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.kpsemi-nav-item {
    color: var(--gray-text);
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    border-radius: 6px;
    margin-bottom: 8px;
    font-weight: 600;
    transition: all var(--transition-speed);
    border-left: 4px solid transparent;
    font-size: 14px;
}

    .kpsemi-nav-item:hover {
        background: var(--brand-light);
        color: var(--brand-blue);
    }


    .kpsemi-nav-item.active {
        background: rgba(18, 64, 147, 0.1);
        color: var(--brand-blue);
        border-left: 4px solid var(--brand-orange);
    }


.kpsemi-card {
    background: white;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    margin-bottom: 3rem;
    overflow: hidden;
    scroll-margin-top: 40px;
}

.kpsemi-section-header {
    background: var(--brand-blue);
    color: white;
    padding: 1.25rem 1.5rem;
}

.kpsemi-link {
    color: var(--brand-blue);
    font-weight: 600;
    text-decoration: none;
    padding: 4px 8px;
    background: rgba(18, 64, 147, 0.05);
    border-radius: 4px;
    font-size: 14px;
}


    .kpsemi-link:hover {
        background: var(--brand-orange);
        color: var(--black);
    }

.kpsemi-watt-pill {
    background: rgba(18, 64, 147, 0.05);
    color: var(--brand-blue);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
}

.kpsemi-card table tr th {
    text-transform: uppercase;
    font-size: 14px;
}

.kpsemi-card table tr td:last-child {
    white-space: nowrap;
    color:#000;
}

.kpsemi-card table tr td {
    padding: .7rem .5rem;
    font-size: 14px;
}