
        /* --- CSS VARIABLES & RESET --- */
        :root {
            /* New Sophisticated Palette */
            --primary-dark: #0f172a; /* Deep Navy */
            --primary-gold: #c29b40; /* Muted Luxury Gold */
            --primary-gold-hover: #a68230;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --white: #ffffff;
            
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--white);
        }

        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--primary-dark);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* --- UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title span {
            display: block;
            color: var(--primary-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .section-title h2 {
            font-size: 3rem;
            line-height: 1.2;
        }

        .btn {
            display: inline-block;
            padding: 16px 36px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 0; /* Sharp edges for luxury feel */
            transition: var(--transition);
            cursor: pointer;
            font-size: 0.9rem;
        }

        .btn-gold {
            background-color: var(--primary-gold);
            color: var(--white);
            border: 1px solid var(--primary-gold);
        }

        .btn-gold:hover {
            background-color: transparent;
            color: var(--primary-gold);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 1px solid var(--white);
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary-dark);
        }

        /* --- HEADER & NAV --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            font-family: var(--font-heading);
            letter-spacing: -0.5px;
        }

        .logo span {
            color: var(--primary-gold);
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            text-transform: uppercase;
            font-weight: 500;
            letter-spacing: 1px;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary-gold);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .hero {
            min-height: 100vh;
            background: linear-gradient(rgba(15,23,42,0.75), rgba(15,23,42,0.6)),
            url("img/home.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display:flex;
            align-items:center;
            justify-content:center;
            text-align:center;
            color:white;
            padding:120px 20px;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease forwards 0.5s;
        }

        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-content h1 {
            font-size: 4.5rem;
            margin-bottom: 25px;
            line-height: 1.1;
            color: var(--white);
        }

        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 40px;
            color: rgba(255,255,255,0.9);
            font-weight: 300;
        }

        .hero-buttons {
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        /* --- ABOUT US --- */
        .about {
            background-color: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 25px;
            color: var(--primary-dark);
        }

        .about-text p {
            color: var(--text-light);
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .stats {
            display: flex;
            gap: 50px;
            margin-top: 40px;
            border-top: 1px solid #eee;
            padding-top: 30px;
        }

        .stat-item h4 {
            font-size: 2.5rem;
            color: var(--primary-gold);
            margin-bottom: 5px;
        }

        .stat-item p {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-light);
        }

        .about-img {
            position: relative;
        }

        .about-img img {
            border-radius: 4px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .about-img::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary-gold);
            z-index: -1;
            border-radius: 4px;
        }

        /*---video----*/
        .video-ad{
        position:relative;
        height:80vh;
        overflow:hidden;
        }

        .video-container iframe{
        position:absolute;
        top:50%;
        left:50%;
        width:100vw;
        height:56.25vw;
        min-height:100vh;
        min-width:177.77vh;
        transform:translate(-50%,-50%);
        pointer-events:auto;
        }

        .video-overlay{
        position:relative;
        z-index:2;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        text-align:center;
        color:white;
        height:80vh;
        background:rgba(0,0,0,0.4);
        }

        .video-overlay h2{
        font-size:3rem;
        font-family:'Playfair Display',serif;
        margin-bottom:10px;
        }

        .video-overlay p{
        font-size:1.2rem;
        }

        /* --- SERVICES --- */
        .services {
            background-color: var(--bg-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            padding: 50px 30px;
            transition: var(--transition);
            border-bottom: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border-bottom: 3px solid var(--primary-gold);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-gold);
            margin-bottom: 25px;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-card h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* --- PROJECTS / PORTFOLIO --- */
        .projects {
            background-color: var(--white);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .project-item {
            position: relative;
            overflow: hidden;
            height: 350px;
            cursor: pointer;
        }

        .project-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.2));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: var(--transition);
            color: var(--white);
        }

        .project-item:hover img {
            transform: scale(1.1);
        }

        .project-item:hover .project-overlay {
            opacity: 1;
        }

        .project-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 5px;
            color: var(--white);
            transform: translateY(20px);
            transition: var(--transition);
        }

        .project-overlay p {
            color: var(--primary-gold);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transform: translateY(20px);
            transition: var(--transition);
            transition-delay: 0.1s;
        }

        .project-item:hover .project-overlay h3,
        .project-item:hover .project-overlay p {
            transform: translateY(0);
        }

        /* --- WHY CHOOSE US --- */
        .why-us {
            background-color: var(--primary-dark);
            color: var(--white);
            position: relative;
        }

        .why-us .section-title h2 {
            color: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .feature-box i {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 25px;
        }

        .feature-box h3 {
            margin-bottom: 15px;
            color: var(--white);
        }

        .feature-box p {
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
        }

        /* --- CONTACT --- */
        .contact {
            background-color: var(--white);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            background: var(--white);
            box-shadow: 0 0 50px rgba(0,0,0,0.05);
            border-radius: 8px;
            overflow: hidden;
        }

        .contact-info {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 60px;
        }

        .contact-info h3 {
            color: var(--white);
            margin-bottom: 30px;
            font-size: 2rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .info-item i {
            width: 50px;
            height: 50px;
            background-color: rgba(255,255,255,0.1);
            color: var(--primary-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 20px;
            font-size: 1.2rem;
        }

        .info-item p {
            color: rgba(255,255,255,0.8);
            font-size: 1rem;
        }

        .contact-form-wrapper {
            padding: 60px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group input,
        .form-group textarea {
            width:100%;
            padding: 15px;
            border: 1px solid #e2e8f0;
            background: #f8fafc;
            font-family: var(--font-body);
            outline: none;
            transition: var(--transition);
            border-radius: 4px;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary-gold);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(194, 155, 64, 0.1);
        }

        .form-group textarea {
            resize: vertical;
        }

        .map-container {
            margin-top: 45px;
            height: 400px;
            width: 100%;
            background-color: #ffffff;
            border-radius: 3px;
            overflow: hidden;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 80px 0 30px;
            border-top: 5px solid var(--primary-gold);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.2rem;
            font-family: var(--font-heading);
        }

        .footer-col p {
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: rgba(255,255,255,0.6);
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .footer-col ul li a:hover {
            color: var(--primary-gold);
            padding-left: 5px;
        }

        .social-links a {
            display: inline-flex;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.05);
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 10px;
            transition: var(--transition);
            color: var(--white);
        }

        .social-links a:hover {
            background-color: var(--primary-gold);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.4);
            font-size: 0.9rem;
        }

        /* --- ANIMATION CLASSES --- */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* WHATSAPP BUTTON */

        .whatsapp{
        position:fixed;
        right:20px;
        bottom:20px;
        background:#25D366;
        width:60px;
        height:60px;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:28px;
        color:white;
        z-index:1000;
        }

        /* CALL BUTTON */

        .call{
        position:fixed;
        left:20px;
        bottom:20px;
        background:#0f172a;
        width:60px;
        height:60px;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:25px;
        color:white;
        z-index:1000;
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 1024px) {
            .hero-content h1 {
                font-size: 3.5rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }

            .hamburger {
                display: block;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--primary-dark);
                flex-direction: column;
                align-items: center;
                padding: 40px 0;
                gap: 25px;
                transform: translateY(-150%);
                transition: transform 0.4s ease;
                z-index: 999;
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .about-grid,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .about-img {
                order: -1; /* Image on top for mobile */
            }

            .stats {
                justify-content: space-between;
            }

            .contact-container {
                box-shadow: none;
            }
            
            .contact-info, .contact-form-wrapper {
                padding: 30px;
            }
        }
                    /* SMALL MOBILE */
            @media (max-width:480px){

            .hero-content h1{
            font-size:2rem;
            }

            .hero-content p{
            font-size:0.95rem;
            }

            .hero-buttons{
            flex-direction:column;
            gap:15px;
            }

            .stats{
            flex-direction:column;
            gap:20px;
            }

            .project-item{
            height:250px;
            }

            .section-padding{
            padding:70px 0;
            }

            .section-title h2{
            font-size:2rem;
            }

            }

            /* TABLET */
            @media (max-width:768px){

            .hero-content h1{
            font-size:2.5rem;
            }

            .hero{
            padding-top:140px;
            }

            .services-grid{
            grid-template-columns:1fr;
            }

            .projects-grid{
            grid-template-columns:1fr;
            }

            .features-grid{
            grid-template-columns:1fr;
            }

            .footer-grid{
            grid-template-columns:1fr;
            text-align:center;
            }

            .social-links{
            justify-content:center;
            }

            }

            /* LAPTOP */
            @media (max-width:1024px){

            .about-grid{
            gap:40px;
            }

            .contact-container{
            grid-template-columns:1fr;
            }

            .contact-info{
            text-align:center;
            }
        }