/* ============================================
   HRS EXIM - HOME PAGE V12 (SOFT & SMOOTH)
   ============================================ */
:root {
    --accent: #d4af37;
    --primary-green: #006400;
    --navbar-height: 70px;
}


/* SLIDER CAPTION - REDUCED TEXT SIZE */
.swiper-caption h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);  /* 🔥 Reduced from 3.2rem */
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.swiper-caption p {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);  /* 🔥 Reduced paragraph */
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    margin-bottom: 22px;
    line-height: 1.6;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.top-tag {
    font-family: 'Open Sans', sans-serif;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px; /* slightly reduced */
    font-size: 0.7rem;   /* 🔥 smaller */
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

/* SWIPER SLIDER SECTION */
.swiper-container-section {
    height: 88vh;
    min-height: 550px;
    max-height: 850px;
    position: relative;
    margin-top: calc(-1 * var(--navbar-height));
}
.swiper, .swiper-wrapper, .swiper-slide {
    height: 100%;
    width: 100%;
}
.swiper-slide {
    position: relative;
    overflow: hidden;
}
.swiper-slide-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    animation: kenburns 20s infinite alternate ease-in-out;
}
@keyframes kenburns {
    0%   { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10, 25, 21, 0.92) 0%, rgba(10, 25, 21, 0.3) 70%, rgba(10, 25, 21, 0) 100%); z-index: 1; }

/* SLIDER CAPTION - SMALLER & SOFTER */
.swiper-caption {
    z-index: 2; position: absolute;
    top: 50%; left: 50%;
    width: 90%; max-width: 650px;
    transform: translate(-50%, -50%);
    text-align: center;
}
.top-tag {
    font-family: 'Open Sans', sans-serif; color: var(--accent);
    text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem;
    font-weight: 600; display: block; margin-bottom: 12px;
}
.swiper-caption h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.0rem, 4.5vw, 3.2rem); /* FIX: Smaller H1 Font */
    font-weight: 500; /* Lighter font for soft feel */
    color: #fff; line-height: 1.3; margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.text-accent { color: var(--accent); }
.swiper-caption p {
    font-family: 'Open Sans', sans-serif; font-size: clamp(0.9rem, 2vw, 1rem); /* FIX: Smaller P Font */
    font-weight: 400; color: rgba(255,255,255,0.8); margin-bottom: 28px;
    line-height: 1.7; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* BUTTONS - SMALLER & REFINED */
.btn-group-custom { display: flex; align-items: center; justify-content: center; gap: 12px; }
.btn-premium, .btn-outline-light {
    font-family: 'Oswald', sans-serif;
    padding: 8px 24px; /* FIX: Smaller Padding */
    font-weight: 500;
    font-size: 0.8rem; /* FIX: Smaller Font Size */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.btn-premium { background: var(--accent); color: #1A2D26; border: 2px solid var(--accent); }
.btn-premium:hover { background: transparent; color: var(--accent); transform: translateY(-2px); }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.6); color: #fff !important; }
.btn-outline-light:hover { transform: translateY(-2px); background-color: rgba(255,255,255,0.1); border-color: #fff; }

/* SWIPER CONTROLS */
.swiper-pagination-bullet {
    width: 8px; height: 8px; background-color: rgba(255,255,255,0.5); opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: var(--accent); width: 22px; border-radius: 5px;
}
.swiper-button-next, .swiper-button-prev {
    color: #fff; opacity: 0; transition: opacity 0.3s ease;
}
.swiper:hover .swiper-button-next, .swiper:hover .swiper-button-prev { opacity: 0.6; }
.swiper-button-next:hover, .swiper-button-prev:hover { opacity: 1; }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 1.4rem !important; }

/* WHY US SECTION */
.why-us { background-color: #f8f9fa; padding: 100px 0; }
.sub-title { color: var(--accent); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 3px; font-weight: 700; }
.main-title { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 600; margin-top: 5px;}
.title-line { width: 70px; height: 3px; background: var(--accent); margin: 20px auto; }
.feature-card { background: #fff; padding: 40px 30px; text-align: center; border-bottom: 4px solid transparent; transition: 0.4s; height: 100%; border-radius: 6px; box-shadow: 0 8px 30px rgba(0,0,0,0.05); }
.feature-card:hover, .feature-card.active { box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-bottom-color: var(--accent); transform: translateY(-8px); }
.card-icon { font-size: 2.5rem; color: var(--primary-green); margin-bottom: 20px; transition: 0.4s; }
.feature-card h4 { font-family: 'Oswald', sans-serif; font-size: 1.25rem; }
.feature-card:hover .card-icon { transform: scale(1.1); color: var(--accent); }

/* MOBILE RESPONSIVE */
@media (max-width: 991.98px) {
    .swiper-caption { padding-top: var(--navbar-height); }
}
@media (max-width: 768px) {
    .swiper-container-section { height: 85vh; }
    .btn-group-custom { flex-direction: column; width: 100%; max-width: 260px; margin: 0 auto; }
    .btn-premium, .btn-outline-light { width: 100%; }
    .swiper-button-next, .swiper-button-prev { display: none; }
    .swiper-caption { padding-top: 60px; }
    .main-title { font-size: 2rem; }
}
/* WHY CHOOSE US SECTION */
.why-us-section {
    background: #fff8f0; /* Soft golden cream background */
}

.why-us-section .sub-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #b8872e; /* Golden color */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-us-section .main-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #8c5e2a; /* Darker golden */
    margin-top: 10px;
}

.why-us-section .title-line {
    width: 80px;
    height: 4px;
    background-color: #b8872e;
    margin-top: 15px;
    border-radius: 2px;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.feature-card .card-icon {
    font-size: 2.7rem;
    color: #b8872e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover .card-icon {
    color: #8c5e2a;
}

.feature-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #4b3820; /* subtle golden-brown for text */
    margin-bottom: 10px;
}

.feature-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #b8872e;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-card {
        padding: 25px 15px;
    }
}

@media (max-width: 576px) {
    .feature-card {
        padding: 20px 10px;
    }
    .feature-card h4 {
        font-size: 1.1rem;
    }
    .feature-card p {
        font-size: 0.9rem;
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    #heroSlider { height: 85vh; }
    .btn-group-custom { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
    .btn-premium, .btn-outline-light { width: 100%; }
    .main-title { font-size: 2rem; }
}


/* ==========================
   ABOUT US SECTION
   ========================== */
.about-us {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.about-us .sub-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--accent);
}

.about-us .main-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 600;
    margin-top: 10px;
    color: #1a2d26;
}

.about-us .title-line {
    width: 70px;
    height: 3px;
    background-color: var(--accent);
    margin: 20px 0;
}

.about-us p {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.7;
    color: #333;
}

.about-us .btn-premium {
    padding: 10px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    background: var(--accent);
    color: #1a2d26;
    border: 2px solid var(--accent);
    transition: all 0.4s ease;
}

.about-us .btn-premium:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
}

/* Image Styling */
.about-us img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .about-us {
        padding: 60px 0;
    }

    .about-us .main-title {
        font-size: 1.7rem;
    }

    .about-us .btn-premium {
        width: 100%;
        text-align: center;
    }

    .about-us img {
        margin-bottom: 20px;
    }
}




.products-wrapper {
    overflow: hidden;
}

.products-scroller {
    display: flex;
    transition: transform 0.6s ease;
}

/* CARD */
.product-card {
    flex: 0 0 33.333%;
    padding: 15px;
    box-sizing: border-box;
}

/* FULL CARD BOX */
.product-box {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
}

.product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
.product-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-box:hover img {
    transform: scale(1.06);
}

/* CONTENT */
.product-content {
    padding: 18px;
}

.product-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

/* BUTTON */
.btn-small {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.85rem;
    border-radius: 4px;
    background: #b78b2b;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-small:hover {
    background: #a57220;
}

/* PAGINATION */
.pagination-controls {
    margin-top: 30px;
    text-align: center;
}

.page-btn {
    padding: 6px 18px;
    margin: 0 8px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
}

.page-btn:hover {
    background: #f5f5f5;
}

.page-number {
    margin: 0 6px;
    cursor: pointer;
    font-weight: 500;
    color: #444;
}

.page-number.active {
    font-weight: 700;
    color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
    .product-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 100%; /* One card per row */
    }

    /* Pagination container: Prev - Numbers - Next */
    .pagination-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        margin-top: 15px;
        flex-wrap: nowrap;
    }

    #paginationNumbers {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4px;
        flex: 1; /* Center take the remaining space */
        overflow-x: auto; /* Scroll if too many numbers */
    }

    .page-number {
        font-size: 0.85rem;
        padding: 2px 6px;
        white-space: nowrap;
        cursor: pointer;
    }

    .page-number.active {
        color: #b78b2b;
        font-weight: 600;
    }

    .page-btn {
        flex: 0 0 auto; /* Keep Prev/Next size */
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}



/* BLOG SECTION */
.blog-section {
    background-color: #fff; /* Soft off-white background */
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    object-fit: cover;
    max-height: 220px;
    transition: transform 0.4s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-content {
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333333;
}

.blog-desc {
    font-size: 0.95rem;
    color: #555555;
    margin-top: 10px;
}

.btn-read-more {
    background-color: #b78b2b;
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: inline-block; /* needed for margin auto centering */
}

.btn-read-more:hover {
    background-color: #a57220;
    color: #fff;
}

/* Mobile responsive adjustments for Blog Section */
@media (max-width: 767px) {
    .blog-card {
        text-align: center;      /* Center text inside card */
    }

    .blog-content {
        align-items: center;     /* Center flex children vertically */
        text-align: center;      /* Ensure title and description centered */
    }

    .btn-read-more {
        align-self: center;      /* Center button horizontally */
        margin-left: auto;
        margin-right: auto;
    }
}






/* TESTIMONIALS SECTION */
.testimonials-section {
    background-color: #f9f9f9; /* Soft background */
}

.testimonials-section .sub-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #b78b2b;
    margin-bottom: 5px;
}

.testimonials-section .main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: #b78b2b;
    margin: 0 auto;
    margin-bottom: 30px;
    border-radius: 2px;
}

/* Testimonials Wrapper */
.testimonials-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.testimonials-wrapper::-webkit-scrollbar {
    height: 8px;
}

.testimonials-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(183, 139, 43, 0.6);
    border-radius: 4px;
}

.testimonials-wrapper::-webkit-scrollbar-track {
    background-color: rgba(0,0,0,0.05);
}

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    flex: 0 0 300px; /* Width of each card */
    padding: 25px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.testimonial-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #b78b2b;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1rem;
    color: #333333;
    margin-bottom: 3px;
}

.testimonial-designation {
    font-size: 0.85rem;
    color: #999999;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .testimonials-wrapper {
        gap: 15px;
        padding-bottom: 15px;
    }

    .testimonial-card {
        flex: 0 0 80%; /* Show one card at a time */
        padding: 20px;
    }
}





/* ENQUIRY SECTION */
.enquiry-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.enquiry-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.enquiry-left {
    flex: 1;
    min-width: 300px;
}

.enquiry-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
}

.enquiry-left p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.enquiry-info p {
    margin: 5px 0;
    color: #777;
}

/* RIGHT SIDE FORM */
.enquiry-right {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #b78b2b;
    outline: none;
    box-shadow: 0 0 0 2px rgba(183,139,43,0.1);
}

.error {
    color: red;
    font-size: 0.8rem;
    margin-top: 5px;
    height: 14px;
}

.submit-btn {
    background: #b78b2b;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #a57220;
    transform: translateY(-2px);
}

/* MOBILE VIEW: PERFECT CENTERING */
@media (max-width: 768px) {
    /* Make wrapper block and center all content */
    .enquiry-wrapper {
        display: block !important;        /* switch from flex to block */
        text-align: center;               /* center all text inside */
    }

    /* Left content */
    .enquiry-left {
        width: 100% !important;           /* full width */
        max-width: 400px;                  /* optional max width */
        margin: 0 auto 30px auto;         /* center and spacing below */
        flex: none !important;            /* remove any flex behavior */
        min-width: unset !important;      /* remove desktop min-width */
        text-align: center;                /* center text */
    }

    /* Right content (form) */
    .enquiry-right {
        width: 100% !important;           /* full width */
        max-width: 400px;                  /* limit width */
        margin: 0 auto;                   /* center form horizontally */
        flex: none !important;            /* remove flex */
        min-width: unset !important;      /* remove desktop min-width */
        padding: 25px;                    /* smaller padding for mobile */
        box-sizing: border-box;           /* ensure padding fits */
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;   /* distance from bottom */
    left: 20px;     /* distance from left */
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp green */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    z-index: 99999; /* topmost layer */
    text-decoration: none;
    transition: all 0.3s ease;
}



.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Mobile responsive */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}





/* Contact Info Section */
.contact-us-section {
  background-color: #fff;
}

.contact-main-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2b6f2b; /* HRS Exim Green */
}

.contact-sub-heading {
  font-size: 2.2rem;
  font-weight: 600;
}

.contact-sub-heading span {
  color: #2b6f2b;
}

.contact-desc {
  max-width: 650px;
  margin: 10px auto 0;
  font-size: 1.1rem;
  color: #555;
}

.contact-row {
  margin-top: 40px;
}

.contact-box {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.contact-icon {
  width: 60px;
  margin-bottom: 20px;
}

.contact-box h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2b6f2b;
}

.contact-box a {
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-box a:hover {
  color: #2b6f2b;
}

.contact-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #ddd;
}

@media (max-width: 991px) {
  .contact-box::after {
    display: none;
  }
}

/* Contact Form Section */
.contact-form-section {
  background-color: #f0fff0;
}

.contact-form-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.form-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2b6f2b;
  margin-bottom: 10px;
}

.form-control {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form-control:focus {
  border-color: #2b6f2b;
  box-shadow: none;
}

.send-btn {
  background-color: #2b6f2b;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background-color: #1f4f1f;
  transform: translateY(-2px);
}

.error-text {
  color: red;
  font-size: 0.85rem;
}

/* Scroll Animations */
.reveal, .fade-left, .fade-right, .fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.fade-left {
  transform: translateX(-50px);
}

.fade-right {
  transform: translateX(50px);
}

.fade-up {
  transform: translateY(60px);
}

.active {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Map Section */
.map-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.map-container {
  position: relative;
  width: 100%;
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(43, 111, 43, 0.95);
  color: #fff;
  padding: 20px 25px;
  border-radius: 8px;
  max-width: 300px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.map-overlay h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.map-overlay p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.map-overlay a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .map-container {
    height: 350px;
  }

  .map-overlay {
    left: 15px;
    right: 15px;
    bottom: 15px;
    max-width: 100%;
  }
}



/* ============================================
   MOBILE RESPONSIVE FIXES (max-width: 768px)
   Specifically for: Centering, Slider Text, Layout
   ============================================ */

@media (max-width: 768px) {

    /* --- GLOBAL --- */
    /* Ensure text is centered in almost all sections */
    .container, 
    .container-fluid, 
    section, 
    .row, 
    .swiper-caption, 
    .why-us-section, 
    .about-us, 
    .products-wrapper, 
    .blog-section, 
    .testimonials-section, 
    .enquiry-section, 
    .contact-us-section {
        text-align: center !important;
    }

    /* --- HERO SLIDER (Most Important Fix) --- */
    .swiper-container-section {
        height: 80vh; /* Slightly shorter for mobile */
        min-height: 500px;
    }

    /* Center the caption box and add top padding for Navbar */
    .swiper-caption {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        padding-top: 70px; /* Space for fixed navbar */
    }

    /* FIX: Reduce Slider Heading Size (Motha text) */
    .swiper-caption h1 {
        font-size: clamp(1.5rem, 6vw, 2rem) !important; 
        line-height: 1.2;
        margin-bottom: 8px;
    }

    /* FIX: Reduce Slider Paragraph Size */
    .swiper-caption p {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem) !important;
        margin-bottom: 20px;
        max-width: 100% !important;
        line-height: 1.5;
    }

    /* Buttons: Stack them vertically */
    .btn-group-custom {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-premium, 
    .btn-outline-light {
        width: 100%; /* Full width buttons */
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    /* --- WHY US SECTION --- */
    .why-us-section .row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-card {
        width: 100%;
        margin-bottom: 0;
    }

    /* --- ABOUT US SECTION --- */
    .about-us {
        padding: 60px 0;
    }

    .about-us .row {
        display: flex;
        flex-direction: column-reverse; /* Image top, text bottom (or remove if you want image first) */
    }

    .about-us img {
        margin-bottom: 25px;
        width: 100%;
    }
    
    .about-us .btn-premium {
        width: auto;
        display: inline-block;
    }

    /* --- PRODUCTS SECTION --- */
    .products-wrapper {
        padding: 0 15px;
    }

    .product-card {
        flex: 0 0 100%; /* 1 card per row */
        margin-bottom: 20px;
    }

    .product-box {
        max-width: 400px;
        margin: 0 auto;
    }

    /* --- BLOG SECTION --- */
    .blog-card {
        max-width: 500px;
        margin: 0 auto 30px auto; /* Center card */
    }

   
    /* --- ENQUIRY SECTION --- */
    .enquiry-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .enquiry-left h2 {
        font-size: 1.8rem;
    }

    .enquiry-right {
        width: 100%;
        padding: 25px 20px;
    }

    /* --- CONTACT SECTION --- */
    .contact-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-box {
        padding: 20px 0;
        border-bottom: 1px solid #eee;
    }

    /* Remove side borders from desktop view */
    .contact-box::after {
        display: none !important;
    }
    
    .map-container {
        height: 300px;
    }
}

/* --- HERO SLIDER (Most Important Fix) --- */
@media (max-width: 768px) {

    /* ... (previous code for slider) ... */

    /* FIX: Buttons Chote Karayche */
    .btn-group-custom {
        flex-direction: column;
        width: 100%;
        gap: 8px; /* Gap kami kel */
    }

    .btn-premium, 
    .btn-outline-light {
        width: 80%; /* Full width nahi, 80% width */
        font-size: 0.7rem; /* Font size kami kel */
        padding: 6px 16px; /* Padding kami kel (top/bottom 6px, left/right 16px) */
        letter-spacing: 1px;
    }
}

