@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@700&family=Open+Sans:wght@400;500;700&display=swap");

:root {
    --primary: #F5085B;    /* pink/magenta */
    --secondary: #EDA503;  /* amber/gold */
    --bg-light: #FFF0CF;   /* light cream */
}


/* ============================================================
   1. HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text {
  color: #fff;
}

.hero-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 18px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.text {
  font-size: 20px;
  line-height: 1.5;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  color: #ffffff;
}

/* ============================================================
   2. SERVICES CARDS SECTION
   ============================================================ */
.services-section {
    
    padding: 60px 0;
}

/* Header: centered title with bars */
.services-header {
    text-align: center;
    margin-bottom: 35px;
}

/* Primary bars - top & bottom */
.services-bar {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto;
}

.services-bar:first-child {
    margin-bottom: 12px;
}

.services-bar:last-child {
    margin-top: 12px;
}

.section-heading {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

/* Grid - 3 columns */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Cards - sirf image (borders/title DB image ka part hain) */
.service-list-card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 25px;
}

/* Image wrapper - relative for overlay */
.service-media {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

/* Hover overlay - primary tint + service name (offers jaisa) */
.service-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    background: color-mix(in srgb, var(--primary) 75%, transparent);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-media a:hover .service-overlay {
    opacity: 1;
}

.service-media a {
    display: block;
}

.service-media img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.service-media a:hover img {
    transform: scale(1.04);
}

/* View All - amber pill */
.srv-toggle-wrap {
    text-align: center;
    margin-top: 35px;
}

.hs-btn--yellow {
    background: var(--secondary);
    color: #fff;
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hs-btn--yellow:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== Responsive: 1024 ===== */
@media (max-width: 1024px) {
    .services-grid {
        gap: 20px 18px;
    }

    .section-heading {
        font-size: 24px;
    }
}

/* ===== Responsive: 768 ===== */
@media (max-width: 767.98px) {
    .services-section {
        padding: 45px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .services-header {
        margin-bottom: 28px;
    }
}

/* ===== Responsive: 520 ===== */
@media (max-width: 520px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 21px;
    }

    .service-list-card {
        padding-bottom: 20px;
    }
}



/* ══════════════════════════════════════════════════════ CTA BANNER (Get 20% Off) ══════════════════════════════════════════════════════ */
/* ===== CTA Band - bg image + primary overlay ===== */
.cta-band {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 45px 0;
}

/* Primary pink overlay */
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.92;              /* image halki si dikhe */
    pointer-events: none;
}

/* Content overlay k upar */
.cta-band .container-1200 {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px 20px;
    align-items: center;
}

/* Title */
.cta-band h2 {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

/* Subtitle */
.cta-band p {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    font-size: 15px;
    color: #fff;
}

/* Amber pill buttons - right side, vertically centered */
.cta-btn {
    grid-row: 1 / 3;
    background: var(--secondary);
    color: #fff;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== Responsive: 1024 ===== */
@media (max-width: 1024px) {
    .cta-band h2 {
        font-size: 24px;
    }

    .cta-btn {
        padding: 12px 22px;
        font-size: 13px;
    }
}

/* ===== Responsive: 992 - buttons neeche ===== */
@media (max-width: 992px) {
    .cta-band .container-1200 {
        grid-template-columns: 1fr 1fr;
        gap: 15px 20px;
    }

    .cta-band h2 {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .cta-band p {
        grid-column: 1 / -1;
        grid-row: auto;
        margin-bottom: 10px;
    }

    .cta-btn {
        grid-row: auto;
        text-align: center;
    }
}

/* ===== Responsive: 520 - full stack ===== */
@media (max-width: 520px) {
    .cta-band {
        padding: 35px 0;
    }

    .cta-band .container-1200 {
        grid-template-columns: 1fr;
    }

    .cta-band h2 {
        font-size: 20px;
    }

    .cta-band p {
        font-size: 13px;
    }

    .cta-btn {
        text-align: center;
        white-space: normal;
    }
}

/* testimonial css */
/* ===== Testimonials Section ===== */
.testimonials-new {
    
    padding: 60px 0;
}

/* Pink rounded box */
.t2-box {
    position: relative;
    background: var(--primary);
    border-radius: 12px;
    padding: 50px 90px 45px;
    text-align: center;
}

/* Title */
.t2-box h2 {
    margin: 0 0 25px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

/* Cards - one at a time with fade */
.t2-card {
    display: none;
}

.t2-card.active {
    display: block;
    animation: t2Fade 0.5s ease;
}

@keyframes t2Fade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Quote text - italic white */
.t2-text {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 16px;
    font-style: italic;
    line-height: 1.9;
    color: #fff;
}

/* Stars - secondary */
.t2-stars span {
    color: var(--secondary);
    font-size: 22px;
    margin: 0 6px;
}

/* Name + city */
.t2-name {
    margin: 30px 0 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.t2-name small {
    margin-left: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Arrows - left outline / right filled */
.t2-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
}

.t2-arrow--prev {
    left: 20px;
    background: transparent;
    border: 1px solid var(--secondary);
}

.t2-arrow--next {
    right: 20px;
    background: var(--secondary);
    border: 1px solid var(--secondary);
}

.t2-arrow--prev:hover {
    background: var(--secondary);
}

.t2-arrow--next:hover {
    background: #fff;
    color: var(--primary);
}

/* ===== Responsive: 1024 ===== */
@media (max-width: 1024px) {
    .t2-box {
        padding: 45px 70px 40px;
    }
}

/* ===== Responsive: 768 ===== */
@media (max-width: 767.98px) {
    .testimonials-new {
        padding: 45px 0;
    }

    .t2-box {
        padding: 40px 55px 35px;
    }

    .t2-box h2 {
        font-size: 24px;
    }

    .t2-text {
        font-size: 14px;
    }

    .t2-arrow {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .t2-arrow--prev { left: 12px; }
    .t2-arrow--next { right: 12px; }
}

/* ===== Responsive: 520 ===== */
@media (max-width: 520px) {
    .t2-box {
        padding: 35px 45px 30px;
    }

    .t2-box h2 {
        font-size: 21px;
    }

    .t2-text {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .t2-stars span {
        font-size: 17px;
        margin: 0 3px;
    }

    .t2-name {
        font-size: 16px;
        margin-top: 22px;
    }
}
