
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Georgia, 'Times New Roman', Times, serif;
      line-height: 1.6;
      color: var(--gray-900);
      background: var(--white);
      overflow-x: hidden;
    }
     a {
      text-decoration: none;
      color: inherit;
    }

    /* ========================================
       FOOTER SECTION - FINAL FIXED
       ======================================== */
    .site-footer {
      background: #0B2223;
      color: #ffffff;
      position: relative;
    }

    .footer-cta {
      background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
      padding: 3rem 2rem;
    }

    .footer-cta-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-cta-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      text-align: center;
    }

    .footer-cta-heading {
      font-size: 1.75rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
    }

    .footer-cta-btn {
      padding: 1rem 2.5rem;
      font-size: 1rem;
      font-weight: 600;
      color: #3b82f6;
      background: #ffffff;
      border: none;
      border-radius: 0.5rem;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .footer-cta-btn:hover {
      background: #f1f5f9;
      transform: translateY(-2px);
      box-shadow:  0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .footer-main {
      padding: 4rem 2rem 3rem;
      border-top: 1px solid #E05522;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
      gap: 4rem;
    }

    .footer-column {
      margin-bottom: 2.5rem;
    }

    .footer-logo {
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.5rem;
      font-weight: 700;
      color: rgb(247, 247, 248);
    }

    .footer-logo i {
      font-size: 2rem;
    }

    .footer-description {
      font-size: 0.9375rem;
      color: #9e9e9e;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .social-links {
      display: flex;
      gap: 1rem;
    }

    .social-link {
      width: 42px;
      height: 42px;
      background:#E05522;
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.125rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .social-link:hover {
      background: #E05522;
      color: #ffffff;
      transform: translateY(-3px);
    }

    .footer-heading {
      font-size: 1.125rem;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.75rem;
    }

    .footer-heading::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: #E05522;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 0.875rem;
    }

    .footer-links a {
      color: #9e9e9e;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .footer-links a::before {
      content: '→';
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      color: #E05522;
    }

    .footer-links a:hover {
      color: #E05522;
      padding-left: 10px;
    }

    .footer-links a:hover::before {
      opacity: 1;
      transform: translateX(0);
    }

    .footer-contact {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-contact li {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
      align-items: flex-start;
    }

    .footer-contact i {
      color: #E05522;
      font-size: 1.125rem;
      margin-top: 0.25rem;
      width: 20px;
      flex-shrink: 0;
    }

    .contact-label {
      display: block;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #d1d1d1;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 0.25rem;
    }

    .contact-link {
      color: #ffffff;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: block;
    }

    .contact-link:hover {
      color: #E05522;
    }

    .contact-text {
      color: #9e9e9e;
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    /* Footer Bottom Bar - HORIZONTAL */
    .footer-bottom {
      border-top: 1px solid #1e293b;
      padding: 2rem 2rem;
      background: #0B2223;
    }

    .footer-bottom .footer-container {
      display: block;
    }

    .footer-bottom-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .copyright {
      font-size: 0.875rem;
      color: #9e9e9e;
      margin: 0;
      white-space: nowrap;
    }

    .footer-legal {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: row;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .footer-legal a {
      color:#9e9e9e;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      font-size: 0.875rem;
      white-space: nowrap;
    }

    .footer-legal a:hover {
      color: var(--primary);
    }

    @media (max-width: 1024px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    @media (max-width: 768px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .footer-cta-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }

      .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
      }

      .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
      }
    }

    @media (max-width: 640px) {
      .footer-cta-content {
        flex-direction: column;
        text-align: center;
      }

      .footer-bottom-content {
        align-items: flex-start;
      }
    }
     /* ========================================
       UTILITY CLASSES
       ======================================== */
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }



     /* =========================================================
       MAIN HEADER
    ========================================================= */


/* =========================================================
   INITIAL / UNSCROLLED STATE (White Text & Elements)
   ========================================================= */

/* Nav Links - Default White */
.rep-header-sec .rep-header-sec-nav-link {
  color: #ffffff;
}

/* Nav Link Hover Underline Indicator */
.rep-header-sec .rep-header-sec-nav-link::after {
  background: #ffffff;
}
/* Hover */
.rep-header-sec .rep-header-sec-nav-link:hover::after {
    background: #FF5722;
}

/* Scroll ke baad */
.rep-header-sec.scrolled .rep-header-sec-nav-link:hover::after {
    background: #15595A;
}

/* Phone Text & Icon - Default White */
.rep-header-sec .rep-header-sec-phone {
  color: #ffffff;
}

.rep-header-sec .rep-header-sec-phone i {
  color: #ffffff;
}

/* Logo Placeholder - Default White Title & Subtitle */
.rep-header-sec .rep-header-sec-logo-placeholder-title {
  color: #ffffff;
}

.rep-header-sec .rep-header-sec-logo-placeholder-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

/* Desktop CTA Button - Outline or Glassmorphism for contrast over dynamic background */
.rep-header-sec .rep-header-sec-btn {
  background: #E05522;
  border-color: #ffffff;
  color: #ffffff;
}

.rep-header-sec .rep-header-sec-btn:hover {
  background: #ffffff;
  color: #15595A;
}

/* Mobile Toggle Icon Border/Background - Unscrolled */
.rep-header-sec .rep-header-sec-mobile-toggle {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}


/* =========================================================
   SCROLLED STATE (Restore Original Colors)
   ========================================================= */

.rep-header-sec.rep-header-sec-scrolled {
  background: #f5f4ef;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* Nav Links - Scrolled Color */
.rep-header-sec.rep-header-sec-scrolled .rep-header-sec-nav-link {
  color: #596365;
}

.rep-header-sec.rep-header-sec-scrolled .rep-header-sec-nav-link:hover {
  color: #15595A;
}

.rep-header-sec.rep-header-sec-scrolled .rep-header-sec-nav-link::after {
  background: #15595A;
}

/* Phone - Scrolled Color */
.rep-header-sec.rep-header-sec-scrolled .rep-header-sec-phone {
  color: #263333;
}

.rep-header-sec.rep-header-sec-scrolled .rep-header-sec-phone i {
  color: #15595A;
}

.rep-header-sec.rep-header-sec-scrolled .rep-header-sec-phone:hover {
  color: #15595A;
}

/* Logo Placeholder - Scrolled Color */
.rep-header-sec.rep-header-sec-scrolled .rep-header-sec-logo-placeholder-title {
  color: #1e2828;
}

.rep-header-sec.rep-header-sec-scrolled .rep-header-sec-logo-placeholder-subtitle {
  color: #15595A;
}

/* Desktop CTA Button - Scrolled Color */
.rep-header-sec.rep-header-sec-scrolled .rep-header-sec-btn {
  background: #15595A;
  border-color: #15595A;
  color: #ffffff;
}

.rep-header-sec.rep-header-sec-scrolled .rep-header-sec-btn:hover {
  background: transparent;
  color: #15595A;
}

/* Mobile Toggle Icon - Scrolled Color */
.rep-header-sec.rep-header-sec-scrolled .rep-header-sec-mobile-toggle {
  background: #15595A;
  border-color: rgba(21, 89, 90, 0.18);
}

    .rep-header-sec {
      width: 100%;
      height: 88px;

      position: fixed;
      top: 0;
      left: 0;

      z-index: 9999;

      /* Initially Transparent */
      background: transparent;

      transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease;
    }


    /* Header after scrolling */

    .rep-header-sec.rep-header-sec-scrolled {
      background: #f5f4ef;

      box-shadow:
        0 1px 0 rgba(0, 0, 0, 0.06);
    }


    .rep-header-sec-inner {
      width: 100%;
      max-width: 1280px;
      height: 100%;

      margin: 0 auto;
      padding: 0 34px;

      display: flex;
      align-items: center;
      justify-content: space-between;

      gap: 30px;
    }


    /* =========================================================
       DESKTOP LOGO
    ========================================================= */

    .rep-header-sec-logo {
      display: flex;
      align-items: center;

      text-decoration: none;

      flex-shrink: 0;
    }


    /*
      REAL LOGO IMAGE

      Baad mein sirf src change karna:

      src="images/logo.svg"

      ya

      src="assets/logo.png"
    */

    .rep-header-sec-logo-img {
      display: block;

      width: 150px;
      height: auto;

      max-height: 55px;

      object-fit: contain;
      object-position: left center;
    }


    /*
      Agar image abhi available nahi hai,
      placeholder text temporary show hoga.
    */

    .rep-header-sec-logo-placeholder {
      display: flex;
      align-items: center;
      gap: 11px;
    }


    .rep-header-sec-logo-placeholder-icon {
      width: 39px;
      height: 39px;

      border-radius: 10px;

      background: #15595A;
      color: #ffffff;

      display: flex;
      align-items: center;
      justify-content: center;

      font-size: 17px;
    }


    .rep-header-sec-logo-placeholder-content {
      display: flex;
      flex-direction: column;

      line-height: 1;
    }


    .rep-header-sec-logo-placeholder-title {
      color: #1e2828;

      font-size: 18px;
      font-weight: 700;

      white-space: nowrap;
    }


    .rep-header-sec-logo-placeholder-subtitle {
      margin-top: 4px;

      color: #15595A;

      font-size: 8px;
      font-weight: 800;

      letter-spacing: 1.6px;
      text-transform: uppercase;
    }


    /*
      Jab actual image laga do aur placeholder nahi chahiye,
      .rep-header-sec-logo-placeholder ko display:none kar sakte ho.
    */


    /* =========================================================
       DESKTOP NAVIGATION
    ========================================================= */

    .rep-header-sec-nav {
      display: flex;
      align-items: center;
      justify-content: center;

      gap: 37px;

      margin-left: auto;
    }


    .rep-header-sec-nav-link {
      position: relative;

      height: 88px;

      display: inline-flex;
      align-items: center;

      color: #596365;

      text-decoration: none;

      font-size: 14px;
      font-weight: 600;

      transition:
        color 0.25s ease;
    }


    .rep-header-sec-nav-link::after {
      content: "";

      position: absolute;

      left: 0;
      right: 0;
      bottom: 25px;

      width: 0;
      height: 2px;

      margin: auto;

      background: #15595A;

      border-radius: 50px;

      transition:
        width 0.28s ease;
    }


    .rep-header-sec-nav-link:hover {
      color: #FF5722;
    }


    .rep-header-sec-nav-link:hover::after {
      width: 100%;

    }


    /* =========================================================
       RIGHT SIDE
    ========================================================= */

    .rep-header-sec-right {
      display: flex;
      align-items: center;

      gap: 22px;

      flex-shrink: 0;
    }


    .rep-header-sec-phone {
      display: inline-flex;
      align-items: center;

      gap: 8px;

      color: #263333;

      text-decoration: none;

      font-size: 13px;
      font-weight: 700;

      white-space: nowrap;

      transition:
        color 0.25s ease;
    }


    .rep-header-sec-phone i {
      color: #15595A;

      font-size: 14px;

      transform: rotate(-18deg);
    }


    .rep-header-sec-phone:hover {
      color: #15595A;
    }


    /* =========================================================
       BOOK TECHNICIAN BUTTON
    ========================================================= */

    .rep-header-sec-btn {
      min-width: 155px;
      height: 44px;

      padding: 0 22px;

      border-radius: 25px;
      border: 1px solid #15595A;

      background: #15595A;
      color: #ffffff;

      display: inline-flex;
      align-items: center;
      justify-content: center;

      text-decoration: none;

      font-size: 13px;
      font-weight: 700;

      transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
    }


    .rep-header-sec-btn:hover {
      background: transparent;
      color: #15595A;

      transform: translateY(-2px);

      box-shadow:
        0 7px 20px rgba(21, 89, 90, 0.12);
    }


    /* =========================================================
       MOBILE HAMBURGER
    ========================================================= */

    .rep-header-sec-mobile-toggle {
      width: 45px;
      height: 45px;

      padding: 0;

      border: 1px solid rgba(21, 89, 90, 0.18);
      border-radius: 9px;

      background: #15595A;
      color: #ffffff;

      display: none;
      align-items: center;
      justify-content: center;

      cursor: pointer;

      transition:
        background 0.25s ease,
        transform 0.25s ease;
    }


    .rep-header-sec-mobile-toggle:hover {
      background: #104748;
    }


    .rep-header-sec-mobile-toggle i {
      font-size: 18px;
    }


    /* =========================================================
       OVERLAY
    ========================================================= */

    .rep-header-sec-overlay {
      position: fixed;

      inset: 0;

      z-index: 10000;

      background: rgba(0, 0, 0, 0.42);

      opacity: 0;
      visibility: hidden;

      pointer-events: none;

      transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    }


    .rep-header-sec-overlay.is-active {
      opacity: 1;
      visibility: visible;

      pointer-events: auto;
    }


    /* =========================================================
       MOBILE DRAWER
    ========================================================= */

    .rep-header-sec-drawer {
      position: fixed;

      top: 0;
      right: 0;

      width: min(390px, 88vw);

      height: 100vh;
      height: 100dvh;

      z-index: 10001;

      background: #f5f4ef;

      transform: translateX(100%);

      display: flex;
      flex-direction: column;

      overflow: hidden;

      padding-top: env(safe-area-inset-top);

      box-shadow:
        -12px 0 35px rgba(0, 0, 0, 0.14);

      transition:
        transform 0.38s cubic-bezier(0.77, 0, 0.175, 1);
    }


    .rep-header-sec-drawer.is-active {
      transform: translateX(0);
    }


    /* =========================================================
       DRAWER TOP
    ========================================================= */

    .rep-header-sec-drawer-top {
      min-height: 88px;

      flex-shrink: 0;

      padding: 18px 22px;

      display: flex;
      align-items: center;
      justify-content: space-between;

      border-bottom: 1px solid rgba(21, 89, 90, 0.16);
    }


    /* =========================================================
       DRAWER LOGO IMAGE
    ========================================================= */

    .rep-header-sec-drawer-logo {
      display: flex;
      align-items: center;

      text-decoration: none;
    }


    .rep-header-sec-drawer-logo-img {
      display: block;

      width: 145px;
      height: auto;

      max-height: 50px;

      object-fit: contain;
      object-position: left center;
    }


    /* Temporary drawer placeholder */

    .rep-header-sec-drawer-logo-placeholder {
      display: flex;
      align-items: center;

      gap: 10px;
    }


    .rep-header-sec-drawer-logo-placeholder-icon {
      width: 38px;
      height: 38px;

      border-radius: 10px;

      background: #15595A;
      color: #ffffff;

      display: flex;
      align-items: center;
      justify-content: center;

      font-size: 16px;
    }


    .rep-header-sec-drawer-logo-placeholder-text {
      display: flex;
      flex-direction: column;

      line-height: 1;
    }


    .rep-header-sec-drawer-logo-placeholder-title {
      color: #1e2828;

      font-size: 17px;
      font-weight: 700;
    }


    .rep-header-sec-drawer-logo-placeholder-subtitle {
      margin-top: 4px;

      color: #15595A;

      font-size: 7px;
      font-weight: 800;

      letter-spacing: 1.4px;
      text-transform: uppercase;
    }


    /* =========================================================
       DRAWER CLOSE
    ========================================================= */

    .rep-header-sec-drawer-close {
      width: 39px;
      height: 39px;

      border: 1px solid rgba(21, 89, 90, 0.15);

      border-radius: 8px;

      background: #ffffff;
      color: #15595A;

      display: flex;
      align-items: center;
      justify-content: center;

      cursor: pointer;

      transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
    }


    .rep-header-sec-drawer-close:hover {
      background: #15595A;
      color: #ffffff;

      transform: rotate(90deg);
    }


    /* =========================================================
       DRAWER SCROLL
    ========================================================= */

    .rep-header-sec-drawer-scroll {
      flex: 1;

      min-height: 0;

      overflow-y: auto;
      overflow-x: hidden;

      padding: 14px 22px 30px;

      overscroll-behavior: contain;

      -webkit-overflow-scrolling: touch;
    }


    .rep-header-sec-drawer-scroll::-webkit-scrollbar {
      width: 4px;
    }


    .rep-header-sec-drawer-scroll::-webkit-scrollbar-track {
      background: transparent;
    }


    .rep-header-sec-drawer-scroll::-webkit-scrollbar-thumb {
      background: rgba(21, 89, 90, 0.3);

      border-radius: 20px;
    }


    /* =========================================================
       DRAWER NAV
    ========================================================= */

    .rep-header-sec-drawer-nav {
      display: flex;
      flex-direction: column;
    }


    .rep-header-sec-drawer-link {
      min-height: 58px;

      padding: 0 4px;

      display: flex;
      align-items: center;
      justify-content: space-between;

      gap: 15px;

      border-bottom: 1px solid rgba(21, 89, 90, 0.12);

      color: #4f5b5c;

      text-decoration: none;

      font-size: 15px;
      font-weight: 600;

      transition:
        color 0.25s ease,
        padding-left 0.25s ease;
    }


    .rep-header-sec-drawer-link-left {
      display: flex;
      align-items: center;

      gap: 13px;
    }


    .rep-header-sec-drawer-link-icon {
      width: 31px;
      height: 31px;

      flex-shrink: 0;

      border-radius: 7px;

      background: rgba(21, 89, 90, 0.08);

      color: #15595A;

      display: flex;
      align-items: center;
      justify-content: center;

      font-size: 12px;

      transition:
        background 0.25s ease,
        color 0.25s ease;
    }


    .rep-header-sec-drawer-link-arrow {
      color: #15595A;

      font-size: 12px;

      transition:
        transform 0.25s ease,
        color 0.25s ease;
    }


    .rep-header-sec-drawer-link:hover {
      color: #15595A;

      padding-left: 9px;
    }


    .rep-header-sec-drawer-link:hover
    .rep-header-sec-drawer-link-icon {
      background: #15595A;
      color: #ffffff;
    }


    .rep-header-sec-drawer-link:hover
    .rep-header-sec-drawer-link-arrow {
      color: #15595A;

      transform: translateX(4px);
    }


    /* =========================================================
       DRAWER CTA
    ========================================================= */

    .rep-header-sec-drawer-cta {
      width: 100%;

      min-height: 50px;

      margin-top: 25px;

      border-radius: 27px;

      background: #15595A;
      color: #ffffff;

      display: flex;
      align-items: center;
      justify-content: center;

      text-decoration: none;

      font-size: 14px;
      font-weight: 700;

      transition:
        background 0.25s ease,
        transform 0.25s ease;
    }


    .rep-header-sec-drawer-cta:hover {
      background: #104748;

      transform: translateY(-2px);
    }


    /* =========================================================
       BODY LOCK WHEN DRAWER OPEN
    ========================================================= */

    body.rep-header-sec-menu-open {
      overflow: hidden;

      touch-action: none;
    }


    /* =========================================================
       TABLET
    ========================================================= */

    @media (max-width: 1100px) {

      .rep-header-sec {
        height: 76px;
      }


      .rep-header-sec-inner {
        padding: 0 25px;
      }


      .rep-header-sec-nav {
        gap: 24px;
      }


      .rep-header-sec-nav-link {
        height: 76px;

        font-size: 13px;
      }


      .rep-header-sec-nav-link::after {
        bottom: 20px;
      }


      .rep-header-sec-right {
        gap: 13px;
      }


      .rep-header-sec-phone {
        font-size: 12px;
      }


      .rep-header-sec-btn {
        min-width: 135px;

        height: 42px;

        padding: 0 17px;

        font-size: 12px;
      }


      .rep-header-sec-logo-img {
        width: 140px;
      }
    }


    /* =========================================================
       TABLET + MOBILE
    ========================================================= */

    @media (max-width: 900px) {

      .rep-header-sec {
        height: 72px;
      }


      .rep-header-sec-inner {
        padding-left: 20px;
        padding-right: 20px;
      }


      .rep-header-sec-nav,
      .rep-header-sec-right {
        display: none;
      }


      .rep-header-sec-mobile-toggle {
        display: flex;
      }


      .rep-header-sec-logo-img {
        width: 135px;

        max-height: 48px;
      }


      .rep-header-sec-logo-placeholder-title {
        font-size: 17px;
      }


      .rep-header-sec-logo-placeholder-icon {
        width: 38px;
        height: 38px;
      }
    }


    /* =========================================================
       SMALL MOBILE
    ========================================================= */

    @media (max-width: 480px) {

      .rep-header-sec {
        height: 68px;
      }


      .rep-header-sec-inner {
        padding-left: 15px;
        padding-right: 15px;
      }


      .rep-header-sec-logo-img {
        width: 125px;

        max-height: 44px;
      }


      .rep-header-sec-logo-placeholder {
        gap: 8px;
      }


      .rep-header-sec-logo-placeholder-icon {
        width: 36px;
        height: 36px;

        border-radius: 9px;

        font-size: 15px;
      }


      .rep-header-sec-logo-placeholder-title {
        font-size: 16px;
      }


      .rep-header-sec-logo-placeholder-subtitle {
        font-size: 7px;

        letter-spacing: 1.35px;
      }


      .rep-header-sec-mobile-toggle {
        width: 42px;
        height: 42px;

        border-radius: 8px;
      }


      .rep-header-sec-mobile-toggle i {
        font-size: 16px;
      }


      .rep-header-sec-drawer {
        width: min(360px, 91vw);
      }


      .rep-header-sec-drawer-top {
        min-height: 80px;

        padding: 16px 18px;
      }


      .rep-header-sec-drawer-logo-img {
        width: 125px;

        max-height: 44px;
      }


      .rep-header-sec-drawer-scroll {
        padding-left: 18px;
        padding-right: 18px;

        padding-bottom:
          calc(25px + env(safe-area-inset-bottom));
      }


      .rep-header-sec-drawer-link {
        min-height: 56px;

        font-size: 14px;
      }
    }


    /* =========================================================
       VERY SMALL IPHONE
    ========================================================= */

    @media (max-width: 375px) {

      .rep-header-sec-inner {
        padding-left: 12px;
        padding-right: 12px;
      }


      .rep-header-sec-logo-img {
        width: 115px;
      }


      .rep-header-sec-logo-placeholder-title {
        font-size: 15px;
      }


      .rep-header-sec-logo-placeholder-subtitle {
        font-size: 6px;
      }


      .rep-header-sec-mobile-toggle {
        width: 40px;
        height: 40px;
      }


      .rep-header-sec-drawer {
        width: 94vw;
      }
    }


    /* =========================================================
       REDUCED MOTION
    ========================================================= */

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;

        transition-duration:
          0.01ms !important;
      }
    }
    

    /* 1. Full-Width Section Wrapper */
    .rep-step-sec-wrapper {
      width: 100%;
      background-color: #083536;
      padding: 80px 0;
    }

    /* 2. 1200px Centered Container */
    .rep-step-sec-container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header Section */
    .rep-step-sec-header {
      margin-bottom: 60px;
      max-width: 650px;
    }

    .rep-step-sec-subtitle {
      color: #d97706; /* Subtitle highlight color */
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }

    .rep-step-sec-title {
      font-family: Georgia, 'Times New Roman', Times, serif;
      font-size: 42px;
      line-height: 1.2;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .rep-step-sec-description {
      color: #9ca3af;
      font-size: 16px;
      line-height: 1.6;
    }

    /* Steps Grid / Container */
    .rep-step-sec-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      position: relative;
    }

    /* Single Step Card */
    .rep-step-sec-card {
      display: flex;
      flex-direction: column;
      position: relative;
    }

    /* Top Row containing Number, Line, Icon */
    .rep-step-sec-top-bar {
      display: flex;
      align-items: center;
      position: relative;
      margin-bottom: 24px;
    }

    /* Number Circle */
    .rep-step-sec-number {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid #374151;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 600;
      color: #9ca3af;
      background-color: transparent;
      transition: all 0.4s ease;
      z-index: 2;
      flex-shrink: 0;
    }

    /* Dotted Line connecting steps */
    .rep-step-sec-line {
      flex-grow: 1;
      height: 1px;
      border-top: 1px dashed #374151;
      margin: 0 10px;
      position: relative;
    }

    /* Step Icon on the line */
    .rep-step-sec-icon {
      color: #d97706;
      font-size: 16px;
      background-color: #12181b00;
      padding: 0 8px;
      z-index: 2;
    }

    /* Content Area */
    .rep-step-sec-card-title {
      font-family: Georgia, 'Times New Roman', Times, serif;
      font-size: 20px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 12px;
    }

    .rep-step-sec-card-desc {
      color: #9ca3af;
      font-size: 14px;
      line-height: 1.6;
    }

    /* --- Active State Applied via JavaScript --- */
    .rep-step-sec-card.rep-step-sec-active .rep-step-sec-number {
      background-color: #f97316; /* Bright Orange */
      color: #ffffff;             /* White Text */
      border-color: #f97316;
      box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
    }

    .rep-step-sec-card.rep-step-sec-active .rep-step-sec-card-title {
      color: #ffffff;
    }

    /* Responsive Styles for Tablet and Mobile */
    @media (max-width: 992px) {
      .rep-step-sec-wrapper {
        padding: 40px 0;
      }

      .rep-step-sec-grid {
        grid-template-columns: 1fr; /* Vertical Layout for Mobile/Tab */
        gap: 0;
      }

      .rep-step-sec-card {
        flex-direction: row;
        gap: 20px;
        padding-bottom: 30px;
        position: relative;
      }

      .rep-step-sec-top-bar {
        flex-direction: column;
        margin-bottom: 0;
        align-items: center;
      }

      /* Vertical line for mobile/tablet */
      .rep-step-sec-line {
        width: 1px;
        height: 100%;
        border-top: none;
        border-left: 1px dashed #374151;
        margin: 10px 0;
        min-height: 50px;
      }

      .rep-step-sec-icon {
        padding: 8px 0;
      }

      /* Hide line on the last element in mobile view */
      .rep-step-sec-card:last-child .rep-step-sec-line,
      .rep-step-sec-card:last-child .rep-step-sec-icon {
        display: none;
      }

      .rep-step-sec-content {
        padding-top: 8px;
      }

      .rep-step-sec-title {
        font-size: 32px;
      }
    }

      /* 1. Full Width Section Wrapper */
    .rep-side-img-sec-wrapper {
      width: 100%;
      background-color: #f8fafc;
      padding: 80px 0;
    }

    /* 2. 1200px Centered Container */
    .rep-side-img-sec-container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Main Grid Layout */
    .rep-side-img-sec-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    /* --- Left Side: Image Container --- */
    .rep-side-img-sec-image-box {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(21, 89, 90, 0.08);
    }

    .rep-side-img-sec-img {
      width: 100%;
      height: 100%;
      min-height: 520px;
      object-fit: cover;
      display: block;
      border-radius: 24px;
    }

    /* Image Badge / Overlay Box */
    .rep-side-img-sec-badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background-color: #12181b;
      color: #ffffff;
      padding: 20px 24px;
      border-radius: 16px;
      border-left: 4px solid #f97316; /* Subtle Orange Accent Line */
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      max-width: 200px;
    }

    .rep-side-img-sec-badge-number {
      font-size: 28px;
      font-weight: 800;
      color: #ffffff;
      line-height: 1;
      margin-bottom: 6px;
    }

    .rep-side-img-sec-badge-text {
      font-size: 13px;
      color: #9ca3af;
      line-height: 1.4;
    }

    /* --- Right Side: Content Area --- */
    .rep-side-img-sec-content {
      display: flex;
      flex-direction: column;
    }

    .rep-side-img-sec-subtitle {
      color: #15595A;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .rep-side-img-sec-subtitle::before {
      content: "";
      width: 24px;
      height: 2px;
      background-color: #f97316; /* Accent Line */
    }

    .rep-side-img-sec-title {
      font-size: 42px;
      font-weight: 800;
      line-height: 1.15;
      color: #0f172a;
      margin-bottom: 18px;
      letter-spacing: -0.5px;
    }

    .rep-side-img-sec-title span {
      color: #15595A; /* Brand Teal Color */
    }

    .rep-side-img-sec-desc {
      font-size: 15px;
      line-height: 1.6;
      color: #64748b;
      margin-bottom: 36px;
    }

    /* Feature Grid (2 Columns) */
    .rep-side-img-sec-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px 20px;
    }

    .rep-side-img-sec-feature-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .rep-side-img-sec-icon-box {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background-color: rgba(21, 89, 90, 0.08); /* #15595A tint */
      color: #15595A;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .rep-side-img-sec-feature-item:hover .rep-side-img-sec-icon-box {
      background-color: #f97316;
      color: #ffffff;
      transform: translateY(-2px);
    }

    .rep-side-img-sec-feature-title {
      font-size: 15px;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 4px;
    }

    .rep-side-img-sec-feature-desc {
      font-size: 13px;
      line-height: 1.5;
      color: #64748b;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
      .rep-side-img-sec-wrapper {
        padding: 50px 0;
      }

      .rep-side-img-sec-grid {
        grid-template-columns: 1fr; /* Stack vertically on Tab/Mobile */
        gap: 40px;
      }

      .rep-side-img-sec-title {
        font-size: 32px;
      }

      .rep-side-img-sec-img {
        min-height: 380px;
      }
    }

    @media (max-width: 576px) {
      .rep-side-img-sec-features {
        grid-template-columns: 1fr; /* Single column features on mobile */
        gap: 20px;
      }

      .rep-side-img-sec-badge {
        bottom: 16px;
        left: 16px;
        padding: 14px 18px;
      }

      .rep-side-img-sec-badge-number {
        font-size: 22px;
      }
    }


    /* 1. Full-Width Background & Overlay */
    .rep-hero-sec-wrapper {
      position: relative;
      width: 100%;
      min-height: 100vh;
      background-image: url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&q=80&w=800');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      padding: 130px 10px;
    }

    .rep-hero-sec-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:linear-gradient(135deg, #0e3c3d 0%, rgb(21 89 90 / 72%) 100%);
      backdrop-filter: blur(4px);
      z-index: 1;
    }

    /* 2. Centered Container */
    .rep-hero-sec-container {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Grid Layout */
    .rep-hero-sec-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 50px;
      align-items: center;
    }

    /* --- Left Content Area --- */
    .rep-hero-sec-left {
      display: flex;
      flex-direction: column;
    }

    .rep-hero-sec-subheading {
      color: #f97316; /* Bright Orange Accent */
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }

    .rep-hero-sec-subheading::before {
      content: '';
      width: 30px;
      height: 2px;
      background-color: #f97316;
    }

    .rep-hero-sec-heading {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.15;
      color: #ffffff;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }

    .rep-hero-sec-heading span {
      color: #F97316;
    }

    .rep-hero-sec-description {
      font-size: 16px;
      line-height: 1.6;
      color: #cbd5e1;
      margin-bottom: 30px;
      max-width: 580px;
    }

    /* Cards Grid (2 per row) */
    .rep-hero-sec-cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 36px;
    }

    .rep-hero-sec-card-box {
      background: rgb(11 22 44 / 36%);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 14px;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .rep-hero-sec-card-box:hover {
      border-color: #f97316;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .rep-hero-sec-card-icon {
      width: 42px;
      height: 42px;
      background-color: #f97316;
      color: #ffffff;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .rep-hero-sec-card-info {
      display: flex;
      flex-direction: column;
    }

    .rep-hero-sec-card-title {
      font-size: 14px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 2px;
    }

    .rep-hero-sec-card-desc {
      font-size: 11px;
      color: #94a3b8;
      line-height: 1.3;
    }

    /* CTA Button */
    .rep-hero-sec-btn-wrapper {
      display: flex;
    }

    .rep-hero-sec-btn {
      background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
      color: #ffffff;
      padding: 16px 36px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      /* box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4); */
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .rep-hero-sec-btn:hover {
      transform: translateY(-2px);
      /* box-shadow: 0 15px 30px rgba(249, 115, 22, 0.6); */
      background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    }

    /* --- Right Slider Area --- */
    .rep-hero-sec-right {
      position: relative;
      width: 100%;
    }

    .rep-hero-sec-slider-box {
      width: 100%;
      /* border-radius: 20px; */
      overflow: hidden;
      /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); */
      /* border: 2px solid rgba(255, 255, 255, 0.1); */
      position: relative;
      aspect-ratio: 4/3;
    }

    .rep-hero-sec-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
    }

    .rep-hero-sec-slide.rep-hero-sec-slide-active {
      opacity: 1;
    }

    .rep-hero-sec-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* Slider Dots Pagination */
    .rep-hero-sec-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-top: 18px;
    }

    .rep-hero-sec-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .rep-hero-sec-dot.rep-hero-sec-dot-active {
      background-color: #f97316;
      width: 28px;
      border-radius: 10px;
    }

    /* --- Mobile & Tablet Specific Ordering & Responsiveness --- */
    @media (max-width: 992px) {
      .rep-hero-sec-wrapper {
        padding: 60px 10px;
      }

      /* Grid elements reordering using flexbox on Tab & Mobile */
      .rep-hero-sec-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
      }

      .rep-hero-sec-heading {
        font-size: 34px;
      }

      .rep-hero-sec-left {
        display: contents; /* Allows child reordering directly in parent */
      }

      .rep-hero-sec-subheading { order: 1; }
      .rep-hero-sec-heading { order: 2; }
      .rep-hero-sec-description { order: 3; margin-bottom: 24px; }
      
      /* Right Slider comes IMMEDIATELY AFTER Description in mobile/tab */
      .rep-hero-sec-right { 
        order: 4; 
        margin-bottom: 30px; 
      }

      .rep-hero-sec-btn-wrapper { 
        order: 5; 
        margin-bottom: 30px; 
        width: 100%; 
      }

      .rep-hero-sec-btn {
        width: 100%;
        justify-content: center;
      }

      .rep-hero-sec-cards-grid { 
        order: 6; 
      }
    }

    @media (max-width: 576px) {
      .rep-hero-sec-cards-grid {
        grid-template-columns: 1fr; /* Single column cards on small mobile screens */
      }
    }

/* 1. Full-Width Section Wrapper */
.rep-serv-card-sec-wrapper {
  width: 100%;
  padding: 90px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

/* Floating Wrench Background Icons Layer */
.rep-serv-card-sec-bg-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
  animation: floatWrench 12s infinite ease-in-out alternate;
}

.rep-serv-card-sec-bg-icon i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
  line-height: 1;
}

.rep-serv-card-sec-bg-icon-1 { top: 8%; left: 3%; font-size: 50px; color: rgba(21, 89, 90, 0.15); animation-duration: 9s; }
.rep-serv-card-sec-bg-icon-2 { top: 15%; right: 4%; font-size: 50px; color: rgba(21, 89, 90, 0.15); animation-duration: 11s; animation-delay: -3s; }
.rep-serv-card-sec-bg-icon-3 { bottom: 12%; left: 5%; font-size: 50px; color: rgba(21, 89, 90, 0.15); animation-duration: 14s; animation-delay: -5s; }
.rep-serv-card-sec-bg-icon-4 { bottom: 8%; right: 5%; font-size: 50px; color: rgba(21, 89, 90, 0.15); animation-duration: 10s; animation-delay: -2s; }
.rep-serv-card-sec-bg-icon-5 { top: 48%; left: 48%; font-size: 50px; color: rgba(21, 89, 90, 0.15); animation-duration: 13s; }

@keyframes floatWrench {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(18deg); }
  100% { transform: translateY(15px) rotate(-12deg); }
}

/* 2. Container & Header */
.rep-serv-card-sec-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.rep-serv-card-sec-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 55px auto;
}

.rep-serv-card-sec-subheading {
  color: #15595A;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  background: rgba(21, 89, 90, 0.08);
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(21, 89, 90, 0.15);
}

.rep-serv-card-sec-subheading i { color: #f97316; }

.rep-serv-card-sec-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.rep-serv-card-sec-title span { color: #15595A; }

.rep-serv-card-sec-description {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
}

/* 3. Redesigned Grid & Cards */
.rep-serv-card-sec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.rep-serv-card-sec-card {
  background: #ffffff;
  border: 1px solid #acacac;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

/* Top Glow Line on Hover */
.rep-serv-card-sec-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #15595A;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.rep-serv-card-sec-card:hover {
  transform: translateY(-10px);
  border-color: #15595A;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.rep-serv-card-sec-card:hover::before {
  opacity: 1;
}

/* Image Section & Floating Glass Icon */
.rep-serv-card-sec-img-box {
  width: 100%;
  height: 200px;
  /* overflow: hidden; */
  position: relative;
  background-color: #f1f5f9;
}

.rep-serv-card-sec-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rep-serv-card-sec-card:hover .rep-serv-card-sec-img {
  transform: scale(1.08);
}

.rep-card-floating-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: #15595A;
  backdrop-filter: blur(8px);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  z-index: 2;
  transition: all 0.4s ease;
}

.rep-serv-card-sec-card:hover .rep-card-floating-badge {
  background: #f97316;
  color: #ffffff;
  border-color: #f97316;
  transform: scale(1.1) rotate(6deg);
}

/* Card Body Content */
.rep-serv-card-sec-body {
  padding: 30px 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rep-serv-card-sec-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.rep-serv-card-sec-card:hover .rep-serv-card-sec-card-title {
  color: #15595A;
}

.rep-serv-card-sec-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.6em * 3);
}

/* Redesigned Modern Button */
.rep-serv-card-sec-btn {
  margin-top: auto;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background-color: #F97316;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.rep-serv-card-sec-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
  background: #15595A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.rep-serv-card-sec-card:hover .rep-serv-card-sec-btn {
  background-color: #15595A;
  color: #ffffff;
}

.rep-serv-card-sec-card:hover .rep-serv-card-sec-btn i {
  transform: translateX(4px);
  background: #f97316;
  color: #ffffff;
}

/* Responsive Breakdown */
@media (max-width: 1024px) {
  .rep-serv-card-sec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .rep-serv-card-sec-wrapper { padding: 60px 0; }
  .rep-serv-card-sec-title { font-size: 28px; }
  .rep-serv-card-sec-grid { grid-template-columns: 1fr; gap: 20px; }
}

     /* 1. Main Section Wrapper */
    .rep-tar-sec-wrapper {
      width: 100%;
      padding: 100px 0;
      background: linear-gradient(135deg, #e2e8f0 0%, #edf2f7 50%, #e2e8f0 100%);
      position: relative;
      overflow: hidden;
    }

    /* Floating Tool Icons in Background */
    .rep-tar-sec-bg-icon {
      position: absolute;
      z-index: 1;
      pointer-events: none;
      animation: repTarSecFloat 12s infinite ease-in-out alternate;
      opacity: 0.12;
    }

    .rep-tar-sec-bg-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .rep-tar-sec-bg-icon-1 {
      top: 8%;
      left: 2%;
      width: 50px;
      height: 50px;
      fill: #15595A;
      animation-duration: 10s;
    }

    .rep-tar-sec-bg-icon-2 {
      bottom: 5%;
      right: 2%;
      width: 50px;
      height: 50px;
      fill: #f97316;
      animation-duration: 14s;
      animation-delay: -4s;
    }

    @keyframes repTarSecFloat {
      0% {
        transform: translateY(0px) rotate(0deg) scale(1);
      }
      50% {
        transform: translateY(-25px) rotate(15deg) scale(1.05);
      }
      100% {
        transform: translateY(15px) rotate(-10deg) scale(0.95);
      }
    }

    /* 2. Container */
    .rep-tar-sec-container {
      max-width: 1240px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    /* Section Header */
    .rep-tar-sec-header {
      text-align: center;
      margin-bottom: 65px;
      position: relative;
    }

    .rep-tar-sec-title {
      font-size: 42px;
      font-weight: 800;
      color: #15595A;
      display: inline-block;
      position: relative;
      letter-spacing: -0.5px;
    }

    .rep-tar-sec-title::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 70px;
      height: 4px;
      background: linear-gradient(90deg, #15595A, #f97316);
      border-radius: 4px;
      transition: width 0.4s ease;
    }

    .rep-tar-sec-header:hover .rep-tar-sec-title::after {
      width: 120px;
    }

    /* 3. Cards Grid */
    .rep-tar-sec-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 60px;
    }

    /* Custom Arrow Shape Card */
    .rep-tar-sec-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 40px 30px 35px 45px;
      position: relative;
      clip-path: polygon(0% 0%, 88% 0%, 100% 50%, 88% 100%, 0% 100%);
      box-shadow: 0 15px 35px rgba(21, 89, 90, 0.08);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: flex;
      flex-direction: column;
      border-left: 5px solid #15595A;
    }

    .rep-tar-sec-card:hover {
      transform: translateY(-12px) scale(1.02);
      border-left-color: #f97316;
      box-shadow: 0 25px 50px rgba(249, 115, 22, 0.18);
    }

    /* Hexagon Number Badge */
    .rep-tar-sec-badge {
      position: absolute;
      left: -18px;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 50px;
      background: linear-gradient(135deg, #f97316, #ea580c);
      color: #ffffff;
      font-weight: 800;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
      z-index: 3;
      transition: transform 0.4s ease, background 0.4s ease;
    }

    .rep-tar-sec-card:hover .rep-tar-sec-badge {
      transform: translateY(-50%) scale(1.15) rotate(10deg);
      background: linear-gradient(135deg, #15595A, #0e3c3d);
    }

    /* Icon Styling & Pulse Effect */
    .rep-tar-sec-icon-wrapper {
      width: 60px;
      height: 60px;
      background: rgb(249 115 22 / 44%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      transition: all 0.4s ease;
    }

    .rep-tar-sec-icon-wrapper svg {
      width: 32px;
      height: 32px;
      fill: #f97316;
      transition: transform 0.4s ease, fill 0.4s ease;
    }
    .rep-tar-sec-icon-wrapper i{
        color:#0e3c3d;
    }

    .rep-tar-sec-card:hover .rep-tar-sec-icon-wrapper {
      background: #15595A;
      transform: rotateY(180deg);
    }

    .rep-tar-sec-card:hover .rep-tar-sec-icon-wrapper svg {
      fill: #ffffff;
    }
    .rep-tar-sec-card:hover .rep-tar-sec-icon-wrapper i {
      color: #ffffff;
    }

    /* Card Content */
    .rep-tar-sec-card-title {
      font-size: 20px;
      font-weight: 700;
      color: #15595A;
      margin-bottom: 14px;
      line-height: 1.3;
      padding-right: 15px;
    }

    .rep-tar-sec-card-desc {
      font-size: 14px;
      line-height: 1.6;
      color: #64748b;
      padding-right: 25px;
    }

    /* Glowing Bottom Hover Line */
    /* .rep-tar-sec-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 3px;
      background: linear-gradient(90deg, #f97316, #15595A);
      transition: width 0.4s ease;
    } */

    .rep-tar-sec-card:hover::after {
      width: 100%;
    }

    /* 4. CTA Button Section */
    .rep-tar-sec-action {
      text-align: center;
    }

    .rep-tar-sec-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 40px;
      background: linear-gradient(135deg, #f97316, #ea580c);
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      border-radius: 50px;
      text-decoration: none;
      /* box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35); */
      overflow: hidden;
      z-index: 1;
      transition: all 0.4s ease;
    }

    /* .rep-tar-sec-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #15595A, #0e3c3d);
      z-index: -1;
      opacity: 0;
      transition: opacity 0.4s ease;
    } */

    .rep-tar-sec-btn svg {
      width: 18px;
      height: 18px;
      fill: #ffffff;
      transition: transform 0.3s ease;
    }

    .rep-tar-sec-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(21, 89, 90, 0.4);
    }

    .rep-tar-sec-btn:hover::before {
      opacity: 1;
    }

    .rep-tar-sec-btn:hover svg {
      transform: translateX(6px);
    }

    /* Responsive Styles for Tab and Mobile */
    @media (max-width: 1024px) {
      .rep-tar-sec-grid {
        grid-template-columns: 1fr;
        gap: 35px;
      }

      .rep-tar-sec-card {
        clip-path: none;
        border-radius: 16px;
        padding: 35px 25px 30px 40px;
        border-left: 6px solid #15595A;
      }

      .rep-tar-sec-card-title, 
      .rep-tar-sec-card-desc {
        padding-right: 0;
      }
    }

    @media (max-width: 600px) {
      .rep-tar-sec-wrapper {
        padding: 60px 0;
      }

      .rep-tar-sec-title {
        font-size: 30px;
      }

      .rep-tar-sec-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 15px;
      }
    }

/* Main Wrapper */
.rep-testi-sec-wrapper {
  background-color: #f7f9fc;
  padding: 80px 20px;
  overflow: hidden;
  position: relative;
}

/* Header Section */
.rep-testi-sec-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.rep-testi-sec-subheading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #6c757d;
  display: block;
  margin-bottom: 12px;
}

.rep-testi-sec-heading {
  font-size: 38px;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
  margin: 0;
}

/* Slider Container & Fade Effect Edges */
.rep-testi-sec-slider-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  /* Left aur Right border fades for modern visual smooth scroll */
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, rgba(0, 0, 0, 0) 100%);
}

/* Animated Track */
.rep-testi-sec-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: repTestiSecScroll 25s linear infinite;
  padding: 20px 0;
}

/* Pause Infinite Auto-Slide on Hover */
.rep-testi-sec-slider-container:hover .rep-testi-sec-track {
  animation-play-state: paused;
}

/* Infinite Animation Keyframes */
@keyframes repTestiSecScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

/* Testimonial Card Design */
.rep-testi-sec-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px 32px 32px;
  width: 360px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04), 0 4px 10px -3px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex-shrink: 0;
}

/* Card Hover Elevation */
.rep-testi-sec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08), 0 8px 16px -4px rgba(0, 0, 0, 0.04);
  border-color: rgba(245, 158, 11, 0.3);
}

/* Quote Icon */
.rep-testi-sec-quote-icon {
  font-size: 50px;
  line-height: 1;
  color: #facc15; /* Yellow/Gold Accent */
  font-family: Georgia, serif;
  margin-bottom: 15px;
  height: 25px;
}

/* Testimonial Text */
.rep-testi-sec-text {
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0 0 30px 0;
  font-weight: 400;
}

/* User Info Section */
.rep-testi-sec-user {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rep-testi-sec-avatar-wrapper {
  position: relative;
  margin-bottom: 12px;
}

.rep-testi-sec-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #facc15; /* Modern Golden Ring Around Avatar */
}

.rep-testi-sec-name {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 4px 0;
}

.rep-testi-sec-role {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

/* Responsive Styles */

/* Tablet (768px and down) */
@media (max-width: 768px) {
  .rep-testi-sec-wrapper {
    padding: 60px 15px;
  }

  .rep-testi-sec-heading {
    font-size: 28px;
  }

  .rep-testi-sec-card {
    width: 300px;
    padding: 30px 24px 24px 24px;
  }

  .rep-testi-sec-text {
    font-size: 14px;
  }
}

/* Mobile (480px and down) */
@media (max-width: 480px) {
  .rep-testi-sec-heading {
    font-size: 24px;
  }

  .rep-testi-sec-card {
    width: 270px;
  }

  .rep-testi-sec-track {
    gap: 18px;
    animation-duration: 20s; /* Mobile me thoda faster/smooth movement */
  }
}

/* ==========================================================================
   LOCATIONS EXPLORER SECTION CSS
   ========================================================================== */

/* Main Wrapper Section */
.rep-loca-sec-container {
  background-color: #0d2829; /* Deep Ambient Dark Teal Background */
  padding: 90px 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle Glowing Background Accents */
.rep-loca-sec-container::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.rep-loca-sec-wrapper {
  max-width: 1140px;
  margin: 0 auto;
}

/* Header Styling */
.rep-loca-sec-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.rep-loca-sec-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.12);
  color: #ff6b35; /* Orange Color */
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.rep-loca-sec-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #ff6b35;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff6b35;
}

.rep-loca-sec-main-heading {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.rep-loca-sec-sub-text {
  color: #94a3b8;
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

/* Main Explorer Board Box */
.rep-loca-sec-explorer {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: #15595A; /* Primary Deep Teal Base */
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

/* Navigation / Sidebar Tabs */
.rep-loca-sec-nav {
  background-color: rgba(10, 40, 41, 0.5);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.rep-loca-sec-nav-header {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  padding-left: 12px;
}

.rep-loca-sec-tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 1px solid transparent;
  padding: 14px 18px;
  border-radius: 12px;
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
  text-align: left;
}

.rep-loca-sec-tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

/* Active Tab Highlight */
.rep-loca-sec-tab-btn.rep-loca-sec-active {
  background: #ff6b35; /* Orange Primary Accent */
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

.rep-loca-sec-tab-count {
  font-size: 12px;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.rep-loca-sec-tab-btn.rep-loca-sec-active .rep-loca-sec-tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Display Content Right Panel */
.rep-loca-sec-display {
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(21, 89, 90, 1) 0%, rgba(13, 58, 59, 1) 100%);
}

/* Tab Content Visibility & Animation */
.rep-loca-sec-tab-content {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.rep-loca-sec-tab-content.rep-loca-sec-content-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.rep-loca-sec-display-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

.rep-loca-sec-display-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rep-loca-sec-map-pin-icon {
  width: 24px;
  height: 24px;
  color: #ff6b35; /* Orange Icon */
}

.rep-loca-sec-active-region-name {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.rep-loca-sec-status-pill {
  font-size: 12px;
  color: #34d399; /* Mint Green Status */
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 5px 14px;
  border-radius: 30px;
  font-weight: 600;
}

/* Tag Cloud / Interactive City Chips Grid */
.rep-loca-sec-city-cloud {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 35px;
}

.rep-loca-sec-city-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #f1f5f9;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.rep-loca-sec-chip-dot {
  width: 6px;
  height: 6px;
  background-color: #ff6b35;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

.rep-loca-sec-city-label {
  flex-grow: 1;
}

.rep-loca-sec-arrow-icon {
  width: 14px;
  height: 14px;
  color: #94a3b8;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

/* City Chip Hover State */
.rep-loca-sec-city-chip:hover {
  background: #ffffff;
  color: #15595A; /* Dark Teal Text on Hover */
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.rep-loca-sec-city-chip:hover .rep-loca-sec-chip-dot {
  background-color: #15595A;
}

.rep-loca-sec-city-chip:hover .rep-loca-sec-arrow-icon {
  opacity: 1;
  transform: translateX(0);
  color: #ff6b35; /* Orange Arrow */
}

/* Footer CTA Banner inside Explorer Box */
.rep-loca-sec-footer-banner {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.rep-loca-sec-footer-text {
  margin: 0;
  font-size: 14px;
  color: #cbd5e1;
}

.rep-loca-sec-cta-btn {
  color: #ff6b35;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.rep-loca-sec-cta-btn:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet View (Max 992px) */
@media (max-width: 992px) {
  .rep-loca-sec-explorer {
    grid-template-columns: 1fr;
  }

  .rep-loca-sec-nav {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: row;
    overflow-x: auto;
    padding: 16px;
    gap: 8px;
  }

  .rep-loca-sec-nav-header {
    display: none;
  }

  .rep-loca-sec-tab-btn {
    white-space: nowrap;
    width: auto;
    padding: 10px 16px;
  }

  .rep-loca-sec-display {
    padding: 24px;
  }
}

/* Mobile View (Max 576px) */
@media (max-width: 576px) {
  .rep-loca-sec-container {
    padding: 60px 15px;
  }

  .rep-loca-sec-main-heading {
    font-size: 26px;
  }

  .rep-loca-sec-display-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .rep-loca-sec-city-cloud {
    grid-template-columns: 1fr;
  }

  .rep-loca-sec-footer-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ==========================================================================
   FUTURISTIC BLOG SECTION - WHITE BACKGROUND VARIANT (NO JS)
   ========================================================================== */

.rep-blog-sec-container {
  background-color: #ffffff; /* Crisp White Background */
  padding: 100px 20px;
  color: #155859;
  position: relative;
  overflow: hidden;
}

/* Subtle Light Ambient Radial Aura */
.rep-blog-sec-container::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(21, 88, 89, 0.05) 0%, rgba(255, 107, 53, 0.05) 60%, transparent 80%);
  pointer-events: none;
  filter: blur(80px);
}

.rep-blog-sec-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header Section */
.rep-blog-sec-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px auto;
}

.rep-blog-sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.08);
  color: #ff6b35;
  border: 1px solid rgba(255, 107, 53, 0.25);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.rep-blog-sec-tag-glow {
  width: 6px;
  height: 6px;
  background-color: #ff6b35;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff6b35;
}

.rep-blog-sec-heading {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #155859; /* Primary Deep Teal */
  margin: 0 0 14px 0;
}

.rep-blog-sec-subtitle {
  font-size: 16px;
  color: #52606d;
  margin: 0;
  line-height: 1.6;
}

/* Cards Grid */
.rep-blog-sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Modern Clean Card Styling */
.rep-blog-sec-card {
  background: #ffffff;
  border: 1px solid rgb(201 201 201);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 30px rgba(21, 88, 89, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle Gradient Glow Overlay on Hover */
.rep-blog-sec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.rep-blog-sec-card:hover::before {
  opacity: 1;
}

.rep-blog-sec-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 20px 40px -10px rgba(21, 88, 89, 0.12), 0 0 20px rgba(255, 107, 53, 0.15);
}

/* Card Image Box */
.rep-blog-sec-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.rep-blog-sec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.rep-blog-sec-card:hover .rep-blog-sec-img {
  transform: scale(1.08);
}

/* Floating Badge on Image */
.rep-blog-sec-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(21, 88, 89, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

/* Card Body Content */
.rep-blog-sec-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Meta Details */
.rep-blog-sec-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
}

.rep-blog-sec-dot {
  width: 5px;
  height: 5px;
  background-color: #ff6b35;
  border-radius: 50%;
}

/* Title */
.rep-blog-sec-title {
  font-size: 20px;
  font-weight: 700;
  color: #155859;
  margin: 0 0 12px 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.rep-blog-sec-card:hover .rep-blog-sec-title {
  color: #ff6b35;
}

/* Description (Strict 3 Lines Clamping) */
.rep-blog-sec-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 24px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 67px; /* Maintains exact 3-line space */
}

/* Button & Footer Wrapper */
.rep-blog-sec-footer {
  margin-top: auto; /* Keeps button aligned at bottom */
  padding-top: 16px;
  border-top: 1px solid rgba(21, 88, 89, 0.08);
}

/* Action Button Styling */
.rep-blog-sec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 18px;
  background: #f8fafc;
  border: 1px solid rgba(21, 88, 89, 0.18);
  border-radius: 12px;
  color: #155859;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.rep-blog-sec-btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.rep-blog-sec-btn:hover {
  background: #ff6b35;
  border-color: #ff6b35;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.rep-blog-sec-btn:hover .rep-blog-sec-btn-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet View (Max 992px) */
@media (max-width: 992px) {
  .rep-blog-sec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile View (Max 600px) */
@media (max-width: 600px) {
  .rep-blog-sec-container {
    padding: 60px 16px;
  }

  .rep-blog-sec-heading {
    font-size: 28px;
  }

  .rep-blog-sec-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rep-blog-sec-img-wrap {
    height: 200px;
  }
}

/* ==========================================================================
   UNIQUE FAQ SECTION - DARK THEME VARIANT (NO WHITE BG, NO JS)
   ========================================================================== */

.rep-faq-sec-container {
  background-color: #0b2223; /* Deep Dark Ambient Teal Base */
  padding: 100px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Futuristic Ambient Lighting Glow */
.rep-faq-sec-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 88, 89, 0.4) 0%, rgba(255, 107, 53, 0.08) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.rep-faq-sec-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Sidebar Layout */
.rep-faq-sec-sidebar {
  position: sticky;
  top: 40px;
}

.rep-faq-sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.rep-faq-sec-tag-glow {
  width: 6px;
  height: 6px;
  background-color: #ff6b35;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff6b35;
}

.rep-faq-sec-heading {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  margin: 0 0 16px 0;
  line-height: 1.15;
}

.rep-faq-sec-subtitle {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0 0 35px 0;
}

/* Dark Support Box */
.rep-faq-sec-support-card {
  background: rgba(21, 88, 89, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(16px);
}

.rep-faq-sec-support-icon {
  width: 42px;
  height: 42px;
  background: #ff6b35;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.rep-faq-sec-support-icon svg {
  width: 22px;
  height: 22px;
}

.rep-faq-sec-support-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.rep-faq-sec-support-desc {
  font-size: 13px;
  color: #cbd5e1;
  margin: 0;
}

.rep-faq-sec-support-btn {
  margin-top: 8px;
  display: inline-block;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rep-faq-sec-support-btn:hover {
  background: #ff6b35;
  border-color: #ff6b35;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

/* Accordion List Container */
.rep-faq-sec-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Individual Accordion Item (Glassmorphism Dark) */
.rep-faq-sec-item {
  background: rgba(21, 88, 89, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
}

.rep-faq-sec-item[open] {
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(21, 88, 89, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 53, 0.1);
}

/* Accordion Summary Header */
.rep-faq-sec-summary {
  list-style: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.rep-faq-sec-summary::-webkit-details-marker {
  display: none;
}

.rep-faq-sec-num {
  font-size: 13px;
  font-weight: 800;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.12);
  padding: 6px 10px;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.rep-faq-sec-item[open] .rep-faq-sec-num {
  background: #ff6b35;
  color: #ffffff;
}

.rep-faq-sec-question {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  flex-grow: 1;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.rep-faq-sec-item:hover .rep-faq-sec-question {
  color: #ff6b35;
}

/* Custom Plus / Minus Toggle Button */
.rep-faq-sec-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.rep-faq-sec-toggle-icon::before,
.rep-faq-sec-toggle-icon::after {
  content: '';
  position: absolute;
  background-color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.rep-faq-sec-toggle-icon::before {
  width: 12px;
  height: 2px;
}

.rep-faq-sec-toggle-icon::after {
  width: 2px;
  height: 12px;
}

/* Open State Animation for Icon */
.rep-faq-sec-item[open] .rep-faq-sec-toggle-icon {
  background: #ff6b35;
  border-color: #ff6b35;
}

.rep-faq-sec-item[open] .rep-faq-sec-toggle-icon::before {
  background-color: #ffffff;
}

.rep-faq-sec-item[open] .rep-faq-sec-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Answer Content */
.rep-faq-sec-answer {
  padding: 0 28px 24px 78px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.65;
  animation: repFaqFade 0.4s ease-out;
}

.rep-faq-sec-answer p {
  margin: 0;
}

@keyframes repFaqFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet View (Max 992px) */
@media (max-width: 992px) {
  .rep-faq-sec-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rep-faq-sec-sidebar {
    position: relative;
    top: 0;
  }

  .rep-faq-sec-support-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .rep-faq-sec-support-btn {
    margin-top: 0;
    white-space: nowrap;
  }
}

/* Mobile View (Max 600px) */
@media (max-width: 600px) {
  .rep-faq-sec-container {
    padding: 60px 16px;
  }

  .rep-faq-sec-heading {
    font-size: 28px;
  }

  .rep-faq-sec-summary {
    padding: 18px 16px;
    gap: 12px;
  }

  .rep-faq-sec-question {
    font-size: 15px;
  }

  .rep-faq-sec-answer {
    padding: 0 16px 20px 16px;
  }

  .rep-faq-sec-support-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .rep-faq-sec-support-btn {
    width: 100%;
  }
}

/* ==========================================================================
   COMPACT & ULTRA-FUTURISTIC CTA SECTION (LOW HEIGHT VARIANT)
   ========================================================================== */

.rep-cta-sec-container {
  background-color: #0b2223;
  padding: 40px 20px; 
  position: relative;
  overflow: hidden;
}

/* Glowing Ambient Orbs */
.rep-cta-sec-glow-1 {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.rep-cta-sec-glow-2 {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(21, 88, 89, 0.7) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.rep-cta-sec-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Horizontal Split Glass Card */
.rep-cta-sec-card {
  background: linear-gradient(135deg, rgba(21, 88, 89, 0.45) 0%, rgba(11, 34, 35, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 32px 40px; /* Extremely compact padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 
              inset 0 1px 1px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

/* Neon Top Border Accent */
.rep-cta-sec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff6b35, #38bdf8, transparent);
}

/* Tag Indicator */
.rep-cta-sec-tag-wrap {
  margin-bottom: 10px;
}

.rep-cta-sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 53, 0.12);
  color: #ff6b35;
  border: 1px solid rgba(255, 107, 53, 0.35);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.rep-cta-sec-tag-pulse {
  width: 6px;
  height: 6px;
  background-color: #ff6b35;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff6b35;
  animation: repCtaPulse 1.8s infinite;
}

@keyframes repCtaPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 107, 53, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

/* Text Content */
.rep-cta-sec-content {
  flex-grow: 1;
}

.rep-cta-sec-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 6px 0;
  letter-spacing: -0.5px;
}

.rep-cta-sec-desc {
  font-size: 14px;
  color: #cbd5e1;
  margin: 0 0 14px 0;
}

/* Compact Feature Badges */
.rep-cta-sec-badges {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rep-cta-sec-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #38bdf8;
}

.rep-cta-sec-badge svg {
  width: 14px;
  height: 14px;
  color: #38bdf8;
}

/* Right Side Actions Group */
.rep-cta-sec-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  min-width: 220px;
}

/* Primary Glow Button */
.rep-cta-sec-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #ff6b35;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.rep-cta-sec-btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.rep-cta-sec-btn-primary:hover {
  background: #e05522;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 107, 53, 0.45);
}

.rep-cta-sec-btn-primary:hover .rep-cta-sec-btn-icon {
  transform: translateX(4px);
}

/* Glass Outline Secondary Button */
.rep-cta-sec-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rep-cta-sec-phone-icon {
  width: 15px;
  height: 15px;
  color: #ff6b35;
}

.rep-cta-sec-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet & Mobile Breakpoint */
@media (max-width: 868px) {
  .rep-cta-sec-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 24px;
  }

  .rep-cta-sec-actions {
    width: 100%;
    flex-direction: row;
  }

  .rep-cta-sec-btn-primary,
  .rep-cta-sec-btn-secondary {
    flex: 1;
  }
}

@media (max-width: 580px) {
  .rep-cta-sec-container {
    padding: 30px 16px;
  }

  .rep-cta-sec-title {
    font-size: 22px;
  }

  .rep-cta-sec-actions {
    flex-direction: column;
  }

  .rep-cta-sec-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ==========================================================================
   ABOUT US SECTION - BENTO GRID DARK THEME (REP-ABT-SEC)
   ========================================================================== */

.rep-abt-sec-container {
  background-color: #0b2223; /* Deep Dark Ambient Teal Base */
  padding: 80px 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Glowing Ambient Background Circles */
.rep-abt-sec-glow-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
}

.rep-abt-sec-glow-2 {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(21, 88, 89, 0.5) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
}

.rep-abt-sec-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Top Header */
.rep-abt-sec-header {
  margin-bottom: 40px;
}

.rep-abt-sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.rep-abt-sec-tag-dot {
  width: 6px;
  height: 6px;
  background-color: #ff6b35;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff6b35;
}

.rep-abt-sec-heading {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

/* Bento Grid Layout */
.rep-abt-sec-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

/* Common Card Glassmorphism */
.rep-abt-sec-card {
  background: rgba(21, 88, 89, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.rep-abt-sec-card:hover {
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-4px);
}

/* Card 1: Story Content */
.rep-abt-sec-story-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.rep-abt-sec-text {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0 0 16px 0;
}

.rep-abt-sec-highlight {
  color: #ff6b35;
  font-weight: 600;
}

.rep-abt-sec-cta-wrap {
  margin-top: 16px;
}

.rep-abt-sec-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff6b35;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.rep-abt-sec-btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.rep-abt-sec-btn:hover {
  background: #e05522;
  box-shadow: 0 12px 25px rgba(255, 107, 53, 0.5);
}

.rep-abt-sec-btn:hover .rep-abt-sec-btn-icon {
  transform: translateX(4px);
}

/* Card 2: Image Showcase */
.rep-abt-sec-card-media {
  padding: 0;
  min-height: 320px;
}

.rep-abt-sec-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rep-abt-sec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rep-abt-sec-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 34, 35, 0.8) 0%, transparent 60%);
}

.rep-abt-sec-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(11, 34, 35, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.rep-abt-sec-badge-icon {
  width: 36px;
  height: 36px;
  background: #ff6b35;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rep-abt-sec-badge-icon svg {
  width: 20px;
  height: 20px;
}

.rep-abt-sec-badge-val {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.rep-abt-sec-badge-lbl {
  display: block;
  font-size: 11px;
  color: #94a3b8;
}

/* Card 3: Support Box */
.rep-abt-sec-card-support {
  background: linear-gradient(135deg, rgba(21, 88, 89, 0.35) 0%, rgba(11, 34, 35, 0.9) 100%);
}

.rep-abt-sec-support-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.rep-abt-sec-phone-glow {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.4);
  color: #ff6b35;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rep-abt-sec-phone-glow svg {
  width: 20px;
  height: 20px;
}

.rep-abt-sec-support-sub {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ff6b35;
}

.rep-abt-sec-support-status {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.rep-abt-sec-phone-link {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-bottom: 10px;
  display: block;
}

.rep-abt-sec-phone-link:hover {
  color: #ff6b35;
}

.rep-abt-sec-support-note {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0 0 24px 0;
}

.rep-abt-sec-stats-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.rep-abt-sec-stat-box {
  text-align: center;
}

.rep-abt-sec-stat-num {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #38bdf8;
}

.rep-abt-sec-stat-lbl {
  display: block;
  font-size: 10px;
  color: #cbd5e1;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet View (Max 992px) */
@media (max-width: 992px) {
  .rep-abt-sec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rep-abt-sec-card-support {
    grid-column: span 2;
  }
}

/* Mobile View (Max 600px) */
@media (max-width: 600px) {
  .rep-abt-sec-container {
    padding: 50px 16px;
  }

  .rep-abt-sec-heading {
    font-size: 26px;
  }

  .rep-abt-sec-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rep-abt-sec-card {
    padding: 24px 20px;
  }

  .rep-abt-sec-card-support {
    grid-column: span 1;
  }

  .rep-abt-sec-phone-link {
    font-size: 18px;
  }
}

/* =========================================================
   BRANDS SECTION BASE
========================================================= */

.rep-brand-sec {
  width: 100%;
  background-color: #093536; /* Dark sleek background */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
  padding: 18px 0;
}

.rep-brand-sec-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 35px;
}

/* =========================================================
   LEFT HEADING
========================================================= */

.rep-brand-sec-heading-wrapper {
  flex-shrink: 0;
  position: relative;
  z-index: 5;
  padding-right: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.rep-brand-sec-heading {
  margin: 0;
  color: #ff5722; /* Accent neon green color like Image 2 */
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* =========================================================
   MARQUEE TRACK & RUNNER
========================================================= */

.rep-brand-sec-marquee-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}

/* Side Gradients for Edge Blur Effect */
.rep-brand-sec-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 3;
  pointer-events: none;
}

.rep-brand-sec-fade-left {
  left: 0;
  background: linear-gradient(to right, #0b1114, transparent);
}

.rep-brand-sec-fade-right {
  right: 0;
  background: linear-gradient(to left, #0b1114, transparent);
}

.rep-brand-sec-track {
  display: flex;
  width: max-content;
  animation: repBrandSecScroll 28s linear infinite;
}



.rep-brand-sec-list {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
}

/* Item Styling */
.rep-brand-sec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.rep-brand-sec-icon {
  color: #ff5722; /* Green Wrench Icon */
  font-size: 11px;
  transform: rotate(280deg);
}

.rep-brand-sec-name {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.rep-brand-sec-item:hover .rep-brand-sec-name {
  color: #ffffff;
}

/* KEYFRAMES FOR INFINITE MOVEMENT */
@keyframes repBrandSecScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================================================
   RESPONSIVE - TABLET & MOBILE
========================================================= */

@media (max-width: 900px) {
  .rep-brand-sec-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 0 20px;
  }

  .rep-brand-sec-heading-wrapper {
    border-right: none;
    padding-right: 0;
    width: 100%;
  }

  .rep-brand-sec-heading {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .rep-brand-sec-marquee-wrapper {
    width: 100%;
  }

  .rep-brand-sec-list {
    gap: 24px;
    padding-right: 24px;
  }

  .rep-brand-sec-name {
    font-size: 12px;
    letter-spacing: 1.8px;
  }

  .rep-brand-sec-track {
    animation-duration: 22s;
  }
}

@media (max-width: 480px) {
  .rep-brand-sec {
    padding: 14px 0;
  }

  .rep-brand-sec-heading {
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .rep-brand-sec-item {
    gap: 9px;
  }

  .rep-brand-sec-icon {
    font-size: 10px;
  }

  .rep-brand-sec-name {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  .rep-brand-sec-track {
    animation-duration: 60s;
  }
}


/* Section Base */
.rep-service-card2-wrapper {
  width: 100%;
  padding: 90px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

/* Background Animated Icons */
.rep-service-card2-bg-icon {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  color: rgba(21, 89, 90, 0.06);
  font-size: 90px;
}
.rep-service-card2-bg-icon-1 { top: 4%; left: 2%; }
.rep-service-card2-bg-icon-2 { bottom: 4%; right: 2%; }

/* Container & Header */
.rep-service-card2-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.rep-service-card2-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px auto;
}

.rep-service-card2-subheading {
  color: #15595A;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  background: #ffffff;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(21, 89, 90, 0.15);
}

.rep-service-card2-subheading i { color: #f97316; }

.rep-service-card2-title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

.rep-service-card2-title span { color: #15595A; }

.rep-service-card2-description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* 2-Column Grid Setup */
.rep-service-card2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Horizontal Split Card */
.rep-service-card2-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.rep-service-card2-card:hover {
  transform: translateY(-8px);
  border-color: rgba(21, 89, 90, 0.3);
  box-shadow: 0 20px 35px rgba(21, 89, 90, 0.12);
}

/* Left Image Box (40% Width) */
.rep-service-card2-left {
  width: 42%;
  min-height: 230px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.rep-service-card2-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rep-service-card2-card:hover .rep-service-card2-left img {
  transform: scale(1.1);
}

/* Floating Badge On Image */
.rep-service-card2-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  background: rgba(21, 89, 90, 0.88);
  backdrop-filter: blur(6px);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.rep-service-card2-card:hover .rep-service-card2-badge {
  background: #f97316;
  transform: scale(1.08) rotate(-6deg);
}

/* Right Content Box (58% Width) */
.rep-service-card2-right {
  width: 58%;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rep-service-card2-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.rep-service-card2-card:hover .rep-service-card2-card-title {
  color: #15595A;
}

.rep-service-card2-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Solid Button (#15595A Accent) */
.rep-service-card2-btn {
  align-self: flex-start;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background-color: #15595A;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(21, 89, 90, 0.2);
}

.rep-service-card2-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.rep-service-card2-btn:hover {
  background-color: #f97316;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.rep-service-card2-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Breakdown */
@media (max-width: 992px) {
  .rep-service-card2-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .rep-service-card2-card {
    flex-direction: column;
  }
  .rep-service-card2-left {
    width: 100%;
    height: 180px;
    min-height: auto;
  }
  .rep-service-card2-right {
    width: 100%;
  }
}


/* =======================================
   REPA ABOUT HERO SECTION STYLES
   ======================================= */

/* Base & Section Wrapper */
.repa-abot-hero-sec {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #0d1117;
}

/* Background Image */
.repa-abot-hero-sec__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: brightness(0.9);
}

/* Premium Gradient Overlay */
.repa-abot-hero-sec__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(10, 15, 25, 0.92) 0%, 
    rgba(10, 15, 25, 0.75) 50%, 
    rgba(10, 15, 25, 0.3) 100%
  );
  z-index: 2;
}

/* Main Container */
.repa-abot-hero-sec__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Content Box (Left Aligned) */
.repa-abot-hero-sec__content {
  max-width: 650px;
  text-align: left;
}

/* Subheading Styling */
.repa-abot-hero-sec__subheading-wrapper {
  display: inline-block;
  margin-bottom: 16px;
}

.repa-abot-hero-sec__subheading {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FF5722; /* Specific Color */
  background: rgba(255, 87, 34, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 87, 34, 0.25);
}

/* Main Heading Styling */
.repa-abot-hero-sec__heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #ffffff;
}

.repa-abot-hero-sec__heading-highlight {
  color: #FF5722;
}

/* Description Styling */
.repa-abot-hero-sec__description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 36px;
  font-weight: 400;
}

/* Premium Rounded Button (No Shadow, Border Radius 30px) */
.repa-abot-hero-sec__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background-color: #FF5722; /* Button Color */
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px; /* 30px Border Radius */
  box-shadow: none; /* Shadow removed */
  border: none;
  outline: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              background-color 0.3s ease;
  cursor: pointer;
}

/* Button Arrow Icon */
.repa-abot-hero-sec__btn-icon {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

/* Button Hover State */
.repa-abot-hero-sec__btn:hover {
  background-color: #15595A; 
  transform: translateY(-5px); 
  box-shadow: none; 
}


.repa-abot-hero-sec__btn:hover .repa-abot-hero-sec__btn-icon {
  transform: translateX(5px);
}


/* =======================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ======================================= */


@media (max-width: 992px) {
  .repa-abot-hero-sec {
    min-height: 85vh;
  }

  .repa-abot-hero-sec__heading {
    font-size: 2.75rem;
  }

  .repa-abot-hero-sec__description {
    font-size: 1.05rem;
  }
}


@media (max-width: 576px) {
  .repa-abot-hero-sec {
    min-height: 75vh;
    padding: 80px 0 60px 0;
  }

  .repa-abot-hero-sec__overlay {
   
    background: rgba(10, 15, 25, 0.85); 
  }

  .repa-abot-hero-sec__subheading {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  .repa-abot-hero-sec__heading {
    font-size: 2.1rem;
    margin-bottom: 16px;
  }

  .repa-abot-hero-sec__description {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .repa-abot-hero-sec__btn {
    width: 100%; 
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}


/* =========================================
   REPA EDITORIAL SECTION
   ========================================= */

.repa-editorial-sec {
  position: relative;
  padding: 110px 0;
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow: hidden;
}

.repa-editorial-sec__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 30px;

  display: grid;
  grid-template-columns: 0.75fr 1.15fr 0.9fr;
  gap: 55px;

  align-items: center;
}


/* =========================================
   LEFT CONTENT
   ========================================= */

.repa-editorial-sec__left {
  position: relative;
  display: flex;
  gap: 25px;
}

.repa-editorial-sec__vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);

  color: #cbd5e1;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
}

.repa-editorial-sec__left-content {
  padding-top: 5px;
}

.repa-editorial-sec__tag {
  position: relative;

  display: inline-flex;
  align-items: center;

  color: #ff5722;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1.5px;
  text-transform: uppercase;

  margin-bottom: 20px;
}

.repa-editorial-sec__tag::before {
  content: "";

  width: 7px;
  height: 7px;

  margin-right: 9px;

  background: #ff5722;
  border-radius: 50%;
}

.repa-editorial-sec__title {
  margin: 0 0 22px;

  color: #15595A;

  font-size: 48px;
  font-weight: 800;

  line-height: 1.12;
  letter-spacing: -1.4px;
}

.repa-editorial-sec__title span {
  color: #ff5722;
}

.repa-editorial-sec__description {
  margin: 0;
  color: #424242;
  font-size: 16px;
  line-height: 1.5;
}


/* =========================================
   CENTER IMAGE
   ========================================= */

.repa-editorial-sec__visual {
  position: relative;
}

.repa-editorial-sec__image-wrap {
  position: relative;

  height: 590px;

  overflow: hidden;

  border-radius: 35px;

  background: #15595a;

  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.15);
}

.repa-editorial-sec__image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.repa-editorial-sec__image-wrap:hover
.repa-editorial-sec__image {
  transform: scale(1.045);
}


/* Image Gradient */

.repa-editorial-sec__image-shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.05) 30%,
      rgba(15, 23, 42, 0.78) 100%
    );
}


/* =========================================
   IMAGE TOP
   ========================================= */

.repa-editorial-sec__image-top {
  position: absolute;

  top: 25px;
  left: 25px;

  display: flex;
  align-items: center;
  gap: 9px;

  padding: 10px 15px;

  background: rgba(255,255,255,0.14);

  border: 1px solid rgba(255,255,255,0.2);

  backdrop-filter: blur(12px);

  border-radius: 50px;

  color: #ffffff;

  font-size: 11px;
  font-weight: 700;
}

.repa-editorial-sec__status-dot {
  width: 7px;
  height: 7px;

  background: #6ee7b7;

  border-radius: 50%;

  box-shadow: 0 0 0 4px rgba(110,231,183,0.12);
}


/* =========================================
   IMAGE BOTTOM
   ========================================= */

.repa-editorial-sec__image-bottom {
  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 28px;

  display: flex;
  align-items: flex-end;

  gap: 15px;

  color: #ffffff;
}

.repa-editorial-sec__big-number {
  font-size: 62px;
  line-height: 0.9;

  font-weight: 800;

  letter-spacing: -3px;
}

.repa-editorial-sec__big-text {
  padding-bottom: 3px;
}

.repa-editorial-sec__big-text strong {
  display: block;

  font-size: 14px;
  font-weight: 700;
}

.repa-editorial-sec__big-text span {
  display: block;

  margin-top: 5px;

  color: rgba(255,255,255,0.65);

  font-size: 10px;
}


/* =========================================
   FLOATING CIRCLE
   ========================================= */

.repa-editorial-sec__circle {
  position: absolute;

  right: -35px;
  top: 50%;

  width: 100px;
  height: 100px;

  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: #ff5722;

  color: #ffffff;

  border-radius: 50%;

  border: 8px solid #ffffff;

  box-shadow:
    0 15px 35px rgba(255,87,34,0.25);

  z-index: 4;
}

.repa-editorial-sec__circle i {
  font-size: 16px;
  margin-bottom: 6px;
}

.repa-editorial-sec__circle span {
  text-align: center;

  font-size: 8px;
  line-height: 1.3;

  font-weight: 800;
  letter-spacing: 1px;
}


/* =========================================
   RIGHT FEATURES
   ========================================= */

.repa-editorial-sec__features {
  display: flex;
  flex-direction: column;

  border-top: 1px solid #faf8f8;
}

.repa-editorial-sec__feature {
  padding: 10px 0;

  border-bottom: 1px solid #9e9e9e;

  transition: padding 0.3s ease;
}

.repa-editorial-sec__feature:hover {
  padding-left: 8px;
}

.repa-editorial-sec__feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
    background: #15595a;
    padding: 0px 5px;
  margin-bottom: 5px;
}

.repa-editorial-sec__feature-top > span {
  color: #cbd5e1;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 1px;
}

.repa-editorial-sec__feature-icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: rgba(255,87,34,0.08);

  color: #ff5722;

  font-size: 16px;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.repa-editorial-sec__feature:hover
.repa-editorial-sec__feature-icon {
  background: #15595a;
  color: #ffffff;
}

.repa-editorial-sec__feature-body h3 {
  margin: 0 0 9px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 750;
}

.repa-editorial-sec__feature-body p {
  margin: 0;
  color: #424242;
  font-size: 14px;
  line-height: 1.5;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1100px) {

  .repa-editorial-sec__container {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .repa-editorial-sec__left {
    grid-column: 1 / -1;
    max-width: 750px;
  }

  .repa-editorial-sec__title {
    font-size: 40px;
  }

  .repa-editorial-sec__image-wrap {
    height: 520px;
  }

  .repa-editorial-sec__circle {
    right: -20px;
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

  .repa-editorial-sec {
    padding: 40px 0;
  }

  .repa-editorial-sec__container {
    display: flex;
    flex-direction: column;

    gap: 45px;

    padding: 0 18px;
  }
 


  /* Left */

  .repa-editorial-sec__left {
    width: 100%;
    display: block;
  }

  .repa-editorial-sec__vertical-text {
    display: none;
  }

  .repa-editorial-sec__tag {
    margin-bottom: 15px;
  }

  .repa-editorial-sec__title {
    font-size: 31px;
    letter-spacing: -0.8px;
  }

  .repa-editorial-sec__description {
    font-size: 13px;
  }


  /* Image */

  .repa-editorial-sec__visual {
    width: 100%;
  }

  .repa-editorial-sec__image-wrap {
    height: 430px;
    border-radius: 25px;
  }

  .repa-editorial-sec__image-top {
    top: 18px;
    left: 18px;

    padding: 8px 12px;

    font-size: 9px;
  }

  .repa-editorial-sec__image-bottom {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .repa-editorial-sec__big-number {
    font-size: 48px;
  }

  .repa-editorial-sec__big-text strong {
    font-size: 11px;
  }

  .repa-editorial-sec__big-text span {
    font-size: 8px;
  }


  /* Circle */

  .repa-editorial-sec__circle {
    right: 12px;
    top: auto;
    bottom: -25px;

    width: 78px;
    height: 78px;

    transform: none;

    border-width: 6px;
  }

  .repa-editorial-sec__circle i {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .repa-editorial-sec__circle span {
    font-size: 6px;
  }


  /* Features */

  .repa-editorial-sec__features {
    width: 100%;
  }

  .repa-editorial-sec__feature {
    padding: 22px 0;
  }

  .repa-editorial-sec__feature-top {
    margin-bottom: 13px;
  }

  .repa-editorial-sec__feature-icon {
    width: 40px;
    height: 40px;

    border-radius: 11px;

    font-size: 14px;
  }

  .repa-editorial-sec__feature-body h3 {
    font-size: 14px;
  }

  .repa-editorial-sec__feature-body p {
    font-size: 11px;
  }

  .repa-editorial-sec__feature:hover {
    padding-left: 0;
  }

}


/* Base Layout & Theme */
.repa-abot-form-sec {
  background-color: #f3f4f6;
  padding: 50px 20px;
  color: #1f2937;
}

.repa-abot-form-sec-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header Section */
.repa-abot-form-sec-header {
  text-align: center;
  margin-bottom: 35px;
}

.repa-abot-form-sec-badge {
  display: inline-block;
  background-color: rgba(255, 87, 34, 0.1);
  color: #FF5722;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 87, 34, 0.25);
}

.repa-abot-form-sec-heading {
  font-size: 30px;
  font-weight: 800;
  color: #15595A;
  margin: 0 0 8px 0;
}

.repa-abot-form-sec-subheading {
  color: #475569;
  font-size: 15px;
  margin: 0;
}

/* Grid Layout */
.repa-abot-form-sec-main-grid {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Form Panel with Stronger Visible Border */
.repa-abot-form-sec-left-panel {
  flex: 1 1 65%;
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  border: 1px solid #c7c7c7; 
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.repa-abot-form-sec-right-panel {
  flex: 1 1 35%;
  position: sticky;
  top: 20px;
}

/* Form Title */
.repa-abot-form-sec-form-title {
  font-size: 22px;
  font-weight: 700;
  color: #15595A;
  margin-top: 0;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.repa-abot-form-sec-form-title i {
  color: #FF5722;
}

/* Grids & Increased Gap Between Fields */
.repa-abot-form-sec-field-grid {
  display: grid;
  gap: 20px; /* Gap Increased between columns */
  margin-bottom: 20px; /* Gap Increased between rows */
}

.repa-abot-form-sec-col-2 {
  grid-template-columns: 1fr 1fr;
}

.repa-abot-form-sec-input-box {
  position: relative;
  margin-bottom: 20px; /* Gap Increased for single-line inputs */
}

.repa-abot-form-sec-field-grid .repa-abot-form-sec-input-box {
  margin-bottom: 0;
}

/* High Visibility Field Icons */
.repa-abot-form-sec-field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #505050; 
  font-size: 16px;
  transition: color 0.3s ease;
}

.repa-abot-form-sec-icon-top {
  top: 20px;
  transform: none;
}

/* Highly Visible Inputs, Selects & Textarea */
.repa-abot-form-sec-input,
.repa-abot-form-sec-select,
.repa-abot-form-sec-textarea {
  width: 100%;
  padding: 14px 16px 14px 46px; 
  border: 1px solid #aeaeae; 
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 15px;
  color: #0f172a; 
  font-weight: 500;
  outline: none;
  box-sizing: border-box;
  transition: all 0.25s ease-in-out;
}

/* Placeholder Visibility Improvement */
.repa-abot-form-sec-input::placeholder,
.repa-abot-form-sec-textarea::placeholder {
  color: #64748b; /* Darker Placeholder */
  font-weight: 400;
}

/* Focus States */
.repa-abot-form-sec-input:focus,
.repa-abot-form-sec-select:focus,
.repa-abot-form-sec-textarea:focus {
  border-color: #FF5722;
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.18);
}

.repa-abot-form-sec-input-box:focus-within .repa-abot-form-sec-field-icon {
  color: #FF5722;
}

.repa-abot-form-sec-textarea {
  resize: vertical;
}

/* File Upload Design */
.repa-abot-form-sec-file-box {
  display: flex;
  align-items: center;
}

.repa-abot-form-sec-file-label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #f8fafc;
  border: 2px dashed #94a3b8; /* Visible Dashed Border */
  border-radius: 8px;
  cursor: pointer;
  color: #334155;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.repa-abot-form-sec-file-label:hover {
  background: #f1f5f9;
  border-color: #FF5722;
  color: #FF5722;
}

.repa-abot-form-sec-file-input {
  display: none;
}

/* Captcha Box */
.repa-abot-form-sec-captcha-wrapper {
  margin: 25px 0;
}

.repa-abot-form-sec-captcha-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid #707070; 
  border-radius: 8px;
  background: #f8fafc;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.repa-abot-form-sec-captcha-icon {
  color: #15595A;
  font-size: 20px;
  margin-left: 10px;
}

/* Submit Button */
.repa-abot-form-sec-submit-btn {
  background-color: #FF5722;
  color: #ffffff;
  border: none;
  padding: 15px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.25);
}

.repa-abot-form-sec-submit-btn:hover {
  background-color: #e04818;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.35);
}

/* Sticky Card Styling */
.repa-abot-form-sec-sticky-card {
  background: #15595A;
  color: #ffffff;
  padding: 30px;
  border-radius: 14px;
  border: 2px solid #0e3d3e;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(21, 89, 90, 0.3);
}

.repa-abot-form-sec-card-icon {
  font-size: 34px;
  color: #FF5722;
  margin-bottom: 12px;
}

.repa-abot-form-sec-card-header h4 {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.repa-abot-form-sec-brand-box {
  background: rgba(255, 255, 255, 0.12);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.repa-abot-form-sec-logo-text {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.repa-abot-form-sec-brand-box p {
  margin: 4px 0 0 0;
  font-size: 11px;
  color: #e2e8f0;
  letter-spacing: 1px;
}

.repa-abot-form-sec-contact-details {
  margin-bottom: 25px;
}

.repa-abot-form-sec-info-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  word-break: break-all;
}

.repa-abot-form-sec-info-link:hover {
  color: #FF5722;
  text-decoration: underline;
}

.repa-abot-form-sec-call-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FF5722;
  color: #ffffff;
  text-decoration: none;
  padding: 13px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.25);
}

.repa-abot-form-sec-call-action:hover {
  background: #e04818;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.35);
}

/* Responsiveness */
@media (max-width: 850px) {
  .repa-abot-form-sec-main-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .repa-abot-form-sec-right-panel {
    position: static;
    width: 100%;
  }
}

@media (max-width: 550px) {
  .repa-abot-form-sec-col-2 {
    grid-template-columns: 1fr;
  }
  .repa-abot-form-sec-left-panel {
    padding: 22px;
  }
  .repa-abot-form-sec-field-grid {
    gap: 15px;
  }
   .repa-abot-form-sec-main-grid {
    align-items: stretch;
}
}