/* ========================================= ROOT / VARIABLES ========================================= */
:root {
  --cyan: #29c3d4;
  --cyan-dark: #1fa8b8;
  --yellow: #f8cc00;
  --blue: #58b2e0;
  --dark: #1a1a1a;
  --text: #444;
  --gray: #555555;
  --light-bg: #FFF5D5;
  --white: #ffffff;
  --border: #e2eef4;
  --radius: 6px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
} /* ========================================= GLOBAL UTILITIES ========================================= */
.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: "Georgia", "Times New Roman", serif;
  text-align: center;
}
.section-heading span {
  color: var(--cyan);
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 6px;
  text-align: center;
  font-family:
    "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif !important;
}
.section-subtext {
  font-size: 15px;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.7;
  text-align: center;
} /* Hero Slider Styles */
/* =============================================
   HERO SLIDER (New Design)
============================================= */
.hero-slider {
    position: relative;
    height: 82vh;
    min-height: 560px;
    max-height: 950px;
    overflow: hidden;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}
.slider-container { position: relative; width: 100%; height: 100%; }

.slider-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s;
    z-index: 1;
}
.slider-item.active { opacity: 1; visibility: visible; z-index: 2; }

.slider-overlay {
    /* position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .15); */
}

/* Content */
.slider-content {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

    /* align-items: center; */
    /* text-align: center; */


.slide-tagline {
    color: #fff;
    font-size: 21px;
    margin-bottom: 12px;
    letter-spacing: .3px;
}

.slide-title {
    margin: 0 0 28px;
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 0px 3px rgba(0,0,0,.4);
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.slide-description {
    margin: 0 0 30px;
    color: #fff;
    text-shadow: 0 0px 3px rgba(0,0,0,.4);
    font-size: 19px;
    line-height: 1.9;
    max-width: 900px;
}

/* Buttons (anchors) */
.slide-btns { display: flex; gap: 25px; flex-wrap: wrap; }
.btn-solid,
.btn-outline {
    display: inline-block;
    padding: 18px 42px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .5px;
    text-decoration: none;
    color: #fff;
    transition: all .25s ease;
}
.btn-solid { background: #9E1F63 }
.btn-solid:hover { background: #1D75BC; }
.btn-outline { border: 1px solid #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: #222; }

/* Square outline arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 50px;
    height: 60px;
    border: 1px solid rgba(255,255,255,.7);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}
.slider-arrow:hover { background: #fff; color: #222; }
.slider-arrow svg { width: 22px; height: 22px; }
.slider-prev { left: 25px; }
.slider-next { right: 25px; }

/* Dots */
.slider-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    transition: background .3s, transform .3s;
}
.indicator.active {
    background: #fff;
    transform: scale(1.15);
}
/* html, body { overflow-x: hidden; } */
/* ---- Responsive ---- */
@media (max-width: 992px) {
    .hero-slider { height: 80vh; min-height: 500px; }
    .slide-description { font-size: 16px; margin-bottom: 36px; }
    .btn-solid, .btn-outline { padding: 15px 32px; font-size: 15px; }
    .slider-arrow { display: none; }
    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }
}
@media (max-width: 576px) {
    .hero-slider { height: 75vh; min-height: 460px; }
    .slide-tagline { font-size: 14px; }
    .slide-description { font-size: 14px; }
     .slider-arrow { display: none; }
    .slide-btns { gap: 14px; }
    .btn-solid, .btn-outline { padding: 13px 26px; font-size: 14px; }
}

/* =============================================
   ABOUT SECTION (2 Rows - Image Style)
============================================= */
.about-section {
    
    padding: 75px 0;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Rows */
.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 65px;
        padding-left: 10px;
    padding-right: 10px;
}
.about-row:last-child { margin-bottom: 0; }

/* ---- Text Column ---- */
.about-title {
    margin: 0 0 16px;
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    line-height: 1.35;
}

/* Title ke neeche choti bar */
.about-bar {
    width: 45px;
    height: 3px;
    background: #000000;
    margin: 0 0 30px;
}

/* 30 + subheading side by side */
.about-exp {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
}
.exp-number {
    font-size: 48px;
    font-weight: 700;
    color: #1D75BC;
    line-height: 1;
}
.exp-text {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    line-height: 1.55;
    /* max-width: 300px; */
    padding-top: 4px;
}

/* Paragraph */
.about-para {
    margin: 0 0 24px;
    font-size: 16px;
    color: #000000;
    line-height: 2.05;
}
.about-row:last-child .about-para { margin-bottom: 0; }

/* Phone */
.about-phone {
    margin: 0;
    font-size: 15.5px;
    color: #000000;
}
.about-phone a {
    color: #000000;
    font-weight: 600;
    text-decoration: none;
}
.about-phone a:hover { color: #2f7ec7; }

/* ---- Image Column ---- */
.about-col-img img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 420px;
    object-fit: cover;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .about-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 55px;
    }
    /* Mobile par row 2 me text pehle, image baad me */
    .about-row:last-child .about-col-text { order: 1; }
    .about-row:last-child .about-col-img  { order: 2; }
    .about-col-img img { min-height: 260px; }
    .about-title { font-size: 24px; }
}
@media (max-width: 576px) {
    .about-section { padding: 55px 0; }
    .about-title { font-size: 21px; }
    .exp-number { font-size: 38px; }
    .exp-text { font-size: 15px; }
    .about-para { font-size: 13px; }
}



/* =============================================
   USP STRIP (4 Icons + Text)
============================================= */
.usp-strip {
  
    padding: 50px 0;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}
.usp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 4 Columns */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

/* Item: icon left + text right */
.usp-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* Blue Icons */
.usp-icon {
    width: 46px;
    height: 46px;
    color: #2f7ec7;
    flex-shrink: 0;
}
.usp-icon svg {
    width: 100%;
    height: 100%;
}

/* 2-line Bold Text */
.usp-item h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    line-height: 1.65;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 576px) {
    .usp-strip { padding: 40px 0; }
    .usp-grid { grid-template-columns: 1fr; gap: 26px; }
    .usp-item { justify-content: flex-start; }
}


/* ========================================= 3. SERVICES SECTION ========================================= */
/* services-section.css */


.services-bg {
    background: #FFE2F2;      /* simple light background */
    padding: 75px 0 85px;
}

.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Service Card */
.service-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Service Image Wrapper */
.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
      height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.05);
}

/* Service Overlay */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #9e1f6385;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.service-card:hover .service-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFE2F2;
    text-align: center;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    text-transform: uppercase;
}

.service-card:hover .overlay-title {
    transform: translateY(0);
}

/* Toggle Button */
.srv-toggle-wrap {
    text-align: center;
    margin-top: 40px;
}

.srv-toggle-btn {
    background: #9E1F63;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
   
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.srv-toggle-btn:hover {
    background: #1D75BC;;
    transform: translateY(-3px);
   
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.srv-toggle-btn[data-expanded="true"] .btn-arrow {
    transform: rotate(180deg);
}

/* Extra Services (Hidden by default) */
.srv-extra {
    display: none;
}

.srv-extra.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* .service-image-wrapper {
        height: 250px;
    }
     */
    .section-title {
        font-size: 26px;
    }
    
    .overlay-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    
    
    .overlay-title {
        font-size: 18px;
    }
}

/* =============================================
   FUN FACTS / COUNTERS
============================================= */
.funfact-section {
  
    padding: 27px 0;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}
.funfact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.funfact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Each Item */
.funfact {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 45px 0;
    cursor: default;
}

/* Background Vertical Rectangle */
.funfact-rect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 155px;
    border: 3px solid #ececec;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

/* Hover → rectangle slowly spin ho kar ruk jaye */
.funfact:hover .funfact-rect {
    animation: rectSpin 2.8s ease-in-out forwards;
}
@keyframes rectSpin {
    0%   { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Number (magenta) */
.funfact-number {
    position: relative;
    z-index: 1;
    font-size: 56px;
    font-weight: 800;
    color: #9E1F63;
    line-height: 1;
}

/* Label (blue) */
.funfact-label {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    font-size: 18px;
    color: #2f7ec7;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .funfact-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .funfact-number { font-size: 46px; }
}
@media (max-width: 576px) {
    .funfact-section { padding: 70px 0; }
    .funfact-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .funfact-number { font-size: 36px; }
    .funfact-label { font-size: 15px; }
    .funfact-rect { width: 58px; height: 120px; }
}



/* =============================================
   OFFERS (BG IMAGE + STATIC IMAGES)
============================================= */
.offers-bg-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 95px;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}
.offers-bg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading (white) */
.offers-bg-title {
    margin: 0 0 18px;
    text-align: center;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    text-shadow: 0 1px 8px rgba(0,0,0,.25);
}

/* Choti horizontal bar */
.offers-bg-bar {
    width: 45px;
    height: 3px;
    background: #333;
    margin: 0 auto 60px;
}

/* 3 Images Grid */
.offers-bg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Static items - koi hover effect nahi */
.offers-bg-item img {
    display: block;
    width: 100%;
    
   
    object-fit: cover;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .offers-bg-grid { grid-template-columns: 1fr; gap: 25px; max-width: 520px; margin: 0 auto; }
    .offers-bg-title { font-size: 28px; }
}
@media (max-width: 576px) {
    .offers-bg-section { padding: 60px 0 70px; }
    .offers-bg-title { font-size: 25px; }
    .offers-bg-bar { margin-bottom: 40px; }
}
 /* ========================================= 4. CTA ========================================= */

/* =============================================
   TESTIMONIAL (UP/DOWN ARROWS)
============================================= */
.tst2-section {
  
    padding: 45px 0;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
    padding-left: 10px;
    padding-right: 10px;

}
.tst2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}
.tst2-left { flex: 1; }

/* Title + Bar */
.tst2-title {
    margin: 0 0 20px;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
}
.tst2-bar {
    width: 45px;
    height: 3px;
    background: #000000;
    margin: 0 0 45px;
}

/* Slides */
.tst2-slide { display: none; }
.tst2-slide.active {
    display: block;
    animation: tst2Fade .5s ease;
}
@keyframes tst2Fade {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.tst2-name {
    margin: 0 0 24px;
    font-size: 21px;
    font-weight: 700;
    color: #000000;
}
.tst2-quote {
    margin: 0;
    font-size: 18px;
    font-style: italic;
    color: #000000;
    line-height: 1.95;
    max-width: 1200px;
}

/* ---- Right Arrows (stacked squares) ---- */
.tst2-arrows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    margin-top: 95px;   /* title ke level ke baad */
}
.t-arrow {
    width: 32px;
    height: 32px;
    background: #ececec;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s, color .25s;
}
.t-arrow svg { width: 15px; height: 15px; }
.t-arrow:hover,
.t-arrow.active {
    background: #9E1F63;   /* magenta */
    color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .tst2-section { padding: 70px 0; }
    .tst2-title { font-size: 30px; }
    .tst2-arrows { margin-top: 60px; }
}
@media (max-width: 576px) {
    .tst2-section { padding: 55px 0; }
    .tst2-container { flex-direction: column-reverse; gap: 25px; }
    .tst2-arrows { flex-direction: row; margin-top: 0; }
    .tst2-title { font-size: 26px; }
    .tst2-name { font-size: 18px; }
    .tst2-quote { font-size: 14px; }
}

/* =============================================
   MAP + REQUEST FOR QUOTE
============================================= */
.quote-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 470px;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}

/* ---- Left: Map ---- */
.qms-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 470px;
    border: 0;
}

/* ---- Right: BG Image + Overlay ---- */
.qms-form-side {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.qms-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.qms-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 660px;
    margin: 0 auto;
    padding: 60px 45px;
}

/* Title + white bar */
.qms-title {
    margin: 0 0 18px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}
.qms-bar {
    width: 42px;
    height: 2px;
    background: #fff;
    margin: 0 0 34px;
}

/* 2x2 Inputs */
.qms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}
.qms-grid input {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 2px;
    padding: 14px 16px;
    font-size: 14px;
    color: #000000;
    font-family: inherit;
    outline: none;
}
.qms-grid input::placeholder { color: #555; }

/* Send (anchor as button - magenta) */
.qms-send {
    display: inline-block;
    width: calc(50% - 7.5px);   /* ek input column jitni width (image jaisi) */
    background: #9E1F63;
    color: #fff;
    text-align: center;
    padding: 14px 0;
    font-size: 16px;
    border-radius: 2px;
    text-decoration: none;
    transition: background .25s;
}
.qms-send:hover { background: #1D75BC;}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .quote-map-section { grid-template-columns: 1fr; }
    .qms-map iframe { min-height: 350px; }
    .qms-content { padding: 50px 30px; }
}
@media (max-width: 576px) {
    .qms-grid { grid-template-columns: 1fr; }
    .qms-send { width: 100%; }
    .qms-title { font-size: 24px; }
    .qms-content { padding: 45px 22px; }
}

/* =============================================
   BLUE CTA STRIP
============================================= */
.cta-blue {
    background: #1D75BC;
    padding: 55px 0;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}
.cta-blue-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Text */
.cta-blue-text h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
}
.cta-blue-text p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

/* Magenta Call Us Button */
.cta-blue-btn {
    flex-shrink: 0;
    display: inline-block;
    background: #9E1F63;
    color: #fff;
    padding: 18px 42px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease;
}
.cta-blue-btn:hover {
    background: white;
    color: #000;
    transform: translateY(-2px);
    border:  2px solid #9E1F63;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .cta-blue-container { flex-direction: column; text-align: center; gap: 25px; padding: 0 25px; }
    .cta-blue-text h2 { font-size: 19px; }
}
@media (max-width: 576px) {
    .cta-blue { padding: 45px 0; }
    .cta-blue-text h2 { font-size: 17px; }
    .cta-blue-text p { font-size: 13px; }
    .cta-blue-btn { padding: 15px 36px; font-size: 14px; }
}