
        :root {
            --primary-color: #990000;
            --primary-light: #cc3333;
            --primary-dark: #660000;
            --accent-gold: #d4af37;
            --light-bg: #fcf8f8;
            --dark-text: #333333;
            --light-text: #ffffff;
            --gray-text: #666666;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Transparent Header Styles */
        header {
            background-color: transparent;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            z-index: 1001;
        }

        .logo-img {
            height: 70px;
            width: 200px;
            background-color: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
            overflow: hidden;
            border: none;
            transition: var(--transition);
        }

        .logo-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 0;
        }

        /* Navigation */
        nav {
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 35px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--light-text);
            font-weight: 500;
            font-size: 1.1rem;
            transition: var(--transition);
            position: relative;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        }

        .nav-links a:hover {
            color: var(--accent-gold);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        header.scrolled .nav-links a {
            color: var(--dark-text);
            text-shadow: none;
        }

        header.scrolled .nav-links a:hover {
            color: var(--primary-color);
        }

        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light-text);
            z-index: 1002;
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            transition: var(--transition);
        }

        .mobile-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        header.scrolled .mobile-toggle {
            color: var(--primary-color);
        }

        header.scrolled .mobile-toggle:hover {
            background-color: rgba(153, 0, 0, 0.05);
        }

        /* Enhanced Portrait Header with Slider */
        .portrait-header {
            position: relative;
            height: 100vh;
            overflow: hidden;
            background-color: #000;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            height: 100%;
            transition: transform 0.8s ease-in-out;
            will-change: transform;
        }

        .slider-slide {
            flex: 0 0 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .slider-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 10s ease;
        }

        .slider-slide.active .slider-image {
            transform: scale(1.05);
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            transform: translateY(-50%);
            z-index: 10;
        }

        .slider-btn {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .slider-btn:hover {
            background-color: var(--primary-color);
            transform: scale(1.1);
        }

        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 10;
        }

        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background-color: var(--primary-color);
            transform: scale(1.3);
        }

        /* Hero Section */
        .hero {
            background-color: var(--light-bg);
            padding: 100px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.2rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: var(--gray-text);
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: var(--transition);
            border: 2px solid var(--primary-color);
            font-size: 1.1rem;
        }

        .btn:hover {
            background-color: transparent;
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Services Section */
        .services {
            padding: 120px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: var(--accent-gold);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .service-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-img {
            height: 240px;
            width: 100%;
            object-fit: cover;
        }

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            color: var(--primary-color);
            font-size: 1.6rem;
            margin-bottom: 15px;
        }

        .service-content p {
            color: var(--gray-text);
            line-height: 1.7;
        }

        /* Social Proof Section */
        .social-proof {
            background-color: var(--primary-color);
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .social-proof h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .social-proof p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 35px;
            margin-top: 40px;
        }

        .social-icon {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background-color: white;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .social-icon:hover {
            background-color: var(--accent-gold);
            color: white;
            transform: translateY(-8px) rotate(5deg);
        }

        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-column h3 {
            font-size: 1.6rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-gold);
        }

        .footer-column p {
            color: #ddd;
            line-height: 1.7;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .footer-links i {
            margin-right: 12px;
            color: var(--accent-gold);
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 8px;
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1rem;
            color: #aaa;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .portrait-header {
                height: 80vh;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background-color: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding-top: 120px;
                padding-left: 40px;
                transition: var(--transition);
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
                backdrop-filter: blur(10px);
                z-index: 999;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 0 0 30px 0;
                opacity: 0;
                transform: translateX(20px);
                transition: all 0.4s ease;
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateX(0);
            }

            .nav-links.active li:nth-child(1) {
                transition-delay: 0.1s;
            }

            .nav-links.active li:nth-child(2) {
                transition-delay: 0.2s;
            }

            .nav-links.active li:nth-child(3) {
                transition-delay: 0.3s;
            }

            .nav-links.active li:nth-child(4) {
                transition-delay: 0.4s;
            }

            .nav-links.active li:nth-child(5) {
                transition-delay: 0.5s;
            }

            .nav-links a {
                color: var(--dark-text);
                font-size: 1.3rem;
                text-shadow: none;
            }

            .mobile-toggle {
                display: block;
                position: relative;
                z-index: 1000;
            }

            .header-container {
                padding: 20px;
            }

            .slider-btn {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .logo-img {
                width: 160px;
                height: 60px;
            }
        }

        @media (max-width: 768px) {
            .portrait-header {
                height: 70vh;
            }

            .hero {
                padding: 80px 0;
            }

            .hero h1 {
                font-size: 2.4rem;
            }

            .section-title h2 {
                font-size: 2.4rem;
            }

            .services {
                padding: 90px 0;
            }

            .logo-img {
                width: 140px;
                height: 50px;
            }

            .slider-controls {
                padding: 0 15px;
            }
        }

        @media (max-width: 576px) {
            .portrait-header {
                height: 60vh;
            }

            .logo-img {
                width: 120px;
                height: 45px;
            }

            .btn {
                padding: 14px 30px;
                font-size: 1rem;
            }

            .social-icons {
                gap: 25px;
            }

            .slider-btn {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .header-container {
                padding: 15px;
            }

            .nav-links {
                width: 100%;
                padding-top: 100px;
                padding-left: 30px;
            }
        }

        /* Extra small devices */
        @media (max-width: 400px) {
            .logo-img {
                width: 100px;
                height: 40px;
            }

            .mobile-toggle {
                width: 35px;
                height: 35px;
                font-size: 1.5rem;
            }
        }
   