* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

/* --- HEADER --- */
header {
    position: fixed; 
    width: 100%; 
    top: 0; 
    padding: 15px 60px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    background: rgba(0, 0, 0, 0.8); 
    backdrop-filter: blur(10px); 
    z-index: 1000;
}

/* Updated height from 45px to 70px to make it bigger */
.logo img { 
    height: 70px; 
    width: auto;
}

nav a { 
    margin-left: 30px; 
    color: white; 
    text-decoration: none; 
    font-size: 15px; 
    font-weight: 500; 
    transition: 0.3s; 
}

/* HERO */
.hero {
    height: 100vh; position: relative; display: flex;
    justify-content: center; align-items: center; text-align: center; color: white;
}
#heroVideo {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: -1;
}
.hero::before {
    content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 0;
}
.hero-content { z-index: 1; }
.hero-logo { height: 120px; margin: 20px 0; }
/* --- NEW PREMIUM BUTTON DESIGN --- */
.premium-btn {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 50px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
	line-height: 1;
}

/* The Arrow Styling (No more black circle) */
.premium-btn .arrow {
    font-size: 22px;
    transition: transform 0.3s ease;
}

/* Hover Effect: Button turns Red, Arrow moves slightly */
.premium-btn:hover {
    background-color: #ff3c3c !important; /* Your signature red */
    color: #ffffff !important;
    transform: translateY(-3px);
}

.premium-btn:hover .arrow {
    transform: translateX(5px); /* Arrow slides right on hover */
}
/* STATS SECTION */
.stats-section {
    display: flex; justify-content: space-around; flex-wrap: wrap;
    padding: 80px 20px; background: linear-gradient(135deg, #a70000, #ff3c3c);
    color: white; text-align: center;
}
.stat-box { flex: 1; min-width: 200px; padding: 20px; }
.stat-box h2 { font-size: 48px; font-weight: 700; margin-bottom: 5px; }

/* FEATURED IN SLIDER */
/* --- FEATURED IN SECTION COLOR UPDATE --- */
.featured-in {
    padding: 60px 0;
    /* This matches the premium light tint in your image */
    background-color: #f7f7fd !important; 
    text-align: center;
    overflow: hidden;
}

/* --- FEATURED HEADING ADJUSTMENT --- */
.featured-in h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px; /* Separates the heading from the moving logos */
    padding-top: 20px;    /* Moves the heading text slightly higher */
    color: #000;
}

/* Updated padding to move the entire section up slightly */
.featured-in {
    padding: 40px 0 60px; 
    background-color: #f7f7fd !important; 
    text-align: center;
    overflow: hidden;
}
/* Ensure the track stays transparent to show the new background */
.logo-slider {
    background: transparent !important;
}
.logo-track {
    display: flex; width: max-content; gap: 80px; align-items: center;
    animation: scroll 30s linear infinite;
}
/* --- FEATURED LOGOS COLOR FIX --- */
.logo-track img {
    height: 35px;
    width: auto;
    filter: none !important; /* Removes the black and white effect */
    opacity: 1 !important;    /* Makes them fully visible */
    transition: 0.3s;
    object-fit: contain;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* READY TO START */
.ready-to-start { padding: 80px 20px; text-align: center; background: #f9f9f9; }
.ready-to-start h2 { font-size: 32px; margin-bottom: 20px; }
.ready-to-start a { display: inline-block; padding: 12px 40px; background: black; color: white; text-decoration: none; border-radius: 50px; font-weight: 600; }

/* ABOUT & CONTACT PAGES */
.about-hero, .contact-container { padding: 150px 20px 80px; text-align: center; background: #f4f4f4; min-height: 80vh; }
.contact-card { background: white; padding: 50px; border-radius: 20px; max-width: 550px; margin: 0 auto; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.contact-form { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.contact-form input { padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-size: 16px; }
.contact-form button { padding: 18px; background: black; color: white; border: none; border-radius: 8px; cursor: pointer; font-weight: 700; }

/* --- FOOTER --- */
footer {
    background: #000;
    color: #fff;
    padding: 60px 60px 20px; /* More side padding for the left/right look */
    width: 100%;
}

.footer-top {
    display: flex;
    justify-content: space-between; /* This pushes items to opposite sides */
    align-items: flex-start;
    flex-wrap: wrap; /* Makes it stack nicely on mobile */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    text-align: left;
    flex: 1;
}

.footer-right {
    text-align: right;
    flex: 1;
}

.footer-left p, .footer-right p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.footer-left strong {
    font-size: 16px;
    color: white;
}

.footer-right strong {
    color: #ff4d4d; /* Keeps the red accent for the email label */
}

footer hr {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 20px;
    border: 0;
    border-top: 1px solid #333;
}

.copyright {
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
}

/* Responsive fix for mobile phones */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    .footer-left, .footer-right {
        text-align: center;
        width: 100%;
    }
}

/* --- HOVER EFFECTS FOR NAV AND BUTTONS --- */
nav a:hover {
    color: #ff3c3c !important; /* Red hover for Home, About Us, Contact Us */
    transition: 0.3s;
}

button:hover, .premium-btn:hover, .ready-to-start a:hover {
    background-color: #ff3c3c !important; /* Red hover for all buttons */
    color: white !important;
    transition: 0.3s;
}

/* --- DESIGN FOR POPULAR CITIES --- */
.popular-cities {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.popular-cities h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

.city-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.city-card {
    padding: 15px 40px;
    background: #EAD234;
    border-radius: 12px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid transparent;
}

.city-card:hover {
    border-color: #ff3c3c;
    color: #ff3c3c;
    transform: translateY(-5px);
}

/* --- ABOUT PAGE DESCRIPTION HIGHLIGHT --- */
.about-highlight {
    margin-top: 20px;
    font-weight: 600;
    color: #ff3c3c;
    font-size: 20px;
}

/* --- FIXED HEADER COLOR FOR ABOUT & CONTACT --- */
.home header,
.about-page header, 
.contact-page header {
    background: #000000 !important; /* Solid black background */
    backdrop-filter: none; /* Removes blur since background is solid */
}

/* Keeps the logo at the new larger size you requested */
.logo img { 
    height: 70px; 
    width: auto;
}


/* ========================================= */
/* --- NEW ABOUT PAGE SIDE-BY-SIDE DESIGN --- */
/* ========================================= */

.about-page .about-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    text-align: left; /* Aligns text left to balance the image on the right */
    padding: 40px 0;
}

.about-page .about-text-left {
    flex: 1.2; /* Gives the text block slightly more width */
}

.about-page .about-text-left h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-page .about-image-right {
    flex: 0.8; 
    display: flex;
    justify-content: center;
}

.about-page .about-image-right img {
    max-width: 100%;
    height: auto;
    border-radius: 15px; /* Adds a professional rounded look to your photo */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Adds depth to the image */
}

/* Mobile Responsive: Stacks the content on phones */
@media (max-width: 768px) {
    .about-page .about-flex-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-page .about-image-right {
        order: -1; /* Puts the image on top for mobile users */
        margin-bottom: 30px;
    }
}

/* --- MOBILE HEADER FIX --- */
@media (max-width: 768px) {
    header {
        padding: 10px 20px; /* Reduces side padding on mobile */
        flex-direction: column; /* Stacks logo on top of menu */
        gap: 10px;
    }

    .logo img {
        height: 50px; /* Makes logo smaller on mobile so it doesn't crowd links */
    }

    nav {
        display: flex;
        justify-content: center;
        gap: 15px; /* Adds even space between mobile links */
    }

    nav a {
        margin-left: 0; /* Removes the large desktop margins */
        font-size: 14px; /* Slightly smaller text for mobile */
    }
}