
        :root {
            --gold-light: #FFD700;
            --gold-medium: #D4AF37;
            --gold-dark: #B8860B;
            --gold-darker: #8B6914;
            --text-dark: #333333;
            --text-light: #ffffff;
            --bg-light: #f9f9f9;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(to right, var(--gold-darker), var(--gold-dark));
            color: var(--text-light);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-lines {
            display: flex;
            flex-direction: column;
        }
        
        .header-line {
            height: 2px;
            width: 100%;
        }
        
        .line-1 {
            background: var(--gold-light);
            height: 1px;
        }
        
        .line-2 {
            background: var(--gold-medium);
            height: 2px;
        }
        
        .line-3 {
            background: var(--gold-dark);
            height: 3px;
        }
        
        .line-4 {
            background: var(--gold-darker);
            height: 4px;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--gold-light);
        }
        
        /* Mobile Menu Button (Top Right) */
        .mobile-menu-btn {
            display: none;
            position: fixed;
            top: 15px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: var(--gold-medium);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            z-index: 1001;
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
            100% { transform: translateY(0px); }
        }
        
        /* Hero Section */
        .hero {
            height: 85vh;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('../images/hero1.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            margin-top: 60px;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 2rem;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .btn {
            display: inline-block;
            background: var(--gold-medium);
            color: var(--text-light);
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s;
        }
        
        .btn:hover {
            background: var(--gold-dark);
        }
        
        /* Content Sections */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--gold-darker);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gold-medium);
        }
        
        /* Service Areas - Single Row */
        .areas-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 4rem;
        }
        
        .area-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            flex: 1;
            min-width: 200px;
            max-width: 220px;
        }
        
        .area-card:hover {
            transform: translateY(-5px);
        }
        
        .area-image {
            height: 150px;
            background-size: cover;
            background-position: center;
        }
        
        .area-content {
            padding: 1.2rem;
        }
        
        .area-content h3 {
            color: var(--gold-darker);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }
        
        .area-content p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        /* Models Grid */
        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-bottom: 4rem;
        }
        
        .model-card {
            text-align: center;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .model-image {
			
			
            height: 250px;
            background-size: cover;
            background-position: center;
        }
        
        .model-info {
            padding: 1rem;
        }
        
        /* Footer */
        footer {
            background: var(--gold-darker);
            color: var(--text-light);
            text-align: center;
            padding: 2rem 0;
        }
        
        /* Fixed Buttons */
        .fixed-buttons {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .call-btn, .telegram-btn, .whatsapp-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
            text-decoration: none;
            position: relative;
        }
        
        .call-btn {
            background: var(--gold-medium);
        }
        
        .telegram-btn {
            background: #0088cc;
        }
        
        .whatsapp-btn {
            background: #25D366;
        }
        
        .call-btn:hover, .telegram-btn:hover, .whatsapp-btn:hover {
            transform: scale(1.1);
        }
        
        /* Social Media Icons */
        .social-icon {
            width: 30px;
            height: 30px;
            filter: brightness(0) invert(1); /* Makes the icon white */
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gold-medium);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            transition: opacity 0.3s;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
        }
        
        .back-to-top.visible {
            opacity: 1;
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 1002;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu ul {
            list-style: none;
            text-align: center;
        }
        
        .mobile-menu ul li {
            margin: 1.5rem 0;
        }
        
        .mobile-menu ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: bold;
            transition: color 0.3s;
        }
        
        .mobile-menu ul li a:hover {
            color: var(--gold-light);
        }
        
        .close-menu {
            position: absolute;
            top: 30px;
            right: 30px;
            color: white;
            font-size: 2rem;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        /* Responsive Design */
        @media (max-width: 1100px) {
            .areas-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
            }
            
            .area-card {
                max-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 1rem;
            }
            
            nav ul {
                margin-top: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .fixed-buttons {
                bottom: 120px;
            }
            
            .areas-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .areas-grid {
                grid-template-columns: 1fr;
            }
            
            .models-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 769px) {
            .mobile-menu-btn {
                display: none;
            }
        }
		
		
		
        /* Additional styles for the sub pages */
        .models-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        
        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .model-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .model-card:hover {
            transform: translateY(-5px);
        }
        
        .model-image {
            height: 500px;
            background-size: cover;
            background-position: center;
        }
        
        .model-details {
            padding: 1.5rem;
        }
        
        .model-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #333;
        }
        
        .model-nationality {
            color: #666;
            margin-bottom: 1rem;
            font-style: italic;
        }
        
        .price-list {
            margin-top: 1rem;
        }
        
        .price-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .price-item:last-child {
            border-bottom: none;
        }
        
        .service-type {
            font-weight: 500;
        }
        
        .service-price {
            color: #d4af37;
            font-weight: 600;
        }
        
        .content-section {
            max-width: 800px;
            margin: 3rem auto;
            padding: 0 1rem;
        }
        
        .content-section h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: #333;
        }
        
        .content-section p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
            color: #555;
        }
        
        .highlight-area {
            background-color: #f9f9f9;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        
        .highlight-area h3 {
            color: #d4af37;
            margin-bottom: 1rem;
        }
        
        @media (max-width: 768px) {
            .models-grid {
                grid-template-columns: 1fr;
            }
        }
  
