        :root {
            --primary-dark: #0A192F;
            --primary-gold: #C6A876;
            --primary-cream: #F7F5F2;
            --primary-stone: #F0EBE6;
            --text-dark: #2C2C2C;
            --text-light: #6B6B6B;
            --pure-white: #FFFFFF;
            --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-elegant: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.06);
            --shadow-medium: 0 15px 45px rgba(0, 0, 0, 0.1);
            --shadow-strong: 0 25px 60px rgba(0, 0, 0, 0.15);
            --radius-medium: 12px;
            --radius-large: 24px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--pure-white);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
        }
        
        .container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        section {
            padding: 120px 0;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-smooth);
        }
        
        button, .btn {
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        
        /* Preloader */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-dark);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        
        .loader {
            width: 100px;
            height: 100px;
            position: relative;
        }
        
        .loader-inner {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 5px solid transparent;
            border-top-color: var(--primary-gold);
            border-radius: 50%;
            animation: spin 1.5s linear infinite;
        }
        
        .loader-inner:nth-child(2) {
            border: 5px solid transparent;
            border-bottom-color: var(--primary-gold);
            animation: spinReverse 1.5s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes spinReverse {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(-360deg); }
        }
        
        .loading-text {
            margin-top: 20px;
            color: var(--pure-white);
            font-size: 18px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 30px 0;
            transition: var(--transition-elegant);
            background: transparent;
        }
        
        header.scrolled {
            background: rgba(247, 245, 242, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: var(--shadow-soft);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 700;
            font-size: 24px;
            color: var(--primary-dark);
        }
        
        .logo span {
            color: var(--primary-gold);
        }
        
        .logo img {
            height: 60px;
            transition: transform 0.5s ease;
        }
        
        .footer-column .logo img {
            height: 150px;
        }
        
        .logo:hover img {
            transform: rotate(5deg);
        }
        
        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }
        
        .nav-links a {
            font-weight: 500;
            position: relative;
            padding: 8px 0;
            color: var(--pure-white);
        }
        
        header.scrolled .nav-links a {
            color: var(--text-dark);
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: var(--transition-smooth);
        }
        
        .nav-links a:hover:after,
        .nav-links a.active:after {
            width: 100%;
        }
        
        .mobile-toggle {
            display: none;
            background: transparent;
            border: none;
            font-size: 24px;
            color: var(--pure-white);
        }

        header.scrolled .mobile-toggle {
            color: var(--text-dark);
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 800px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(10, 25, 47, 0.5) 0%, rgba(10, 25, 47, 0.3) 100%);
        }
        
        .video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 56.25vw; /* 16:9 aspect ratio */
            min-height: 100vh;
            min-width: 177.77vh; /* 16:9 aspect ratio */
            transform: translate(-50%, -50%);
            filter: brightness(0.9);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            color: var(--pure-white);
            animation: fadeInUp 1s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1 {
            font-size: clamp(42px, 6vw, 72px);
            margin-bottom: 25px;
            letter-spacing: -1px;
            text-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .hero p {
            font-size: clamp(18px, 2.2vw, 22px);
            margin-bottom: 45px;
            opacity: 0.9;
            max-width: 700px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 18px 40px;
            border-radius: var(--radius-medium);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            display: inline-block;
        }
        
        .btn-primary {
            background: var(--primary-gold);
            color: var(--pure-white);
            border: 1px solid var(--primary-gold);
            box-shadow: var(--shadow-medium);
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-strong);
            background: #b89965;
        }
        
        .btn-outline {
            background: transparent;
            color: var(--pure-white);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        
        /* About Section */
        .about {
            background: var(--primary-cream);
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(198,168,118,0.05)" stroke-width="1"/></svg>');
            background-size: 100px;
            opacity: 0.3;
            z-index: 0;
        }
        
        .about-container {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 80px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .about-main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }
        
        /* Image Carousel */
        .carousel-container {
            position: relative;
            border-radius: var(--radius-large);
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            height: 650px;
            perspective: 1500px;
            border: 3px solid rgba(198, 168, 118, 0.2);
        }
        
        .carousel-slides {
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            transform: translateZ(-100px);
        }
        
        .carousel-slide.active {
            opacity: 1;
            transform: translateZ(0);
        }
        
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-dot.active {
            background: var(--primary-gold);
            transform: scale(1.2);
        }
        
        .about-content h2 {
            font-size: clamp(36px, 5vw, 56px);
            margin-bottom: 40px;
            color: var(--primary-dark);
            line-height: 1.2;
            position: relative;
        }
        
        .about-content h2 span {
            color: var(--primary-gold);
            display: block;
            margin-top: 5px;
        }
        
        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--primary-gold);
        }
        
        .about-content p {
            margin-bottom: 30px;
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.8;
            text-align: justify;
        }
        
        .about-content p:last-of-type {
            margin-bottom: 50px;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 0;
            position: relative;
            width: 100%;
        }
        
        .about-stats::before {
            content: '';
            position: absolute;
            top: -40px;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
        }
        
        /* Enhanced 3D stat boxes */
        .stat-box {
            background: var(--pure-white);
            border-radius: var(--radius-medium);
            padding: 35px 25px;
            text-align: center;
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.1),
                0 15px 15px rgba(0, 0, 0, 0.05),
                inset 0 -3px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(0);
            border: 1px solid rgba(198, 168, 118, 0.15);
            z-index: 1;
        }
        
        .stat-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--primary-gold);
            transform: translateY(-5px);
            transition: transform 0.3s ease;
            z-index: -1;
        }
        
        .stat-box:hover {
            transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(-15px) translateZ(20px);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.15),
                0 25px 20px rgba(0, 0, 0, 0.08),
                inset 0 -3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .stat-box:hover::before {
            transform: translateY(0);
        }
        
        .stat-animation {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* People Group Animation for Happy Clients */
        .people-group {
            display: flex;
            gap: 2px;
            animation: peopleBounce 2s ease-in-out infinite;
        }

        .people-group i {
            font-size: 20px;
            color: var(--primary-gold);
            animation: individualBounce 1.5s ease-in-out infinite;
        }

        .people-group i:nth-child(1) { animation-delay: 0s; }
        .people-group i:nth-child(2) { animation-delay: 0.2s; }
        .people-group i:nth-child(3) { animation-delay: 0.4s; }
        .people-group i:nth-child(4) { animation-delay: 0.6s; }
        .people-group i:nth-child(5) { animation-delay: 0.8s; }

        @keyframes peopleBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes individualBounce {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-5px) scale(1.1); }
        }

        /* Progress Circle Animation for Success Rate */
        .progress-circle {
            position: relative;
            width: 60px;
            height: 60px;
        }

        .progress-ring {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }

        .progress-ring path {
            fill: none;
            stroke-width: 3;
            stroke-linecap: round;
        }

        .progress-ring path:first-child {
            stroke: rgba(198, 168, 118, 0.2);
        }

        .progress-ring .progress-fill {
            stroke: var(--primary-gold);
            stroke-dasharray: 100;
            stroke-dashoffset: 0;
            animation: progressFill 2s ease-in-out infinite;
        }

        .progress-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 12px;
            font-weight: bold;
            color: var(--primary-gold);
            animation: textPulse 2s ease-in-out infinite;
        }

        @keyframes progressFill {
            0% { stroke-dashoffset: 100; }
            50% { stroke-dashoffset: 0; }
            100% { stroke-dashoffset: 100; }
        }

        @keyframes textPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
        }

        /* Clock Animation for 24/7 Support */
        .clock-animation {
            width: 60px;
            height: 60px;
            position: relative;
        }

        .clock-face {
            width: 100%;
            height: 100%;
            border: 3px solid var(--primary-gold);
            border-radius: 50%;
            position: relative;
            background: rgba(198, 168, 118, 0.1);
        }

        .hour-hand, .minute-hand, .second-hand {
            position: absolute;
            background: var(--primary-gold);
            transform-origin: bottom center;
            border-radius: 2px;
        }

        .hour-hand {
            width: 3px;
            height: 20px;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            animation: hourRotate 8s linear infinite;
        }

        .minute-hand {
            width: 2px;
            height: 25px;
            top: 5px;
            left: 50%;
            transform: translateX(-50%);
            animation: minuteRotate 4s linear infinite;
        }

        .second-hand {
            width: 1px;
            height: 28px;
            top: 2px;
            left: 50%;
            transform: translateX(-50%);
            background: #ff6b6b;
            animation: secondRotate 1s linear infinite;
        }

        .center-dot {
            width: 6px;
            height: 6px;
            background: var(--primary-gold);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        @keyframes hourRotate {
            from { transform: translateX(-50%) rotate(0deg); }
            to { transform: translateX(-50%) rotate(360deg); }
        }

        @keyframes minuteRotate {
            from { transform: translateX(-50%) rotate(0deg); }
            to { transform: translateX(-50%) rotate(360deg); }
        }

        @keyframes secondRotate {
            from { transform: translateX(-50%) rotate(0deg); }
            to { transform: translateX(-50%) rotate(360deg); }
        }

        /* Trophy Animation for Years Experience */
        .trophy-animation {
            position: relative;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trophy-animation i {
            font-size: 40px;
            color: var(--primary-gold);
            animation: trophyShine 3s ease-in-out infinite;
            z-index: 2;
        }

        .sparkles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .sparkles span {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-gold);
            border-radius: 50%;
            animation: sparkle 2s ease-in-out infinite;
        }

        .sparkles span:nth-child(1) {
            top: 10px;
            left: 20px;
            animation-delay: 0s;
        }

        .sparkles span:nth-child(2) {
            top: 15px;
            right: 15px;
            animation-delay: 0.5s;
        }

        .sparkles span:nth-child(3) {
            bottom: 15px;
            left: 15px;
            animation-delay: 1s;
        }

        .sparkles span:nth-child(4) {
            bottom: 10px;
            right: 20px;
            animation-delay: 1.5s;
        }

        @keyframes trophyShine {
            0%, 100% { transform: scale(1) rotate(0deg); }
            25% { transform: scale(1.1) rotate(5deg); }
            50% { transform: scale(1) rotate(0deg); }
            75% { transform: scale(1.1) rotate(-5deg); }
        }

        @keyframes sparkle {
            0%, 100% { 
                transform: scale(0) rotate(0deg);
                opacity: 0;
            }
            50% { 
                transform: scale(1) rotate(180deg);
                opacity: 1;
            }
        }
        
        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }
        
        .stat-text {
            font-size: 15px;
            color: var(--text-dark);
            font-weight: 500;
            margin-top: 15px;
            letter-spacing: 0.5px;
        }
        
      /* Services Section */
.services {
    background: var(--pure-white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M100,0 C155.228,0 200,44.772 200,100 C200,155.228 155.228,200 100,200 C44.772,200 0,155.228 0,100 C0,44.772 44.772,0 100,0 Z" fill="none" stroke="rgba(198,168,118,0.05)" stroke-width="1"/></svg>');
    background-size: 300px;
    opacity: 0.2;
    z-index: 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
    margin-top: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--primary-cream);
    border-radius: var(--radius-medium);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(198, 168, 118, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-header {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 25px;
    color: var(--pure-white);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
    clip-path: ellipse(100% 85% at 50% 0%);
}

.service-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.4);
    z-index: 1;
}

.service-card-header .service-icon,
.service-card-header h3 {
    position: relative;
    z-index: 2;
}

.service-card-body {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: var(--primary-gold);
    box-shadow: var(--shadow-soft);
    transition: all 0.5s ease;
    position: relative;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: var(--primary-gold);
    color: white;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--pure-white);
    position: relative;
    z-index: 2;
}

.service-card-body h3 {
    color: var(--primary-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.learn-more-link {
    color: var(--text-light);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.learn-more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.learn-more-link:hover::after {
    width: 100%;
}
        
        /* Testimonials - Reduced Size */
        .testimonials {
            background: var(--primary-dark);
            color: var(--pure-white);
            position: relative;
            overflow: hidden;
            padding: 80px 0;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
            background-size: 100px;
            z-index: 0;
        }
        
        .testimonials-container {
            position: relative;
            z-index: 1;
        }
        
        .section-header.light h2,
        .section-header.light p {
            color: var(--pure-white);
        }
        
        .testimonial-carousel {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .testimonial-slides {
            display: flex;
            align-items: center;
            transition: transform 0.6s ease;
        }
        
        .testimonial {
            flex: 0 0 100%;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-medium);
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            transform: translateZ(0);
            transition: transform 0.3s;
            min-height: 260px; /* Reduced height */
            text-align: center;
        }
        
        .testimonial:hover {
            transform: translateY(-10px) translateZ(20px);
        }
        
        .testimonial-content {
            font-style: italic;
            font-size: 16px;
            text-align: center;
            position: relative;
            max-width: 900px;
            margin: 0 auto 30px;
        }
        
        .client-info {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .client-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 15px;
            border: 3px solid var(--primary-gold);
        }
        
        .client-name {
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .client-position {
            color: var(--primary-gold);
            font-size: 14px;
        }
        
        .stars {
            color: var(--primary-gold);
            margin: 15px 0;
            font-size: 18px;
        }
        
        .testimonial-controls {
            display: flex;
            gap: 20px;
            position: absolute;
            bottom: 30px;
            right: 30px;
        }
        
        .testimonial-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--pure-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            transition: var(--transition-smooth);
            border: none;
        }
        
        .testimonial-btn:hover {
            background: var(--primary-gold);
            transform: translateY(-5px);
        }
        
        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonial-dot.active {
            background: var(--primary-gold);
            transform: scale(1.2);
        }
        
        /* Contact Section */
        .contact {
            background: var(--primary-cream);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }
        
        .contact-info {
            background: var(--primary-dark);
            border-radius: var(--radius-large);
            padding: 0;
            color: var(--pure-white);
            box-shadow: var(--shadow-medium);
            transform: translateZ(0);
            transition: transform 0.3s;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .contact-info:hover {
            transform: translateY(-10px) translateZ(20px);
        }
        
        .team-image {
            height: 250px;
            overflow: hidden;
            border-radius: 0 0 var(--radius-large) var(--radius-large);
            order: 2; /* Moves to bottom */
        }
        
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .contact-info:hover .team-image img {
            transform: scale(1.05);
        }
        
        .contact-info-content {
            padding: 40px;
            order: 1; /* Moves to top */
        }
        
        .contact-info h3 {
            font-size: 36px;
            margin-bottom: 40px;
            color: var(--primary-gold);
            position: relative;
            text-align: center;
        }
        
        .contact-details {
            margin-top: 20px;
        }
        
        .contact-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            align-items: flex-start;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--pure-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary-gold);
            box-shadow: var(--shadow-soft);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            transform: rotate(15deg);
            background: var(--primary-gold);
            color: white;
        }
        
        .contact-text h4 {
            margin-bottom: 8px;
            font-size: 18px;
            color: var(--primary-gold);
        }
        
        .contact-text p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 10px;
            flex-wrap: wrap;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--pure-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: var(--transition-smooth);
        }

        .social-link:hover {
            background: var(--primary-gold);
            transform: translateY(-3px);
        }
        
        .contact-form {
            background: var(--pure-white);
            border-radius: var(--radius-large);
            padding: 50px;
            box-shadow: var(--shadow-soft);
            transform: translateZ(0);
            transition: transform 0.3s;
        }
        
        .contact-form:hover {
            transform: translateY(-10px) translateZ(20px);
        }
        
        .contact-form h3 {
            font-size: 28px;
            margin-bottom: 30px;
            text-align: center;
            color: var(--primary-dark);
            position: relative;
        }
        
        .contact-form h3::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-gold);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 14px;
            color: var(--text-light);
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid rgba(10, 25, 47, 0.1);
            border-radius: var(--radius-medium);
            background: var(--primary-cream);
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            transition: var(--transition-smooth);
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 3px rgba(198, 168, 118, 0.1);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--primary-dark);
            color: var(--pure-white);
            border: none;
            border-radius: var(--radius-medium);
            font-weight: 500;
            font-size: 16px;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        
        .submit-btn:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gold);
            z-index: -1;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
        }
        
        .submit-btn:hover:after {
            transform: translateX(0);
        }
        
        /* Footer */
footer {
    background: var(--primary-dark);
    color: var(--pure-white);
    padding: 150px 0 50px;
    position: relative;
    margin-top: -50px;
    clip-path: polygon(0 8%, 5% 6%, 10% 5%, 15% 4%, 20% 3%, 25% 2%, 30% 2%, 35% 1%, 40% 1%, 45% 1%, 50% 1%, 55% 1%, 60% 1%, 65% 1%, 70% 2%, 75% 2%, 80% 3%, 85% 4%, 90% 5%, 95% 6%, 100% 8%, 100% 100%, 0 100%);
}
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-bottom: 70px;
        }
        
        .footer-column h4 {
            font-size: 22px;
            margin-bottom: 25px;
            color: var(--primary-gold);
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary-gold);
        }
        
        .footer-column p {
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            opacity: 0.8;
            transition: var(--transition-smooth);
            display: inline-block;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--primary-gold);
            transform: translateX(5px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            opacity: 0.7;
            font-size: 14px;
        }
        
        /* Floating Action Buttons */
.floating-action-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
}

.floating-btn.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.floating-btn:hover {
    transform: translateY(-5px);
}

.whatsapp-btn {
    background: #25D366;
    position: relative;
}

.whatsapp-btn .cta-text {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.whatsapp-btn:hover .cta-text {
    opacity: 1;
    visibility: visible;
}

.whatsapp-btn:hover {
    background: #1EBE57;
}

.back-to-top {
    background: var(--primary-gold);
}

.back-to-top:hover {
    background: #b89965;
}

/* Back to top button */
.back-to-top {
    position: static; /* Reset position as it's now in a container */
    transform: translateY(20px); /* Keep initial hidden state */
}

.back-to-top.visible {
    transform: translateY(0);
}

        
        /* Floating elements */
        .floating {
            position: absolute;
            z-index: -1;
            animation: float 8s ease-in-out infinite;
        }
        
        .floating.shape-1 {
            top: 20%;
            left: 5%;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(198, 168, 118, 0.1);
        }
        
        .floating.shape-2 {
            top: 40%;
            right: 10%;
            width: 120px;
            height: 120px;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            background: rgba(10, 25, 47, 0.05);
        }
        
        .floating.shape-3 {
            bottom: 15%;
            left: 15%;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(10, 25, 47, 0.08);
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .container {
                padding: 0 30px;
            }
            
            .about-container,
            .contact-container {
                gap: 60px;
            }
        }
        
        @media (max-width: 992px) {
            section {
                padding: 100px 0;
            }
            
            .about-main-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-container {
                gap: 60px;
            }
            
            .carousel-container {
                height: 500px;
            }
            
            .about-content h2 {
                text-align: center;
            }
            
            .about-content h2::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .about-content p {
                text-align: left;
            }
            
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }
        
        .mobile-video {
            display: none;
        }

        @media (max-width: 768px) {
            .desktop-video {
                display: none;
            }

            .mobile-video {
                display: block;
            }

            .mobile-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 300px;
                background: var(--pure-white);
                flex-direction: column;
                padding: 100px 40px 40px;
                transition: var(--transition-smooth);
                box-shadow: var(--shadow-strong);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links a {
                color: var(--text-dark) !important;
            }
            
            .mobile-toggle {
                z-index: 1001;
            }
            
            .hero h1 {
                font-size: 42px;
            }
            
            .hero {
                min-height: 700px;
            }
            
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .services-grid {
                gap: 30px;
            }
            
            .service-card {
                padding: 40px 25px;
            }
            
            .contact-container {
                gap: 30px;
            }

            .contact-form {
                padding: 30px 20px;
            }
            
            /* Footer curve adjustments for mobile */
            footer {
                margin-top: -30px;
                clip-path: polygon(0 4%, 10% 3%, 20% 2%, 30% 1%, 40% 1%, 50% 1%, 60% 1%, 70% 1%, 80% 2%, 90% 3%, 100% 4%, 100% 100%, 0 100%);
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 20px;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .hero {
                min-height: 600px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .section-header h2 {
                font-size: 32px;
            }
            
            .carousel-container {
                height: 400px;
            }
            
            .contact-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .contact-info {
                padding: 40px 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            /* Footer curve adjustments for small mobile */
            footer {
                margin-top: -20px;
                clip-path: polygon(0 2%, 20% 1%, 40% 1%, 50% 1%, 60% 1%, 80% 1%, 100% 2%, 100% 100%, 0 100%);
            }
        }
.hidden { display: none; }
#form-result { font-weight: bold; }

