* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #4e86ce;
            --secondary: #1b93a1;
            --accent: #e1cc0a;
            --light: #a8abae;
            --dark: #131314;
            --gray: #6d7379;
        }

        /* Double Header Styles */
        .top-header {
            background-color: var(--dark);
            color: rgb(183, 175, 175);
            padding: 0.8rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
        }

        .contact-info {
            display: flex;
            gap: 1.5rem;
        }

        .contact-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .social-link {
            display: flex;
            gap: 1rem;
        }

        .social-link a {
            color: rgb(198, 198, 198);
            transition: color 0.3s;
        }

        .social-link a:hover {
            color: var(--accent);
        }

        .header-main {
            background-color: rgb(225, 224, 224);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(17, 16, 16, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary);
        }

        .logo i {
            color: var(--accent);
        }

        .nav-link {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }

        .nav-link a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-link a:hover {
            color: var(--primary);
        }

        .nav-link a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }

        .nav-link a:hover::after {
            width: 100%;
        }

        .nav-btn {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.6rem 1.2rem;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: rgb(175, 173, 173);
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--secondary);
        }

        /* banner-con Section */
        .banner-con {
            background: linear-gradient(rgba(17, 16, 16, 0.6), rgba(29, 12, 12, 0.6)), url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?ixlib=rb-4.0.3') center/cover;
            height: 85vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            color: rgb(213, 212, 212);
            text-align: center;
        }

        .main-banner-con {
            max-width: 900px;
            margin: 0 auto;
        }

        .banner-con h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(225, 223, 223, 0.3);
        }

        .banner-con p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .banner-con-btn {
            padding: 0.9rem 2rem;
            font-size: 1.1rem;
            background: var(--accent);
            border: none;
            border-radius: 4px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .banner-con-btn:hover {
            background: #cc6644;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Section Common Styles */
        .section {
            padding: 5rem 5%;
        }

        .section-con {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-con h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .section-con p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* City Section */
        .cities {
            background-color: var(--light);
        }

        .city-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .city-img {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            position: relative;
            height: 300px;
        }

        .city-img:hover {
            transform: translateY(-10px);
        }

        .city-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .city-img:hover img {
            transform: scale(1.1);
        }

        .city-con {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 1.5rem;
        }

        .city-con h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        /* Why Choose Us */
        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .whychooseus-card {
            text-align: center;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .whychooseus-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .whychooseus-icon {
            width: 70px;
            height: 70px;
            background: var(--primary);
            color: rgb(220, 218, 218);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
        }

        .whychooseus-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        /* Services Section */
        .services {
            background-color: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(33, 27, 27, 0.1);
        }

        .service-img {
            height: 180px;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-info {
            padding: 1.5rem;
        }

        .service-info h3 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }

        /* Benefits Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .benefit-card {
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
        }

        .benefit-icon {
            min-width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        /* Get Started */
        .get-started {
            text-align: center;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 4rem 5%;
        }

        .get-started h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .get-started p {
            max-width: 600px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }

        /* Testimonials */
        .testimonials {
            background-color: var(--light);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: rgb(212, 211, 211);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .testimonial-card p {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: var(--gray);
            line-height: 1.6;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

    
        .client-details h4 {
            margin-bottom: 0.2rem;
        }

        .client-details span {
            color: var(--accent);
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: rgb(225, 223, 223);
            padding: 4rem 5% 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent);
        }

        .footer-col p {
            margin-bottom: 1rem;
            line-height: 1.6;
            color: #a3a0a0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #b2adad;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(201, 197, 197, 0.1);
            color: white;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(165, 161, 161, 0.1);
            color: #a59f9f;
            font-size: 0.9rem;
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .city-section, .services-grid, .testimonial-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .features, .benefits-grid, .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .city-section, .services-grid, .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .top-header {
                flex-direction: column;
                gap: 0.8rem;
                text-align: center;
                padding: 1rem 5%;
            }
            
            .nav-link {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background: white;
                flex-direction: column;
                padding: 6rem 2rem 2rem;
                transition: right 0.3s;
                box-shadow: -5px 0 15px rgba(60, 59, 59, 0.1);
            }
            
            .nav-link.active {
                right: 0;
            }
            
            .menu-toggle {
                display: block;
                z-index: 101;
            }
            
            .banner-con h1 {
                font-size: 2.5rem;
            }
            
            .banner-con p {
                font-size: 1rem;
            }
            
            .features, .benefits-grid, .footer-grid,
            .city-section, .services-grid, .testimonial-grid {
                grid-template-columns: 1fr;
            }
            
            .section-con h2 {
                font-size: 2rem;
            }
            
            .nav-btn {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
        }

        @media (max-width: 576px) {
            .banner-con {
                height: 70vh;
            }
            
            .banner-con h1 {
                font-size: 2rem;
            }
            
            .section {
                padding: 3rem 5%;
            }
        }