
    @media (max-width: 1024px) {
    .ffdf {
        display: none !important;
    }
}
#love{
    font-size:0.620rem !important;
    
}

        :root {
            --font-sans: 'Inter', sans-serif;
            --font-serif: 'Playfair Display', serif;
            --color-light-green: #F0F5F3;
            --color-dark-green: #365349;
            --color-gold: #B8860B;
            --color-dark-text: #1F2937;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-sans);
            color: var(--color-dark-text);
            text-rendering:optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6, .font-serif {
            font-family: var(--font-serif);
        }

        /* Custom Colors */
        .bg-brand-light-green { background-color: var(--color-light-green); }
        .text-brand-dark-green { color: var(--color-dark-green); }
        .text-brand-gold { color: var(--color-gold); }
        .border-brand-gold { border-color: var(--color-gold); }
        .bg-brand-gold { background-color: var(--color-gold); }
        .hover\:bg-brand-gold-dark:hover { background-color: #a0740a; }

        /* Glassmorphism Effect */
        .glass-effect {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* Navigation */
        .nav-link {
            position: relative;
            padding-bottom: 8px;
            color: var(--color-dark-green);
            transition: all 0.3s ease;
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        
        .nav-link:hover {
            color: var(--color-gold);
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
            transition: width 0.4s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* Enhanced Buttons */
        .btn {
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            z-index: -1;
        }
        
        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        /* 3D Slider Styles */
/* Updated 3D Slider Styles */
.slider-3d-container {
    perspective: 1200px;
    position: relative;
    width: 100%;

    /* Changed from fixed 600px to aspect ratio for better alignment */
    aspect-ratio: 4/5; 
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-3d {
    position: absolute;
    /* Use percentage of container width/height */
    width: 85%;
    height: 95%;
    top: 50%;
    left: 50%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
}

/* Adjusted positions to feel more "anchored" to the right side */
.slide-3d-1 {
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    z-index: 3;
    opacity: 1;
}

.slide-3d-2 {
    transform: translate(-35%, -55%) translateZ(-200px) scale(0.9);
    z-index: 2;
    opacity: 0.7;
}

.slide-3d-3 {
    transform: translate(-65%, -45%) translateZ(-400px) scale(0.8);
    z-index: 1;
    opacity: 0.5;
}

/* Center the navigation dots under the slider better */
.slider-nav {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(184, 134, 11, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .slider-dot.active {
            background: var(--color-gold);
            width: 40px;
            border-radius: 6px;
            border-color: var(--color-gold);
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .float-animation {
            animation: float 6s ease-in-out infinite;
        }

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, var(--color-dark-green), var(--color-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Decorative Elements */
        .decorative-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            pointer-events: none;
        }

        .circle-1 {
            width: 400px;
            height: 400px;
            background: var(--color-gold);
            top: -200px;
            right: -100px;
            filter: blur(100px);
        }

        .circle-2 {
            width: 300px;
            height: 300px;
            background: var(--color-dark-green);
            bottom: -150px;
            left: -100px;
            filter: blur(80px);
        }

        /* Enhanced Cards */
        .feature-card {
            position: relative;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(184, 134, 11, 0.1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(184, 134, 11, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .feature-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        /* Icon Animations */
        .icon-wrapper {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .icon-wrapper::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--color-gold);
            border-radius: 50%;
            opacity: 0.2;
            transform: scale(0);
            transition: transform 0.5s ease;
        }

        .feature-card:hover .icon-wrapper::before {
            transform: scale(1.3);
        }

        /* Scroll Reveal */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: opacity, transform;
        }
        
        .reveal-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Gallery Enhanced */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            cursor: pointer;
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(184, 134, 11, 0.8), rgba(54, 83, 73, 0.8));
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        .gallery-overlay-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 2;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item:hover .gallery-overlay-content {
            opacity: 1;
            transform: scale(1);
        }

        /* Testimonial Cards Enhanced */
        .testimonial-card {
            position: relative;
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.5s ease;
            border: 1px solid rgba(184, 134, 11, 0.2);
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-gold), var(--color-dark-green));
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .testimonial-card:hover::before {
            transform: scaleX(1);
        }

        /* Stats Counter */
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--color-gold), var(--color-dark-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Contact Form Enhanced */
        .form-group input,
        .form-group textarea,
        .form-group select {
            border: 2px solid rgba(184, 134, 11, 0.2);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--color-gold);
            box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
            transform: translateY(-2px);
        }

        /* Section Divider */
        .section-divider {
            position: relative;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
            margin: 4rem 0;
        }

        /* Parallax Background */
        .parallax-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transform: translateZ(-1px) scale(1.5);
            z-index: -1;
        }

        /* Mobile Menu Animation */
        .mobile-menu-enter {
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-100%);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Service Icon Pulse */
        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .service-icon-pulse::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: var(--color-gold);
            animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .slider-3d-container {
                height: 500px;
                margin-top: 40px;
            }
            .stat-number{
                font-size: 30px
            }
            
            .slide-3d {
                width: 85%;
                height: 85%;
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--color-light-green);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--color-gold);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--color-dark-green);
        }
        #about{
            padding-bottom: 2rem;
        }
        #gallery{
            padding-top: 1rem;
        }
        /* FIX 1: Prevent background elements from blocking clicks */
.decorative-circle {
    pointer-events: none;
    z-index: -1;
}

/* FIX 2: Ensure the contact section is above background elements */
#contact {
    position: relative;
    z-index: 10;
}

/* FIX 3: Ensure icons have correct font weight to display */
.fa-solid, .fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* FIX 4: Make sure inputs are always on top and clickable */
.form-group input, 
.form-group textarea, 
.form-group select {
    position: relative;
    z-index: 20;
    cursor: text;
}

select {
    cursor: pointer;
}
#meet-dropdown{
    display:none;
}
.ddd,#mobile-menu{
      background: white;
      padding: 10px;
  }
  /* Premium Footer Text Styles */
.footer-brand-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--color-gold);
    padding-left: 8px; /* Subtle slide effect */
}

.footer-social-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(184, 134, 11, 0.2);
    color: var(--color-gold);
}

.footer-social-icon:hover {
    background: var(--color-gold);
    color: white;
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.4);
}
.fff{
    text-align: center;
    background: #F0F5F3;
}
/*hello*/
/* Consultation Form Styles */
#booking .form-status {
    transition: all 0.3s ease;
}

#booking .form-status.success {
    background: rgba(54, 83, 73, 0.1);
    border: 1px solid var(--color-dark-green);
    color: var(--color-dark-green);
}

#booking .form-status.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

#booking input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Loading animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner {
    animation: spin 1s linear infinite;
}
/* Update the main chat-window class */
.chat-window {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 400px;
    /* This ensures it never exceeds the screen width */
    max-width: calc(100vw - 48px); 
    height: 600px;
    max-height: calc(100vh - 120px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

/* Update the Media Query at the bottom of the <style> section */
@media (max-width: 640px) {
    .chat-window {
        width: calc(100vw - 32px); /* Smaller margins on mobile */
        height: calc(100vh - 300px);
        bottom: 30px;
        margin-top : 10px;
        right: 16px; /* Move closer to the edge to prevent left-side cutoff */
    }
    
    .chat-widget {
        right: 16px;
        bottom: 16px;
    }
    .dgv {
        margin: -10px -10px;
        border-radius: 20px;
        margin-top: 10px;
        
    }
    #love{
    font-size:0.620rem !important;
    margin-left: 10px;
}
.logolagao{
    margin-left:0px;
    max-height:70px;
    margin-top:5px;
}
    
}
    /* Additional mobile-specific styles */
    @media (max-width: 640px) {
        #chat-frame[data-expanded="true"] {
            top: 30px !important;
            height: calc(100vh - 300px) !important;
            width: calc(100vw - 20px) !important;
            left: 10px !important;
            right: 10px !important;
            bottom: 10px !important;
            border-radius: 12px !important;
        }
    }
            /* Mobile Menu Improvements */
        #mobile-menu {
            display: none;
        }
        
        #mobile-menu:not(.hidden) {
            display: block;
            animation: slideInRight 0.3s ease-out;
        }
        
        @keyframes slideInRight {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(0);
            }
        }
        
        .mobile-nav-link.active {
            background: var(--color-light-green);
            border-left: 10px solid var(--color-gold);
            border-radius: 20px;
            text-align: center;
            padding-top: 5px;
            padding-bottom: 5px;
        }
        
        /* Rotate icon for dropdown */
        .rotate-180 {
            transform: rotate(180deg);
        }
        /* Mobile Navigation Styles for Image Layout */
/* Mobile Navigation Styles */
@media (max-width: 768px) {
    /* Prevent the horizontal scrollbar from showing while allowing scrolling */
    .no-scrollbar::-webkit-scrollbar {
        display: none;
    }
    .no-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Adjust the scrolling bar */
    .services-dropdown {
        padding-bottom: 5px;
        overflow-x: auto;
        background: white;
        -webkit-overflow-scrolling: touch;
        
     justify-content: space ;
    }

    /* CRITICAL: Ensure sub-menus don't expand the container or get hidden */
    .services-dropdown .absolute {
        position: fixed; /* Fixed position so it stays on top of the screen flow */
        left: 5%;
        right: 5%;
        width: 90%;
        top: 130px; /* Adjust this value based on your header height */
        margin: 0 auto;
    }
.ffdf{
    display: none;
    visibility: hidden;
    max-height: 0rem;
    
}

}

/* Ensure the second nav sits nicely */
.ffdf {
    margin-top: -20px !important; /* Reset the negative margin */
    justify-content: center;
    display: flex;
}
/* Desktop Services Dropdown */
@media (min-width: 769px) {
    .services-dropdown-container {
        position: relative;
    }
    #hdhd{
        display: none;
    }
    #love{
    font-size:0.620rem !important;
    margin-left: 5px;
}
    .services-dropdown-trigger {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }
    
    .services-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 280px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        padding: 16px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .services-dropdown-container:hover .services-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .service-dropdown-link {
        display: block;
        padding: 12px 24px;
        color: var(--color-dark-green);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .service-dropdown-link:hover {
        background: rgba(184, 134, 11, 0.05);
        color: var(--color-gold);
        padding-left: 32px;
    }
}
.ffdf{
    margin-top: -30px;
    justify-content: center;
    display: flex;
    max-height: 4rem;
}
#ffff{
    width: 150px;
    justify-content: center;
    display: flex;
}

.ggggg{
    margin: 0 -20px;
}
    :root {
        --font-sans: 'Inter', sans-serif;
        --font-serif: 'Playfair Display', serif;
        --color-light-green: #F0F5F3;
        --color-dark-green: #365349;
        --color-gold: #B8860B;
        --color-dark-text: #1F2937;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: var(--font-sans);
        color: var(--color-dark-text);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6, .font-serif {
        font-family: var(--font-serif);
    }

    /* Custom Colors */
    .bg-brand-light-green { background-color: var(--color-light-green); }
    .text-brand-dark-green { color: var(--color-dark-green); }
    .text-brand-gold { color: var(--color-gold); }
    .border-brand-gold { border-color: var(--color-gold); }
    .bg-brand-gold { background-color: var(--color-gold); }
    .hover\:bg-brand-gold-dark:hover { background-color: #a0740a; }

    /* Navigation */
    .nav-link {
        position: relative;
        padding-bottom: 8px;
        color: var(--color-dark-green);
        transition: all 0.3s ease;
        font-weight: 500;
        letter-spacing: 0.3px;
    }
    
    .nav-link:hover {
        color: var(--color-gold);
        transform: translateY(-2px);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
        transition: width 0.4s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    /* Service Inquiry Form Styles */
    .form-group input,
    .form-group textarea,
    .form-group select {
        border: 2px solid rgba(184, 134, 11, 0.2);
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: var(--color-gold);
        box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
        transform: translateY(-2px);
    }

    /* CRITICAL FIX: Ensure desktop layout works properly */
    .ffdf {
        display: flex !important;
        height: 80px;
        align-items: center;
        justify-content: center;
        margin-top: -20px;
    }

    .ffdf > div {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 80px;
    }
 /* Desktop Services Dropdown */
    @media (min-width: 1090px) {
        
        #essebhidekhapadega{
                min-width: 200px;
            }
    }
    /* Desktop Services Dropdown */
    @media (min-width: 769px) {
        /* Ensure desktop navbar is visible and properly positioned */
        .ffdf {
            display: flex !important;
            visibility: visible !important;
            height: 80px;
            align-items: center;
            margin-top: -20px;
        }

        .ffdf > div {
            display: flex !important;
            align-items: center;
            justify-content: center;
            width: 100%;
            gap: 40px;
        }

        /* Hide mobile services dropdown on desktop */
        

        /* Desktop dropdown styles */
        .services-dropdown-container {
            position: relative;
        }
        
        .services-dropdown-trigger {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }
        
        .services-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 280px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            padding: 16px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .services-dropdown-container:hover .services-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .service-dropdown-link {
            display: block;
            padding: 12px 24px;
            color: var(--color-dark-green);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .service-dropdown-link:hover {
            background: rgba(184, 134, 11, 0.05);
            color: var(--color-gold);
            padding-left: 32px;
        }

        /* Ensure desktop dropdown menus have correct styling */
        .ffdf .relative.group:hover .absolute {
            display: block !important;
            z-index: 1000;
        }

        .ffdf .absolute {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            padding: 16px 0;
            z-index: 1000;
        }

        .ffdf .absolute a {
            display: block;
            padding: 12px 24px;
            color: var(--color-dark-green);
            text-decoration: none;
            white-space: nowrap;
        }

        .ffdf .absolute a:hover {
            background: rgba(184, 134, 11, 0.05);
            color: var(--color-gold);
        }
        
    }

        @media(max-width:800px){
            
        /* Hide desktop second navbar in mobile */
        .ffdf {
            display: none !important;
        }
        
        /* Main header adjustments */
        #header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        /* Mobile services dropdown - always visible */
        .mobile-services-dropdown {
            display: flex;
            position: fixed;
            top: 120px; /* Position below main header */
            left: 0;
            
            right: 0;
            background: white;
            border-bottom: 1px solid rgba(184, 134, 11, 0.1);
            z-index: 40;
            padding: 12px 16px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            height: 60px;
            align-items: center;
        }
        #setkarkedekhtehai{
            min-width: 95%;
            min-height: 100px;
        }
        
        .mobile-services-dropdown::-webkit-scrollbar {
            display: none;
        }
        
        .service-dropdown-item {
            flex: 0 0 auto;
            margin-right: 16px;
            position: relative;
        }
        
        .service-dropdown-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            padding: 10px 16px;
            background: var(--color-light-green);
            border: 1px solid rgba(184, 134, 11, 0.2);
            border-radius: 12px;
            color: var(--color-dark-green);
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .service-dropdown-btn:hover {
            background: var(--color-gold);
            color: white;
            transform: translateY(-2px);
        }
        
        .service-dropdown-content {
            position: fixed;
            top: 140px; /* Position below mobile services dropdown */
            left: 5%;
            right: 5%;
            width: 90%;
            max-height: 60vh;
            overflow-y: auto;
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            padding: 16px;
            z-index: 50;
            display: none;
            animation: slideDown 0.3s ease-out;
        }
        
        .service-dropdown-content.active {
            display: block;
        }
        
        .service-dropdown-link {
            display: block;
            padding: 12px 16px;
            color: var(--color-dark-green);
            text-decoration: none;
            border-radius: 8px;
            margin-bottom: 4px;
            transition: all 0.3s ease;
        }
        
        .service-dropdown-link:hover {
            background: rgba(184, 134, 11, 0.05);
            color: var(--color-gold);
            padding-left: 20px;
        }
        
        .close-dropdown {
            position: absolute;
            top: 12px;
            right: 12px;
            background: none;
            border: none;
            font-size: 20px;
            color: var(--color-dark-green);
            cursor: pointer;
            z-index: 51;
        }
        
        /* Adjust main content padding to account for fixed dropdown */
        main {
            padding-top: 140px !important;
        }
        
        /* Hide the old mobile menu services section */
        .ccc {
            display: none !important;
        }
        
        /* Mobile menu adjustments */
        #mobile-menu {
            top: 0px; /* Start below the services dropdown */
            height: calc(100vh - 140px);
        }
        
        .stat-number {
            font-size: 30px;
        }
        #home{
            background-image: url('images/background1.jpeg');
            background-repeat: no-repeat;
            text-align:center;
            
            background-size: contain;
            background-position: center 20px;
            background-color: var(--color-light-green);
            padding: 0 0;
            margin-top: 0;
            
        }
        #love{
             margin-top: -20px;
             
        }
        #headingkokarengeab{
            margin-top:  7rem;
            font-size: 3rem;
        }
    
        }
        @media(min-width:785px)and (max-width:1000px){
            #essebhidekhapadega{
                min-width: 200px;
            }
        }
        @media(min-width:1200px){
            .slider-3d-container{
                margin-top:-15%;
            }
        }
        @media(max-width:640px){
            #mobile-menu-btn{
                margin-left:20px;
            }
        }
    /* Mobile Services Dropdown */
    @media (min-width:800px) and (max-width: 1600px) {
        /* Hide desktop second navbar in mobile */
        .ffdf {
            display: none !important;
        }
        .ffddfef{
            gap: 1.5rem;
            align-content: center;
            align-items: center;
            justify-content: center;
            align-self: center;
            text-align: center;
        }
        #eskoupperkartehai{
            margin-bottom: 2rem;
        }
        /* Main header adjustments */
        #header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .eskewidthsetkartehai{
            font-size: 4rem;
        }
        #headingkokarengeab{
            margin-top:  7rem
        }
        /* Mobile services dropdown - always visible */
        .mobile-services-dropdown {
            display: flex;
            position: fixed;
            top: 125px; /* Position below main header */
            left: 0;
            justify-content: center;
            gap: 20px;
            right: 0;
            background: white;
            border-bottom: 1px solid rgba(184, 134, 11, 0.1);
            z-index: 40;
            padding: 12px 16px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            height: 60px;
            align-items: center;
        }
        #setkarkedekhtehai{
            min-width: 95%;
            min-height: 100px;
        }
        
        .mobile-services-dropdown::-webkit-scrollbar {
            display: none;
        }
        
        .service-dropdown-item {
            flex: 0 0 auto;
            margin-right: 16px;
            position: relative;
        }
        
        .service-dropdown-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            padding: 10px 16px;
            background: var(--color-light-green);
            border: 1px solid rgba(184, 134, 11, 0.2);
            border-radius: 12px;
            color: var(--color-dark-green);
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .service-dropdown-btn:hover {
            background: var(--color-gold);
            color: white;
            transform: translateY(-2px);
        }
        
        .service-dropdown-content {
            position: fixed;
            top: 140px; /* Position below mobile services dropdown */
            left: 5%;
            right: 5%;
            width: 90%;
            max-height: 60vh;
            overflow-y: auto;
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            padding: 16px;
            z-index: 50;
            display: none;
            animation: slideDown 0.3s ease-out;
        }
        
        .service-dropdown-content.active {
            display: block;
        }
        
        .service-dropdown-link {
            display: block;
            padding: 12px 16px;
            color: var(--color-dark-green);
            text-decoration: none;
            border-radius: 8px;
            margin-bottom: 4px;
            transition: all 0.3s ease;
        }
        
        .service-dropdown-link:hover {
            background: rgba(184, 134, 11, 0.05);
            color: var(--color-gold);
            padding-left: 20px;
        }
        
        .close-dropdown {
            position: absolute;
            top: 12px;
            right: 12px;
            background: none;
            border: none;
            font-size: 20px;
            color: var(--color-dark-green);
            cursor: pointer;
            z-index: 51;
        }
        
        /* Adjust main content padding to account for fixed dropdown */
        main {
            padding-top: 140px !important;
        }
        
        /* Hide the old mobile menu services section */
        .ccc {
            display: none !important;
        }
        
        /* Mobile menu adjustments */
        #mobile-menu {
            top: 0px; /* Start below the services dropdown */
            height: calc(100vh - 140px);
        }
        
        .stat-number {
            font-size: 30px;
        }
        #home{
            background-image: url('images/background.jpeg');
            background-repeat: no-repeat;
            background-size: 1280px;
            text-align: center;
            display: flex;
            flex: column;
            justify-content: center;
            align-items: center;
            background-position: center 10px;
            background-color: var(--color-light-green);
            padding: 0 0;
            margin-top: 0;
        }
        #love{
             margin-top: -20px;
             
        }
    }
   
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Footer Text Styles */
    .footer-brand-text {
        background: linear-gradient(135deg, #FFFFFF 0%, #B8860B 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
    }

    .footer-link {
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
    }

    .footer-link:hover {
        color: var(--color-gold);
        padding-left: 8px;
    }

    .footer-social-icon {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(184, 134, 11, 0.2);
        color: var(--color-gold);
    }

    .footer-social-icon:hover {
        background: var(--color-gold);
        color: white;
        box-shadow: 0 0 15px rgba(184, 134, 11, 0.4);
    }
    
    /* Form Status */
    #service-form .form-status {
        transition: all 0.3s ease;
    }
    
    #service-form .form-status.success {
        background: rgba(54, 83, 73, 0.1);
        border: 1px solid var(--color-dark-green);
        color: var(--color-dark-green);
    }
    
    #service-form .form-status.error {
        background: rgba(239, 68, 68, 0.1);
        border: 1px solid #ef4444;
        color: #ef4444;
    }
    
    /* Loading spinner */
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .loading-spinner {
        animation: spin 1s linear infinite;
    }
    
    /* Mobile Menu Styles */
    #mobile-menu {
        display: none;
    }
    
    #mobile-menu:not(.hidden) {
        display: block;
        animation: slideInRight 0.3s ease-out;
    }
    
    @keyframes slideInRight {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }
    
    .mobile-nav-link.active {
        background: var(--color-light-green);
        border-left: 4px solid var(--color-gold);
    }
    @media(max-width:1024px){
        .jetet{
            flex-direction: column;
        }
        #buttonkomargindetehai{
            margin-top: 80px;
        }
    #textaligncenterkartehai{
        text-align: center;
        border-radius: 20px;
        
        color: white;
    }
    #love{
        margin-top: 15px;
        padding: 10px 10px;
    }
    }
    @media(max-width:1200px) and (min-width:1024px){
        .ffddfef{
            display: flex;
            flex-direction: row;
            flex: space-between;
            margin: 10px 10px;
            gap: 0;
            
        }
        .container {
        max-width: 100% !important; /* This reduces the "empty" space on desktop significantly */
    }
            .ffdf > div {
                gap:20px;
            }
    }
    @media(min-width:1000px){
        #essedisplaynonekartehai{
            display: none;
        }
    }
    .logolagao{
        max-width: 150px;
        margin-top: 26px;
    }
    #eskewidthsetkartehai{
        max-width: 43%;
            margin-left: 10px;
    }
    @media (min-width: 1024px) and (max-width:1089px){
    .container {
        max-width: 95% !important; /* This reduces the "empty" space on desktop significantly */
    }
    #essebhidekhapadega{
        display: flex;
        flex-direction: row;
        width: 600px;
    }
    #love{
        font-size: 10px;
        max-height: 30px;
        margin-top: 10% ;
        text-align: center;
        min-width: 50%;
        margin-left: 2%;
    }
}

#hellodekhtehai{
    margin-top: 0 0;
    padding: 0 0 ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}
#setkarkedekhtehai{
    min-height: 125px;
}
.ffdf{
    background-color: white;
}
.ffddfef{
    justify-content: space-between;
}
@media(max-width:1080px){
    .hellopolicy button{
        display:none;
    }
}
#currenteventdekho{
    background: linear-gradient(45deg, #4da0b0, #d39d38);
          color: white;
          font-weight: bold;
          font-size: 12px;
          padding: 5px 10px;
          border-radius: 8px;
          box-shadow: 0 0 15px rgba(211, 157, 56, 1);
          text-transform: uppercase;
          letter-spacing: 2px;
          text-decoration: none;
}
#currenteventdekho2 {
    background: linear-gradient(45deg, #4da0b0, #d39d38);
    color: white;
    font-weight: bold;
    font-size: 18px;
    width: 50%;
    text-align: center;
    align-self: center;
    padding: 15px 15px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(211, 157, 56, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}