:root {
            --black: #000000;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --medium-gray: #e0e0e0;
            --dark-gray: #333333;
            --gold: #000000;
            --dark-gold: #000000;
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            --section-padding: 150px 0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--black);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Ultra Minimal Header - Sticky */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--white);
            padding: 20px 0;
            border-bottom: 1px solid var(--medium-gray);
            transition: var(--transition);
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
        }

        .scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }

        .container {
            width: 95%;
            max-width: 1600px;
            margin: 0 auto;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .nav-left {
            display: flex;
            gap: 40px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-left a, .nav-right a {
            color: var(--black);
            text-decoration: none;
            font-size: 11px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: var(--transition);
            padding: 8px 0;
            position: relative;
        }

        .nav-left a:hover, .nav-right a:hover {
            color: var(--black);
        }

        .nav-left a::after, .nav-right a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--black);
            transition: var(--transition);
        }

        .nav-left a:hover::after, .nav-right a:hover::after {
            width: 100%;
        }

         /* Logo container - keeps the space for logo */
        .logo-container {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            height: 60px; /* Adjust based on your logo size */
            width: 180px; /* Adjust based on your logo size */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-container a {
            text-decoration: none;
            display: flex;
            height: 100%;
            align-items: center;
        }
        .logo-img {
            max-height: 125%;
            max-width: 125%;
            transition: var(--transition);
        }

        .logo-img:hover {
            transform: scale(1.05);
        }

        .nav-icons {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-icon {
            font-size: 20px; /* Increased from 18px */
            color: var(--black);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }

        .nav-icon:hover {
            transform: translateY(-2px) scale(1.1);
        }

        .nav-icon .tooltip {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--black);
            color: var(--white);
            padding: 5px 10px;
            font-size: 10px;
            border-radius: 3px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            margin-top: 10px;
        }

        .nav-icon:hover .tooltip {
            opacity: 1;
            visibility: visible;
            margin-top: 5px;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1001;
            color: var(--black);
            transition: var(--transition);
            font-size: 24px; /* Increased from default */
        }

        .hamburger.active {
            transform: rotate(90deg);
        }

        /* About Hero Section - Black & White */
        .about-hero {
            height: 90vh;
            position: relative;
            margin-top: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        /* Single subtle overlay - removed the ::before element */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.1); /* Single subtle dark overlay */
            z-index: 1;
        }
        
        .about-hero-content {
            text-align: center;
            color: var(--white); /* Changed from black to white for better contrast */
            position: relative;
            z-index: 2; /* Increased z-index to ensure text stays above overlay */
            padding: 0 20px;
            max-width: 800px;
        }
                
        .about-hero h1 {
            font-size: 82px;
            margin-bottom: 30px;
            line-height: 1.1;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.3s;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.1);
            font-weight: 700;
            letter-spacing: 2px;
        }

        
        .about-hero p {
            font-size: 16px;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.5s;
            color: var(--white);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }

        /* Section Styles */
        .section {
            padding: var(--section-padding);
            position: relative;
            background-color: var(--white);
        }

        .section-alt {
            background-color: var(--light-gray);
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            padding: 0 20px;
        }

        .section-title h2 {
            font-size: 14px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: var(--dark-gray);
            font-family: 'Montserrat', sans-serif;
        }

        .section-title h3 {
            font-size: 42px;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .section-title h3::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 1px;
            background: var(--black);
        }

        /* Story Section */
        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .story-text h3 {
            font-size: 24px;
            margin-bottom: 30px;
            color: var(--black);
        }

        .story-text p {
            margin-bottom: 25px;
            font-size: 16px;
            line-height: 1.8;
            color: var(--dark-gray);
        }

        .story-image {
            position: relative;
            height: 500px;
            overflow: hidden;
            border: 1px solid var(--medium-gray);
            transition: var(--transition);
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s ease;
        }

        .story-image:hover {
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }

        .story-image:hover img {
            transform: scale(1.05);
        }

        /* Approach Section */
        .approach-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .approach-card {
            background: var(--white);
            padding: 50px 30px;
            text-align: center;
            border: 1px solid var(--medium-gray);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .approach-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            border-color: var(--black);
        }

        .approach-icon {
            font-size: 36px;
            margin-bottom: 30px;
            color: var(--black);
            transition: var(--transition);
        }

        .approach-card:hover .approach-icon {
            animation: float 3s ease-in-out infinite;
        }

        .approach-card h3 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .approach-card p {
            font-size: 14px;
            color: var(--dark-gray);
            line-height: 1.8;
        }

        /* Timeline Section */
        .timeline-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .timeline {
            position: relative;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 1px;
            background-color: var(--black);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -0.5px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: var(--white);
            border: 1px solid var(--black);
            top: 15px;
            z-index: 1;
        }

        .left {
            left: 0;
            text-align: right;
        }

        .right {
            left: 50%;
            text-align: left;
        }

        .left::after {
            right: -10px;
        }

        .right::after {
            left: -10px;
        }

        .timeline-content {
            padding: 30px;
            background: var(--white);
            position: relative;
            border: 1px solid var(--medium-gray);
            transition: var(--transition);
        }

        .timeline-content:hover {
            border-color: var(--black);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .timeline-content h3 {
            margin-bottom: 15px;
            font-size: 18px;
            color: var(--black);
            font-weight: 500;
        }

        .timeline-year {
            font-weight: bold;
            color: var(--black);
            margin-bottom: 10px;
            display: block;
            font-size: 14px;
            letter-spacing: 2px;
            font-family: 'Montserrat', sans-serif;
        }

        /* Why Choose Us Section */
        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .why-choose-card {
            display: flex;
            gap: 30px;
            padding: 40px;
            background: var(--white);
            border: 1px solid var(--medium-gray);
            transition: var(--transition);
        }

        .why-choose-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            border-color: var(--black);
        }

        .why-choose-icon {
            font-size: 24px;
            color: var(--black);
            flex-shrink: 0;
        }

        .why-choose-text h3 {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .why-choose-text p {
            color: var(--dark-gray);
            line-height: 1.8;
            font-size: 14px;
        }

        /* CTA Section with Video Background */
        .cta-section {
            position: relative;
            color: white;
            text-align: center;
            padding: 150px 20px;
            overflow: hidden;
        }

        .cta-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 42px;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .cta-section p {
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 16px;
            opacity: 0.9;
            letter-spacing: 1px;
        }

        /* Button Styles - Matching Homepage */
        .btn {
            display: inline-block;
            padding: 20px 50px;
            background: var(--black);
            color: var(--white);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid var(--black);
            position: relative;
            overflow: hidden;
        }

        .btn:hover {
            background: transparent;
            color: var(--black);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--white);
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover::before {
            left: 0;
        }

        .btn-gold {
            background: var(--black);
            border-color: var(--black);
            color: var(--white);
            margin-left: 15px;
        }

        .btn-gold:hover {
            background: transparent;
            color: var(--black);
        }

        .btn-gold::before {
            background: var(--white);
        }

        /* Footer - Luxury Details - UPDATED */
        footer {
            background: var(--white);
            color: var(--black);
            padding: 100px 0 50px;
            position: relative;
            border-top: 1px solid var(--light-gray);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            padding: 0 80px;
            margin-bottom: 80px;
        }

        .footer-column h4 {
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            font-family: 'Montserrat', sans-serif;
            color: var(--black);
            position: relative;
            display: inline-block;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--black);
        }

        .footer-column ul {
            list-style: none;
            margin-top: 20px;
        }

        .footer-column li {
            margin-bottom: 15px;
        }

        .footer-column a {
            color: var(--dark-gray);
            text-decoration: none;
            font-size: 13px;
            transition: var(--transition);
            position: relative;
            display: inline-block;
            padding: 5px 0;
        }

        .footer-column a:hover {
            color: var(--black);
            padding-left: 10px;
        }

        .footer-column a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--black);
            transition: var(--transition);
        }

        .footer-column a:hover::after {
            width: 100%;
        }

        /* Social Links - Moved to 4th column */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .social-links a {
            color: var(--dark-gray);
            font-size: 16px;
            transition: var(--transition);
            width: 45px;
            height: 45px;
            border: 1px solid var(--dark-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--black);
            transition: var(--transition);
            z-index: -1;
        }

        .social-links a:hover {
            color: var(--white);
            border-color: var(--black);
            transform: translateY(-3px);
        }

        .social-links a:hover::before {
            left: 0;
        }

        

        .footer-bottom {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid var(--light-gray);
            position: relative;
        }

        .footer-bottom p {
            font-size: 12px;
            color: var(--dark-gray);
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .footer-bottom a {
            color: var(--dark-gray);
            transition: var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--black);
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .payment-methods img {
            height: 25px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: var(--transition);
        }

        .payment-methods img:hover {
            filter: grayscale(0);
            opacity: 1;
        }

        .back-to-top {
            position: absolute;
            top: -25px;
            right: 80px;
            width: 50px;
            height: 50px;
            background: var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            color: var(--white);
            font-size: 18px;
            border-radius: 50%;
        }

        .back-to-top:hover {
            transform: translateY(-5px) rotate(360deg);
            background: var(--dark-gray);
            color: var(--white);
        }

        /* New Luxury Elements */
        .luxury-divider {
            height: 1px;
            width: 100px;
            background: var(--black);
            margin: 30px auto;
            position: relative;
        }

        .luxury-divider::after {
            content: '';
            position: absolute;
            top: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--black);
            border-radius: 50%;
        }

        /* New Floating CTA Animation */
        .floating-btn {
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* Animations - Matching Homepage */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes zoomEffect {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.1);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .about-hero h1 {
                font-size: 62px;
            }
            
            .approach-grid, .why-choose-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            :root {
                --section-padding: 120px 0;
            }
            
            .story-content {
                grid-template-columns: 1fr;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item::after {
                left: 21px;
            }
            
            .left, .right {
                left: 0;
                text-align: left;
            }
        }
        
        @media (max-width: 768px) {
            :root {
                --section-padding: 100px 0;
            }
            
            /* Navigation */
            nav {
                justify-content: space-between;
            }
            
            /* Navigation adjustments */
            .logo-container {
                position: static;
                transform: none;
                order: -1;
                width: auto;
                margin-right: auto;
                padding-left: 20px;
            }

            .nav-left, .nav-right, .nav-icons {
                display: none;
            }
            
            .nav-left.active {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--white);
                padding: 120px 40px;
                gap: 30px;
                z-index: 1000;
            }
            
            .nav-icons.active {
                display: flex;
                position: fixed;
                bottom: 20px;
                left: 0;
                width: 100%;
                justify-content: center;
                background: var(--white);
                padding: 15px;
                box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
                z-index: 1001;
            }

            
            
            .hamburger {
                display: block;
                font-size: 20px;
            }
            
            .nav-icon .tooltip {
                display: none;
            }
            
            .about-hero h1 {
                font-size: 42px;
            }
            
            .section-title h3, .cta-section h2 {
                font-size: 36px;
            }
            
            /* Footer adjustments */
            .footer-content {
                grid-template-columns: 1fr;
                padding: 0 40px;
            }

            .footer-column {
                border-bottom: 1px solid var(--light-gray);
                padding-bottom: 30px;
            }

            .footer-column:last-child {
                border-bottom: none;
            }
            
            .approach-grid, .why-choose-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            :root {
                --section-padding: 80px 0;
            }
            
            .about-hero {
                height: 80vh;
            }
            
            .about-hero h1 {
                font-size: 32px;
            }
            
            .about-hero p {
                font-size: 14px;
            }
            
            .btn {
                padding: 15px 30px;
                display: block;
                margin-bottom: 15px;
                width: 100%;
            }
            
            .btn-gold {
                margin-left: 0;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                padding: 0 20px;
                gap: 40px;
            }
            
            
        }

        @media (max-width: 480px) {
            .footer-content {
                padding: 0 20px;
            }

            .back-to-top {
                right: 20px;
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }