        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #2D3436;
            background: #F9FBFA;
            overflow-x: hidden;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(249, 251, 250, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(45, 52, 54, 0.05);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #9EC5B1;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #2D3436;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #9EC5B1;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-login, .btn-signup {
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }

        .btn-login {
            background: transparent;
            color: #2D3436;
            border: 2px solid #2D3436;
        }

        .btn-login:hover {
            background: #2D3436;
            color: white;
        }

        .btn-signup {
            background: #9EC5B1;
            color: white;
        }

        .btn-signup:hover {
            background: #8ab5a0;
        }

        /* Hero Section with Video */
        .hero {
            min-height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 8rem 5% 4rem;
            overflow: hidden;
        }

/* Hero Container */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Clear Video – no filters */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Centered Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

/* Typewriter */
#hero-typewriter {
    font-size: 3.2rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid white;
    animation: typing 4s steps(40, end), blink 0.75s step-end infinite;
}

/* Typewriter animations */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* Marquee Section */
.hero-marquee {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: 0.8rem 0;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}

.marquee-track {
    white-space: nowrap;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    animation: marquee 18s linear infinite;
}

/* Marquee animation */
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
/* BIG Stylish Top Marquee */
.top-hero-marquee {
    position: absolute;
    top: 4%;
    width: 100%;
    overflow: hidden;
    z-index: 20;
}

.top-marquee-track {
    white-space: nowrap;
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    opacity: 0.8;
    animation: topMarquee 20s linear infinite;
}

/* Top marquee animation */
@keyframes topMarquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-120%); }
}
#hero-typewriter {
    font-size: 3.2rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid white;
    animation: typing 4s steps(40, end), blink 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

        .hero-video.loaded {
            opacity: 0.4;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(249, 251, 250, 0.9) 0%, rgba(233, 228, 216, 0.9) 100%);
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: #9EC5B1;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: #2D3436;
            bottom: 15%;
            right: 10%;
            animation-delay: 5s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            background: #9EC5B1;
            top: 50%;
            right: 20%;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        .hero-content {
            max-width: 800px;
            text-align: center;
            z-index: 10;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .animate-on-scroll {
            opacity: 0;
        }

        .animate-on-scroll.animated {
            animation-duration: 0.8s;
            animation-fill-mode: forwards;
        }

        .fade-in-up {
            animation-name: fadeInUp;
        }

        .fade-in {
            animation-name: fadeIn;
        }

        .slide-in-left {
            animation-name: slideInLeft;
        }

        .slide-in-right {
            animation-name: slideInRight;
        }

        .scale-in {
            animation-name: scaleIn;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #2D3436;
        }

        .hero p {
            font-size: 1.25rem;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            color: #636e72;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            background: #9EC5B1;
            color: white;
        }

        .btn-primary:hover {
            background: #8ab5a0;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(158, 197, 177, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: #2D3436;
            border: 2px solid #2D3436;
        }

        .btn-secondary:hover {
            background: #2D3436;
            color: white;
            transform: translateY(-2px);
        }

        /* Services Section */
        .services {
            padding: 6rem 5%;
            background: #F9FBFA;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2D3436;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #636e72;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #E9E4D8;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(45, 52, 54, 0.1);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2D3436;
        }

        .service-card p {
            color: #636e72;
            line-height: 1.7;
        }

        /* Detailed Content Sections */
        .content-section {
            padding: 6rem 5%;
            background: white;
        }

        .content-section.alt {
            background: #F9FBFA;
        }

        .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .content-with-image {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .content-image {
            width: 100%;
            height: 400px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(45, 52, 54, 0.1);
        }

        .content-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #2D3436;
        }

        .content-text h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #2D3436;
        }

        .content-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #636e72;
            margin-bottom: 1.5rem;
        }

        .content-text ul {
            list-style: none;
            margin: 1.5rem 0;
        }

        .content-text li {
            padding: 0.8rem 0 0.8rem 2rem;
            position: relative;
            color: #636e72;
            line-height: 1.7;
        }

        .content-text li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #9EC5B1;
            font-weight: bold;
        }

        /* Statistics Section */
        .statistics {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #9EC5B1 0%, #8ab5a0 100%);
            color: white;
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3.5rem;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Process Section */
        .process {
            padding: 6rem 5%;
            background: #F9FBFA;
        }

        .process-steps {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .process-step {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid #E9E4D8;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #9EC5B1;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
        }

        /* Gallery Section */
        .gallery {
            padding: 6rem 5%;
            background: white;
        }

        .gallery-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(45, 52, 54, 0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #F9FBFA 0%, #E9E4D8 100%);
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 2rem 0;
        }

        .testimonial-card {
            min-width: 100%;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(45, 52, 54, 0.1);
            scroll-snap-align: center;
        }

        .stars {
            color: #9EC5B1;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #636e72;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
            color: #2D3436;
            font-size: 1.1rem;
        }

        .testimonial-role {
            color: #9EC5B1;
            font-size: 0.95rem;
        }

        /* Blog Section */
        .blog {
            padding: 6rem 5%;
            background: #F9FBFA;
        }

        .blog-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #E9E4D8;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(45, 52, 54, 0.1);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: #2D3436;
        }

        .blog-card p {
            color: #636e72;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .read-more {
            color: #9EC5B1;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }

        .read-more:hover {
            color: #8ab5a0;
        }

        .blog-excerpt {
            transition: max-height 0.5s ease, opacity 0.3s ease;
            overflow: hidden;
        }

        .blog-full-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, opacity 0.3s ease;
            opacity: 0;
        }

        .blog-full-content.expanded {
            max-height: 2000px;
            opacity: 1;
            margin-top: 1rem;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #E9E4D8 0%, #F9FBFA 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-shape {
            position: absolute;
            width: 400px;
            height: 400px;
            background: #9EC5B1;
            opacity: 0.05;
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }

        .contact-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2D3436;
        }

        .contact p {
            font-size: 1.1rem;
            color: #636e72;
            margin-bottom: 2.5rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #2D3436;
        }

        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border: 2px solid #E9E4D8;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #9EC5B1;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Auth Modal */
        .auth-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(45, 52, 54, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .auth-modal.active {
            display: flex;
        }

        .auth-modal-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 2rem;
            cursor: pointer;
            color: #636e72;
            background: none;
            border: none;
        }

        .auth-modal h2 {
            margin-bottom: 2rem;
            color: #2D3436;
        }

        .auth-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .toggle-auth {
            text-align: center;
            margin-top: 1.5rem;
            color: #636e72;
        }

        .toggle-auth a {
            color: #9EC5B1;
            cursor: pointer;
            text-decoration: none;
        }

        .toggle-auth a:hover {
            text-decoration: underline;
        }

        /* Legal Content Modal */
        .legal-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(45, 52, 54, 0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .legal-modal.active {
            display: flex;
        }

        .legal-modal-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            max-width: 800px;
            width: 100%;
            max-height: 85%;
            overflow-y: auto;
            position: relative;
        }

        .legal-modal-content h2 {
            color: #2D3436;
            margin-bottom: 1rem;
            padding-right: 2rem;
        }

        .legal-modal-content h3 {
            color: #2D3436;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .legal-modal-content p {
            color: #636e72;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .legal-modal-content ul {
            list-style: none;
            margin: 1rem 0;
        }

        .legal-modal-content li {
            padding: 0.5rem 0 0.5rem 2rem;
            position: relative;
            color: #636e72;
            line-height: 1.7;
        }

        .legal-modal-content li:before {
            content: "•";
            position: absolute;
            left: 0.5rem;
            color: #9EC5B1;
            font-weight: bold;
        }

        .legal-modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .legal-modal-content::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .legal-modal-content::-webkit-scrollbar-thumb {
            background: #9EC5B1;
            border-radius: 10px;
        }

        .legal-modal-content::-webkit-scrollbar-thumb:hover {
            background: #8ab5a0;
        }

        /* Footer */
        footer {
            background: #2D3436;
            color: white;
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: #9EC5B1;
            font-size: 1.3rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links a {
            color: #dfe6e9;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #9EC5B1;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(158, 197, 177, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9EC5B1;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #9EC5B1;
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: #b2bec3;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #2D3436;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 10px 30px rgba(45, 52, 54, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .section-title {
                font-size: 2rem;
            }

            .content-with-image {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 1rem 4%;
            }

            .hero {
                padding: 6rem 4% 3rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .services, .content-section, .process, .gallery, .testimonials, .blog, .contact {
                padding: 4rem 4%;
            }
        }