
     
        :root {
            --lavender-dark: #7e6baf;
            --lavender-medium: #a394d4;
            --lavender-light: #e2d9f3;
            --text-color: #333333;
            --section-bg: #f9f7fd;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: white;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(126, 107, 175, 0.1);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--lavender-dark);
        }
        
        .logo span {
            color: var(--lavender-medium);
        }
        
        /* Desktop Navigation */
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }
        
        .desktop-nav ul li {
            margin-left: 25px;
        }
        
        .desktop-nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .desktop-nav ul li a:hover {
            color: var(--lavender-dark);
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(90deg, var(--lavender-dark), var(--lavender-medium), var(--lavender-dark));
            background-size: 200% 100%;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            animation: gradientMove 3s infinite;
        }
        
        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.98);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .mobile-menu.active {
            display: flex;
        }
        
        .mobile-menu ul {
            list-style: none;
            text-align: center;
        }
        
        .mobile-menu ul li {
            margin: 20px 0;
        }
        
        .mobile-menu ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 24px;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .mobile-menu ul li a:hover {
            color: var(--lavender-dark);
        }
        
        .close-menu {
          
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 40px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(126, 107, 175, 0.7), rgba(163, 148, 212, 0.7)), url('../images/hero.jpg');
			 background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: white;
        }
        
        .cta-button {
            display: inline-block;
            background-color: white;
            color: var(--lavender-dark);
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: var(--lavender-light);
        }
        
        /* Content Sections */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--lavender-dark);
            font-size: 36px;
        }
        
        .about-content {
            background-color: var(--section-bg);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(126, 107, 175, 0.1);
        }
        
        .about-content p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        /* Models Section */
        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .model-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(126, 107, 175, 0.1);
            transition: transform 0.3s;
        }
        
        .model-card:hover {
            transform: translateY(-10px);
        }
        
        .model-image {
            width: 100%;
            object-fit: cover;
			
        }
        
        .model-info {
            padding: 20px;
            text-align: center;
        }
        
        .model-name {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 5px;
            color: var(--lavender-dark);
        }
        
        .model-nationality {
            color: var(--lavender-medium);
        }
        
        /* Area Cards */
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .area-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(126, 107, 175, 0.1);
            transition: transform 0.3s;
        }
        
        .area-card:hover {
            transform: translateY(-5px);
        }
        
        .area-image {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        
        .area-info {
            padding: 20px;
        }
        
        .area-name {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--lavender-dark);
        }
        
        .area-link {
            display: inline-block;
            margin-top: 15px;
            color: var(--lavender-medium);
            text-decoration: none;
            font-weight: 500;
        }
        
        .area-link:hover {
            color: var(--lavender-dark);
        }
        
        /* Footer */
        footer {
            background-color: var(--lavender-dark);
            padding: 40px 0;
            text-align: center;
            color: white;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
        }
        
        .copyright {
            margin-top: 20px;
            color: var(--lavender-light);
        }
        
       		
		
		
		
		
		
		
		.phone-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
        }
		
       
	     /* Fixed Social Buttons */
        .social-buttons {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
        }

        .social-drawer {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 10px;
            transform: translateY(100px);
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .social-buttons:hover .social-drawer {
            transform: translateY(0);
            opacity: 1;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, background-color 0.3s;
        }

        .social-btn.telegram {
            background-color: #0088cc;
        }

        .social-btn.call {
            background-color: #25D366;
        }

        .social-btn:hover {
            transform: scale(1.1);
        }

        .social-trigger {
            width: 60px;
            height: 60px;
            border-radius: 30px;
            background: #927ccb;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(44, 95, 122, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            padding: 10px;
            text-align: center;
            line-height: 1.2;
        }

        .social-trigger:hover {
            width: 120px;
            border-radius: 30px;
        }

        .social-trigger span {
            position: absolute;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-trigger:hover span {
            opacity: 1;
        }

        .social-trigger i {
            transition: opacity 0.3s ease;
        }

        .social-trigger:hover i {
            opacity: 0;
        }
	   
	   
	   
	   
	   
	   
	   
	   
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: var(--lavender-medium);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: none;
            z-index: 99;
            transition: background-color 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        .back-to-top:hover {
            background-color: var(--lavender-dark);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
			
			
			.hero {
            height: 60vh;
			}
			
			
			
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .models-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .areas-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .social-button {
                width: 55px;
                height: 55px;
                font-size: 22px;
            }
        }
    </style>