
        
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #ffffff;
            overflow-x: hidden;
            width: 100%;
            scroll-padding-top: 120px;
            padding-top: 120px;
        }

        html {
            overflow-x: hidden;
        }

        /* Top Bar */
        .top-bar {
            background: linear-gradient(135deg, #000000 0%, #000000 40%, #8B0000 70%, rgb(255, 78, 9) 100%);
            color: white;
            padding: 0.5rem 0;
            font-size: 0.9rem;
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
        }

        .top-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
            pointer-events: none;
        }

        .top-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .social-icons {
            display: flex;
            gap: 0.8rem;
        }

        .social-icons a {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
        }

        .social-icons a:hover {
            color: #ff6b6b;
        }

        .company-name {
            font-weight: 600;
            font-size: 0.9rem;
        }

        .top-bar-links a {
            color: white;
            text-decoration: none;
            margin-left: 1.5rem;
            transition: all 0.3s ease;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-block;
        }

        .top-bar-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Header */
        .header {
            background: #00000081;
            position: fixed;
            height: 100px;
            top: 40px;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .header.header-hidden {
            transform: translateY(-100%);
        }

        /* Desktop Top Bar Offset */
        @media (min-width: 769px) {
            html {
                scroll-padding-top: 120px;
            }
            
            body {
                padding-top: 120px;
            }
        }

        .nav-container {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-circle {
            width: 40px;
            height: 40px;
            background: rgb(255, 78, 9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .logo-text h1 {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .logo-text p {
            color: #e2e8f0;
            font-size: 0.8rem;
            margin-top: -2px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: rgb(255, 78, 9);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: rgb(255, 78, 9);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: color 0.3s ease;
            z-index: 1001;
        }

        .mobile-menu-btn:hover {
            color: rgb(255, 78, 9);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: #000000;
            z-index: 2000;
            transition: right 0.3s ease;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            border-bottom: none;
        }

        .mobile-menu-buttons {
            border-bottom: none;
            padding: 1rem 1.5rem;
            background: rgb(0, 0, 0);
        }

        .mobile-buttons-container {
            display: flex;
            gap: 0.8rem;
            justify-content: center;
        }

        .mobile-menu-buttons .mobile-top-btn {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-block;
            text-align: center;
            flex: 1;
            max-width: 120px;
        }

        .mobile-menu-buttons .mobile-top-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-close:hover {
            color: rgb(255, 78, 9);
        }

        .mobile-menu-links {
            list-style: none;
            padding: 0;
            width: 100%;
            box-sizing: border-box;
        }

        .mobile-menu-links li {
            border-bottom: none;
            width: 100%;
            box-sizing: border-box;
        }

        .mobile-menu-links a {
            display: block;
            padding: 0.5rem 1.5rem;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s ease;
            width: 100%;
            box-sizing: border-box;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .mobile-menu-links a:hover {
            background: #333;
            color: rgb(255, 78, 9);
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .nav-actions i {
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .nav-actions i:hover {
            color: rgb(255, 78, 9);
        }

        .schedule-btn {
            background: rgb(255, 78, 9);
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            display: none;
        }

        .schedule-btn:hover {
            background: rgb(220, 60, 0);
        }

        /* Hero Section */
        .hero {
            /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('https://wp2.yogsthemes.com/thewp/aspiro/wp-content/uploads/2021/01/image-1.jpg'); */
            background-size: 100% 100%;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            min-height: 80vh;
            display: flex;
            align-items: center;
            /* position: relative; */
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: 100% 100%;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 1;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide:nth-child(1) {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('https://wp2.yogsthemes.com/thewp/aspiro/wp-content/uploads/2021/01/image-1.jpg');
        }

        .hero-slide:nth-child(2) {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('https://images.unsplash.com/photo-1505843513577-22bb7d21e455?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8YmlnJTIwaG91c2V8ZW58MHx8MHx8fDA%3D');
        }

        .hero-slide:nth-child(3) {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('https://wp2.yogsthemes.com/thewp/aspiro/wp-content/uploads/2021/01/image-4.jpg');
        }

        .hero-container {
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
            padding: 0 5%;
            color: white;
            position: relative;
            z-index: 10;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .explore-btn {
            background: rgb(255, 78, 9);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .explore-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 78, 9, 0.3);
        }

        .hero-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.6);
            color: white;
            width: 4vw;
            height: 4vw;
            min-width: 40px;
            min-height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease;
            z-index: 15;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .hero-nav:hover {
            background: rgba(0, 0, 0, 0.8);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .hero-nav.prev {
            left: 3%;
        }

        .hero-nav.next {
            right: 3%;
        }

        /* Feature Icons Section */
        .features {
            padding: 4rem 0;
            background: white;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 2rem;
            width: 100%;
        }

        .feature-item {
            text-align: center;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            border: 2px solid rgb(255, 78, 9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: rgb(255, 78, 9);
            font-size: 1.5rem;
        }

        .feature-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: rgb(255, 78, 9);
            display: block;
        }

        .feature-label {
            color: #6b7280;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        /* About Section */
        .about {
            padding: 6rem 0;
            background: #f8fafc;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            padding: 0 2rem;
        }

        .about-content h2 {
            font-size: 2.5rem;
            color: #1f2937;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .about-content p {
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .price-highlight {
            color: rgb(255, 78, 9);
            font-size: 2rem;
            font-weight: 700;
        }

        .about-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            width: 100%;
            height: 400px;
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            object-position: center;
        }

        .play-button {
            position: absolute;
            top: 33%;
            left: 43%;
            transform: translate(-50%, -50%);
            background: rgb(255, 78, 9);
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            cursor: pointer;
            transition: transform 0.3s ease;
            z-index: 10;
        }

        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* Services Section */
        .services {
            padding: 6rem 0;
            background: white;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #1f2937;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Services Slider Styles */
        .services-slider {
            position: relative;
            overflow: hidden;
            padding: 15px 0;
        }

        .services-slider-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 20px;
        }

        .service-slide {
            flex: 0 0 240px;
            background: white;
            border-radius: 12px;
            padding: 1.8rem 1.5rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid #f1f5f9;
        }

        .service-slide:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(255, 78, 9, 0.15);
            border-color: rgb(255, 78, 9);
        }

        .service-slide .service-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.1rem;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            background: rgb(255, 78, 9);
        }

        .service-slide:hover .service-icon {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(255, 78, 9, 0.3);
        }

        .service-slide h3 {
            color: #1f2937;
            font-size: 1rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
            position: relative;
            z-index: 2;
        }

        .service-slide p {
            color: #6b7280;
            font-size: 0.85rem;
            line-height: 1.5;
            position: relative;
            z-index: 2;
        }

        .service-hover-effect {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 78, 9, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .service-slide:hover .service-hover-effect {
            opacity: 1;
        }

        .services-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
            opacity: 0.7;
        }

        .services-nav-btn:hover {
            background: white;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transform: translateY(-50%) scale(1.1);
            opacity: 1;
        }

        .services-nav-btn i {
            color: #1f2937;
            font-size: 1.2rem;
        }

        .services-nav-btn.prev-btn {
            left: 20px;
        }

        .services-nav-btn.next-btn {
            right: 20px;
        }

        .services-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }

        .service-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #e5e7eb;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .service-dot.active {
            background: #ff6b6b;
            transform: scale(1.2);
        }

        .service-dot:hover {
            background: #ff6b6b;
            transform: scale(1.1);
        }



        /* Gallery Section */
        .gallery {
            padding: 6rem 0;
            background: white;
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .gallery-filters {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            width: 100%;
        }

        .filter-btn {
            padding: 0.5rem 1.5rem;
            border: none;
            background: none;
            color: #6b7280;
            cursor: pointer;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .filter-btn.active {
            color: rgb(255, 78, 9);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            width: 100%;
        }

        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            width: 100%;
            height: 250px;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            object-position: center;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 6rem 0;
            background: #f8fafc;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
            width: 100%;
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .testimonial-stars {
            color: rgb(255, 78, 9);
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: #374151;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .author-info h4 {
            color: #1f2937;
            font-weight: 600;
        }

        .author-info p {
            color: #6b7280;
            font-size: 0.9rem;
        }

        /* Testimonials Slider for Mobile */
        .testimonials-slider {
            display: none;
            position: relative;
            overflow: hidden;
            margin-top: 3rem;
        }

        .testimonials-slide {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }

        .testimonials-slide.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .slider-dot.active {
            background: rgb(255, 78, 9);
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, #000000 0%, #000000 40%, #8B0000 70%, rgb(255, 78, 9) 100%);
            padding: 3rem 0;
            text-align: center;
        }

        .cta-container {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
        }

        .cta-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: white;
        }

        .cta-logo h2 {
            font-size: 2rem;
            font-weight: 700;
        }

        .cta-btn {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
        }

        .cta-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        .footer {
            background: #000000;
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-container {
            max-width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            padding: 0 5%;
            width: 100%;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .footer-section p {
            color: #9ca3af;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: rgb(255, 78, 9);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            color: #9ca3af;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: rgb(255, 78, 9);
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            color: #9ca3af;
        }

        .contact-info i {
            color: rgb(255, 78, 9);
            width: 16px;
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-in-left.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-in-right.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .scale-in.animate {
            opacity: 1;
            transform: scale(1);
        }

        .rotate-in {
            opacity: 0;
            transform: rotate(-10deg) scale(0.8);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .rotate-in.animate {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        .bounce-in {
            opacity: 0;
            transform: translateY(50px) scale(0.8);
            transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .bounce-in.animate {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .flip-in {
            opacity: 0;
            transform: perspective(400px) rotateY(90deg);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .flip-in.animate {
            opacity: 1;
            transform: perspective(400px) rotateY(0deg);
        }

        .zoom-in {
            opacity: 0;
            transform: scale(0.5);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .zoom-in.animate {
            opacity: 1;
            transform: scale(1);
        }

        .stagger-delay-1 { transition-delay: 0.1s; }
        .stagger-delay-2 { transition-delay: 0.2s; }
        .stagger-delay-3 { transition-delay: 0.3s; }
        .stagger-delay-4 { transition-delay: 0.4s; }
        .stagger-delay-5 { transition-delay: 0.5s; }
        .stagger-delay-6 { transition-delay: 0.6s; }

        /* Image Fitting Rules */
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .logo img {
            object-fit: contain;
            height: auto;
        }

        /* Hero Entrance Effect */
        .hero-entrance {
            opacity: 0;
            transform: translateY(30px);
            animation: heroEntrance 1.2s ease-out 0.3s forwards;
        }

        @keyframes heroEntrance {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 3%;
            right: 3%;
            background: rgb(255, 78, 9);
            color: white;
            width: 4vw;
            height: 4vw;
            min-width: 40px;
            min-height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(255, 78, 9, 0.3);
            transition: transform 0.3s ease;
            z-index: 1000;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 13%;
            left: 2%;
            background: rgb(255, 78, 9);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(255, 78, 9, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 78, 9, 0.4);
            background: #e65a00;
        }

        .scroll-to-top:active {
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0 3%;
            }
            
            .hero-container {
                padding: 0 3%;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
            
            .about-container,
            .room-content {
                gap: 2rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .header {
                top: 0;
            }
            
            body {
                padding-top: 80px;
                scroll-padding-top: 80px;
            }
            
            .top-bar-container,
            .nav-container,
            .hero-container,
            .features-container,
            .about-container,
            .services-container,
            .room-container,
            .gallery-container,
            .testimonials-container,
            .cta-container,
            .footer-container {
                padding: 0 4%;
                width: 100%;
                overflow-x: hidden;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block !important;
                position: relative;
                z-index: 1001;
            }

            .mobile-menu-buttons {
                padding: 0.8rem 1.2rem;
            }

            .mobile-buttons-container {
                gap: 0.6rem;
            }

            .mobile-menu-buttons .mobile-top-btn {
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
                border-radius: 22px;
                max-width: 100px;
            }

            .nav-container {
                flex-wrap: nowrap;
                justify-content: space-between;
                align-items: center;
            }

            .logo {
                flex: 0 0 auto;
            }

            .nav-actions {
                flex: 0 0 auto;
                gap: 0.5rem;
                display: flex;
                align-items: center;
            }

            .schedule-btn {
                display: none;
            }

            .mobile-menu-btn {
                font-size: 1.5rem;
                padding: 0.5rem;
                background: none;
                border: none;
                color: white;
                cursor: pointer;
                min-width: 44px;
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .mobile-menu-buttons {
                padding: 0.6rem 1rem;
            }

            .mobile-buttons-container {
                gap: 0.5rem;
            }

            .mobile-menu-buttons .mobile-top-btn {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
                border-radius: 20px;
                max-width: 90px;
            }

            .logo img {
                height: 60px !important;
            }

            .logo-text h1 {
                font-size: 1.4rem;
            }

            .logo-text p {
                font-size: 0.7rem;
            }

            .hero-content h1 {
                font-size: 2.2rem;
                margin-bottom: 1rem;
            }

            .hero-content p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .explore-btn {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }

            .hero-nav {
                display: none;
            }

            .hero-nav.mobile-nav {
                display: flex;
                position: absolute;
                bottom: 20px;
                top: auto;
                transform: none;
                width: 40px;
                height: 40px;
            }

            .hero-nav.mobile-nav.prev {
                left: 20px;
            }

            .hero-nav.mobile-nav.next {
                right: 20px;
            }

            .features-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 0.5rem;
                width: 100%;
            }

            .feature-item:nth-child(n+5) {
                display: none;
            }

            .feature-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .feature-number {
                font-size: 1rem;
            }

            .feature-label {
                display: none;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-content {
                order: 2;
            }

            .about-image {
                order: 1;
            }

            .about-content h2 {
                font-size: 2rem;
            }

            .about-content p {
                font-size: 1rem;
            }

            .price-highlight {
                font-size: 1.6rem;
            }

            .about-image img {
                height: 300px;
            }

            .play-button {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                top: 36%;
                left: 40%;
                transform: translate(-50%, -50%);
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            /* Services Slider Responsive */
            .service-slide {
                flex: 0 0 220px;
                padding: 1.5rem 1.2rem;
            }

            .service-slide .service-icon {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }

            .service-slide h3 {
                font-size: 0.9rem;
            }

            .service-slide p {
                font-size: 0.8rem;
            }

            .services-nav-btn {
                width: 35px;
                height: 35px;
            }

            .services-nav-btn i {
                font-size: 0.9rem;
            }

            .services-nav-btn.prev-btn {
                left: 8px;
            }

            .services-nav-btn.next-btn {
                right: 8px;
            }



            .gallery-filters {
                flex-wrap: wrap;
                gap: 1rem;
                width: 100%;
                justify-content: center;
            }

            .filter-btn {
                padding: 0.4rem 1rem;
                font-size: 0.9rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                width: 100%;
            }

            .gallery-item img {
                height: 200px;
            }

            .testimonials-grid {
                display: none;
            }

            .testimonials-slider {
                display: block;
            }

            .testimonial-card {
                padding: 2rem;
            }

            .testimonial-text {
                font-size: 1rem;
            }

            .author-avatar {
                width: 50px;
                height: 50px;
            }

            .cta-banner {
                padding: 1.5rem 0;
            }

            .cta-container {
                flex-direction: column;
                gap: 1rem;
                padding: 0 4%;
            }

            .cta-logo {
                justify-content: center;
                gap: 0.5rem;
            }

            .cta-logo img {
                height: 40px !important;
            }

            .cta-logo h5 {
                font-size: 1rem;
                font-weight: 600;
                margin: 0;
                text-align: center;
            }

            .cta-btn {
                padding: 1rem 2.5rem;
                font-size: 0.9rem;
                border-radius: 25px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
                min-width: 160px;
                position: relative;
                overflow: hidden;
            }

            .cta-btn::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                transition: left 0.5s;
            }

            .cta-btn:hover::before {
                left: 100%;
            }

            .cta-btn:active {
                transform: translateY(0);
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            }

            .footer-section img {
                height: 50px !important;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 4%;
            }

            .footer-section {
                text-align: left;
                border-bottom: 1px solid #374151;
                padding-bottom: 2rem;
            }

            .footer-section:last-child {
                border-bottom: none;
            }

            /* Hide Quick Links and Property Types on mobile */
            .footer-section:nth-child(2),
            .footer-section:nth-child(3) {
                display: none;
            }

            .footer-section h3 {
                font-size: 1.1rem;
                margin-bottom: 1rem;
            }

            .footer-section p {
                font-size: 0.85rem;
                line-height: 1.5;
            }

            .footer-links {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
            }

            .footer-links a {
                font-size: 0.85rem;
                padding: 0.3rem 0;
            }

            .social-links {
                justify-content: flex-start;
                margin-top: 1.5rem;
            }

            .social-links a {
                font-size: 1.1rem;
                padding: 0.5rem;
            }

            .contact-info {
                justify-content: flex-start;
                font-size: 0.85rem;
            }

            .contact-info i {
                font-size: 0.9rem;
            }

            .footer-bottom {
                padding-top: 1.5rem;
                margin-top: 1.5rem;
                font-size: 0.8rem;
            }

            .whatsapp-float {
                width: 4vw;
                height: 4vw;
                min-width: 40px;
                min-height: 40px;
                font-size: 1rem;
                bottom: 5%;
                right: 5%;
            }
        }

        @media (max-width: 480px) {


            .whatsapp-float {
                width: 4vw;
                height: 4vw;
                min-width: 40px;
                min-height: 40px;
                font-size: 1rem;
                bottom: 4%;
                right: 5%;
            }




            .top-bar {
                display: none;
            }
            
            .top-bar-container,
            .nav-container,
            .hero-container,
            .features-container,
            .about-container,
            .services-container,
            .room-container,
            .gallery-container,
            .testimonials-container,
            .cta-container,
            .footer-container {
                padding: 0 5%;
                width: 100%;
                overflow-x: hidden;
            }
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content p {
                font-size: 0.9rem;
            }

            .explore-btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }

            .features-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 0.5rem;
                width: 100%;
            }

            .feature-item:nth-child(n+5) {
                display: none;
            }

            .feature-icon {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }

            .feature-number {
                font-size: 0.9rem;
            }

            .feature-label {
                display: none;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-content {
                order: 2;
            }

            .about-image {
                order: 1;
            }

            .about-content h2 {
                font-size: 1.6rem;
            }

            .about-content p {
                font-size: 0.9rem;
            }

            .price-highlight {
                font-size: 1.4rem;
            }

            .about-image img {
                height: 250px;
            }

            .section-header h2 {
                font-size: 1.6rem;
            }

            .section-header p {
                font-size: 0.9rem;
            }

            /* Services Slider Mobile Responsive */
            .service-slide {
                flex: 0 0 200px;
                padding: 1.2rem 0.8rem;
            }

            .service-slide .service-icon {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
                margin-bottom: 0.8rem;
            }

            .service-slide h3 {
                font-size: 0.85rem;
                margin-bottom: 0.6rem;
            }

            .service-slide p {
                font-size: 0.75rem;
                line-height: 1.3;
            }

            .services-nav-btn {
                width: 30px;
                height: 30px;
            }

            .services-nav-btn i {
                font-size: 0.8rem;
            }

            .services-nav-btn.prev-btn {
                left: 3px;
            }

            .services-nav-btn.next-btn {
                right: 3px;
            }

            .services-dots {
                margin-top: 15px;
            }

            .service-dot {
                width: 8px;
                height: 8px;
            }

            .room-tabs {
                gap: 0.5rem;
            }

            .room-tab {
                padding: 0.6rem;
                font-size: 0.8rem;
            }

            .room-tab i {
                font-size: 1rem;
            }

            .room-info h3 {
                font-size: 1.4rem;
            }

            .room-info p {
                font-size: 0.9rem;
            }

            .room-image img {
                height: 250px;
            }

            .filter-btn {
                padding: 0.3rem 0.8rem;
                font-size: 0.8rem;
            }

            .gallery-item img {
                height: 180px;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .testimonial-text {
                font-size: 0.9rem;
            }

            .author-avatar {
                width: 40px;
                height: 40px;
            }

            .author-info h4 {
                font-size: 0.9rem;
            }

            .author-info p {
                font-size: 0.8rem;
            }

            .cta-banner {
                padding: 1.2rem 0;
            }

            .cta-container {
                gap: 0.8rem;
                padding: 0 5%;
            }

            .cta-logo h5 {
                font-size: 0.9rem;
            }

            .cta-btn {
                padding: 0.8rem 1.8rem;
                font-size: 0.8rem;
                border-radius: 20px;
                min-width: 130px;
                letter-spacing: 0.8px;
            }

            .footer-section h3 {
                font-size: 1.1rem;
            }

            .footer-section p {
                font-size: 0.8rem;
            }

            .footer-links a {
                font-size: 0.8rem;
            }

            .social-links a {
                font-size: 0.9rem;
            }

            /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 13%;
            left: 2%;
            background: rgb(255, 78, 9);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(255, 78, 9, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }













        }



        @media (max-width: 768px) {
            .gallery-filters {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                gap: 0.5rem;
                width: 100%;
                margin-bottom: 1.2rem;
                scrollbar-width: none; /* Firefox */
            }
            .gallery-filters::-webkit-scrollbar {
                display: none; /* Chrome/Safari */
            }
            .filter-btn {
                flex: 0 0 auto;
                white-space: nowrap;
                min-width: 90px;
            }
            .gallery-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 0.7rem;
                width: 100%;
            }
            .gallery-item img {
                width: 100%;
                height: auto;
                border-radius: 10px;
            }
        }

        @media (max-width: 768px) {
            .about-image {
                height: 220px !important;
                min-height: 220px;
                max-height: 220px;
            }
            .about-image img {
                height: 100% !important;
                min-height: 100%;
                max-height: 100%;
                width: 100% !important;
                object-fit: cover;
                object-position: center;
                display: block;
            }
            .gallery-item {
                height: 160px !important;
                min-height: 160px;
                max-height: 160px;
            }
            .gallery-item img {
                height: 100% !important;
                min-height: 100%;
                max-height: 100%;
                width: 100% !important;
                object-fit: cover;
                object-position: center;
                display: block;
            }
            .author-avatar {
                width: 40px !important;
                height: 40px !important;
                min-width: 40px;
                min-height: 40px;
                max-width: 40px;
                max-height: 40px;
            }
            .author-avatar img {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover;
                object-position: center;
                display: block;
            }
        }

        /* Popup Overlay */
        .popup-overlay {
            display: none;
            position: fixed;
            z-index: 2000;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.4);
            transition: opacity 0.3s;
        }

        /* Popup Modal */
        .popup-modal {
            display: none;
            position: fixed;
            z-index: 2001;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.25);
            padding: 2rem 1.5rem 1.5rem 1.5rem;
            min-width: 320px;
            max-width: 95vw;
            width: 100%;
            max-width: 400px;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.2);
            text-align: center;
        }
        .popup-modal.active,
        .popup-overlay.active {
            display: block;
        }
        .popup-close {
            position: absolute;
            top: 12px;
            right: 18px;
            background: none;
            border: none;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            z-index: 10;
            transition: color 0.2s;
        }
        .popup-close:hover {
            color: rgb(255, 78, 9);
        }
        .popup-form h2 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 600;
            color: #fff;
        }
        .popup-form input,
        .popup-form textarea {
            width: 100%;
            margin-bottom: 1rem;
            padding: 0.7rem 1rem;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.15);
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            resize: none;
        }
        .popup-form input:focus,
        .popup-form textarea:focus {
            border: 1.5px solid rgb(255, 78, 9);
            background: rgba(255,255,255,0.22);
        }
        .popup-submit {
            width: 100%;
            padding: 0.7rem 0;
            border-radius: 25px;
            border: none;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: background 0.2s, border 0.2s;
        }
        .popup-submit:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgb(255, 78, 9);
            color: #fff;
        }
        @media (max-width: 480px) {
            .popup-modal {
                min-width: 90vw;
                padding: 1.2rem 0.7rem 1rem 0.7rem;
            }
            .popup-form h2 {
                font-size: 1.1rem;
            }
        }

        .popup-form input::placeholder,
        .popup-form textarea::placeholder {
            color: #333 !important;
            opacity: 1;
        }

        /* Exclusive Offer Popup */



        .exclusive-popup-overlay,
.exclusive-popup-modal,
.popup-overlay,
.popup-modal {
    display: none;
}




        .exclusive-popup-overlay {
            display: none;
            position: fixed;
            z-index: 2000;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6);
            transition: opacity 0.3s;
        }

        .exclusive-popup-modal {
            display: none;
            position: fixed;
            z-index: 2001;
            top: 50%; left: 50%; right: 50%;
            transform: translate(-50%, -50%);
            background: #ffffff;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            padding: 1.5rem;
            min-width: 320px;
            max-width: 95vw;
            width: 100%;
            max-width: 400px;
            color: #333;
            text-align: center;
            border: 2px solid rgb(255, 78, 9);
        }

        .exclusive-popup-modal.active,
        .exclusive-popup-overlay.active {
            display: block;
        }

        .exclusive-popup-close {
            position: absolute;
            top: 12px;
            right: 15px;
            background: rgb(255, 78, 9);
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            transition: background 0.2s;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .exclusive-popup-close:hover {
            background: #e65a00;
        }

        .exclusive-popup-header {
            margin-bottom: 1rem;
        }

        .exclusive-popup-header .exclusive-label {
            font-size: 0.75rem;
            color: rgb(255, 78, 9);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.3rem;
        }

        .exclusive-popup-header .project-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.2rem;
        }

        .exclusive-popup-header .project-location {
            font-size: 0.85rem;
            color: #6b7280;
            font-weight: 500;
        }

        .exclusive-popup-features {
            background: rgba(255, 78, 9, 0.1);
            border-radius: 20px;
            padding: 1rem;
            margin-bottom: 1rem;
            text-align: left;
        }

        .exclusive-popup-features h3 {
            font-size: 0.9rem;
            color: rgb(255, 78, 9);
            margin-bottom: 0.7rem;
            font-weight: 600;
        }

        .exclusive-popup-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .exclusive-popup-features li {
            color: #374151;
            margin-bottom: 0.5rem;
            padding-left: 1.2rem;
            position: relative;
            font-size: 0.8rem;
        }

        .exclusive-popup-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: rgb(255, 78, 9);
            font-weight: bold;
            font-size: 0.9rem;
        }

        .exclusive-popup-price {
            margin-bottom: 1rem;
        }

        .exclusive-popup-price .ready-label {
            font-size: 0.75rem;
            color: rgb(255, 78, 9);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.3rem;
        }

        .exclusive-popup-price .price {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1f2937;
        }

        .exclusive-popup-download {
            background: linear-gradient(135deg, rgb(255, 78, 9) 0%, #e65a00 100%);
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            width: 100%;
            margin-bottom: 1rem;
        }

        .exclusive-popup-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 78, 9, 0.3);
        }

        .exclusive-popup-promise {
            border-top: 1px solid rgba(255, 78, 9, 0.2);
            padding-top: 1rem;
        }

        .exclusive-popup-promise h3 {
            font-size: 0.9rem;
            color: rgb(255, 78, 9);
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .exclusive-popup-promise-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.8rem;
        }

        .exclusive-popup-promise-item {
            text-align: center;
        }

        .exclusive-popup-promise-icon {
            width: 32px;
            height: 32px;
            background: rgb(255, 78, 9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.4rem;
            color: white;
            font-size: 1rem;
        }

        .exclusive-popup-promise-text {
            font-size: 0.7rem;
            color: #6b7280;
            font-weight: 500;
            line-height: 1.2;
        }

        @media (max-width: 480px) {

            .pill-box{
                display: none;
            }

            .exclusive-popup-modal {
                min-width: 85vw;
                max-width: 85vw;
                padding: 1rem;
                margin: 1rem;
                border-radius: 20px;
                width: calc(100vw - 2rem);
            }
            
            .exclusive-popup-header {
                margin-bottom: 0.8rem;
            }
            
            .exclusive-popup-header .exclusive-label {
                font-size: 0.65rem;
                margin-bottom: 0.2rem;
            }
            
            .exclusive-popup-header .project-name {
                font-size: 1rem;
                margin-bottom: 0.15rem;
            }
            
            .exclusive-popup-header .project-location {
                font-size: 0.75rem;
            }
            
            .exclusive-popup-features {
                padding: 0.8rem;
                margin-bottom: 0.8rem;
                border-radius: 15px;
            }
            
            .exclusive-popup-features h3 {
                font-size: 0.8rem;
                margin-bottom: 0.5rem;
            }
            
            .exclusive-popup-features li {
                font-size: 0.7rem;
                margin-bottom: 0.4rem;
                padding-left: 1rem;
            }
            
            .exclusive-popup-features li::before {
                font-size: 0.8rem;
            }
            
            .exclusive-popup-price {
                margin-bottom: 0.8rem;
            }
            
            .exclusive-popup-price .ready-label {
                font-size: 0.65rem;
                margin-bottom: 0.2rem;
            }
            
            .exclusive-popup-price .price {
                font-size: 1rem;
            }
            
            .exclusive-popup-download {
                padding: 0.6rem 1.2rem;
                font-size: 0.8rem;
                margin-bottom: 0.8rem;
                border-radius: 20px;
            }
            
            .exclusive-popup-promise {
                padding-top: 0.8rem;
                border-top: 1px solid rgba(255, 78, 9, 0.2);
            }
            
            .exclusive-popup-promise h3 {
                font-size: 0.8rem;
                margin-bottom: 0.6rem;
            }
            
            .exclusive-popup-promise-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.5rem;
            }
            
            .exclusive-popup-promise-icon {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
                margin-bottom: 0.3rem;
            }
            
            .exclusive-popup-promise-text {
                font-size: 0.6rem;
                line-height: 1.1;
            }
            
            .exclusive-popup-close {
                top: 8px;
                right: 12px;
                width: 22px;
                height: 22px;
                font-size: 1rem;
            }
        }

        .chat-float {
            position: fixed;
            bottom: 3%;
            right: 3%;
            background: rgb(255, 78, 9);
            color: white;
            width: 4vw;
            height: 4vw;
            min-width: 48px;
            min-height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(255, 78, 9, 0.3);
            transition: transform 0.3s ease;
            z-index: 1000;
        }
        .chat-float:hover {
            transform: scale(1.1);
        }
        .chatbox {
            position: fixed;
            bottom: 13.5%;
            right: 3%;
            width: 340px;
            max-width: 95vw;
            background: #fff;
            border-radius: 16px 16px 8px 8px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.397);
            display: none;
            flex-direction: column;
            z-index: 1001;
            overflow: hidden;
            animation: chatbox-pop 0.25s;
        }
        @keyframes chatbox-pop {
            0% { transform: scale(0.8); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }
        .chatbox-header {
            background: rgb(255, 78, 9);
            color: #fff;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .chatbox-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
        }
        .chatbox-body {
            padding: 16px;
            height: 220px;
            overflow-y: auto;
            background: #f8fafc;
            font-size: 1rem;
        }
        .chat-message {
            margin-bottom: 10px;
            padding: 8px 12px;
            border-radius: 12px;
            max-width: 80%;
            word-break: break-word;
        }
        .chat-message.bot {
            background: #f1f1f1;
            color: #333;
            align-self: flex-start;
        }
        .chat-message.user {
            background: rgb(255, 78, 9);
            color: #fff;
            align-self: flex-end;
        }
        .chatbox-input-area {
            display: flex;
            border-top: 1px solid #eee;
            background: #fff;
        }
        .chatbox-input-area input {
            flex: 1;
            border: none;
            padding: 12px;
            font-size: 1rem;
            outline: none;
            background: #fff;
        }
        .chatbox-input-area button {
            background: rgb(255, 78, 9);
            border: none;
            color: #fff;
            padding: 0 18px;
            font-size: 1.2rem;
            cursor: pointer;
            border-radius: 0 0 8px 0;
            transition: background 0.2s;
        }
        .chatbox-input-area button:hover {
            background: #e04a00;
        }

        .chatbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.805);
            z-index: 1000;
            display: none;
            transition: opacity 0.2s;
        }


        @media (max-width: 768px) {
    #menu-0001 {
        display: none !important;
    }
}












/* <!-- Products Slider Styles --> */

.products-slider-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-header p {
  font-size: 0.95rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.products-slider {
  position: relative;
  overflow: hidden;
  padding: 15px 0;
}

.products-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 20px;
}

.product-slide {
  flex: 0 0 300px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #f1f5f9;
}

.product-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 78, 9, 0.15);
  border-color: rgb(255, 78, 9);
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-slide:hover .product-image img {
  transform: scale(1.03);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgb(255, 78, 9);
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.product-content {
  padding: 18px;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-subtitle {
  color: #6c757d;
  font-size: 0.8rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(255, 78, 9);
  margin-bottom: 12px;
}

.product-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-features span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #495057;
  background: #f8f9fa;
  padding: 4px 8px;
  border-radius: 12px;
}

.product-features i {
  color: rgb(255, 78, 9);
  font-size: 0.7rem;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  opacity: 0.7;
}

.slider-nav-btn:hover {
  background: white;
  box-shadow: 0 6px 20px rgba(255, 78, 9, 0.15);
  transform: translateY(-50%) scale(1.05);
  opacity: 1;
}

.slider-nav-btn i {
  color: #2c3e50;
  font-size: 1rem;
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 25px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dee2e6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: rgb(255, 78, 9);
  transform: scale(1.2);
}

.dot:hover {
  background: rgb(255, 78, 9);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-slide {
    flex: 0 0 280px;
  }
}

@media (max-width: 992px) {
  .product-slide {
    flex: 0 0 260px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .products-slider-section {
    padding: 50px 0;
  }
  
  .product-slide {
    flex: 0 0 240px;
  }
  
  .product-content {
    padding: 15px;
  }
  
  .product-title {
    font-size: 0.9rem;
  }
  
  .product-price {
    font-size: 1.1rem;
  }
  
  .slider-nav-btn {
    width: 35px;
    height: 35px;
  }
  
  .slider-nav-btn i {
    font-size: 0.9rem;
  }
  
  .prev-btn {
    left: 8px;
  }
  
  .next-btn {
    right: 8px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .product-slide {
    flex: 0 0 220px;
  }
  
  .product-image {
    height: 160px;
  }
  
  .product-content {
    padding: 12px;
  }
  
  .product-features {
    gap: 8px;
  }
  
  .product-features span {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .section-header p {
    font-size: 0.9rem;
  }
}













    /* <!-- News Section Styles --> */
    .news-section {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .news-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .news-section .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .news-section .section-header h2 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .news-section .section-header p {
        font-size: 1.1rem;
        color: #6c757d;
        max-width: 600px;
        margin: 0 auto;
    }

    .news-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .news-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        text-decoration: none;
        display: block;
        border: 1px solid #f1f5f9;
    }

    .news-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(255, 78, 9, 0.15);
        border-color: rgb(255, 78, 9);
    }

    .news-image {
        height: 200px;
        overflow: hidden;
    }

    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .news-card:hover .news-image img {
        transform: scale(1.05);
    }

    .news-content {
        padding: 20px;
    }

    .news-category {
        display: inline-block;
        background: rgb(255, 78, 9);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }

    .news-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .news-excerpt {
        font-size: 0.9rem;
        color: #6c757d;
        line-height: 1.6;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .news-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .news-section .section-header h2 {
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {
        .news-section {
            padding: 50px 0;
        }
        
        .news-section .section-header h2 {
            font-size: 1.6rem;
        }
        
        .news-section .section-header p {
            font-size: 0.9rem;
        }
        
        .news-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        
        .news-image {
            height: 180px;
        }
        
        .news-content {
            padding: 10px;
        }
        
        .news-category {
            font-size: 0.65rem;
            padding: 3px 8px;
            margin-bottom: 8px;
        }
        
        .news-title {
            font-size: 0.85rem;
            margin-bottom: 6px;
            line-height: 1.3;
        }
        
        .news-excerpt {
            font-size: 0.75rem;
            line-height: 1.4;
        }
    }

    @media (max-width: 576px) {
        .news-container {
            padding: 0 12px;
        }
        
        .news-section {
            padding: 40px 0;
        }
        
        .news-section .section-header h2 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        
        .news-section .section-header p {
            font-size: 0.8rem;
        }
        
        .news-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        
        .news-image {
            height: 160px;
        }
        
        .news-content {
            padding: 8px;
        }
        
        .news-category {
            font-size: 0.6rem;
            padding: 2px 6px;
            margin-bottom: 6px;
        }
        
        .news-title {
            font-size: 0.75rem;
            margin-bottom: 5px;
            line-height: 1.2;
        }
        
        .news-excerpt {
            font-size: 0.65rem;
            line-height: 1.3;
        }
    }


























        /* <!-- Brands Slider Styles --> */
    .brands-section {
        padding: 60px 0;
        background: #f8f9fa;
        overflow: hidden;
    }

    .brands-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .brands-section .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .brands-section .section-header h2 {
        font-size: 2rem;
        color: #2c3e50;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .brands-section .section-header p {
        font-size: 0.95rem;
        color: #6c757d;
        max-width: 600px;
        margin: 0 auto;
    }

    .brands-slider {
        position: relative;
        overflow: hidden;
        padding: 20px 0;
    }

    .brands-track {
        display: flex;
        animation: slideBrands 30s linear infinite;
        width: fit-content;
    }

    .brand-item {
        flex: 0 0 180px;
        height: 100px;
        margin: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
    }

    .brand-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-color: rgb(255, 78, 9);
    }

    .brand-item img {
        max-width: 80%;
        max-height: 60%;
        object-fit: contain;
        filter: grayscale(100%);
        transition: all 0.3s ease;
        opacity: 0.7;
    }

    .brand-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

    @keyframes slideBrands {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .brands-section {
            padding: 40px 0;
        }

        .brands-section .section-header h2 {
            font-size: 1.6rem;
        }

        .brands-section .section-header p {
            font-size: 0.9rem;
        }

        .brand-item {
            flex: 0 0 140px;
            height: 80px;
            margin: 0 15px;
        }

        .brands-track {
            animation-duration: 25s;
        }
    }

    @media (max-width: 576px) {
        .brands-container {
            padding: 0 15px;
        }

        .brands-section .section-header h2 {
            font-size: 1.4rem;
        }

        .brand-item {
            flex: 0 0 120px;
            height: 70px;
            margin: 0 10px;
        }

        .brands-track {
            animation-duration: 20s;
        }
    }
