﻿* {
    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: 'DM Serif Display';
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    opacity: 0;
    animation: fadeInPage 0.6s ease-in forwards;
    font-family: 'DM Serif Display' !important;
}

@keyframes fadeInPage {
    to {
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Header Bar */
.top-header {
    color: white;
    padding: 6px 0;
    background: #402d00;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-header-left {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .header-item.welcome-text {
        font-weight: 600;
    }

    .header-item svg {
        width: 18px;
        height: 18px;
        color: #ffe9c6;
    }

    .header-item span {
        color: #ffffff;
        font-weight: 500;
        font-family: "DM Sans", sans-serif;
    }

    .header-item a {
        color: white;
        text-decoration: none;
        transition: opacity 0.3s;
        font-weight: 500;
        text-transform: capitalize;
        font-family: "DM Sans", sans-serif;
    }

        .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: 9px;
    transition: transform 0.3s ease;
    color: #422e02;
}

@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: 14px;
    font-weight: 500;
    color: #422e02;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    text-transform: uppercase;
    /* font-family: 'Poppins'; */
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mega-menu-column ul li {
        margin-bottom: 0px;
        border-bottom: 1px dashed #dedede;
    }

        .mega-menu-column ul li a {
            display: flex;
            align-items: baseline;
            gap: 5px;
            padding: 8px 0;
            text-decoration: none;
            color: #333;
            border-radius: 6px;
            transition: all 0.2s ease;
            font-size: 14px;
            font-weight: 500;
            text-transform: capitalize;
            font-family: "DM Sans", sans-serif;
        }

            /* Icon styling */
            .mega-menu-column ul li a i {
                font-size: 13px;
                color: #422e02;
                min-width: 16px;
            }

/* Text container */
.menu-text {
    display: flex;
    flex-direction: column; /* title upar, description neeche */
}

    /* Title */
    .menu-text span {
        font-weight: 500;
        line-height: 1.2;
        font-size: 14px;
        font-family: "DM Sans", sans-serif;
    }

    /* Description */
    .menu-text small {
        font-size: 12px;
        color: #666;
        line-height: 25px;
    }

/*.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: #3a3a3a;
}

/*menu style end */







/* Navigation */
.navbar {
    position: fixed;
    top: 41px;
    left: 0;
    right: 0;
    background: rgb(255 255 255);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(147, 51, 234, 0.1);
    z-index: 1000;
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
    padding-top: 5px;
}

    .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: 2.2rem;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #302e2e;
    font-weight: 500;
    font-size: 16PX;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
}

    .nav-link:hover {
        color: #b18a2b;
    }

    .nav-link.active {
        color: #a97600;
        font-weight: 500;
    }

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0px;
}

.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: #023742;
    color: white;
    padding: 7px 16px 8px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: capitalize;
}

    .phone-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px var(--primary-gradient);
        background: #422e02;
    }

/* 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 ================= */

:root {
    --hero-height: 100vh;
    --overlay-color: rgba(255, 255, 255, 0.7);
    --container-max: 1400px;
    --side-padding: clamp(16px, 5vw, 80px);
    --transition-speed: 0.7s;
    /*    --primary-color: #ff9f1c;
    --secondary-color: #1a73e8;*/
    --text-dark: #111;
    --text-medium: #1f2937;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* =====================================================
           HERO SLIDER BASE
        ===================================================== */
.hero-slider {
    position: relative;
    height: var(--hero-height);
    min-height: 500px;
    max-height: 1200px;
    background: #000;
    overflow: hidden;
    touch-action: pan-y;
}

/* =====================================================
           BACKGROUND VIDEO
        ===================================================== */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-slider.active-video .bg-video {
    transform: scale(1);
}

/* =====================================================
           RGBA OVERLAY
        ===================================================== */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.75) 100%);*/
    z-index: 1;
}

/* =====================================================
           SLIDES
        ===================================================== */
.slides {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.slide {
    position: absolute;
    top: 38px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility 0s linear var(--transition-speed);
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgb(248 236 198) 0%, rgb(255 255 255) 50%, rgb(212 192 144) 100%);
}

    .slide.active {
        opacity: 1;
        visibility: visible;
        transition-delay: 0s;
    }

/* =====================================================
           CONTENT WRAPPER
        ===================================================== */
.content {
    /* width: 100%; */
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--side-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: clamp(20px, 4vw, 80px); */
}

/* =====================================================
           TEXT CONTENT ANIMATIONS
        ===================================================== */
.text-content {
    flex: 1;
    max-width: 620px;
    padding: 20px 0;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: 0.1s;
}

.slide.active .text-content {
    transform: translateY(0);
    opacity: 1;
}

/* Title Animation */
.hero-title {
    font-family: "DM Sans", sans-serif;
    font-size: 45px;
    line-height: 50px;
    margin-bottom: clamp(12px, 1.5vw, 24px);
    color: var(--text-dark);
    font-weight: 800;
    transform: translateX(-30px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
    font-family: 'DM Serif Display';
    text-transform: uppercase;
}

.slide.active .hero-title {
    transform: translateX(0);
    opacity: 1;
}

/* Paragraph Animations */
.text-content p {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: clamp(12px, 1.5vw, 20px);
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

    .text-content p:nth-child(2) {
        transition-delay: 0.3s;
    }

    .text-content p:nth-child(3) {
        transition-delay: 0.4s;
    }

.slide.active .text-content p {
    transform: translateX(0);
    opacity: 1;
}

/* =====================================================
           CTA BUTTON ANIMATION
        ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(12px, 1.2vw, 16px) clamp(24px, 2.5vw, 40px);
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    font-size: clamp(14px, 1.1vw, 16px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border: none;
    cursor: pointer;
    margin-top: 10px;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
}

.slide.active .btn {
    transform: translateY(0) scale(1);
    opacity: 1;
    transition-delay: 0.6s;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 159, 28, 0.3);
    background: linear-gradient(135deg, #ff9f1c, #ff8c00);
}

/* =====================================================
           IMAGE CONTENT ANIMATIONS
        ===================================================== */
.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 520px;
    transform: translateX(40px) scale(0.95);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}

.slide.active .image-content {
    transform: translateX(0) scale(1);
    opacity: 1;
}

/* Reverse slide image animation */
.slide.reverse .image-content {
    transform: translateX(-40px) scale(0.95);
}

.slide.reverse.active .image-content {
    transform: translateX(0) scale(1);
}

.image-content img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 800px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    border-radius: 10px;
    padding: 10px;
}

/* =====================================================
           REVERSED SLIDES
        ===================================================== */
.slide.reverse .content {
    flex-direction: row-reverse;
}

/* =====================================================
           NAVIGATION BUTTONS
        ===================================================== */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgb(255 255 255);
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    backdrop-filter: blur(5px);
    opacity: 0;
    animation: fadeInButtons 0.5s ease-out 1s forwards;
}

@keyframes fadeInButtons {
    to {
        opacity: 1;
    }
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-btn i {
    font-size: 15px;
    color: #333;
    transition: transform 0.3s ease;
}

.nav-btn:hover i {
    transform: scale(1.2);
}

.prev {
    left: clamp(15px, 3vw, 40px);
}

.next {
    right: clamp(15px, 3vw, 40px);
}

/* =====================================================
           DOTS NAVIGATION
        ===================================================== */
.dots-container {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
    padding: 0 15px;
    opacity: 0;
    animation: fadeInDots 0.5s ease-out 1.2s forwards;
}

@keyframes fadeInDots {
    to {
        opacity: 1;
    }
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
}

    .dot:hover {
        background: rgba(0, 0, 0, 0.3);
        transform: scale(1.2);
    }

    .dot.active {
        background: #ad7900;
        transform: scale(1.3);
        border-color: rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 15px rgba(255, 159, 28, 0.5);
    }

        .dot.active::after {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border-radius: 50%;
            border: 1px solid var(--primary-color);
            animation: pulse 2s infinite;
        }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* =====================================================
           MEDIA QUERIES
        ===================================================== */

/* Large tablets and small laptops */
@media (max-width: 1024px) {
    .hero-slider {
        height: 90vh;
        min-height: 600px;
    }

    .content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 40px;
    }

    .slide.reverse .content {
        flex-direction: column;
    }

    .text-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .image-content {
        max-width: 450px;
    }

        .image-content img {
            max-height: 350px;
        }

    .dots-container {
        bottom: 30px;
    }

    /* Adjust animations for mobile */
    .slide.reverse .image-content {
        transform: translateY(40px) scale(0.95);
    }

    .slide.reverse.active .image-content {
        transform: translateY(0) scale(1);
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hero-slider {
        height: 85vh;
        min-height: 550px;
    }

    .hero-title {
        font-size: clamp(24px, 5vw, 32px);
    }

    .text-content p {
        font-size: clamp(14px, 1.5vw, 16px);
    }

    .image-content {
        max-width: 380px;
    }

        .image-content img {
            max-height: 300px;
        }

    .btn {
        padding: 12px 28px;
        font-size: 15px;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
    }
}

/* Large phones */
@media (max-width: 640px) {
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }

    .content {
        padding: 0 20px;
        gap: 30px;
    }

    .image-content {
        max-width: 320px;
    }

        .image-content img {
            max-height: 250px;
        }

    .dots-container {
        bottom: 20px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .nav-btn {
        width: 46px;
        height: 46px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-slider {
        height: 75vh;
        min-height: 450px;
    }

    .content {
        padding: 0 10px;
        gap: 16px;
    }

    .text-content {
        padding: 10px 0;
    }

    .hero-title {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .text-content p {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.5;
    }

    .image-content {
        max-width: 280px;
        margin-top: 10px;
    }

        .image-content img {
            max-height: 200px;
        }

    .btn {
        padding: 10px 24px;
        font-size: 14px;
        margin-top: 5px;
    }

    .dots-container {
        bottom: 15px;
    }

    .nav-btn {
        display: none;
    }

    .hero-slider:hover .nav-btn {
        display: flex;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .hero-slider {
        height: 70vh;
        min-height: 420px;
    }

    .image-content {
        display: none;
    }

    .text-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 20px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    .hero-slider {
        max-height: 1000px;
    }

    .content {
        max-width: 1600px;
    }

    .image-content {
        max-width: 600px;
    }

        .image-content img {
            max-height: 450px;
        }
}

/* Landscape orientation */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
        min-height: 400px;
    }

    .content {
        flex-direction: row;
        gap: 40px;
    }

    .slide.reverse .content {
        flex-direction: row-reverse;
    }

    .text-content {
        max-width: 55%;
    }

    .image-content {
        max-width: 40%;
    }

    .dots-container {
        bottom: 15px;
    }
}















/* 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: 35px;
    margin-bottom: 15px;
    color: #fb7600;
    background: #ffffff;
    padding: 17px;
    border-radius: 50%;
    height: 80px;
    line-height: 45px;
    width: 80px;
}

.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: 50px;
        padding-right: 50px;
    }
}

/* 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: 14px;
    line-height: 30px;
    color: #334155;
    margin-bottom: 30px;
    font-family: 'Poppins';
    font-weight: 400;
}

.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: #ffe9ac;
        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: #402d00;
    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: #fff;
}

.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: #402d00;
    color: #e5e7eb;
    padding: 40px 1px 18px;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 25px;
}

/* 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: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin-bottom: 10px;
    color: #fcaf33;
    position: relative;
    font-family: 'DM Sans';
}

    .footer h4::after {
        content: '';
    }

/* LINKS & DIVISIONS */
.footer-links ul {
    /* display: grid; */
    /* grid-template-columns: repeat(2, 1fr); */
    /* column-gap: 34px; */
    /* row-gap: 9px; */
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 30px;
}

    .footer-links ul li {
        text-align: left;
    }

.footer-links a {
    color: white;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
    font-family: 'Poppins';
}

    .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: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        text-align: center;
        border-radius: 50%;
        padding: 10px 3PX 10PX 11PX;
        background: rgb(149 0 0 / 71%);
        color: #ffffff;
        transition: all 0.3s ease;
        text-decoration: none;
        justify-content: CENTER;
    }

        .footer-socials a:hover {
            background: linear-gradient(135deg, #f59e0b, #6366f1);
            transform: translateY(-4px);
        }

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
    display: flex;
    justify-content: center;
    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: 0px;
}


.footer i {
    margin-right: 8px;
    color: white;
    font-size: 13px;
}

.footer-links a i {
    margin-right: 6px;
    font-size: 12px;
}

.footer-contact i {
    width: 10px;
}








/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #402d00;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgb(64 45 0);
    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, #1a2866 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, #402d00, #402d00);
    }

    .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: 16px;
    color: #402d00;
    font-weight: 500;
    font-family: 'Poppins' !important;
    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: linear-gradient(to right, #fefbf2, #f9eecb) !important;
    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;
    border: 1px solid #b29651;
}

    /* .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: #b29651;
    }

.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: #6b7280;
        border-radius: 50%;
    }

.timeline-year {
    font-size: 18px;
    font-weight: 600;
    color: #b98200;
    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: 122px;
    background: #402d00;
}

.page-title {
    font-size: 30px;
    font-weight: 600;
    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;
    border: 1px solid #d9c79c;
}

    /* 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: #111;
        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: linear-gradient(135deg, #402d00, #3f2c00);
        border: 1px solid #d9c79c;
    }

    .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: linear-gradient(135deg, #2596BE, #1c2b36);
    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;
}

/* ===== 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: 4px;
        height: 100%;
        background: #402d0033;
    }

    .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: 70px;
    height: 70px;
    background: #7e6316;
    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: 17px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #000000;
    font-family: 'DM Serif Display';
}

.service-card-detail p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 18px;
    line-height: 1.75;
    font-family: 'DM Sans';
}

/* ===== Features ===== */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-features li {
        font-size: 14px;
        color: var(--text-color);
        margin-bottom: 8px;
        padding-left: 22px;
        position: relative;
        font-family: 'Poppins';
        font-weight: 400;
    }

        .service-features li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: #763200;
            font-weight: 600;
        }

/* ===== CTA ===== */
.cta-section {
    background: #422e02;
    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: 28px;
        color: var(--text-color);
        font-family: 'Poppins';
        font-weight: 400;
        text-align: left;
    }

.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;
    border: 1px solid #e1b03b;
}

    .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;
    background: #402d00;
}

/* 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 #402d00;
    display: flex;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .spec-card:nth-child(even) {
        border-left-color: #402d00;
    }

    .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, #402d00 0%, #cdb369 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;
    }
}







/*client section css start */



/* =====================================================
           CLIENTS SECTION STYLING
        ===================================================== */
.clients-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.clients-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: radial-gradient(circle at 20% 80%, var(--primary-color) 0%, transparent 50%), radial-gradient(circle at 80% 20%, var(--secondary-color) 0%, transparent 50%);
    z-index: 0;
}

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

    .section-subtitle::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 30px;
        height: 2px;
        background: var(--primary-color);
        transform: translateY(-50%);
    }

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

    .section-title span {
        color: var(--primary-color);
        position: relative;
    }

        .section-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(255, 107, 0, 0.2);
            z-index: -1;
        }

.section-description {
    font-size: 18px;
    color: black;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
           CLIENTS SLIDER CONTAINER
        ===================================================== */
.clients-slider-container {
    position: relative;
    padding: 5px 0;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 60px;
    padding: 20px 0;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

    .slider-track:hover {
        animation-play-state: paused;
    }

/* Two rows of logos */
.logo-row {
    display: flex;
    gap: 60px;
    flex-shrink: 0;
}

/* Duplicate for seamless loop */
.slider-track .logo-row:nth-child(2) {
    animation-delay: -15s;
}

/* =====================================================
           CLIENT LOGO CARD
        ===================================================== */
.client-logo-card {
    /*    background: var(--white);*/
    border-radius: 20px;
    padding: 30px;
    min-width: 170px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .client-logo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 0;
    }

    .client-logo-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
    }

        .client-logo-card:hover::before {
            opacity: 0.05;
        }

    .client-logo-card img {
        max-width: 100%;
        max-height: 70px;
        object-fit: contain;
        /*        filter: grayscale(100%) brightness(0.8);*/
        transition: var(--transition);
        position: relative;
        z-index: 1;
    }

    .client-logo-card:hover img {
        /*        filter: grayscale(0%) brightness(1);*/
        transform: scale(1.1);
    }

/* Logo label on hover */
.client-logo-label {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.client-logo-card:hover .client-logo-label {
    bottom: 15px;
    opacity: 1;
}

/* =====================================================
           STATS SECTION
        ===================================================== */
.client-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 100px;
    padding: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3a6b 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

    .client-stats::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="white" opacity="0.05"/></svg>');
    }

.stat-item {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    =: 2px solid magenta;
}

    .stat-number span {
        font-size: 24px;
    }

.stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
           TESTIMONIAL SLIDER
        ===================================================== */
.testimonials-section {
    margin-top: 10px;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/*    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 20px;
        right: 40px;
        font-size: 120px;
        color: rgba(255, 107, 0, 0.1);
        font-family: serif;
        line-height: 1;
    }*/

.testimonial-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* Testimonial Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 0px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.3;
}

    .testimonial-dot.active {
        background: var(--primary-color);
        opacity: 1;
        transform: scale(1.2);
    }

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #e2e8f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-dark);
}

    .testimonial-nav-btn:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
        transform: translateY(-3px);
    }

/* =====================================================
           ANIMATIONS
        ===================================================== */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 5 - 60px * 5));
    }
}

/* =====================================================
           RESPONSIVE DESIGN
        ===================================================== */
@media (max-width: 1200px) {
    .client-logo-card {
        min-width: 180px;
        height: 130px;
        padding: 25px;
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-180px * 5 - 60px * 5));
        }
    }
}

@media (max-width: 992px) {
    .clients-section {
        padding: 80px 20px;
    }

    .client-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px;
    }

    .client-logo-card {
        min-width: 160px;
        height: 120px;
        padding: 20px;
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-160px * 5 - 60px * 5));
        }
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-description {
        font-size: 16px;
        padding: 0 20px;
    }

    .client-stats {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

    .slider-track {
        gap: 40px;
    }

    .logo-row {
        gap: 40px;
    }

    .client-logo-card {
        min-width: 140px;
        height: 110px;
        padding: 15px;
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-140px * 5 - 40px * 5));
        }
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-content {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .clients-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .slider-track {
        gap: 30px;
    }

    .logo-row {
        gap: 30px;
    }

    .client-logo-card {
        min-width: 120px;
        height: 100px;
        padding: 15px;
    }

        .client-logo-card img {
            max-height: 40px;
        }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-120px * 5 - 30px * 5));
        }
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-content {
        font-size: 15px;
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 400px) {
    .client-logo-card {
        min-width: 110px;
        height: 90px;
        padding: 12px;
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-110px * 5 - 30px * 5));
        }
    }
}

/* =====================================================
           UTILITY CLASSES
        ===================================================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* =====================================================
           CTA SECTION
        ===================================================== */
.cta-section {
    text-align: center;
    margin-top: 80px;
}

.cta-title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #ffffff;
    color: #000000;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-xl);
        gap: 15px;
    }



/*client section css end */




.about-section {
    padding: 30px 0;
    background: #f8f9fc;
}

.section-header {
    text-align: left;
    margin-bottom: 10px;
}

.section-tag {
    font-size: 14px;
    font-weight: 600;
    color: #0d6efd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0;
    font-family: "Righteous", sans-serif;
    text-transform: uppercase;
}

.section-intro {
    color: #666;
    font-size: 16px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro {
    font-size: 13px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Highlight Cards */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.highlight-card {
    background: #ffffff;
    padding: 13px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    text-align: center;
    border: 1px solid #d9c79c;
}

    .highlight-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

.icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #402d00, #b18e8e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.about-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    background: linear-gradient(90deg, rgb(248 236 198) 0%, rgb(255 255 255) 50%, rgb(212 192 144) 100%);
}

.rcls {
    color: #b19551;
    font-weight: 800;
    font-family: 'DM Serif Display' !important;
}


/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }
}


/* Section Styling */
.industry-sectors {
    /* padding: 50px 20px; */
    background: #f8f9fc;
}



/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 44px;
}

    .section-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1c1c1c;
        margin-bottom: 8px;
    }

.section-intro {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}

/* Grid Layout */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}

/* Card Design */
.sector-card {
    background: #ffffff;
    padding: 20px 20px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

    .sector-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    }

/* Icon Styling */
.sector-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #427775, #2596BE);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    transition: 0.3s ease;
}

.sector-card:hover .sector-icon {
    transform: rotateY(180deg);
}

/* Card Text */
.sector-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #222;
    font-weight: 600;
    font-family: 'Poppins';
}

.sector-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }

    .sector-card {
        padding: 30px 20px;
    }
}



.sector-card img {
    width: 100%;
}








/* ==============================
   OUR DIVISIONS SECTION
=================================*/

.divisions {
/*    padding: 80px 0;*/
    background: linear-gradient(to right, #fefbf2, #f9eecb);
    font-family: 'Segoe UI', sans-serif;
}


/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1c2b36;
        margin-bottom: 10px;
    }

    .section-header .underline {
        width: 70px;
        height: 4px;
        background: linear-gradient(90deg, #2596BE, #1c2b36);
        margin: 12px auto;
        border-radius: 4px;
    }

.section-subtitle {
    font-size: 16px;
    color: #6c7a89;
    max-width: 600px;
    margin: auto;
}

/* Grid Layout */
.division-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

/* Division Card */
.division-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    /* Gradient Hover Border Effect */
    .division-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #2596BE, #1c2b36);
        transition: 0.4s ease;
    }

    .division-card:hover::before {
        left: 0;
    }

    /* Hover Animation */
    .division-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2596BE, #1c2b36);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 15px rgba(37, 150, 190, 0.3);
}

.card-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Tagline */
.card-tagline {
    font-size: 14px;
    color: #2596BE;
    font-weight: 600;
    margin-bottom: 15px;
}

/* List */
.division-card ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

    .division-card ul li {
        font-size: 14px;
        color: #555;
        margin-bottom: 8px;
    }

/* Explore Link */
.card-link {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #1c2b36;
    transition: 0.3s ease;
}

.division-card:hover .card-link {
    color: #2596BE;
    letter-spacing: 0.5px;
}

/* ==============================
   Responsive Improvements
=================================*/

@media (max-width: 992px) {
    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .divisions {
        padding: 60px 0;
    }

    .division-card {
        padding: 25px;
    }

    .card-header h3 {
        font-size: 16px;
    }
}






/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

    .section-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1e293b;
    }



    .section-header p {
        max-width: 700px;
        margin: 15px auto 0;
        color: #64748b;
        font-size: 16px;
        line-height: 1.6;
    }

/* GRID */
.division-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, -1fr));
    gap: 24px;
}

/* CARD */
.division-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    min-height: 320px;
}

    .division-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        border-color: #b1944d;
    }

/* TOP AREA */
.card-top {
    margin-bottom: 4px;
}

.card-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.card-top h3 {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
    font-family: 'DM Serif Display';
}

.card-tagline {
    font-size: 14px;
    color: #0f766e;
    font-weight: 500;
    margin-bottom: 18px;
}

/* LIST */
.division-card ul {
    padding-left: 0px;
    margin-bottom: 25px;
}

    .division-card ul li {
        font-size: 14px;
        margin-bottom: 8px;
        color: #475569;
    }

/* FOOTER */
.card-footer {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-top: auto;
    transition: 0.3s;
    font-family: 'Poppins';
    padding: 8px;
    background: #b79950;
    text-align: center;
    border-radius: 54px;
}

.division-card:hover .card-footer {
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .divisions {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .division-card {
        padding: 22px;
    }
}




.clients-section {
/*    padding: 80px 0;*/
    background: #f9fbff;
}

/* Responsive Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Logo Card */
.client-logo-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 10px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 120px; /* Equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #b29651;
    background: #ffffff;
}

    .client-logo-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    /* Equal Logo Size */
    .client-logo-card img {
        height: 100px; /* Fixed equal logo height */
        width: 100%;
        object-fit: contain;
        margin-bottom: 12px;
    }

/* Label */
.client-logo-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}


.quick-stats-banner {
    background: #f8f9fa; /* Light gray background */
/*    padding: 80px 0;*/
    font-family: 'Poppins', sans-serif;
}

.quick-header {
    text-align: center;
    margin-bottom: 60px;
}

    .quick-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 10px;
        position: relative;
    }

        .quick-header h2::after {
            content: '';
            width: 60px;
            height: 4px;
            background: #427775;
            display: block;
            margin: 10px auto 0;
            border-radius: 2px;
        }

    .quick-header .quick-intro {
        font-size: 1.1rem;
        color: #555;
    }

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.stat-item {
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgb(0 0 0 / 8%);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(to right, #402d00, #402d00);
    box-shadow: rgb(255 255 255) 3px 3px;
    border: 1px solid #ffffff;
}


.contact {
/*    padding: 80px 0;*/
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: #3e320a;
    }

.underline {
    width: 60px;
    height: 4px;
    background: #007bff;
    margin: 10px auto;
    border-radius: 2px;
}

.section-subtitle {
    color: #555;
    margin-top: 10px;
}

/* Contact Content Layout */
.contact-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Contact Info */
.contact-info {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #b19548;
}

    .info-card i {
        font-size: 28px;
        color: #fb7600;
        margin-bottom: 15px;
    }

    .info-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #111;
    }

    .info-card p {
        color: #555;
        margin: 2px 0;
    }

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 25px rgba(0,0,0,0.1);
    }

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

    .contact-form .form-group {
        margin-bottom: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 15px;
        transition: border-color 0.3s, box-shadow 0.3s;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #007bff;
            box-shadow: 0 0 8px rgba(0,123,255,0.2);
            outline: none;
        }

.submit-btn {
    background: #402d00;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

    .submit-btn:hover {
        background: #0056b3;
        transform: translateY(-2px);
    }

/* Responsive */
@media (max-width: 991px) {
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
}



.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}






.footer {
    background: linear-gradient(rgb(0 0 0), rgb(0 0 0 / 86%)), url(https://t3.ftcdn.net/jpg/05/08/74/68/360_F_508746888_tl2EUHrIm1NpPBcwLufaAzbMqNO2kqwR.jpg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    color: #f0f0f0;
    padding: 60px 0 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Common Container */
.common-container {
    width: 90%;
    margin: 0 auto;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Brand */
.footer-brand .footer-logo {
    width: 180px;
    margin-bottom: 6px;
}

.footer-brand p {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Social Icons */
.footer-socials a {
    display: inline-block;
    margin-right: 9px;
    color: #ffffff;
    background-color: #9f7510;
    width: 35px;
    height: 35px;
    line-height: 14px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .footer-socials a:hover {
        background-color: #ff7f50; /* Accent color on hover */
        color: #fff;
    }

/* Footer Links */
.footer-links h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
    font-family: 'Poppins';
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

    .footer-links ul li {
        margin-bottom: 5px;
    }

        .footer-links ul li a {
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .footer-links ul li a:hover {
                color: #ff7f50; /* Accent hover */
            }

/* Footer Contact */
.footer-contact h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
    font-family: 'Poppins';
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-contact i {
    margin-right: 10px;
    color: #f7ae00;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 14px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}


.page-hero {
    position: relative;
    padding: 30px 0;
    color: #fff;
    text-align: center;
    margin-top: 120px;
    background: url("https://shiyawebtech.com/wp-content/uploads/2025/08/banner1-1-1536x680.webp");
    background-size: cover;
    background-position: center;
}

    .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
/*        background: rgb(4 25 44 / 86%);*/
    }

    .page-hero * {
        position: relative;
        z-index: 2;
    }
