* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --dark-color: #1e293b;
    --text-color: #4b5563;
    
    --gradient: linear-gradient(135deg, #4f46e5, #6366f1);
    --gradient-2: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.7);
    --radius: 16px;
}
/*    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/



body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    opacity: 0;
    animation: fadeInPage 0.6s ease-in forwards;
}

@keyframes fadeInPage {
    to {
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Header Bar */
.top-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 6px 0;
    font-size: 0.8rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-header-left {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .header-item.welcome-text {
        font-weight: 600;
    }

    .header-item svg {
        width: 14px;
        height: 14px;
        opacity: 0.9;
    }

    .header-item span {
        color: white;
        font-weight: 500;
    }

    .header-item a {
        color: white;
        text-decoration: none;
        transition: opacity 0.3s;
        font-weight: 500;
    }

        .header-item a:hover {
            opacity: 0.8;
        }

.top-header-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.social-links {
    display: flex;
    gap: 8px;
}

    .social-links a {
        width: 28px;
        height: 28px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        backdrop-filter: blur(10px);
    }

        .social-links a:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

    .social-links svg {
        width: 14px;
        height: 14px;
        color: white;
    }


/*menu style start */

.dropdown-icon {
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #6f70cf;
}

@media (min-width: 992px) {
    .mega-dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 15px);
    background: #fff;
    padding: 30px 20px;
    display: flex;
    gap: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s ease;
    z-index: 999;
}

@media (min-width: 992px) {
    .mega-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 991px) {
    .mega-menu {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 15px 0;
        flex-direction: column;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mega-dropdown.active .mega-menu {
        display: flex;
    }
}

.mega-menu-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #6f70cf;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mega-menu-column ul li {
        margin-bottom: 10px;
    }

        .mega-menu-column ul li a {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 8px 0;
            text-decoration: none;
            color: #333;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

            /* Icon styling */
            .mega-menu-column ul li a i {
                font-size: 20px;
                color: #6f70cf;
                min-width: 24px;
            }

/* Text container */
.menu-text {
    display: flex;
    flex-direction: column; /* title upar, description neeche */
}

    /* Title */
    .menu-text span {
        font-weight: 500;
        line-height: 1.2;
    }

    /* Description */
    .menu-text small {
        font-size: 12px;
        color: #666;
        line-height: 1.2;
    }

.mega-menu-column ul li a:hover {
    background: #6f70cf;
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding:10px;
}

    .mega-menu-column ul li a:hover i,
    .mega-menu-column ul li a:hover .menu-text small {
        color: #fff;
    }

/*menu style end */







/* Navigation */
.navbar {
    position: fixed;
    top: 41px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(147, 51, 234, 0.1);
    z-index: 1000;
/*    padding: 1.2rem 0;*/
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
    }

.logo h1 {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 0 30px rgba(147, 51, 234, 0.3);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #1e293b;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

    .nav-link:hover {
        color: #667eea;
    }

    .nav-link.active {
        color: #667eea;
        font-weight: 800;
    }

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.plus-icon {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.15);
    border-radius: 15px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1002;
    pointer-events: none;
    margin-top: 0;
}

    /* Create hover bridge area */
    .dropdown-menu::before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: -20px;
        right: -20px;
        height: 8px;
        background: transparent;
    }

/* Show menu on dropdown hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Keep menu visible when hovering over menu itself */
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-weight: 500;
}

    .dropdown-menu a:hover {
        background: linear-gradient(90deg, rgba(168, 237, 234, 0.1) 0%, rgba(254, 214, 227, 0.1) 100%);
        color: var(--primary-color);
        padding-left: 30px;
    }

/* Phone Button */
.phone-button {
    background: var(--gradient);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

    .phone-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px var(--primary-gradient);
        background:var(--primary-gradient);
    }

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1002;
    position: relative;
    padding: 8px;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

    .hamburger span {
        width: 26px;
        height: 3px;
        background: #667eea;
        transition: all 0.3s;
        border-radius: 3px;
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }











/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 500px;
    max-height: 1000px;
    overflow: hidden;
}

 .hero-slider::before,
.hero-slider::after {
    content: "";
    position: absolute;
    inset: -20%;
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
}

/* Main smooth layer */
.hero-slider::before {
    background:
        radial-gradient(circle at 20% 30%, #89c9f7 0%, transparent 60%),
        radial-gradient(circle at 80% 40%, #fdd3a0 0%, transparent 60%),
        radial-gradient(circle at 50% 80%, #9be2e8 0%, transparent 65%);
    animation: liquidMove 22s ease-in-out infinite;
}

/* Depth / parallax layer */
.hero-slider::after {
    background:
        radial-gradient(circle at 70% 20%, #ffe29f 0%, transparent 65%),
        radial-gradient(circle at 30% 70%, #89c9f7 0%, transparent 60%);
    animation: liquidMoveReverse 30s ease-in-out infinite;
    opacity: 0.7;
}

/* Smooth flowing motion */
@keyframes liquidMove {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(80px, -60px) scale(1.05);
    }
    66% {
        transform: translate(-60px, 70px) scale(1.08);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes liquidMoveReverse {
    0% {
        transform: translate(0, 0) scale(1);
    }
    40% {
        transform: translate(-90px, 60px) scale(1.06);
    }
    70% {
        transform: translate(70px, -80px) scale(1.1);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}


/* Shimmer / Sunlight reflection */
.hero-slider .shine {
    position: absolute;
    inset: -50%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    animation: shineMove 8s linear infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes shineMove {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }

    100% {
        transform: translateX(100%) rotate(25deg);
    }
}

/* ================= SLIDES ================= */
.slides {
    height: 100%;
    position: relative;
    z-index: 3;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 6s ease;
}

    .slide.active {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }

/* Glass overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
}

/* CONTENT */
.content {
    position: relative;
    z-index: 5;
    height: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* ensure stacking on small screens */
}

.text-content {
    flex: 1 1 400px;
    min-width: 280px;
}

    .text-content h1 {
        font-size: clamp(28px, 4vw, 44px); /* responsive font scaling */
        margin-bottom: 20px;
        background: linear-gradient(to right,#111,#6b7280,#111);
        -webkit-background-clip: text;
        color: transparent;
    }

    .text-content p {
        font-size: clamp(14px, 1.2vw, 18px);
        line-height: 1.6;
        margin-bottom: 20px;
        color: #1f2937;
    }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 35px;
    background: #ff9f1c;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    transition: .3s;
}

    .btn:hover {
        transform: translateY(-3px);
    }

/* IMAGE CONTENT */
.image-content {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .image-content img {
        max-width: 100%;
        height: auto;
        animation: float 6s ease-in-out infinite;
    }

/* Floating animation */
@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* NAVIGATION */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.6);
    border: none;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.dots-container {
    position: absolute;
    bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,.3);
    border: none;
}

    .dot.active {
        background: #111;
    }

/* ================= RESPONSIVE MEDIA QUERIES ================= */
@media (max-width: 1024px) {
    .content {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }

    .slide.reverse .content {
        flex-direction: column;
        text-align: center;
    }
}

/* ================= RESPONSIVE MEDIA QUERIES ================= */

/* Large screens (desktop) already handled by default CSS */

/* Medium screens: tablets & laptops */
@media (max-width: 1366px) {
    .content {
        flex-direction: row; /* side by side */
        justify-content: space-around; /* space evenly */
        align-items: center;
        padding: 0 5%;
        flex-wrap: nowrap; /* prevent wrapping */
    }

    .text-content {
        flex: 0 0 48%; /* roughly half the width */
        text-align: left;
    }

    .image-content {
        flex: 0 0 48%; /* roughly half the width */
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .image-content img {
            max-width: 90%; /* scale down images */
        }

    /* Reversed slides */
    .slide.reverse .content {
        flex-direction: row-reverse; /* image left, text right */
        text-align: left;
    }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
    .content {
        flex-direction: column; /* stack text & image */
        text-align: center;
        padding-top: 60px;
    }

    .text-content h1 {
        font-size: clamp(28px, 5vw, 36px);
    }

    .text-content p {
        font-size: clamp(14px, 3vw, 15px);
    }

    .image-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .image-content img {
            max-width: 200px;
            margin-top: 20px;
        }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .text-content h1 {
        font-size: 24px;
    }

    .text-content p {
        font-size: 13px;
    }

    .btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    .image-content {
        display: none; /* hide images on very small screens */
    }

    /* For reversed slides on phones */
    .slide.reverse .content {
        flex-direction: column;
        text-align: center;
    }
}













/* Quick Stats Banner */
/* ===== PARALLAX QUICK STATS ===== */
/* Quick Stats Banner Modern Look */
.quick-stats-banner {
    position: relative;
    padding: 30px 20px;
    background: url('/PublicSide/Images/bg-slider1.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
}

    /* Dark overlay for text readability */
    .quick-stats-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(15,23,42,0.85);
        z-index: 0;
    }

    .quick-stats-banner .common-container {
        position: relative;
        z-index: 1;
    }

/* Header */
.Quick-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    text-align: center;
}

.underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    margin: 15px auto;
    border-radius: 10px;
}

.Quick-intro {
    color: #fff;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 50px;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: space-between; /* all items in one row on large screens */
    flex-wrap: wrap;
    gap: 30px;
}

/* Individual Stat Item */
.stat-item {
    flex: 1 1 180px;
    background: rgba(255, 255, 255, 0.1); /* semi-transparent */
    backdrop-filter: blur(10px); /* blur the background behind it */
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}


    .stat-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    }

.stat-icon i {
    font-size: 42px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-info {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-row {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .stat-item {
        flex: 1 1 45%; /* 2 per row on tablets */
    }
}

@media (max-width: 576px) {
    .stat-item {
        flex: 1 1 100%; /* 1 per row on mobiles */
    }
}







/*    fade css*/
    .fade {
        opacity: 0;
        transform: translateY(20px); /* start slightly below */
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

        /* Fade-In: element appears */
        .fade.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Fade-Out: element disappears (scroll up or hide) */
        .fade.hide {
            opacity: 0;
            transform: translateY(20px);
        }






/* Fluid container like Bootstrap container-fluid */
.common-container {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .common-container {
        padding-left: 70px;
        padding-right: 70px;
    }
}

/* Extra large screens */
@media (min-width: 1600px) {
    .common-container {
        padding-left: 100px;
        padding-right: 100px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .common-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}








/* About Section */
.about {
    padding: 30px 0;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

    .section-header h2 {
        font-size: clamp(28px, 4vw, 40px);
        font-weight: 800;
        color: var(--secondary-color);
    }

    .section-header .underline {
        width: 70px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), #60a5fa);
        margin: 14px auto;
        border-radius: 10px;
    }

.section-intro {
    font-size: 1rem;
    color: var(--t);
}




/* Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

/* About Text */
.about-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 30px;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

/* Highlights */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 14px;
    padding: 22px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

    .highlight-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    }

.highlight-icon {
    min-width: 34px;
    height: 34px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: bold;
}

.highlight-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Stats */
.about-stats-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.stat-card {
    background: linear-gradient(180deg, #ffffff, #f1f5f9);
    padding: 13px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
    transition: all 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-6px);
    }

.stat-icon-large {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-stats-visual {
        grid-template-columns: 1fr;
    }

    .about {
        padding: 60px 0;
    }
}



















    /* Industry Sectors */

.sector-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: var(--gradient);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

    .industry-sectors {
        padding: 40px 0;
        background: white;
    }

    .sectors-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
        margin-top: 15px;
    }

.sector-card {
    padding: 10px 10px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}

    .sector-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary-color);
        box-shadow: 0 25px 55px rgba(102,126,234,0.25), inset 0 1px 0 rgba(255,255,255,0.8);
    }

    .sector-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        display: inline-block;
        transition: transform 0.3s;
    }

    .sector-card:hover .sector-icon {
        transform: scale(1.2) rotate(5deg);
    }

.sector-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

    .sector-card p {
        color: #6b7280;
        font-size: 0.95rem;
        line-height: 1.7;
    }













    /* Why Choose Us */
/* WHY CHOOSE US */
.why-choose-us {
    padding: 20px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

    .section-header h2 {
        font-size: clamp(28px, 4vw, 40px);
        font-weight: 800;
        color: var(--dark-color);
    }

    .section-header .underline {
        width: 80px;
        height: 4px;
        background: var(--gradient);
        display: block;
        margin: 15px auto;
        border-radius: 10px;
    }

.section-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* GRID */
/* FEATURE CARD – PREMIUM */
.feature-card {
    position: relative;
    min-width: 320px;
    max-width: 320px;
    padding: 38px 32px;
    border-radius: var(--radius);
    background: linear-gradient( 180deg, rgba(255,255,255,0.9), rgba(248,250,252,0.95) );
    backdrop-filter: blur(14px);
    border: 1px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255,255,255,0.6);
    transition: all 0.45s ease;
    overflow: hidden;
}

    /* GRADIENT BORDER EFFECT */
    .feature-card::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1.5px;
        border-radius: inherit;
        background: var(--gradient);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0.25;
        transition: 0.45s;
    }

    /* HOVER */
    .feature-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 55px rgba(102,126,234,0.25), inset 0 1px 0 rgba(255,255,255,0.8);
    }

        .feature-card:hover::before {
            opacity: 1;
        }

/* NUMBER */
.feature-number {
    position: absolute;
    top: 22px;
    right: 26px;
    font-size: 3.2rem;
    font-weight: 800;
    color: rgba(102, 126, 234, 0.12);
    letter-spacing: -2px;
}

/* ICON BADGE */
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 22px;
    box-shadow: 0 12px 25px rgba(102,126,234,0.45);
    transition: 0.4s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.12) rotate(-6deg);
}

/* TITLE */
.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

/* TEXT */
.feature-card p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* SUBTLE SHINE EFFECT */
.feature-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient( circle, rgba(255,255,255,0.35), transparent 60% );
    opacity: 0;
    transition: 0.45s;
}

.feature-card:hover::after {
    opacity: 0.35;
}





/* CAROUSEL WRAPPER */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

/* TRACK */
.carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s ease;
    will-change: transform;
}

/* CARD WIDTH */
.feature-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
}

/* BUTTONS */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--gradient);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    transition: 0.3s;
}

    .carousel-btn:hover {
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-btn.left {
        left: -10px;
    }

    .carousel-btn.right {
        right: -10px;
    }


@media (min-width: 1200px) {
    .feature-card {
        min-width: 360px;
        max-width: 360px;
    }
}
@media (max-width: 1199px) {
    .feature-card {
        min-width: 320px;
        max-width: 320px;
    }

    .carousel-btn.left {
        left: 0;
    }

    .carousel-btn.right {
        right: 0;
    }
}
@media (max-width: 991px) {
    .carousel-wrapper {
        padding-left: 20px;
    }

    .feature-card {
        min-width: 70%;
        max-width: 70%;
    }

    .carousel-track {
        gap: 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .carousel-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .carousel-track {
        scroll-snap-align: start;
    }

    .feature-card {
        min-width: 88%;
        max-width: 88%;
        scroll-snap-align: center;
    }

    .carousel-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 28px 22px;
    }

    .feature-number {
        font-size: 2.2rem;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }
}









/* DIVISIONS SECTION */
.divisions {
    padding: 20px 0 50px;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h2 {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 800;
        color: var(--dark-color);
    }

    .section-header .underline {
        width: 90px;
        height: 4px;
        background: var(--gradient);
        margin: 15px auto;
        border-radius: 10px;
    }

.section-subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
}

/* GRID */
.division-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* CARD */
.division-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 28px;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

    .division-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: var(--radius);
        background: var(--gradient);
        opacity: 0;
        z-index: 0;
        transition: 0.35s ease;
    }

    .division-card:hover::before {
        opacity: 0.08;
    }

    .division-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 45px rgba(0,0,0,0.12);
    }

/* HEADER */
.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.card-icon {
    font-size: 36px;
    background: var(--gradient);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* TEXT */
.card-tagline {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.division-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}

    .division-card ul li {
        font-size: 0.95rem;
        margin-bottom: 8px;
        padding-left: 18px;
        position: relative;
    }

        .division-card ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }

/* LINK */
.card-link {
    margin-top: auto; /* MAGIC LINE */
    padding-top: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .division-card {
        padding: 25px 22px;
    }
}

@media (max-width: 480px) {
    .card-header h3 {
        font-size: 1.15rem;
    }
}


/* SMOOTH BASE TRANSITION */
.division-card * {
    transition: all 0.35s ease;
}

/* ICON ANIMATION */
.division-card:hover .card-icon {
    transform: translateY(-6px) rotate(6deg) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* TITLE SLIDE */
.division-card:hover h3 {
    transform: translateX(4px);
}

/* TAGLINE EMPHASIS */
.division-card:hover .card-tagline {
    letter-spacing: 0.4px;
}

/* LIST ITEM FADE-IN EFFECT */
.division-card ul li {
    opacity: 0.85;
}

.division-card:hover ul li {
    opacity: 1;
    transform: translateX(4px);
}

/* LINK ARROW ANIMATION */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.division-card:hover .card-link {
    gap: 12px;
    color: var(--primary-color);
}

/* GRADIENT BAR ANIMATION */
.division-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient);
    border-radius: 0 0 var(--radius) var(--radius);
    transition: width 0.45s ease;
}

.division-card:hover::after {
    width: 100%;
}
/* SCROLL ANIMATION BASE */
.division-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    /* ACTIVE STATE */
    .division-card.show {
        opacity: 1;
        transform: translateY(0);
    }

    /* STAGGER EFFECT */
    .division-card:nth-child(1) {
        transition-delay: 0.1s;
    }

    .division-card:nth-child(2) {
        transition-delay: 0.2s;
    }

    .division-card:nth-child(3) {
        transition-delay: 0.3s;
    }

    .division-card:nth-child(4) {
        transition-delay: 0.4s;
    }

    .division-card:nth-child(5) {
        transition-delay: 0.5s;
    }

    .division-card:nth-child(6) {
        transition-delay: 0.6s;
    }

    .division-card:nth-child(7) {
        transition-delay: 0.7s;
    }

    .division-card:nth-child(8) {
        transition-delay: 0.8s;
    }















    /* Contact Section */
    .contact {
        padding: 30px 0;
        background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 50px;
        margin-top: 40px;
    }



    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .info-card {
        background: linear-gradient(145deg, #ffffff 0%, #faf5ff 100%);
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 8px 30px rgba(147, 51, 234, 0.12);
        transition: all 0.3s;
        border: 1px solid rgba(147, 51, 234, 0.1);
    }

        .info-card:hover {
            transform: translateX(10px);
            box-shadow: 0 12px 40px rgba(147, 51, 234, 0.2);
        }

        .info-card h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .info-card p {
            color: var(--text-color);
            margin: 5px 0;
        }

    .contact-form {
        background: linear-gradient(145deg, #ffffff 0%, #faf5ff 100%);
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(147, 51, 234, 0.15);
        border: 1px solid rgba(147, 51, 234, 0.1);
        position: relative;
    }

    .form-group {
        margin-bottom: 20px;
    }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(147, 51, 234, 0.2);
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
            background: white;
        }

            .form-group input:focus,
            .form-group textarea:focus {
                outline: none;
                border-color: var(--secondary-color);
                box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.1);
                transform: translateY(-2px);
            }

    .submit-btn {
        width: 100%;
        padding: 18px;
        background: var(--gradient);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.4s;
        box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .submit-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(147, 51, 234, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-2px);
        }
















/* Footer Styles */



.footer {
    background:var(--gradient);
    color: #e5e7eb;
    padding: 50px 20px 30px;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 50px;
}

/* BRAND */
.footer-brand h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: white;
    max-width: 360px;
}

/* HEADINGS */
.footer h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
    color: #ffffff;
    position: relative;
    text-align: center;
}

    .footer h4::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -8px;
        width: 32px;
        height: 2px;
        background: linear-gradient(90deg, #f59e0b, #6366f1);
        transform: translateX(-50%);
    }

/* LINKS & DIVISIONS */
.footer-links ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 28px;
    row-gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

    .footer-links ul li {
        text-align: left;
    }

.footer-links a {
    color: white;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}

    .footer-links a:hover {
        color: #ffffff;
        padding-left: 6px;
    }

/* CONTACT (UNCHANGED LOOK) */
.footer-contact {
    text-align: left;
}

    .footer-contact p {
        font-size: 14px;
        color: #cbd5f5;
        margin-bottom: 14px;
    }

    .footer-contact a {
        color: #ffffff;
        text-decoration: none;
    }

/* SOCIAL */
.footer-socials {
    margin-top: 25px;
}

    .footer-socials a {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        color: #ffffff;
        transition: all 0.3s ease;
    }

        .footer-socials a:hover {
            background: linear-gradient(135deg, #f59e0b, #6366f1);
            transform: translateY(-4px);
        }

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    .footer-bottom a {
        color: #e5e7eb;
        text-decoration: none;
        font-weight: 500;
    }

        .footer-bottom a:hover {
            color: #f59e0b;
        }

/* Mobile */
@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .footer {
        padding: 60px 15px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-links {
        text-align: center;
    }

        .footer-links ul {
            grid-template-columns: 1fr;
            text-align: center;
        }

            .footer-links ul li {
                text-align: center;
            }

    .footer-contact {
        text-align: left;
    }

    .footer-socials a {
        margin: 0 6px;
    }
}

.footer-contact p{
    margin-left:70px;
}


.footer i {
    margin-right: 8px;
    color: white;
    font-size: 13px;
}

.footer-links a i {
    margin-right: 6px;
    font-size: 12px;
}

.footer-contact i {
    width: 18px;
}








    /* Scroll to Top Button */
    .scroll-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 55px;
        height: 55px;
        background: var(--gradient);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
        transition: all 0.3s;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
    }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(147, 51, 234, 0.5);
        }

        .scroll-to-top svg {
            width: 24px;
            height: 24px;
            color: white;
        }

        .scroll-to-top:active {
            transform: translateY(-2px);
        }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Design */
    /*@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }
}*/

    @media (max-width: 768px) {
        .container {
            padding: 0 15px;
        }

        /* Hide Top Header on Mobile */
        .top-header {
            display: none !important;
        }

        .navbar {
            top: 0;
            padding: 12px 0;
            position: fixed;
            width: 100%;
        }

            .navbar .container {
                justify-content: space-between;
                align-items: center;
                display: flex;
                width: 100%;
            }

        .hamburger {
            display: flex !important;
            visibility: visible !important;
            opacity: 1 !important;
            order: 2;
            margin-left: auto;
            padding: 8px;
            background: transparent;
            border: none;
            cursor: pointer;
            position: relative;
            z-index: 1002;
            width: 40px;
            height: 40px;
            justify-content: center;
            align-items: center;
        }

            .hamburger span {
                background: #667eea;
                width: 26px;
                height: 3px;
                display: block !important;
                margin: 0;
            }

        .phone-button {
            display: none;
        }

        .nav-menu {
            position: fixed;
            left: -100%;
            top: 60px;
            flex-direction: column;
            background: white;
            width: 100%;
            text-align: left;
            transition: left 0.3s ease;
            box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
            padding: 20px 0;
            z-index: 1000;
            max-height: calc(100vh - 60px);
            overflow-y: auto;
            border-top: 1px solid rgba(168, 237, 234, 0.2);
        }

            .nav-menu.active {
                left: 0;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            }

        .nav-link {
            width: 100%;
            display: block;
            padding: 14px 20px;
            border-bottom: 1px solid rgba(168, 237, 234, 0.1);
        }

            .nav-link:last-child {
                border-bottom: none;
            }

        .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            box-shadow: none;
            padding: 10px 0;
            margin-top: 10px;
            margin-left: 20px;
            background: #f8f9ff;
            border-radius: 10px;
            display: none;
            width: calc(100% - 40px);
        }

        .dropdown.active .dropdown-menu {
            display: block;
        }

        .dropdown-toggle {
            width: 100%;
        }

        .logo {
            flex: 0 1 auto;
        }

        .hero-slider {
            padding-top: 60px;
            min-height: 60vh;
        }

        .slider-container {
            height: calc(60vh - 60px);
            min-height: 400px;
        }

        .hero-badge {
            font-size: 0.75rem;
            padding: 6px 16px;
            margin-bottom: 12px;
        }

        .hero-title {
            font-size: 2rem;
            margin-bottom: 0.8rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
        }

        .hero-description {
            font-size: 0.95rem;
            margin-bottom: 1.2rem;
        }

        .hero-stats-mini {
            gap: 15px;
            margin: 20px 0 25px;
            flex-wrap: wrap;
        }

        .mini-stat {
            padding: 12px 16px;
            gap: 6px;
        }

        .mini-stat-number {
            font-size: 1.4rem;
        }

        .mini-stat-label {
            font-size: 0.7rem;
        }

        .cta-button {
            padding: 12px 28px;
            font-size: 0.85rem;
        }

        .slider-btn {
            width: 45px;
            height: 45px;
        }

        .prev-btn {
            left: 10px;
        }

        .next-btn {
            right: 10px;
        }

        .slider-btn svg {
            width: 20px;
            height: 20px;
        }

        .slider-dots {
            bottom: 15px;
            gap: 10px;
            padding: 10px 15px;
        }

        .dot {
            width: 10px;
            height: 10px;
        }

            .dot.active {
                width: 30px;
            }

        .quick-stats-banner {
            padding: 30px 0;
        }

        .stats-row {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .stat-item {
            padding: 14px 16px;
            gap: 12px;
            min-width: auto;
        }

        .stat-icon {
            font-size: 2rem;
        }

        .stat-number {
            font-size: 1.6rem;
        }

        .stat-label {
            font-size: 0.8rem;
        }

        .stat-info {
            font-size: 0.7rem;
        }

        .section-header h2 {
            font-size: 2rem;
        }

        .section-intro {
            font-size: 0.95rem;
        }

        .about-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .about-intro {
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .about-highlights {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .highlight-item {
            padding: 15px;
            gap: 10px;
        }

        .highlight-icon {
            width: 24px;
            height: 24px;
            font-size: 0.75rem;
        }

        .highlight-item h4 {
            font-size: 0.95rem;
        }

        .highlight-item p {
            font-size: 0.8rem;
        }

        .about-stats-visual {
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

            .about-stats-visual .stat-card {
                padding: 20px 15px;
            }

        .stat-icon-large {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .about-stats-visual .stat-card h3 {
            font-size: 1.6rem;
        }

        .about-stats-visual .stat-card p {
            font-size: 0.75rem;
        }

        .sectors-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .sector-card {
            padding: 25px 20px;
        }

        .sector-icon {
            font-size: 2.5rem;
        }

        .sector-card h3 {
            font-size: 1.1rem;
        }

        .features-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .feature-card {
            padding: 25px 20px;
        }

        .feature-number {
            font-size: 2.5rem;
            top: 15px;
            right: 15px;
        }

        .feature-icon {
            font-size: 2.5rem;
        }

        .feature-card h3 {
            font-size: 1.2rem;
        }

        .feature-card p {
            font-size: 0.9rem;
        }

        .divisions-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .division-card {
            padding: 25px 20px;
        }

        .division-icon {
            width: 60px;
            height: 60px;
        }

        .services-list li {
            font-size: 0.85rem;
            padding: 10px 15px;
        }

        .contact-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .info-card {
            padding: 25px 20px;
        }

        .contact-form {
            padding: 30px 20px;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 30px;
        }

        section {
            padding: 0px 0;
        }

        .hero-content {
            padding: 15px;
        }

        .container {
            max-width: 100%;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 12px;
        }

        .navbar {
            padding: 10px 0;
        }

        .logo h1 {
            font-size: 1.2rem;
        }

        .hamburger {
            display: flex !important;
            visibility: visible !important;
            opacity: 1 !important;
        }

            .hamburger span {
                width: 24px;
                height: 3px;
                background: #667eea;
            }

        .nav-link {
            font-size: 0.85rem;
            padding: 12px 15px;
        }

        .hero-slider {
            padding-top: 60px;
            min-height: 55vh;
        }

        .slider-container {
            height: calc(55vh - 60px);
            min-height: 350px;
        }

        .hero-badge {
            font-size: 0.7rem;
            padding: 5px 12px;
            margin-bottom: 10px;
        }

        .hero-title {
            font-size: 1.2rem;
            margin-bottom: 0.6rem;
        }

        .hero-subtitle {
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }

        .hero-description {
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .hero-stats-mini {
            gap: 10px;
            margin: 15px 0 15px;
            flex-wrap: wrap;
        }

        .mini-stat {
            padding: 10px 12px;
            gap: 5px;
        }

        .mini-stat-number {
            font-size: 1.2rem;
        }

        .mini-stat-label {
            font-size: 0.65rem;
        }

        .cta-button {
            padding: 5px 15px !important;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }

        .slider-btn {
            width: 40px;
            height: 40px;
        }

            .slider-btn svg {
                width: 18px;
                height: 18px;
            }

        .prev-btn {
            left: 8px;
        }

        .next-btn {
            right: 8px;
        }

        .slider-dots {
            bottom: 2px;
            gap: 8px;
            padding: 8px 12px;
        }

        .dot {
            width: 8px;
            height: 8px;
        }

            .dot.active {
                width: 25px;
            }

        .quick-stats-banner {
            padding: 0px 0;
        }

        .stats-row {
            gap: 10px;
        }

        .stat-item {
            padding: 12px 14px;
            gap: 10px;
        }

        .stat-icon {
            font-size: 1.6rem;
        }

        .stat-number {
            font-size: 1.4rem;
        }

        .stat-label {
            font-size: 0.75rem;
        }

        .stat-info {
            font-size: 0.65rem;
        }

        .section-header h2 {
            font-size: 1.6rem;
        }

        .section-intro {
            font-size: 0.85rem;
        }

        .about-intro {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .about-highlights {
            gap: 10px;
        }

        .highlight-item {
            padding: 12px;
            gap: 8px;
        }

        .highlight-icon {
            width: 22px;
            height: 22px;
            font-size: 0.7rem;
        }

        .highlight-item h4 {
            font-size: 0.9rem;
        }

        .highlight-item p {
            font-size: 0.75rem;
        }

        .about-stats-visual {
            gap: 10px;
        }

            .about-stats-visual .stat-card {
                padding: 18px 12px;
            }

        .stat-icon-large {
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        .about-stats-visual .stat-card h3 {
            font-size: 1.4rem;
        }

        .about-stats-visual .stat-card p {
            font-size: 0.7rem;
        }

        .sector-card {
            padding: 20px 15px;
        }

        .sector-icon {
            font-size: 3rem;
        }

        .sector-card h3 {
            font-size: 1rem;
        }

        .sector-card p {
            font-size: 0.85rem;
        }

        .feature-card {
            padding: 20px 15px;
        }

        .feature-number {
            font-size: 2rem;
            top: 12px;
            right: 12px;
        }

        .feature-icon {
            font-size: 2rem;
        }

        .feature-card h3 {
            font-size: 1.1rem;
        }

        .feature-card p {
            font-size: 0.85rem;
        }

        .division-card {
            padding: 20px 15px;
        }

        .division-icon {
            width: 55px;
            height: 55px;
        }

        .services-list li {
            font-size: 0.8rem;
            padding: 8px 12px;
        }

        .info-card {
            padding: 20px 15px;
        }

            .info-card h3 {
                font-size: 1.1rem;
            }

        .contact-form {
            padding: 25px 15px;
        }

        .form-group input,
        .form-group textarea {
            padding: 12px 15px;
            font-size: 0.9rem;
        }

        .submit-btn {
            padding: 15px;
            font-size: 1rem;
        }

        section {
            padding: 0px 0;
        }

        .hero-content {
            padding: 12px;
        }

        .container {
            max-width: 100%;
            padding: 0 12px;
        }

        .stats-row {
            gap: 8px;
        }

        .stat-item {
            padding: 10px 12px;
        }

        .about-stats-visual {
            grid-template-columns: 1fr;
            gap: 10px;
        }
    }





    /* Theme Variables */
    :root {
        --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --text-dark: #222;
        --text-light: #fff;
    }

    /* Hero Section */
    .vm-hero {
        margin-top: 88px;
        background: var(--gradient);
        padding: 40px 0;
        text-align: center;
        color: var(--text-light);
    }

        .vm-hero h1 {
            font-size: 42px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .vm-hero p {
            font-size: 18px;
            opacity: 0.95;
        }





    /* Content Section */
.vm-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fc, #eef2f7);
}

/* Grid */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.vm-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    /* Gradient Top Line */
    .vm-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary-gradient);
    }

    /* Hover Effect */
    .vm-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 70px rgba(0,0,0,0.15);
    }

/* Icon */
.vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: #fff;
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.35);
    transition: transform 0.4s ease;
}

/* Icon Animation */
.vm-card:hover .vm-icon {
    transform: scale(1.08) rotate(3deg);
}

/* Title */
.vm-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */
.vm-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #4b5563;
}

/* Responsive */
@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 35px 25px;
    }
}

/* Hero Overlay */
/*.hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.55));
}*/

/* Hero Title */
/*.hero-title {
    text-shadow: 0 8px 35px rgba(0,0,0,0.85), 0 3px 12px rgba(0,0,0,0.6);
}*/

















/* ===== Common Container ===== */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* ===== Leadership Section ===== */
.leadership-section {
    padding: 70px 0;
    background: #f4f6f9;
}

/* ===== Grid ===== */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* ===== Card ===== */
.leader-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    /* Accent top border */
    .leader-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        width: 100%;
        background: linear-gradient(90deg, #007bff, #00c6ff);
    }

    .leader-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    }

/* ===== Image ===== */
.leader-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 18px;
    overflow: hidden;
    border: 4px solid #eef2f7;
}

    .leader-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ===== Text ===== */
.leader-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

.designation {
    display: inline-block;
    font-size: 14px;
    color: #007bff;
    font-weight: 500;
    margin-bottom: 14px;
}

.leader-card p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .leader-card {
        padding: 30px 20px;
    }

    .leader-img {
        width: 110px;
        height: 110px;
    }
}


/* ===== Leadership Vision ===== */
.leadership-vision {
    background: #ffffff;
    padding: 70px 0;
    text-align: center;
}

    .leadership-vision h2 {
        font-size: 32px;
        color: var(--primary-color);
        margin-bottom: 15px;
        font-weight: 600;
    }

    .leadership-vision p {
        font-size: 16px;
        color: #555;
        max-width: 800px;
        margin: auto;
        line-height: 1.8;
    }

/* ===== Leadership Values ===== */
.leadership-values {
    background: #f4f6f9;
    padding: 70px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-box {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

    .value-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        width: 100%;
        background: var(--primary-gradient);
    }

    .value-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.15);
    }

    .value-box h4 {
        font-size: 18px;
        color: var(--secondary-color);
        margin-bottom: 10px;
        font-weight: 600;
    }

    .value-box p {
        font-size: 14.5px;
        color: #555;
        line-height: 1.7;
    }

/* ===== Leadership Stats ===== */
.leadership-stats {
    background: var(--gradient);
    padding: 70px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

    .stats-grid h3 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 5px;
        color: white;
    }

    .stats-grid p {
        font-size: 14.5px;
        opacity: 0.9;
    }

/* ===== Managing Director Message ===== */
.md-message {
    background: #ffffff;
    padding: 70px 0;
    text-align: center;
}

    .md-message h2 {
        font-size: 30px;
        color: #222;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .md-message p {
        font-size: 16px;
        color: #555;
        max-width: 850px;
        margin: auto;
        line-height: 1.9;
        font-style: italic;
    }

    .md-message h5 {
        margin-top: 20px;
        font-size: 15px;
        color: var(--secondary-color);
        font-weight: 500;
    }

/* ===== Leadership CTA ===== */
.leadership-cta {
    background: var(--primary-gradient);
    padding: 70px 15px;
    text-align: center;
    color: #fff;
}

    .leadership-cta h2 {
        font-size: 32px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .leadership-cta p {
        font-size: 16px;
        margin-bottom: 25px;
        opacity: 0.95;
    }

.cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #ffffff;
    color: #007bff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .cta-btn:hover {
        background: #222;
        color: #ffffff;
        transform: translateY(-3px);
    }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .values-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .leadership-vision h2,
    .md-message h2,
    .leadership-cta h2 {
        font-size: 26px;
    }

    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

        .stats-grid h3 {
            font-size: 32px;
        }
}








    /*
history-section css*/


    .history-section {
        padding: 30px 15px;
        background: #f8f9fa;
    }

    .history-container {
        max-width: 1100px;
        margin: auto;
    }

    .history-intro {
        text-align: center;
        margin-bottom: 50px;
    }

        .history-intro h2 {
            font-size: 28px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .history-intro p {
            font-size: 15px;
            color: #555;
            max-width: 850px;
            margin: auto;
            line-height: 1.7;
        }

    /* ===== Timeline ===== */
    .timeline {
        position: relative;
        padding-left: 30px;
    }

        .timeline::before {
            content: "";
            position: absolute;
            left: 10px;
            top: 0;
            width: 3px;
            height: 100%;
            background: var(--primary-gradient);
        }

    .timeline-item {
        position: relative;
        margin-bottom: 40px;
        padding-left: 30px;
    }

        .timeline-item::before {
            content: "";
            position: absolute;
            left: -3px;
            top: 5px;
            width: 15px;
            height: 15px;
            background: var(--primary-gradient);
            border-radius: 50%;
        }

    .timeline-year {
        font-size: 18px;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .timeline-item h4 {
        font-size: 20px;
        margin-bottom: 8px;
        color: #333;
    }

    .timeline-item p {
        font-size: 14.5px;
        color: #555;
        line-height: 1.7;
    }

    /* ===== Highlights ===== */
    .history-highlights {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-top: 60px;
    }

    .highlight-box {
        background: #fff;
        padding: 25px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

        .highlight-box h3 {
            font-size: 22px;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .highlight-box p {
            font-size: 14.5px;
            color: #555;
            line-height: 1.6;
        }

    /* ===== Responsive ===== */

    @media (max-width: 992px) {
        .history-highlights {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .vm-hero h1 {
            font-size: 20px;
        }
        .vm-hero p {
            font-size: 13px;
        }
        .page-title {
            font-size: 20px!important;
        }

        .page-subtitle {
            font-size: 13px!important;
        }

        .history-highlights {
            grid-template-columns: 1fr;
        }

        .timeline {
            padding-left: 20px;
        }
    }





    /* ===== PAGE HERO ===== */
    .page-hero {
        padding: 30px 0;
        color: #fff;
        text-align: center;
        margin-top: 88px;
        background: var(--gradient);
    }

    .page-title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .page-subtitle {
        font-size: 18px;
        opacity: 0.95;
    }

    .breadcrumb {
        margin-top: 15px;
        font-size: 14px;
    }

        .breadcrumb a {
            color: #fff;
            text-decoration: none;
            opacity: 0.9;
        }












/* ===== Why Choose Us Section ===== */
.why-section {
    padding: 80px 15px;
    background: #f4f6f9;
}

.why-container {
    max-width: 1200px;
    margin: auto;
}

/* ===== Intro ===== */
.why-intro {
    text-align: center;
    margin-bottom: 60px;
}

    .why-intro h2 {
        font-size: 32px;
        color: #222;
        margin-bottom: 15px;
        font-weight: 600;
        position: relative;
    }

        .why-intro h2::after {
            content: "";
            width: 60px;
            height: 3px;
            background: #007bff;
            display: block;
            margin: 10px auto 0;
            border-radius: 2px;
        }

    .why-intro p {
        font-size: 16px;
        color: #555;
        max-width: 900px;
        margin: 20px auto 0;
        line-height: 1.8;
    }

/* ===== Grid ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== Cards ===== */
.why-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    /* Accent Line */
    .why-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary-gradient)
    }

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.15);
    }

    .why-card h4 {
        font-size: 18px;
        color: var(--primary-color);
        margin-bottom: 12px;
        font-weight: 600;
    }

    .why-card p {
        font-size: 14.8px;
        color: #555;
        line-height: 1.7;
    }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-intro h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .why-section {
        padding: 60px 15px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-intro h2 {
        font-size: 26px;
    }

    .why-intro p {
        font-size: 15px;
    }
}





/* ===== Services Section ===== */
.services-section {
    padding: 90px 15px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.services-container {
    max-width: 1200px;
    margin: auto;
}

/* ===== Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* ===== Service Card ===== */
.service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 30px 32px;
    position: relative;
    box-shadow: 0 18px 45px rgba(30, 41, 59, 0.10);
    transition: all 0.4s ease;
    overflow: hidden;
}

    /* Gradient Accent */
    .service-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 6px;
        background: var(--gradient);
    }

    .service-card:hover {
        transform: translateY(-14px);
        box-shadow: 0 28px 65px rgba(30, 41, 59, 0.18);
    }

/* ===== Icon ===== */
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.35);
}

    .service-icon svg {
        width: 34px;
        height: 34px;
    }

/* ===== Content ===== */
.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 18px;
}

/* ===== List ===== */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-list li {
        font-size: 14.5px;
        color: var(--text-color);
        margin-bottom: 8px;
        padding-left: 22px;
        position: relative;
    }

        .service-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--primary-color);
            font-size: 13px;
        }

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gradient);
    color: #fff;
    padding: 80px 15px;
    text-align: center;
}

    .cta-section h2 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .cta-section p {
        font-size: 16px;
        margin-bottom: 28px;
        opacity: 0.95;
    }

.cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #ffffff;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.35s ease;
}

    .cta-btn:hover {
        background: var(--dark-color);
        color: #ffffff;
        transform: translateY(-4px);
    }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 65px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 24px;
    }

    .cta-section h2 {
        font-size: 26px;
    }
}






/* ===== SERVICES DETAIL SECTION ===== */
.services-detail {
    padding: 20px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

    .section-header h2 {
        font-size: 34px;
        font-weight: 700;
        color: var(--dark-color);
    }

.section-intro {
    color: var(--text-color);
    font-size: 16px;
    max-width: 700px;
    margin: 12px auto 0;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 10px auto 0;
    border-radius: 4px;
}

/* ===== GRID ===== */
.services-grid-detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ===== CARD ===== */
.service-card-detail {
    background: #ffffff;
    border-radius: 22px;
    padding: 42px 32px 38px;
    position: relative;
    box-shadow: 0 25px 55px rgba(30, 41, 59, 0.15);
    transition: all 0.45s ease;
    overflow: hidden;
}

    /* Left Accent Bar */
    .service-card-detail::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: var(--gradient);
    }

    .service-card-detail:hover {
        transform: translateY(-14px);
        box-shadow: 0 35px 75px rgba(30, 41, 59, 0.22);
    }

/* ===== Number ===== */
.service-number {
    position: absolute;
    top: 22px;
    right: 25px;
    font-size: 46px;
    font-weight: 800;
    color: rgba(102, 126, 234, 0.18);
}

/* ===== Icon ===== */
.service-icon-large {
    width: 78px;
    height: 78px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.45);
}

    .service-icon-large svg {
        width: 32px;
        height: 32px;
        stroke: #ffffff;
    }

/* ===== Content ===== */
.service-card-detail h3 {
    font-size: 21px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark-color);
}

.service-card-detail p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 18px;
    line-height: 1.75;
}

/* ===== Features ===== */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-features li {
        font-size: 14.5px;
        color: var(--text-color);
        margin-bottom: 8px;
        padding-left: 22px;
        position: relative;
    }

        .service-features li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--primary-color);
            font-weight: 600;
        }

/* ===== CTA ===== */
.cta-section {
    background: var(--gradient);
    padding: 20px 0;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: var(--primary-color);
    padding: 14px 42px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
}

    .cta-button:hover {
        background: var(--dark-color);
        color: #ffffff;
        transform: translateY(-4px);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .services-grid-detail {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .services-grid-detail {
        grid-template-columns: 1fr;
    }

    .service-card-detail {
        padding: 36px 26px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}




/* ===== PROFESSIONAL LAYOUT SYSTEM ===== */
.section {
    padding: 30px 0;
}

    .section.light {
        background: #ffffff;
    }

    .section.soft {
        background: #f8f9fb;
    }

    .section.gradient-soft {
        background: linear-gradient( 135deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.06) );
    }

/* ===== TEXT ===== */
.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--dark-color);
}

.section-intro {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
}

/* ===== CARD ===== */
.card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.12);
    transition: 0.3s ease;
}

    .card:hover {
        transform: translateY(-6px);
    }

/* ===== ICON ===== */
.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
    font-size: 26px;
}

/* ===== GRID ===== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}




/*enterprises css*/


.vision-mission-section {
    padding: 30px 20px;
    background: var(--gradient-light);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.vm-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .vm-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(79, 172, 254, 0.25);
    }

    .vm-card h2 {
        font-size: 1.8rem;
        color: var(--dark-color);
        margin-bottom: 20px;
        font-weight: 700;
    }

    .vm-card p {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--text-color);
    }

.vm-vision {
    border-left: 5px solid var(--primary-color);
}

.vm-mission {
    border-left: 5px solid var(--secondary-color);
}

    .vm-mission ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .vm-mission li {
        position: relative;
        padding: 8px 0 8px 30px;
        font-size: 0.95rem;
        color: var(--text-color);
        line-height: 1.6;
    }

        .vm-mission li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
    .vm-card {
        padding: 25px 20px;
    }

        .vm-card h2 {
            font-size: 1.6rem;
        }

        .vm-card p,
        .vm-mission li {
            font-size: 0.95rem;
        }
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
        gap: 30px;
    }

    .vm-card {
        padding: 20px 15px;
    }

        .vm-card h2 {
            font-size: 1.5rem;
        }

        .vm-card p,
        .vm-mission li {
            font-size: 0.9rem;
        }
}




/* Section Styles */
.core-values-section {
    padding: 30px 20px;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--dark-color);
    }

    .section-header .underline {
        width: 60px;
        height: 4px;
        background: var(--primary-color);
        margin: 10px auto 0;
        border-radius: 2px;
    }

/* Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* Value Card */
.value-card {
    background: linear-gradient(145deg, #ffffff 0%, var(--gray-light) 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.12);
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(79, 172, 254, 0.2);
    }

/* Icon */
.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

/* Text */
.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 25px 15px;
    }

        .value-card h3 {
            font-size: 1.2rem;
        }

        .value-card p {
            font-size: 0.9rem;
        }
}





/* Section Styles */
.solar-specs-section {
    padding: 30px 20px;
    background: linear-gradient(180deg, #ffffff 0%, var(--gray-light) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

    .section-header h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--dark-color);
    }

    .section-header .underline {
        width: 60px;
        height: 4px;
        background: var(--primary-color);
        margin: 10px auto 15px;
        border-radius: 2px;
    }

    .section-header .section-intro {
        color: #6b7280;
        font-size: 1rem;
    }

/* Grid */
.specs-grid {
    display: grid;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Spec Card */
.spec-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(79, 172, 254, 0.1);
    border-left: 4px solid var(--primary-color);
    display: flex;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .spec-card:nth-child(even) {
        border-left-color: var(--secondary-color);
    }

    .spec-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(79, 172, 254, 0.2);
    }

/* Number Box */
.spec-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00f2fe 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

/* Spec Content */
.spec-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.spec-content p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .spec-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .spec-number {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .solar-specs-section {
        padding: 60px 15px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .spec-content h4 {
        font-size: 1.2rem;
    }

    .spec-content p {
        font-size: 0.9rem;
    }
}




