    /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-navy: #0a192f;
            --accent-gold: #c5a059;
            --light-grey: #f4f7f6;
            --text-dark: #333;
            --white: #ffffff;
            --transition: all 0.3s ease-in-out;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- NAVIGATION --- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 8%;
            background: transparent;
            z-index: 1000;
            transition: var(--transition);
        }

        nav.sticky {
            background: var(--primary-navy);
            padding: 12px 8%;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--white);
            font-weight: 700;
            letter-spacing: 1px;
        }

        .logo span { color: var(--accent-gold); }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li { margin-left: 30px; }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }

        .nav-links a:hover { color: var(--accent-gold); }

        .hamburger { display: none; cursor: pointer; color: var(--white); font-size: 1.5rem; }

        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), 
                        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2070') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            letter-spacing: 2px;
            opacity: 0;
            animation: fadeInUp 1s 0.3s forwards;
        }

        .btn-container {
            opacity: 0;
            animation: fadeInUp 1s 0.6s forwards;
        }

        .btn {
            padding: 15px 35px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            margin: 10px;
            display: inline-block;
            transition: var(--transition);
        }

        .btn-gold { background: var(--accent-gold); color: var(--white); }
        .btn-gold:hover { background: #b08d4a; transform: translateY(-3px); }

        .btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
        .btn-outline:hover { background: var(--white); color: var(--primary-navy); }

        /* --- ABOUT SECTION --- */
        .section-padding { padding: 100px 10%; }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-img img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 20px 20px 0 var(--accent-gold);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary-navy);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent-gold);
            margin-top: 10px;
        }

        /* --- SERVICES SECTION --- */
        .services { background: var(--light-grey); text-align: center; }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: var(--white);
            padding: 40px;
            border-radius: 8px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .service-card i {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: var(--primary-navy);
            color: var(--white);
        }

        /* --- PARALLAX & COUNTERS --- */
        .parallax {
            background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), 
                        url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=2069');
            background-attachment: fixed;
            background-size: cover;
            padding: 80px 0;
            color: var(--white);
        }

        .counter-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            text-align: center;
        }

        .counter-item h2 { font-size: 3rem; color: var(--accent-gold); }

        /* --- TESTIMONIALS --- */
        .testimonials { overflow: hidden; position: relative; }
        .testimonial-slider { max-width: 800px; margin: auto; text-align: center; }
        .testimonial-item { display: none; animation: fadeIn 0.5s; }
        .testimonial-item.active { display: block; }

        /* --- CONTACT SECTION --- */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            outline: none;
        }

        .map-container iframe { width: 100%; height: 300px; border: none; }

        footer {
            background: var(--primary-navy);
            color: var(--white);
            padding: 50px 10% 20px;
            text-align: center;
        }

        .social-icons a {
            color: var(--white);
            margin: 0 15px;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .social-icons a:hover { color: var(--accent-gold); }

        /* --- ANIMATIONS --- */
        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeIn {
            from { opacity: 0; } to { opacity: 1; }
        }

        .reveal { opacity: 0; transform: translateY(30px); transition: 1s all ease; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* --- MOBILE RESPONSIVE --- */
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: -100%;
                top: 70px;
                width: 100%;
                background: var(--primary-navy);
                flex-direction: column;
                text-align: center;
                transition: 0.5s;
            }
            .nav-links.active { right: 0; }
            .nav-links li { margin: 20px 0; }
            .hamburger { display: block; }
            .about-container, .contact-container { grid-template-columns: 1fr; }
            .hero-content h1 { font-size: 2.5rem; }
        }
        .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Optional Tooltip for professional touch */
.whatsapp-float .tooltip {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    right: 125%;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    perspective: 1000px; /* Essential for the 3D tilt effect */
}

.service-card {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* The Interactive Tilt & Lift */
.service-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-2deg);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.15);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #f4f7f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.service-card i {
    font-size: 2rem;
    color: #0a192f; /* Primary Navy */
    transition: all 0.4s ease;
}

/* Hover State for Icons */
.service-card:hover .icon-box {
    background: #0a192f;
    transform: scale(1.1);
}

.service-card:hover i {
    color: #c5a059; /* Accent Gold */
}

/* The Animated Bottom Line */
.card-footer-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #c5a059;
    transition: width 0.4s ease;
}

.service-card:hover .card-footer-line {
    width: 100%;
}