* {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: #000;
            color: #fff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-left.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-scale {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-scale.animated {
            opacity: 1;
            transform: scale(1);
        }

        .animate-rotate {
            opacity: 0;
            transform: rotate(-5deg) scale(0.9);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-rotate.animated {
            opacity: 1;
            transform: rotate(0) scale(1);
        }

        .animate-fade {
            opacity: 0;
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-fade.animated {
            opacity: 1;
        }

        /* Stagger delays */
        .delay-100 {
            transition-delay: 0.1s;
        }

        .delay-200 {
            transition-delay: 0.2s;
        }

        .delay-300 {
            transition-delay: 0.3s;
        }

        .delay-400 {
            transition-delay: 0.4s;
        }

        .delay-500 {
            transition-delay: 0.5s;
        }

        .delay-600 {
            transition-delay: 0.6s;
        }

        .delay-700 {
            transition-delay: 0.7s;
        }

        .delay-800 {
            transition-delay: 0.8s;
        }

        /* Hover animations */
        .hover-lift {
            transition: transform 0.3s ease;
        }

        .hover-lift:hover {
            transform: translateY(-5px);
        }

        .hover-glow {
            transition: box-shadow 0.3s ease;
        }

        .hover-glow:hover {
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
        }

        /* Keyframes for initial load animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 6px 16px rgba(255, 107, 0, 0.3);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
            }
        }

        @keyframes zoomIn {
            from {
                transform: scale(1);
            }

            to {
                transform: scale(1.1);
            }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }

            from {
                opacity: 0;
                transform: translateX(100px);
            }
        }

        @keyframes cardFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }
/* ====================== HERO SECTION ====================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    padding-top: 80px; /* Add padding to account for fixed nav height */
}

.skyline-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/image/1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 0;
   
}
.animate-right {
    opacity: 0;
    transform: translateX(100px); /* Start off-screen to the right */
    transition: all 0.6s ease-out; /* Default speed */
}

.animate-right.animated {
    opacity: 1;
    transform: translateX(0); /* Slide in from right */
}
.right-image {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 28%;
    height: 90%;
    background-image: url('/image/2.png');
    background-size: cover;
    z-index: 5;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 90px;
    clip-path: polygon(100% 0%, 0% 0%, -1% 6%, 6% 29%, 12% 47%, 23% 71%, 31% 80%,
            48% 87%, 127% 98%, 100% 100%);
    opacity: 0;
    animation: slideInRight 1s 0.5s ease forwards;
}

/* ——— ULTRA RESPONSIVE NAVBAR (STICKY, SHOW ON SCROLL UP) ——— */
.nav-container {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px 5%; /* Changed to percentage for better responsiveness */
 
    transition: all 0.4s ease;
    position: fixed; /* Changed to fixed for sticky behavior */
    top: 0;
    left: 0;
    width: 100%;
    background: transparent; /* Initially transparent */
    backdrop-filter: none; /* Initially no blur */
    pointer-events: auto;
    transform: translateY(0); /* Initial position */
}

/* Add background and blur when scrolled */
 .nav-container.scrolled {
            background: linear-gradient(0deg, rgb(0 0 0 / 30%), #000000ad) !important;
        backdrop-filter: blur(5px);
    }
/* Hide nav on scroll down */
.nav-container.nav-hidden {
    transform: translateY(-100%);
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    gap: 25px; /* Consolidated gap value */
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    position: relative; /* For absolute positioning of dropdowns */
}

.nav-menu::before {
    content: '|';
    opacity: 0.6;
    margin-right: 8px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14.5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: calc(0.2s * var(--i, 1));
    cursor: pointer;
}



.nav-menu a:hover {
    color: #EBB359;
    opacity: 0.7;
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown-container {
    position: relative;
}

.dropdown-trigger {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important; /* Adjust gap for arrow */
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.dropdown-container:hover .dropdown-arrow {
    transform: rotate(180deg);
}
.dropdown {
    display: none;
    position: absolute;
    top: 100%; /* Snug to the bottom of parent */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px); /* Increased blur for a more premium glass effect */
    border: 1px solid rgba(252, 174, 7, 0.2); /* Subtle golden border for elegance */
    border-radius: 12px; /* Slightly larger radius for softer look */
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.25), /* Deeper shadow for depth */
        0 0 0 1px rgba(252, 174, 7, 0.1); /* Inner glow effect */
    list-style: none;
    margin: 0; /* Removed top margin to eliminate gap */
    padding: 12px 0; /* Slightly more padding for breathing room */
    min-width: 220px;
    max-width: 280px; /* Added max-width to prevent excessive expansion */
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateX(-50%) translateY(-10px) scale(0.95); /* Added subtle scale for entry */
    box-sizing: border-box; /* Added to contain all padding/borders within width */
    overflow: hidden; /* Prevent any bleed outside the container */
}

.dropdown li {
    margin: 0;
    padding: 0; /* Ensure no extra padding on li */
    box-sizing: border-box; /* Contain li within dropdown */
}

.dropdown a {
    display: block;
    padding: 14px 24px; /* Increased padding for more touch-friendly size */
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500; /* Slightly bolder for better readability */
    text-transform: none;
    letter-spacing: 0.3px; /* Reduced for natural flow */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Softer divider */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother easing */
    white-space: nowrap;
    overflow: hidden; /* Added to handle overflow */
    text-overflow: ellipsis; /* Truncate long text with ... if it exceeds container width */
    animation: none; /* Remove animation for sub-items */
    max-width: 100%; /* Ensure links don't exceed dropdown width */
    box-sizing: border-box; /* Contain padding within the link's width */
    position: relative; /* For potential pseudo-elements */
}

.dropdown a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px; /* Subtle left accent bar */
    background: transparent;
    transition: background 0.3s ease;
}

.dropdown a:hover::before {
    background: #fcae07; /* Golden accent on hover */
}

.dropdown a:hover {
    background: rgba(252, 174, 7, 0.15); /* Lighter, more subtle background */
    color: #fcae07;
    transform: translateX(4px); /* Gentle slide on hover */
    border-bottom-color: rgba(252, 174, 7, 0.2); /* Match hover theme */
    /* No additional width changes; contained by box-sizing */
}

.dropdown a:last-child {
    border-bottom: none;
}

/* Enhanced Hover Logic: Keep dropdown visible as long as mouse is over container OR dropdown */
.dropdown-container {
    position: relative; /* Ensure container is positioned */
}

.dropdown-container:hover .dropdown,
.dropdown:hover {
    display: block !important; /* Force display on both container and dropdown hover */
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1); /* Smooth entry with scale */
    box-shadow: 
        0 16px 45px rgba(0, 0, 0, 0.3), /* Enhanced shadow on show */
        0 0 0 1px rgba(252, 174, 7, 0.15);
}

/* Add a small delay on hide to prevent flickering (using CSS transition) */
.dropdown {
    transition: opacity 0.4s ease 0.1s, /* Delay hide by 100ms */
                transform 0.4s ease 0.1s,
                box-shadow 0.4s ease 0.1s;
}

/* Responsive: Reduce width on smaller screens */
@media (max-width: 768px) {
    .dropdown {
        min-width: 180px;
        max-width: 240px;
        left: 0; /* Align left on mobile to avoid centering issues */
        transform: translateX(0) translateY(-10px) scale(0.95);
        margin: 0;
        padding: 10px 0;
        border-radius: 10px;
        overflow: hidden; /* Reinforce containment on mobile */
    }
    
    .dropdown-container:hover .dropdown,
    .dropdown:hover {
        transform: translateX(0) translateY(0) scale(1);
    }
    
    .dropdown a {
        padding: 12px 18px; /* Slightly reduce padding on mobile for tighter fit */
        font-size: 13px;
    }
    
    .dropdown a:hover {
        transform: translateX(2px); /* Reduced slide on mobile */
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .dropdown {
        min-width: 160px;
        max-width: 220px;
        left: -100%; /* Position to the left of parent on very small screens */
        right: auto;
    }
    
    .dropdown-container:hover .dropdown,
    .dropdown:hover {
        left: 0;
        transform: translateX(0) translateY(0) scale(1);
    }
}

/* Nav Contact Button */
.nav-contact-btn {
    color: #fff;
    text-decoration: none;
    background-color: #fcae07;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 12px rgba(252, 174, 7, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: calc(0.2s * var(--i, 5));
    margin-left: auto;
}

.nav-contact-btn::after {
    display: none !important;
}

.nav-contact-btn:hover {
    background-color: #EBB359 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(252, 174, 7, 0.4) !important;
    color: #FFFFFF !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ——— MOBILE VIEW (≤992px) ——— */
@media (max-width: 992px) {
    .hero-section {
        padding-top: 70px;
    }

    .nav-container {
        justify-content: space-between;
        padding: 12px 25px;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
    }

    .nav-container.scrolled {
        background: linear-gradient(0deg, rgb(0 0 0 / 30%), #000000ad) !important;
        backdrop-filter: blur(5px);
    }

    .hamburger {
        display: flex;
        order: -1;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 55px;
        font-size: 28px;
        font-weight: 600;
        transform: translateY(-100%);
        transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
        backdrop-filter: blur(12px);
        margin: 0;
        padding: 0;
        z-index: 10000;
        display: flex;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu a {
        font-size: 26px;
        letter-spacing: 2px;
        gap: 12px;
        justify-content: center;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        color: #EBB359;
    }

    /* MOBILE DROPDOWN STYLES - ENABLE THEM */
    .dropdown-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dropdown {
        display: none; /* Initially hidden */
        position: relative !important; /* Change from absolute to relative */
        top: auto !important;
        left: auto !important;
        transform: none !important;
        background: rgba(235, 179, 89, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        list-style: none;
        margin: 15px 0 0 0;
        padding: 10px 0;
        min-width: 280px;
        z-index: 10001;
        opacity: 1;
    }

    .dropdown-container:hover .dropdown {
        display: block !important; /* Show on hover */
    }

    .dropdown li {
        margin: 0;
    }

    .dropdown a {
        display: block;
        padding: 12px 20px;
        color: #fff;
        text-decoration: none;
        font-size: 18px !important; /* Mobile dropdown font size */
        font-weight: 400;
        text-transform: none;
        letter-spacing: 0.5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background 0.3s ease, color 0.3s ease;
        white-space: nowrap;
    }

    .dropdown a:hover {
        background: rgba(235, 179, 89, 0.2);
        color: #fcae07;
    }

    .dropdown a:last-child {
        border-bottom: none;
    }

    /* Show arrow in mobile menu */
    .dropdown-arrow {
        display: inline-block !important;
        font-size: 16px;
    }

    .dropdown-container:hover .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-contact-btn {
        padding: 12px 24px !important;
        font-size: 16px !important;
        gap: 8px !important;
        margin-left: 0 !important;
        order: 1;
        flex-shrink: 0;
        min-width: fit-content;
    }

    .nav-container.nav-hidden .nav-menu.active {
        transform: translateY(0) !important;
    }

    .nav-menu.active ~ .nav-container {
        transform: translateY(0) !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 10px 20px;
    }

    .nav-menu {
        gap: 40px;
        font-size: 24px;
    }

    .nav-menu a {
        font-size: 22px;
    }

    .dropdown {
        min-width: 240px; /* Smaller width for small screens */
    }

    .dropdown a {
        font-size: 16px !important;
        padding: 10px 16px;
    }

    .nav-contact-btn {
        font-size: 14px !important;
        padding: 10px 20px !important;
    }

    .hero-section {
        padding-top: 60px;
    }

    .hamburger span {
        width: 24px;
        height: 2px;
    }
}

/* Disable clicks on background overlays */
.skyline-bg,
.right-image {
    pointer-events: none;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    position: relative;
    z-index: 10;
    left: 5%;
    padding: 5%;
}

.title {
    font-size: clamp(42px, 8vw, 64px);
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
}

.subtitle {
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 300;
    margin: 0 0 20px;
}

.group-title {
    font-size: 17px;
    opacity: 0.9;
    margin: 0 0 30px;
}

.description,
.certifications {
    font-size: clamp(15px, 3.5vw, 17px);
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 560px;
}

.cta {
    background-color: #fcae07;
    color: #FFFFFF;
    fill: #FFFFFF;
    padding: 16px 24px 16px 36px; /* Adjusted padding to account for arrow container */
    font-size: 13px;
    border: none;
    border-radius: 50px 50px 50px 50px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.3);
    transition: all 0.3s;
    animation: pulse 2s ease-in-out infinite;
    max-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between; /* Ensures text and arrow are spaced appropriately */
    gap: 12px; /* Space between text and arrow container */
}

.arrow-container {
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevents shrinking */
}

.cta:hover {
    background-color: #EBB359; /* Adjust hover to a darker shade of primary if needed; fallback shown */
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 107, 0, 0.4);
    animation: none;
}

.cta:hover .arrow-container {
    background: #f0f0f0; /* Optional: Slight hover effect on circle for better UX */
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}
        /* ====================== SERVICES SECTION ====================== */
   .services-section {
        padding: 120px 20px 160px;
        background-color: #F5F4EE;
        position: relative;
        overflow: hidden;
    }

 .services-container {
  
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;

    /* NEW */
    background: #EBB359;
    border-radius: 25px;
    padding: 40px; /* recommended so content doesn't touch edges */
}


    /* Title with Stars Container */
    .title-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        margin-bottom: 10px;
    }

    /* Stars Container - Rectangular Layout */
    .stars-container {
        position: relative;
       
        height: 60px;
        margin-bottom: 50px;
    }

    .star {
        position: absolute;
        opacity: 0;
        animation: blink 1.2s ease-in-out infinite;
    }

    /* Star 1 - Top Left */
    .star:nth-child(1) {
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        animation-delay: 0s;
    }

    /* Star 2 - Top Right */
    .star:nth-child(2) {
        top: 2px;
        right: 0;
        width: 22px;
        height: 22px;
        animation-delay: 0.4s;
    }

    /* Star 3 - Bottom Center (Largest) */
    .star:nth-child(3) {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 30px;
        animation-delay: 0.8s;
    }

    @keyframes blink {
        0%, 100% {
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
    }

    .services-subtext {
        font-size: 18px;
        font-weight: 500;
        color: #fff;
        max-width: 900px;
        margin: 10px auto 40px;
        line-height: 1.6;
        opacity: 0.9;
    }

    .section-title {
        font-size: clamp(48px, 8vw, 68px);
        font-weight: 700;
        color: #fff;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 1300px;
        margin: 0 auto 100px;
    }

    .service-card {
        background: #fff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        padding: 10px;
    }

    .service-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }

 .service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;

   
    /* NEW POLYGON STYLE */
    clip-path: polygon(32.2492676px 0, calc(100% - 29.883191px) .16707739px, calc(100% - 29.883191px) .16707739px, calc(100% - 24.96109729px) .87537044px, calc(100% - 20.31945472px) 2.29591631px, calc(100% - 16.01424199px) 4.36886114px, calc(100% - 12.1014378px) 7.03435112px, calc(100% - 8.63702087px) 10.23253242px, calc(100% - 5.67696992px) 13.90355119px, calc(100% - 3.27726365px) 17.98755362px, calc(100% - 1.49388076px) 22.42468587px, calc(100% - 0.38279998px) 27.1550941px, calc(100% - 5.68434189E-14px) 32.1189245px, calc(100% - 0px) calc(100% - 32.02092px), calc(100% - 0px) calc(100% - 32.02092px), calc(100% - 0.41860061px) calc(100% - 26.8269604px), calc(100% - 1.63050344px) calc(100% - 21.89983258px), calc(100% - 3.56985995px) calc(100% - 17.30546357px), calc(100% - 6.1708216px) calc(100% - 13.10978045px), calc(100% - 9.36753988px) calc(100% - 9.37871025px), calc(100% - 13.09416624px) calc(100% - 6.17818003px), calc(100% - 17.28485217px) calc(100% - 3.57411685px), calc(100% - 21.87374912px) calc(100% - 1.63244774px), calc(100% - 26.79500858px) calc(100% - 0.41909978px), calc(100% - 31.982782px) calc(100% - 5.68434189E-14px), 31.9827822px calc(100% - 14px), 31.9827822px calc(100% - 14px), 26.79500879px calc(100% - 14.41909978px), 21.87374934px calc(100% - 15.63244774px), 17.28485237px calc(100% - 17.57411685px), 13.09416641px calc(100% - 20.17818003px), 9.36754001px calc(100% - 23.37871025px), 6.1708217px calc(100% - 27.10978045px), 3.56986001px calc(100% - 31.30546357px), 1.63050347px calc(100% - 35.89983258px), .41860062px calc(100% - 40.8269604px), 5.29492535E-31px calc(100% - 46.02092px), 0 32.0209204px, 0 32.0209204px, .41860062px 26.82696079px, 1.63050347px 21.89983293px, 3.56986001px 17.30546389px, 6.1708217px 13.10978071px, 9.36754001px 9.37871045px, 13.09416641px 6.17818017px, 17.28485237px 3.57411693px, 21.87374934px 1.63244779px, 26.79500879px .41909979px, 31.9827822px 5.30123935E-31px, 31.9827822px 0, 32.11152455px 0, 32.2175794px 0, 32.30094672px 0, 32.36162654px 0, 32.39961884px 0, 32.41492362px 0, 32.40754089px 0, 32.37747064px 0, 32.32471288px 0, 32.2492676px 0);

    
}


    .service-card:hover {
          transform: scale(1.1);
    }

    .service-content {
        padding: 28px 20px 34px;
        text-align: center;
    }

    .service-title {
        font-size: 17px;
        font-weight: 600;
        color: #333;
        margin: 0 0 14px;
        line-height: 1.45;
    }

    .service-pill {
        display: inline-flex;
        background: #EBB359;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        padding: 10px 16px 10px 26px;
        border-radius: 50px;
        transition: all 0.3s ease;
        width: 250px;
        align-items: center;
        text-decoration: none;
        justify-content: space-between;
    }

    .service-pill:hover {
        background: #d9a043;
        transform: translateX(5px);
    }

    .arrow-container {
        display: flex;
        align-items: center;
    }

    .bottom-text {
        font-size: 18px;
        font-weight: 500;
        color: #6A6964;
        line-height: 1.6;
        opacity: 0.9;
    }

 @media (max-width: 768px) {
    .services-section {
        padding: 80px 15px 100px;
    }

    .services-container {
        padding: 25px 15px;
        border-radius: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 auto 60px;
    }

    .stars-container {
        width: 50px;
        height: 50px;
        margin-bottom: 30px;
    }

    .star:nth-child(1) {
        width: 15px;
        height: 15px;
    }

    .star:nth-child(2) {
        width: 16px;
        height: 16px;
    }

    .star:nth-child(3) {
        width: 22px;
        height: 22px;
    }

    .section-title {
        font-size: clamp(32px, 7vw, 48px);
    }

    .services-subtext {
        font-size: 14px;
        margin: 8px auto 30px;
        line-height: 1.5;
    }

    .service-card {
        border-radius: 16px;
        padding: 8px;
    }

    .service-image {
        height: 160px;
    }

    .service-content {
        padding: 20px 15px 24px;
    }

    .service-title {
        font-size: 15px;
        margin: 0 0 12px;
    }

    .service-pill {
        font-size: 12px;
        padding: 8px 14px 8px 20px;
        width: 100%;
    }

    .arrow-container svg {
        width: 16px;
        height: 16px;
    }

    .bottom-text {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 10px 80px;
    }

    .services-container {
        padding: 20px 12px;
        border-radius: 15px;
    }
  .service-card:hover {
          transform: scale(0.9);
    }

    .services-grid {
        gap: 15px;
        margin: 0 auto 50px;
    }

    .stars-container {
        width: 40px;
        height: 40px;
        margin-bottom: 25px;
    }

    .star:nth-child(1) {
        width: 12px;
        height: 12px;
    }

    .star:nth-child(2) {
        width: 13px;
        height: 13px;
    }

    .star:nth-child(3) {
        width: 18px;
        height: 18px;
    }

    .section-title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .services-subtext {
        font-size: 13px;
        margin: 6px auto 25px;
    }

    .service-card {
        border-radius: 14px;
        padding: 6px;
    }

    .service-image {
        height: 140px;
    }

    .service-content {
        padding: 16px 12px 20px;
    }

    .service-title {
        font-size: 14px;
        margin: 0 0 10px;
    }

    .service-pill {
        font-size: 11px;
        padding: 7px 12px 7px 18px;
    }

    .arrow-container svg {
        width: 14px;
        height: 14px;
    }

    .bottom-text {
        font-size: 13px;
    }
}
.title-wrapper2 {
        display: flex;
      
       
        margin-bottom: 10px;
    }
.arrow-container {
  width: 30px;
  height: 30px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Prevents shrinking */
}

.service-card:hover .service-pill {
  background: #fcae07;
  transform: scale(1.1);
}

.service-card:hover .service-pill .arrow-container {
  background: #f0f0f0; /* Optional: Slight hover effect on circle for better UX */
}
        .bottom-text {
            font-size: clamp(22px, 4vw, 28px);
            font-weight: 500;
            color: #333;
            line-height: 1.5;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Background decorative circles */
        .bg-shape-left,
        .bg-shape-right {
            position: absolute;
            border-radius: 50%;
            background: rgba(245, 166, 35, 0.07);
            z-index: 1;
            animation: float 8s ease-in-out infinite;
        }

        .bg-shape-left {
            width: 400px;
            height: 400px;
            bottom: 0;
            left: 0;
            transform: translate(-50%, 50%);
        }

        .bg-shape-right {
            width: 500px;
            height: 500px;
            top: 10%;
            right: 0;
            transform: translate(40%, -20%);
            animation: float 10s ease-in-out infinite reverse;
        }

    /* ====================== YOUR ORIGINAL STYLES - 100% UNCHANGED ====================== */
/* ====================== YOUR ORIGINAL STYLES - 100% UNCHANGED ====================== */
.about-section { background: #F5F4EE; position: relative; overflow: hidden; }
.about-container { max-width: 1400px; margin: 0 auto; padding: 3%; }
.about-subtitle { font-size: 3.2rem; line-height: 1.2; margin-bottom: 32px; }
.name-gold {
    background: linear-gradient(90deg, #fcae07, #ffd78a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    margin-top: 80px;
}
.about-image-wrapper { text-align: center; }
.about-image {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: transform 0.6s ease;
}
.about-image:hover { transform: translateY(-10px); }
.about-content { color: #5C5E5E; }
.about-text { font-size: 1.25rem; line-height: 1.8; margin-bottom: 24px; color: #5C5E5E; }
.about-pill {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(252, 174, 7, 0.15); color: #fcae07; padding: 14px 28px;
    border-radius: 50px; font-weight: 600; margin-top: 20px;
    transition: all 0.3s ease; cursor: pointer;
}
.about-pill:hover { background: #fcae07; color: #000; transform: translateY(-3px); }
.about-pill .arrow-container svg { transition: transform 0.3s ease; }
.about-pill:hover .arrow-container svg { transform: translateX(4px); }

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-image-wrapper { order: -1; }
}

/* ====================== RATING CARD - SMOOTH APPEAR & DISAPPEAR ====================== */
.image-hover-container {
    position: relative;
    display: inline-block;
}

.rating-card {
    position: absolute;
    bottom: 20px;
    right: -1px;
    background: #fff;
    color: #000;
    padding: 20px 10px;
    border-radius: 18px;
    width: 215px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: 1px solid #f0f0f0;
    z-index: 10;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);

    /* Smooth & stable transition */
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
}


/* Card inner styles - exactly like your design */
.rating-header { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 10px; 
}
.rating-avatar { 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    object-fit: cover;
    border: 2px solid #fcae07; 
}
.rating-title { 
    font-size: 12px; 
    font-weight: 700; 
    margin: 0; 
    color: #222; 
}
.rating-sub { 
    font-size: 12px; 
    margin: 3px 0 0; 
    opacity: 0.7; 
}
.rating-list { margin-top: 8px; }
.rating-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    padding: 5px 0;
    font-weight: 700;
    color: #333;
}

/* Gold stars exactly like your example */
.rating-row span:last-child {
    color: #fcae07;
    font-size: 15px;
    letter-spacing: 3px;
}

/* Mobile: always show card below image */
@media (max-width: 992px) {
    .rating-card {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 30px auto 0;
        width: 230px;
    }
}

/* ====================== AUTO FADE IN/OUT LOOP ====================== */
@keyframes pulseCard {
    0%   { opacity: 0; visibility: hidden; transform: translateY(30px) scale(0.85); }
    25%  { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
    50%  { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
    75%  { opacity: 0; visibility: hidden; transform: translateY(30px) scale(0.85); }
    100% { opacity: 0; visibility: hidden; transform: translateY(30px) scale(0.85); }
}

/* Apply animation */
.rating-card {
    animation: pulseCard 6s ease-in-out infinite;
    animation-play-state: running;
}

/* Pause animation when hovering image container */
.image-hover-container:hover .rating-card {
    animation-play-state: paused !important;

    /* Also force it visible while hovered */
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}


     /* ====================== MANAGEMENT SECTION ====================== */
    
        /* ====================== RESPONSIVE BREAKPOINTS ====================== */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .right-image {
                width: 50%;
            }

            .about-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 992px) {
            .hero {
                padding-top: 160px;
            }

           

            .nav-menu {
                font-size: 14px;
                gap: 18px;
            }

            .right-image {
                width: 60%;
                height: 70%;
            }

            .about-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

      

            .about-image {
                max-width: 70%;
                margin: 0 auto;
                display: block;
            }

            .management-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .management-left {
                text-align: center;
                max-width: 800px;
                margin: 0 auto;
            }

          
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100vw;
                background: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                gap: 20px;
                padding: 20px;
                text-align: center;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu a {
                font-size: 16px;
                padding: 10px 0;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 32px;
                max-width: 420px;
            }

            .service-image {
                height: 320px;
            }

            .section-title {
                margin-bottom: 60px;
            }

            .services-section {
                padding: 10px 5px;
            }

            .management-section {
                padding: 100px 20px 120px;
            }

         

        }

        @media (max-width: 480px) {
            .hero {
                padding: 140px 20px 80px;
            }

            .right-image {
                width: 80%;
                right: -10%;
            }

          
        }

     
        /* Progress scroll indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #fcae07, #EBB359);
            z-index: 1000;
            transition: width 0.1s ease;
        }


        

       
/* ====================== LANDING HERO SECTION (Different Page) ====================== */
.landing-hero-section {
    position: relative;
    width: 100%;
  height: 60vh;
    overflow: hidden;
    padding-top: 80px; /* Add padding to account for fixed nav height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/image/22.png'); /* Replace with your desired background image path */
    background-size: cover;
  
    opacity: 0.8;
    z-index: 0;
   
}



.landing-hero {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.landing-title {
    font-size: clamp(48px, 10vw, 0px);
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
}

.landing-subtitle {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 300;
    margin: 0 0 30px;
    opacity: 0.9;
}

.landing-cta {
    background-color: #fcae07;
    color: #FFFFFF;
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(252, 174, 7, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.landing-cta:hover {
    background-color: #EBB359;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(252, 174, 7, 0.4);
    animation: none;
}

/* Animations (shared, but scoped if needed) */
@keyframes subtleZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Ensure nav-container styles are not overridden; use existing or add specifics if needed */
/* (Assuming nav-container CSS from previous is global, but no changes here to avoid affecting index) */

/* Responsive adjustments for landing page */
@media (max-width: 768px) {
    .landing-hero-section {
        padding-top: 70px;
        text-align: center;
    }

    .landing-right-image {
        width: 40%;
        height: 60%;
    }

    .landing-hero {
        padding: 10px;
    }
}
        /* ------------------------------------------------------
   RESPONSIVE BREAKPOINTS — CARDS BECOME RESPONSIVE EARLY
------------------------------------------------------ */

      
    /* Testimonials Section Styles */
.testimonials-section {
    position: relative;
    background-color: #F5F4EE;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/image/h1-asked-1.png'); /* Replace with your background image path */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1; /* Adjust opacity as needed */
    z-index: 1;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    text-align: center;
}

.testimonials-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #EBB359;
}

.testimonials-paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px; /* Adjust based on card height */
    padding: 0;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 4s ease-in-out; /* Very slow slide */
    height: 100%;
    
    /* Width and transforms set dynamically via JS */
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 auto; /* Width set via JS */
}
.card-rating {
    font-size: 1rem;
    color: #EBB359;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.6;
    font-weight: 600;
}
/* New: Top rating row with quote icon on the right */
.card-header-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.ratings-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.rating-label {
    font-weight: 600;
    color: #333;
    min-width: 85px;
    font-size: 0.95rem;
}

.card-header-rating .stars2 {
    color: #EBB359;
    font-size: 1.6rem;
    letter-spacing: 3px;
    text-shadow: 0 0 8px rgba(235, 179, 89, 0.5);
}

/* Keep quote icon big and golden */
.card-header-rating .card-icon {
    font-size: 3.2rem;
    color: #EBB359;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Responsive: Stack ratings vertically on mobile */
@media (max-width: 768px) {
    .card-header-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .ratings-wrapper {
        align-self: center;
    }
    
    .card-header-rating .card-icon {
        align-self: flex-end;
        margin-top: -50px;
         font-size: 2.0rem;
    }
}
.card-icon {
    font-size: 3rem;
    color: #EBB359;
    align-self: flex-end; /* Moved to right side */
    margin-bottom: 20px;
}

.card-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #333;
}

.card-border {
    height: 2px;
    background-color: #ddd;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 100px;
}
@media (min-width: 10px) and (max-width: 768px) {
    .card-footer {
    display: flex;
    align-items: center;
    gap: 50px;
}
}

.card-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.card-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.card-info p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: #666;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    font-size: 1.2rem;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.nav-btn.prev {
    margin-left: 10px;
}

.nav-btn.next {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-heading {
        font-size: 2rem;
    }
    
    .testimonials-slider {
        height: auto;
        padding: 20px 0;
    }
    
    .testimonial-card {
        margin-bottom: 20px; /* Extra space on mobile if needed */
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

      /* ====================== FEATURES SECTION ====================== */
.features-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
   
    display: flex;
    align-items: center;
    background: transparent; /* Allow bg image to show */
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/image/1.png'); /* Replace with your desired background image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    opacity: 0.6;
    z-index: 0;
   
}

.features-container {
    position: relative;
    z-index: 10;
  
    margin: 0 auto;
    padding: 3%;
    display: flex;
    gap: 60px;
    align-items: center;
    height: 100%;
}

.features-content {
    flex: 1;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.features-heading {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-subheading {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 400;
    margin: 0 0 20px;
    opacity: 0.9;
}

.features-paragraph {
    font-size: clamp(16px, 3.5vw, 18px);
    line-height: 1.6;

   
}

.features-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features-point {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(252, 174, 7, 0.2);
}

.features-point h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #fcae07;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-point p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.features-image-side {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Stars at top, image at bottom */
    align-items: center;
    height: 100%;
    min-height: 500px; /* Ensure space for image */
}

.stars-triangle {
    position: relative;
    width: 170px; /* Container width for stars positioning */
    height: 150px; /* Container height for triangle layout */
    z-index: 20;
    align-self: flex-start; /* Align to left/top */
    margin-bottom: 20px; /* Space above image */
   margin-left: 100px;
    border-radius: 50%; /* Optional: round the container */
   
}

.stars {
    position: absolute;
    color: #fcae07;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: twinkle 1s ease-in-out infinite; /* Optional twinkle animation */
}

/* Star 1 - Top Left */
.stars:nth-child(1) {
    top: 0;
    left: 0;
    font-size: 40px; /* Little big */
    animation-delay: 0s;
}

/* Star 2 - Top Right */
.stars:nth-child(2) {
    top: 2px;
    right: 0;
    font-size: 44px; /* Slightly bigger */
    animation-delay: 0.4s;
}

/* Star 3 - Bottom Center (Largest) */
.stars:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px; /* Biggest */
    animation-delay: 0.8s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.features-image {
    width: 80%;
    height: 70%; /* Image takes most of the side, at bottom */
    position: relative;
    z-index: 15;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .features-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .features-image-side {
        order: -1; /* Image above text on mobile */
        height: auto;
        min-height: 300px;
        justify-content: flex-start; /* Adjust for mobile */
    }

    .stars-triangle {
        width: 60px;
        height: 45px;
    }

    .stars:nth-child(1) { font-size: 16px; }
    .stars:nth-child(2) { font-size: 18px; }
    .stars:nth-child(3) { font-size: 22px; }

    .features-point {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 80px 0;
    }

    .features-heading {
        letter-spacing: 1px;
    }

    .stars-triangle {
        width: 60px;
        height: 45px;
    }

    .stars:nth-child(1) { font-size: 16px; }
    .stars:nth-child(2) { font-size: 18px; }
    .stars:nth-child(3) { font-size: 22px; }
}

/* Animation for scroll (assuming existing .animate-on-scroll class) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
/* ====================== MANAGEMENT SECTION - PROFESSIONAL & ELEGANT ====================== */
.management-section {
    background: #ffffff;
    padding: 140px 0 160px;
    position: relative;
    overflow: hidden;
}

.management-container {
    margin: 0 auto;
    padding: 1%;
}

.management-tagline {
    text-align: center;
    font-size: 1.55rem;
    color: #fcae07;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin: 20px 0 50px;
    opacity: 0.95;
}

.management-desc {
    text-align: center;
    font-size: 1.45rem;
    line-height: 1.9;
    color: #444;
    max-width: 1100px;
    margin: 0 auto 90px;
    font-weight: 400;
}

/* Two-Column Layout: Alternating Directions */
.management-pro-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 100px;
}

.management-pro-layout.reverse {
    flex-direction: row-reverse;
}

.mgmt-img-box {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.18);
    transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 720px;
    width: 100%;
}

.mgmt-img-box:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.mgmt-pro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.mgmt-img-box:hover .mgmt-pro-img {
    transform: scale(1.12);
}

/* Center Content */
.management-pro-content {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.pro-title {
    font-size: 2.2rem;
    background: linear-gradient(90deg, #fcae07, #ffd78a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.pro-capabilities {
    display: grid;
    gap: 20px;
    margin-bottom: 48px;
}

.pro-cap-item {
    background: #fafafa;
    padding: 22px 28px;
    border-radius: 18px;
    font-size: 1.28rem;
    color: #333;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.5s ease;
    font-weight: 500;
}

.pro-cap-item:hover {
    background: #fcae07;
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(252,174,7,0.35);
}

.pro-summary {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #555;
    max-width: 680px;
    margin: 0 auto 40px;
}

/* Responsive */
@media (max-width: 1100px) {
    .management-pro-layout {
        flex-direction: column;
        gap: 40px;
    }
    .management-pro-layout.reverse {
        flex-direction: column;
    }
    .mgmt-img-box {
        order: 2;
        height: 600px;
        max-width: 500px;
        margin: 0 auto;
        width: auto;
    }
    .management-pro-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .management-section { 
        padding: 100px 0; 
    }
    .pro-title { 
        font-size: 2.2rem; 
    }
    .pro-cap-item { 
        font-size: 1.15rem; 
        padding: 18px; 
    }
    .mgmt-img-box { 
        height: 500px; 
    }
    .management-desc { 
        font-size: 1.3rem; 
    }
    .management-pro-layout {
        gap: 30px;
    }
}





/* ====================== CONTACT SECTION ====================== */
.contact-section {
    background: #ffffff;
    padding: 140px 0;
    position: relative;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
}

.contact-tagline {
    text-align: center;
    font-size: 1.6rem;
    color: #fcae07;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin: 20px auto 80px;
    max-width: 800px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #fafafa;
    padding: 28px 32px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.info-item:hover {
    background: #fcae07;
    color: white;
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(252,174,7,0.3);
}

.info-item:hover .info-icon svg {
    stroke: white;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #fcae07;
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s;
}

.info-icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
}

.info-item h4 {
    font-size: 1.35rem;
    margin: 0 0 8px 0;
    font-weight: 700;
    color: #222;
    transition: color 0.4s;
}

.info-item:hover h4,
.info-item:hover p {
    color: white !important;
}

.info-item p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
}

/* Contact Form */
.contact-form-wrapper {
    background: #f9f9f9;
    padding: 50px 50px;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid #eee;
    border-radius: 16px;
    font-size: 1.1rem;
    background: white;
    transition: all 0.4s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fcae07;
    box-shadow: 0 0 0 4px rgba(252,174,7,0.15);
}

.submit-btn {
    align-self: flex-start;
    background: linear-gradient(90deg, #fcae07, #ffd78a);
    color: white;
    border: none;
    padding: 18px 44px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(252,174,7,0.4);
}

.submit-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(252,174,7,0.5);
    background: linear-gradient(90deg, #e89b00, #f0c670);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    .contact-info {
        order: 2;
    }
    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .contact-section { padding: 100px 0; }
    .contact-form-wrapper { padding: 30px 20px; }
    .info-item { padding: 20px; }
    .submit-btn { width: 100%; justify-content: center; }
}











        /* ========== BAR CHART ANIMATIONS ========== */
        .chart-container {
            height: 190px;
            display: flex;
            align-items: flex-end;
            gap: 8px;
            margin-bottom: 55px;
            padding: 0 15px;
        }

        .bar-wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
            justify-content: flex-end;
        }

        .bar {
            width: 100%;
            background: linear-gradient(180deg, #ffd480 0%, #EBB359 50%, #d4992d 100%);
            border-radius: 0;
            transition: all 0.3s ease;
            transform-origin: bottom;
            animation: barGrow 1s ease-out forwards;
            opacity: 0;
        }

        @keyframes barGrow {
            from {
                transform: scaleY(0);
                opacity: 0;
            }

            to {
                transform: scaleY(1);
                opacity: 1;
            }
        }

        .bar[data-delay="0.1"] {
            animation-delay: 0.1s;
        }

        .bar[data-delay="0.2"] {
            animation-delay: 0.2s;
        }

        .bar[data-delay="0.3"] {
            animation-delay: 0.3s;
        }

        .bar[data-delay="0.4"] {
            animation-delay: 0.4s;
        }

        .bar-bottom {
            width: 100%;
            height: 4px;
            background: #1a1a1a;
            margin-top: 2px;
        }

        .bar-1 {
            height: 25%;
        }

        .bar-2 {
            height: 45%;
        }

        .bar-3 {
            height: 65%;
        }

        .bar-4 {
            height: 100%;
        }

        .bar:hover {
            filter: brightness(1.15);
            transform: scaleY(1.05);
        }

        /* ========== CIRCLES ANIMATIONS ========== */
        .circles-container {
            height: 190px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-bottom: 65px;
            gap: 6px;
        }

        .circle-row {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .circle {
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8px;
            transition: all 0.3s ease;
            line-height: 1.15;
            font-weight: 500;
            font-size: 0.52rem;
        }

        .circle-animate {
            opacity: 0;
            transform: scale(0);
            animation: circlePopIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        }

        @keyframes circlePopIn {
            0% {
                opacity: 0;
                transform: scale(0) rotate(-180deg);
            }

            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        .circle-animate[data-delay="0.1"] {
            animation-delay: 0.1s;
        }

        .circle-animate[data-delay="0.2"] {
            animation-delay: 0.2s;
        }

        .circle-animate[data-delay="0.3"] {
            animation-delay: 0.3s;
        }

        .circle-animate[data-delay="0.4"] {
            animation-delay: 0.4s;
        }

        .circle-animate[data-delay="0.5"] {
            animation-delay: 0.5s;
        }

        .circle:hover {
            transform: scale(1.06) rotate(5deg);
        }

        .circle-s1,
        .circle-s2 {
            width: 58px;
            height: 58px;
            background: #ffd480;
        }

        .circle-l1 {
            width: 115px;
            height: 115px;
            background: #d4992d;
        }

        .circle-l2 {
            width: 115px;
            height: 115px;
            background: #e8a735;
        }

        .circle-m {
            width: 82px;
            height: 82px;
            background: #ffd480;
            font-size: 0.68rem;
        }

        /* ========== DONUT CHART ANIMATIONS ========== */
        .donut-container {
            height: 190px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 55px;
            position: relative;
        }

        .donut-chart {
            width: 185px;
            height: 185px;
            border-radius: 50%;
            background: conic-gradient(from 0deg,
                    #ffd480 0deg 45deg,
                    #FFBD59 45deg 230deg,
                    #EBB359 230deg 360deg);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .donut-animate {
            opacity: 0;
            transform: scale(0) rotate(0deg);
            animation: donutSpin 1s ease-out 0.2s forwards;
        }

        @keyframes donutSpin {
            0% {
                opacity: 0;
                transform: scale(0) rotate(0deg);
            }

            50% {
                opacity: 1;
                transform: scale(1.1) rotate(180deg);
            }

            100% {
                opacity: 1;
                transform: scale(1) rotate(360deg);
            }
        }

        .donut-hole {
            width: 110px;
            height: 110px;
            background: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
        }

        .counter-animate {
            opacity: 0;
            animation: counterFadeIn 0.5s ease 1.2s forwards;
        }

        @keyframes counterFadeIn {
            from {
                opacity: 0;
                transform: scale(0.5);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .legend {
            position: absolute;
            top: -10px;
            right: 8px;
            font-size: 0.65rem;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 3px;
        }

        .legend-animate {
            opacity: 0;
            transform: translateX(20px);
            animation: legendSlideIn 0.4s ease forwards;
        }

        @keyframes legendSlideIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .legend-animate[data-delay="0.1"] {
            animation-delay: 0.8s;
        }

        .legend-animate[data-delay="0.2"] {
            animation-delay: 0.9s;
        }

        .legend-animate[data-delay="0.3"] {
            animation-delay: 1s;
        }

        .legend-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .dot-white {
            background: #ffecc7;
        }

        .dot-gray {
            background: #EBB359;
        }

        .dot-blue {
            background: #FFBD59;
        }

        /* ========== TREEMAP ANIMATIONS ========== */
        .treemap-container {
            height: 190px;
            margin-bottom: 55px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            padding: 0 10px;
        }

        .treemap-col {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .treemap-box {
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            transition: all 0.3s ease;
            color: #fff;
            font-size: 0.95rem;
        }

        .treemap-animate {
            opacity: 0;
            transform: translateY(20px);
            animation: treemapSlideUp 0.6s ease forwards;
        }

        @keyframes treemapSlideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .treemap-animate[data-delay="0.1"] {
            animation-delay: 0.1s;
        }

        .treemap-animate[data-delay="0.2"] {
            animation-delay: 0.2s;
        }

        .treemap-animate[data-delay="0.3"] {
            animation-delay: 0.3s;
        }

        .treemap-animate[data-delay="0.4"] {
            animation-delay: 0.4s;
        }

        .treemap-box:hover {
            filter: brightness(1.12);
            transform: scale(1.05) rotate(2deg);
        }

        .box-orange {
            background: #d4992d;
            flex: 1.5;
        }

        .box-yellow {
            background: #ffd480;
            flex: 1;
        }

        .box-orange-large {
            background: #EBB359;
            flex: 1.5;
            font-size: 1rem;
        }

        .box-light {
            background: #ffd480;
            flex: 1;
        }

        /* ========== TEXT ========== */
        .feature-title {
            font-size: clamp(1.1rem, 2.5vw, 1.25rem);
            text-align: center;
            font-weight: 600;
        }

        .feature-text {
            font-size: clamp(0.82rem, 2vw, 0.9rem);
            line-height: 1.55;
            text-align: center;
            color: rgba(255, 255, 255, 0.92);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1400px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 992px) {
            .features-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .features-section {
                padding: 80px 20px;
            }

            .circle-l1,
            .circle-l2 {
                width: 100px;
                height: 100px;
                font-size: 0.68rem;
            }

            .circle-m {
                width: 72px;
                height: 72px;
                font-size: 0.64rem;
            }

            .circle-s1,
            .circle-s2 {
                width: 52px;
                height: 52px;
            }
        }
    
/* ====================== CREDENTIALS SECTION ====================== */
.credentials-section {
    position: relative;
    background-color: #F5F4EE;
    padding: 100px 0;
    overflow: hidden;
}



.credentials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.credentials-slider {
    position: relative;
    overflow: hidden;
    height: 420px;
    margin-top: 20px;
}

.credentials-slider .slider-track {
    display: flex;
    gap: 20px;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.credential-card {
    position: relative;                    /* Important: makes overlay positioning work */
    flex: 0 0 calc((100% - 40px) / 3);     /* 3 cards on desktop */
    height: 70%;
     border-radius: 10px;
    overflow: hidden;
    background: white;
    cursor: pointer;
   
    transition: all 0.4s ease;
}

.credential-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}


/* Beautiful overlay text on hover – PURE CSS */
.credential-card::after {
    content: "Click to view full size";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235, 179, 89, 0.96), rgba(200, 140, 50, 0.92));
    color: white;
    font-size: 1.35rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
       border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px);
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    pointer-events: none; /* Allows click to pass through to the card */
    box-sizing: border-box;
}

/* Show overlay on hover */
.credential-card:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Mobile: 1 card */
@media (max-width: 768px) {
    .credentials-slider { height: 300px; }
    .credential-card { flex: 0 0 100%; }
    .section-title { font-size: 2.3rem !important; }
    .sub-heading { font-size: 1.2rem !important; }
}

/* Navigation buttons – same style as testimonials */
.credentials-slider .slider-nav {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.credentials-slider .nav-btn {
    pointer-events: all;
    background: rgba(255,255,255,0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.credentials-slider .nav-btn:hover {
    background: #fff;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .credentials-slider .nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}


/* ====================== LIGHTBOX STYLES ====================== */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: #EBB359;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: #d89a40;
    transform: scale(1.1) rotate(90deg);
}

/* Zoom In Animation */
@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* Lightbox Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 11;
    padding: 0 20px;
    box-sizing: border-box;
}

.lightbox-arrow {
    pointer-events: all;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-arrow:hover {
    background: #EBB359;
    color: white;
    transform: scale(1.15);
}

.lightbox-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Mobile arrows smaller */
@media (max-width: 768px) {
    .lightbox-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    .card-overlay span {
        font-size: 1.1rem;
    }
}
/* Optional: Add cursor pointer on clickable images */
.credential-card {
    cursor: pointer;
}





.ultra-compact-footer {
            position: relative;
            color: white;
            margin-top: 100px;
            overflow: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Background Video */
        .footer-video {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: -2;
        }
        .footer-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Dark Overlay */
        .footer-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
          
            z-index: -1;
        }

        .footer-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            padding: 60px 20px 40px;
        }

        /* Top Message */
        .footer-top-message {
            text-align: center;
            color: #EBB359;
            font-size: 1.35rem;
            font-weight: 500;
            margin-bottom: 50px;
            padding: 0 15px;
            line-height: 1.5;
        }

        /* Single Row Layout */
        .footer-single-row {
            display: grid;
            grid-template-columns: 220px 1fr 1.1fr 1fr;
            gap: 50px;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Image - Rectangular */
        .footer-image {
            text-align: center;
        }
        .footer-image img {
            width: 250px;
            height: 250px;
           
            border-radius: 16px;
            border: 5px solid rgba(235, 179, 89, 0.3);
            object-fit: cover;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            transition: all 0.4s ease;
        }
        .footer-image img:hover {
            border-color: #EBB359;
            transform: translateY(-8px) scale(1.03);
        }

        /* Columns Styling */
        .footer-col h4 {
            color: #EBB359;
            font-size: 1.3rem;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: left;
        }

        .footer-col a,
        .footer-col p {
            display: block;
            color: #f0f0f0;
            text-decoration: none;
            font-size: 1.05rem;
            padding: 9px 0;
            transition: all 0.3s ease;
            line-height: 1.5;
        }

        .footer-col a:hover {
            color: #EBB359;
            padding-left: 10px;
            transform: translateX(4px);
        }

        /* Location with Icon */
        .location {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 1.05rem !important;
        }
        .location i {
            color: #EBB359;
            font-size: 1.2rem;
        }

        /* Copyright */
        .footer-bottom {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(235, 179, 89, 0.2);
        }
        .copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }

        /* ====================== RESPONSIVE ====================== */
     @media (max-width: 992px) {
    .footer-single-row {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        text-align: center;
        gap: 30px;
    }
    .footer-image {
        grid-column: span 2; /* Image spans both columns */
    }
    .footer-image img {
        width: 170px;
        height: 170px;
        margin: 0 auto;
        display: block;
    }
    .footer-col h4 {
        text-align: center;
    }
    .footer-col a:hover {
        padding-left: 0;
        transform: translateY(-2px);
    }
    .location {
        justify-content: center;
    }
    .footer-top-message {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .footer-single-row {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns on mobile */
        gap: 25px;
    }
    .footer-image {
        grid-column: span 2; /* Image still spans full width */
    }
    .footer-col h4 {
        font-size: 1.1rem;
    }
    .footer-col a,
    .footer-col p {
        font-size: 0.95rem;
        padding: 7px 0;
    }
}

@media (max-width: 480px) {
    .footer-single-row {
        display: block;
        text-align: center;
    }
     .footer-col h4 {
        text-align: start;
    }
    /* Image at top - full width */
    .footer-image {
        display: block;
        margin-bottom: 20px;
    }
    .footer-image img {
        width: 110px;
        height: 110px;
    }
    
    /* Three columns in ONE row */
    .footer-single-row .footer-col {
        display: inline-block;
        width: 30%;
        vertical-align: top;
        text-align: left;
        box-sizing: border-box;
        padding: 0 4px;
    }
    
    .footer-top-message {
        font-size: 0.85rem;
        margin-bottom: 25px;
        line-height: 1.4;
    }
    .footer-wrapper {
        padding: 35px 8px 20px;
    }
    .footer-col h4 {
        font-size: 0.72rem;
        margin-bottom: 8px;
        font-weight: 600;
    }
    .footer-col a,
    .footer-col p,
    .contact-item {
        font-size: 0.57rem !important;
        padding: 3px 0;
        line-height: 1.3;
    }
    .footer-col i {
        font-size: 0.58rem;
        margin-right: 2px;
    }
    .footer-bottom {
        margin-top: 25px;
        padding-top: 15px;
    }
    .copyright {
        font-size: 0.7rem;
    }
}

/* Replace the old .footer-image img styles with video styling */
.footer-image video.footer-profile-video {
    width: 250px;
    height: 350px;
    border-radius: 10px;
    border: 5px solid rgba(235, 179, 89, 0.3);
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.footer-image video.footer-profile-video:hover {
    border-color: #EBB359;
    transform: translateY(-8px) scale(1.03);
}

/* Responsive adjustments for the video (replaces img rules) */
@media (max-width: 992px) {
    .footer-image video.footer-profile-video {
        width: 170px;
        height: 270px;
    }
}

@media (max-width: 480px) {
    .footer-image video.footer-profile-video {
        width: 150px;
        height: 250px;
    }
}


        /* === FOOTER ANIMATIONS === */
.animate-footer {
    overflow: hidden;
}

.footer-animate-up,
.footer-animate-left,
.footer-animate-right {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.footer-animate-left {
    transform: translateX(-40px);
}

.footer-animate-right {
    transform: translateX(40px);
}

.footer-animate-up.active,
.footer-animate-left.active,
.footer-animate-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Delay Effects */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Glow Hover Effect */
.footer-col a {
    position: relative;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #EBB359;
    text-shadow: 0 0 10px rgba(235, 179, 89, 0.6);
}

/* Image glow */
.footer-image img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.footer-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(235, 179, 89, 0.4);
}
