@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: Poppins;
}

body {
    background: #8B0000;  /* DEEP RED */
    color: #222;
}

a {
    text-decoration: none; 
    color: white;
} 

a:hover {
    color: #f2f2f2;
}



/* ================= HEADER UPDATED ================= */
.top-header {
    background: #F5F5DC;
    padding: 25px 50px;   /* padding kam – header height control */
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.header-logo {
    height: 95px;        /* same base height */
    width: auto;
    transform: scale(1.3); /* logo bara, header same */
    transform-origin: left center;
}
/* Nav links */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #8B0000;   /* deep red */
    font-weight: 700;
    font-size: 1.4rem;
}

.nav-links a:hover {
    color: #5c0000;
}

/* Buttons */
.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-buttons .btn-outline,
.nav-buttons .btn-outline.login-btn {
    background: #8B0000;   /* deep red */
    color: #F5F5DC;        /* beige text */
    border: 2px solid #8B0000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

.nav-buttons .btn-outline:hover,
.nav-buttons .btn-outline.login-btn:hover {
    background: #8B0000;
    color: #F5F5DC;
    border: 2px solid #8B0000;
}


/* ================= HERO ================= */
.hero-modern {
    padding: 80px 10% 60px; 
    text-align: center;
}

/* Hero Text - “Moving Made Simple” word styling */
.hero-text h1 span.black-word {
    color: #f2f2f2;         /* “Simple” ko black */
    font-size: 4.5rem;    /* size thoda bara, default 4rem tha */
}
.hero-text p {
    color: #F5F5DC;  
      font-size: 4.5rem;  /* beige */
}

.hero-text span,
.hero-text span.black-word {
    color: #F5F5DC;
      font-size: 4.5rem; 
}

.hero-text p {
    max-width: 650px; 
    margin: auto; 
    font-size: 1.2rem; 
    line-height: 1.6;
}

/* Slider Setup */
.hero-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}


/* ================= TRACK SECTION COMPACT SINGLE ROW ================= */
.track {
    display: flex;               /* flex layout */
    align-items: center;         /* vertically center content */
    justify-content: center;     /* center horizontally */
    gap: 15px;                   /* gap between heading and input/button */
    padding: 15px 20px;          /* vertical padding kaafi kam */
    background: #F5F5DC;         /* red background */
    border-radius: 25px; 
    margin: 30px auto; 
    max-width: 550px;            /* compact width */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); 
    flex-wrap: wrap;             /* mobile ke liye wrap */
}

.track h2 {
    color: #8B0000;
    font-size: 1.5rem;           /* chhota heading */
    font-weight: 700;
    margin: 0;                   /* heading ka extra space remove */
}

.track-box {
    display: flex; 
    gap: 10px;
}

.track input {
    padding: 10px 15px;          /* height kam ki */
    border-radius: 25px; 
    border: none; 
    width: 180px;                /* chhota width */
    font-size: 0.95rem;
    background: white; 
    color: #8B0000;
}

.track button {
    padding: 10px 25px;          /* height kam ki */
    background: white; 
    border: none; 
    color: #8B0000; 
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.track button:hover {
    background: #f2f2f2; 
    color: #8B0000;
}

.track-note {
    width: 100%;
    text-align: center;
    margin-top: 5px;             /* note margin chhota */
    font-size: 0.85rem;
    color:#8B0000 ; 
}



/* ================= ABOUT (IMAGE TOP – CONTENT BOTTOM) ================= */
.about-modern {
    padding: 120px 8%;
    background: #8B0000;
}

.about-wrapper {
    display: flex;
    flex-direction: column;   /* image upar */
    gap: 0;                   /* merge look */
}

/* IMAGE / VIDEO */
.about-visual {
    width: 100%;
    height: 420px;            /* fixed same height */
}

.about-visual img,
.about-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* CONTENT */
.about-card {
    background: #F5F5DC;
    color: #8B0000;
    padding: 40px;
    height: 420px;            /* same height as image */
    border-radius: 0;
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
}

.about-card h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.about-card p {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 18px;
    color: #8B0000;
}

/* ================= SERVICES UPDATED ================= */
.services {
    background:  #8B0000; /* light professional bg */
    padding: 80px 10%; 
    text-align: center;
}

.services h2 {
    color: #f2f2f2; 
    margin-bottom: 50px;
    font-size: 3rem; /* bigger */
    font-weight: 800;
    letter-spacing: 1px;
}

.service-box {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
    gap: 30px;
}

.service-card {
    background: #f2f2f2; 
    padding: 40px 25px; 
    border-radius: 20px; 
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    background: #8B0000; 
    color:#f2f2f2 ;
    transform: translateY(-5px);
}

.service-main {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem; 
    line-height: 1.6;
}

.service-card hr {
    border: none;
    border-top: 2px solid #8B0000; /* subtle separator */
    margin: 15px 0;
}

.service-card:hover hr {
    border-top-color:F5F5DC ;
}
/* ================= CLIENT REVIEWS UPDATED ================= */
.reviews-section {
    padding: 80px 10%; 
    text-align: center;
    background:  #8B0000; /* light professional bg */
}

.reviews-section h2 {
    font-size: 3rem;
    color:  #F5F5DC;
    margin-bottom: 50px;
    font-weight: 800;
    letter-spacing: 1px;
}

.reviews-carousel {
    display: flex; 
    gap: 30px; 
    overflow-x: auto;
    padding-bottom: 10px; /* extra space for scrollbar */
    scroll-behavior: smooth; 
}

.reviews-carousel::-webkit-scrollbar {
    height: 8px; 
}

.reviews-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reviews-carousel::-webkit-scrollbar-thumb {
    background: #8B0000;
    border-radius: 10px;
}

.review-card {
    min-width: 300px; 
    max-width: 350px;
    background: white; 
    padding: 30px; 
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    flex-shrink: 0; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.review-card h4 {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #222;
    font-weight: 600;
}

.stars {
    color: #f5b50a;
    margin-top: 10px;
    font-size: 1.1rem;
}

/* Responsive */
@media(max-width:900px) {
    .reviews-carousel {
        gap: 20px;
    }

    .review-card {
        min-width: 260px;
        max-width: 280px;
    }
}


/* Responsive */
@media(max-width:1100px) {
    .service-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:700px) {
    .service-box {
        grid-template-columns: 1fr;
    }
}
@media(max-width:900px) {
    .about-card,
    .about-video,
    .about-visual img {
        border-radius: 0;
    }
}
/* ================= CONNECT WITH US ================= */

.connect-box .about-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.connect-box .about-card a {
    color: #8B0000;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
    .about-visual {
        height: 320px;
    }

    .about-card {
        padding: 30px;
    }
}

/* CONTACT FORM */
.contact {
    padding: 80px; 
    background:  #8B0000; 
    text-align: center;
}

.contact h2 {
    margin-bottom: 25px; 
    font-size: 2.2rem; 
    color: #F5F5DC;
}

.contact form {
    max-width: 500px; 
    margin: auto; 
    display: grid; 
    gap: 15px;
}

.contact input,
.contact textarea {
    padding: 14px; 
    border-radius: 10px; 
    border: 1px solid #ccc; 
    font-size: 1rem;
}

.contact button {
    background: #F5F5DC;   /* beige button */
    color: #8B0000;  
    border: none; 
    padding: 14px; 
    border-radius: 30px; 
    font-size: 1rem;
}

.contact button:hover {
    background: #e6e0c5;   /* slightly lighter beige on hover */
    color: #8B0000;
}

footer {
     background: #F5F5DC;   /* deep red */
    color:#8B0000 ;  
    padding: 40px 10%;
    font-family: Poppins;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.footer-left h3 {
    font-size: 1.8rem;
    color: #8B0000;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 1rem;
    color:#8B0000 ;
}

.footer-center p {
    font-size: 0.95rem;
    color:#8B0000;
    margin: 5px 0;
}

.footer-right h4 {
    color: #8B0000;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer-right .social-links-footer a {
    display: block;
    color: #8B0000;
    margin: 3px 0;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-right .social-links-footer a:hover {
    color: #8B0000;
}

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #8B0000;
}

/* Responsive */
@media(max-width:900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-right, .footer-left, .footer-center {
        width: 100%;
    }
}


/* RESPONSIVE */
@media(max-width:900px) {
    .about-wrapper {
        grid-template-columns: 1fr; 
        text-align: center;
    }
    .about-card {
        border-radius: 45px 45px 0 0; 
        padding: 40px;
    }
    .about-visual img {
        border-radius: 0 0 45px 45px; 
        max-height: 400px; 
        width: 100%; 
        margin-left: 0;
    }
    .slider-container {
        height: 300px;
    }
    .hero-text h1 {
        font-size: 2.8rem;
    }
}
/* ===== CONTACT US MERGED – NO GAP (REFERENCE STYLE) ===== */

.contact {
    width: 600px;          /* REAL width kam */
    max-width: 50%;
    margin: 40px auto;     /* center + gap kam */
    padding: 40px 25px;    /* height kam */
}

.contact form {
    width: 100%;
}

.contact input,
.contact textarea,
.contact button {
    border-radius: 0;      /* square */
    padding: 10px;         /* height kam */
}

.contact textarea {
    height: 100px;         /* textarea chhoti */
}

@media(max-width:700px) {
    .contact {
        width: 100%;
        padding: 35px 20px;
    }
}



/* Connect With Us content width increase */
/* ===== CONNECT WITH US – COMPACT & SQUARE ===== */


.review-card:hover {
    background: #8B0000;
    color: white;
}

.review-card:hover h4 {
    color: white;
}
/* ===== CONTACT BOX MERGED – IMAGE & CONTENT SAME SIZE ===== */
.contact-box .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* dono ki width same */
    align-items: stretch;
    min-height: 500px;                /* dono ki same height */
    gap: 0;                            /* beech ka gap khatam */
}
/* ===== CONNECT BOX – IMAGE & CONTENT SAME SIZE, MERGED ===== */
.connect-box .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* dono equal width */
    align-items: stretch;
    min-height: 420px;                /* dono same height */
    gap: 0;                            /* beech ka gap hata diya */
}

/* CONTENT */
.connect-box .about-card {
    height: 420px;                     /* content height same as image */
    padding: 35px;
    border-radius: 0;                  /* square corners */
}

/* IMAGE */
.connect-box .about-visual {
    height: 420px;                     /* image height same as content */
}

/* image fit */
.connect-box .about-visual img,
.connect-box .about-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;                  /* square */
}

/* RESPONSIVE */
@media(max-width:900px) {
    .connect-box .about-wrapper {
        grid-template-columns: 1fr;   /* stacked on mobile */
        min-height: auto;
    }

    .connect-box .about-card,
    .connect-box .about-visual {
        height: 360px;                /* stacked height */
        border-radius: 0;
    }
}

/* CONTENT */
.contact-box .about-card {
    height: 500px;                     /* content same height as image */
    padding: 60px 40px;
    border-radius: 0;                  /* square corners */
}

/* IMAGE */
.contact-box .about-visual {
    height: 500px;                     /* image same height as content */
}

/* image fit */
.contact-box .about-visual img,
.contact-box .about-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;                  /* square */
}

/* RESPONSIVE */
@media(max-width:900px) {
    .contact-box .about-wrapper {
        grid-template-columns: 1fr;   /* stacked on mobile */
        min-height: auto;
    }

    .contact-box .about-card,
    .contact-box .about-visual {
        height: 360px;                /* stacked height for mobile */
        border-radius: 0;
    }
}
/* ===== IMAGE TOP – CONTENT BOTTOM (GLOBAL FIX) ===== */
.about-wrapper {
    grid-template-columns: 1fr;
}

.about-visual {
    width: 100%;
    height: 420px;
}

.about-visual img,
.about-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card {
    padding: 35px;
    border-radius: 0;
}

/* ===== OUR SPECIALITY ===== */
.speciality {
    padding: 100px 8%;
    background: #8B0000;
}

.speciality h2 {
    color: #F5F5DC;
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
}

.speciality p {
    color: #F5F5DC;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

/* ================= ABOUT + CONNECT (VIDEO ON TOP, CONTENT BELOW) ================= */

.about-modern,
.connect-box {
    padding: 80px 8%;
    background: #8B0000;
}

/* WRAPPER */
.about-wrapper {
    max-width: 900px;
    margin: auto;
    background: #F5F5DC;
    display: flex;
    flex-direction: column; /* stack top to bottom */
}

/* IMAGE / VIDEO TOP */
.about-visual {
    width: 100%;
    height: 420px;
    order: 0; /* ensure on top */
}

.about-visual img,
.about-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTENT BELOW */
.about-card {
    padding: 40px;
    text-align: left;
    background: #F5F5DC;
    order: 1; /* ensure below the visual */
}

.about-card h2 {
    font-size: 2.6rem;
    color: #8B0000;
    margin-bottom: 15px;
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #8B0000;
    margin-bottom: 20px;
}

/* BUTTON STYLE */
/* .about-card a,
.about-card button {
    display: inline-block;
    background: #8B0000;
    color: #F5F5DC;
    padding: 12px 30px;
    font-weight: 700;
    border: none;
    text-decoration: none;
    transition: 0.3s ease;
} */

.about-card a:hover,
.about-card button:hover {
    background: #5c0000;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
    .about-visual {
        height: 300px;
    }

    .about-card {
        padding: 30px;
    }

    .about-card h2 {
        font-size: 2.2rem;
    }
}


/* ================= CONNECT WITH US (SAME STYLE) ================= */
.connect-box .about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.connect-box .about-visual {
    height: 420px;
}

.connect-box .about-card {
    height: 420px;
    padding: 40px;
}

.connect-box .about-card a {
    color: #8B0000;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
    .about-visual,
    .about-card,
    .connect-box .about-visual,
    .connect-box .about-card {
        height: 360px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
    .about-visual {
        height: 300px;
    }

    .about-card {
        padding: 30px;
    }

    .about-card h2 {
        font-size: 2.2rem;
    }
}
