.trust-card-hero {
  padding-top: 30px;
}
   @media screen and (max-width: 768px) {
      .whatsapp_float {
        position: fixed;
        text-align: left;
        bottom: 25px;
        z-index: 25;
        pointer-events: none;
      }

    }

    @media screen and (min-width: 768px) {
      .whatsapp_float {
        position: fixed;
        text-align: left;
        bottom: 25px;
        z-index: 25;
        pointer-events: none;
      }

    }

     body {
      font-family: 'Arial', sans-serif;
      font-display: swap;
    }

    .banner-section-three h1 {
      font-size: 35px;
      /* Default for desktop */
      font-weight: 600;
      color: #000;
      padding: 5px 0px 15px;
      text-transform: uppercase;
      display: block;
      opacity: 1;
      transition: font-size 0.3s ease;
    }

    /* Media Query for Below Tablet Size (max-width: 768px) */
    @media screen and (max-width: 768px) {
      .banner-section-three h1 {
        font-size: 24px;
        /* Reduce font size */
        opacity: 0.9;
        /* Slightly lower opacity */
        padding: 3px 0px 10px;
        /* Adjust padding */
        font-weight: 500;
        color: #000;
        text-transform: uppercase;
        display: block;
      }
    }

    /* Media Query for Mobile Devices (max-width: 480px) */
    @media screen and (max-width: 480px) {
      .banner-section-three h1 {
        font-size: 24px;
        /* Further reduce font size */
        opacity: 0.8;
        /* Lower opacity to reduce impact */
        padding: 2px 0px 8px;
        /* Minimal padding */
        font-weight: 500;
        color: #000;
        text-transform: uppercase;
        display: block;
      }
    }
 
    /* Default Styles */
    .promo-img {
      margin-top: -68px;
      margin-bottom: -24px;
      height: 122px;
      width: auto;
      max-width: 100%;
    }

    /* Optimize for Mobile Devices */
    @media only screen and (max-width: 767px) {
      .promo-img {
        /* Hide or reduce size on mobile to improve LCP */
        height: 80px;
        /* Smaller height for faster loading */
        margin-top: -50px;
        margin-bottom: -10px;
      }
    }

    /* Optional - Defer image visibility on small screens if not in the viewport */
    @media only screen and (max-width: 768px) {
      .promo-img {
        height: 100px;
        /* Adjust for tablet */
        margin-top: -40px;
        margin-bottom: -15px;
      }
    }

    @keyframes loader-figure {
      0% {
        height: 0;
        width: 0;
        background-color: #1976d2;
      }

      30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1;
      }

      100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent;
      }
    }

    @keyframes loader-label {
      0% {
        opacity: .25;
      }

      30% {
        opacity: 1;
      }

      100% {
        opacity: .25;
      }
    }

    /* Snow effect styles */
    /*.snowflake {*/
    /*    position: fixed;*/
    /*    top: -10px;*/
    /*    z-index: 99999;*/
    /*    color: white;*/
    /*    font-size: 1em;*/
    /*    pointer-events: none;*/
    /*    animation: fall linear infinite;*/
    /*}*/

    @keyframes fall {
      0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
      }

      100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
      }
    }
    
.Trusted-paragraph {
        margin-top: 1rem;
        font-size: 1rem;
        font-weight: 500;
      }

      /* container */
      .review-container {
        max-width: 1200px;
        margin: 16px auto 0;
        padding: 0 0.5rem 8px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }

      /* card */
      .review-box {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(15, 23, 42, 0.08);
        padding: 10px 12px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        scroll-snap-align: start;
        box-shadow: 0 10px 25px rgba(2, 6, 23, 0.08);
        transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
        min-width: 240px;
      }

      .review-box:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 34px rgba(2, 6, 23, 0.12);
        border-color: rgba(15, 23, 42, 0.14);
      }

      /* logo */
      .review-logo {
        width: 38px;
        height: 38px;
        object-fit: contain;
        flex: 0 0 38px;
        margin: 0;
        transition: transform .18s ease;
      }

      .review-box:hover .review-logo {
        transform: scale(1.05);
      }

      /* middle text block */
      .review-box>div {
        display: flex;
        flex-direction: column;
        gap: 4px;
        min-width: 120px;
      }

      /* stars */
      .star-rating-box {
        display: flex;
        align-items: center;
        gap: 5px;
        flex-wrap: nowrap;
      }

      /* fontawesome safety */
      .fa {
        font-family: 'FontAwesome' !important;
      }

      .star {
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        border-radius: 5px;
        color: #fff;
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.12);
      }

      .star.half {
        background: #cbd5e1;
        color: #fff;
      }

      /* rating number */
      .rating-number {
        font-size: 1.25rem;
        font-weight: 800;
        margin-left: auto;
        padding-left: 6px;
        color: #0f172a;
        white-space: nowrap;
      }

      /* brand colors (same as yours, refined) */
      .trustpilot-review .star.filled {
        background: #00b67a;
      }

      .trustpilot-review .rating-number {
        color: #00b67a;
      }

      .ain-review .star.filled {
        background: #6B2FBF;
      }

      .ain-review .rating-number {
        color: #6B2FBF;
      }

      .google-review .star.filled {
        background: #4285F4;
      }

      .google-review .rating-number {
        color: #4285F4;
      }

      /* Mobile */
      @media (max-width: 600px) {
        .review-container {
          justify-content: flex-start;
          flex-wrap: nowrap;
          /* ✅ mobile me nice horizontal cards */
          gap: 10px;
          padding-bottom: 10px;
        }

        .review-box {
          min-width: 220px;
          padding: 9px 10px;
          border-radius: 12px;
          box-shadow: 0 8px 18px rgba(2, 6, 23, 0.10);
        }

        .review-logo {
          width: 34px;
          height: 34px;
          flex-basis: 34px;
        }

        .rating-number {
          font-size: 1.15rem;
        }

        .star {
          width: 16px;
          height: 16px;
          font-size: 10px;
          border-radius: 4px;
        }
      }



       :root {
        --theme-purple: #6e40c9;
        --theme-blue: #007fff;
        --text-dark: #1f2333;
        --text-muted: #5b6275;
        --soft-bg: #f6f2ff;
        --card-bg: #ffffff;
        --card-border: rgba(40, 127, 218, 0.18);
        --shadow: 0 5px 3px 1px rgba(0, 0, 0, 0.10);
      }

      .trust-slider-section {
        background: #fbf7f6;
        padding: 30px 0;
      }

      .trust-slider-wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 18px;
        text-align: center;
      }

      .trust-slider-subtitle {
        max-width: 980px;
        margin: 0 auto 34px;
        font-size: 16px;
        line-height: 1.65;
        color: #3e465b;
      }

      /* Swiper */
      .trust-swiper {
        position: relative;
        padding: 18px 6px 0;
      }

      .trust-slide {
        height: auto;
      }

      /* ✅ Card more premium + hover */
      .trust-card {
        background: rgba(255, 255, 255, 0.96);
        border-radius: 18px;
        border: 1px solid rgba(63, 21, 154, 0.14);
        box-shadow: 0 12px 26px rgba(16, 24, 40, 0.10);
        padding: 30px 24px 24px;
        text-align: center;
        position: relative;
        min-height: 270px;
        height: 100%;
        overflow: hidden;
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        backdrop-filter: blur(6px);
      }

      /* soft premium glow */
      .trust-card:before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        background:
          radial-gradient(180px 180px at 12% 0%, rgba(63, 21, 154, 0.12), transparent 65%),
          radial-gradient(220px 220px at 100% 0%, rgba(14, 143, 206, 0.12), transparent 65%),
          radial-gradient(240px 240px at 50% 120%, rgba(99, 102, 241, 0.10), transparent 60%);
        pointer-events: none;
      }

      .trust-card:after {
        content: "";
        position: absolute;
        inset: 1px;
        border-radius: 17px;
        border: 1px solid rgba(209, 213, 219, 0.55);
        pointer-events: none;
      }

      .trust-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(16, 24, 40, 0.14);
        border-color: rgba(14, 143, 206, 0.28);
      }

      /* icon */
      .trust-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
        position: relative;
        z-index: 1;

        background: linear-gradient(135deg,
            rgba(63, 21, 154, 0.12),
            rgba(14, 143, 206, 0.12));
        border: 1px solid rgba(63, 21, 154, 0.10);
      }

      .trust-icon i {
        font-size: 34px;
        color: #fcab17;
        transition: all 0.25s ease;
      }

      .trust-card:hover .trust-icon i {
        color: #145da0;
        transform: scale(1.12);
      }

      .trust-card h3 {
        background: linear-gradient(to bottom, #fcab17, #145da0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

        font-size: 20px;
        font-weight: 800;
        line-height: 1.2;
        margin: 8px 0 10px;
        position: relative;
        z-index: 1;
      }

      .trust-card-description {
        margin: 0;
        font-size: 1.05rem;
        line-height: 1.3;
        color: #000;
        font-weight: 500;
        position: relative;
        z-index: 1;

        height: calc(1.3em * 6);
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 10px;
      }

      .trust-card-description::-webkit-scrollbar {
        width: 2px;
      }

      .trust-card-description::-webkit-scrollbar-track {
        background: #bdbdbd;
      }

      .trust-card-description::-webkit-scrollbar-thumb {
        background: #818589;
        border-radius: 999px;
      }

      .trust-card-description::-webkit-scrollbar-thumb:hover {
        background: gray;
      }

      /* Swiper arrows */
      .trust-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: 0.2s ease;
      }

      .trust-nav:hover {
        transform: translateY(-50%) scale(1.05);
        border-color: rgba(110, 64, 201, 0.35);
      }

      .trust-prev {
        left: -10px;
      }

      .trust-next {
        right: -10px;
      }

      .trust-nav.swiper-button-disabled {
        opacity: 0.45;
        cursor: not-allowed;
        transform: translateY(-50%);
      }

      .trust-nav span {
        font-size: 26px;
        line-height: 1;
        color: #58607a;
        user-select: none;
      }

      .trust-cta {
        display: inline-block;
        margin-top: 18px;
        padding: 8px 30px;
        border-radius: 10px;
        font-weight: 600;
        letter-spacing: 0.6px;
        background: #fcab17;
        color: #fff;
        text-decoration: none;
        transition: 0.2s ease;
      }

      .trust-cta:hover {
        transform: translateY(-2px);
        color: #fff;
      }

      @media (max-width: 1024px) {
        .trust-prev {
          left: -6px;
        }

        .trust-next {
          right: -6px;
        }
      }

      @media (max-width: 768px) {
        .trust-card h3 {
          font-size: 18px;
        }

        .trust-card-description {
          font-size: 0.85rem;
          line-height: 1.3;
          height: calc(1.3em * 3);
        }
      }

      .section-title {
        background-color: #f8aa2d;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

        font-size: 2rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 10px;
      }

      @media (max-width: 768px) {
        .section-title {
          font-size: 2rem;
        }
      }

      @media (max-width: 600px) {
        .section-title {
          font-size: 1.4rem;
        }
      }

      @media (max-width: 640px) {
        .trust-nav {
          width: 42px;
          height: 42px;
        }
      }

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

        .trust-card,
        .trust-icon i {
          transition: none !important;
        }
      }

       .logo-box {
        margin: 4px !important;
        padding: 0 !important;
        display: flex;
      }

      .logo-box .logo img {
        width: 120px !important;
      }

      @media (max-width: 768px) {
        .logo-box .logo img {
          width: 60px !important;
        }
      }

      @media (max-width: 1100px) {
        .outer-box {
          display: none !important;
        }
      }

      @media screen and (max-width: 1023px) {
        .logo-box {
          width: 100%;
          text-align: center;
          padding: 0 !important;
          margin: 4px !important;
        }

        .main-header.header-style-three .header-lower .logo-box {
          background-color: transparent;

        }

        .logo {
          display: inline-block;
        }

      }

      .main-header.header-style-three .header-lower .logo-box {
        position: relative;
      }

      .main-header.header-style-three .main-menu .navigation>li>a {
        padding: 10px 6px;
      }

      .main-header.header-style-three.fixed-header {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
      }

      .navbar-collapse .navigation>li>ul>li>ul {
        max-height: 50vh;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: none;
      }

      .navbar-collapse .navigation>li>ul>li>ul>li>a {
        padding: 5px 10px;
        font-size: 13px;
      }

      .navbar-collapse .navigation .subject-dropdown>ul {
        max-height: 50vh;
        overflow: auto;
        scrollbar-width: none;
      }

      .navbar-collapse .navigation .city-dropdown>ul {
        max-height: 50vh;
        overflow: auto;
        scrollbar-width: none;
      }

      .main-menu .navigation>li>ul>li>a {
        padding: 5px 10px;
        font-size: 13px;
      }
 
      /* Top Bar Container */
      .top-bar {
        background: #fcab17;
        color: #fff;
        font-size: 14px;
        padding: 2px 0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      }

      /* Wrapper for content alignment */
      .content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between !important;
        align-items: center;
        flex-wrap: wrap;
      }

      /* Contact Info Styling */
      .contact-item {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
      }

      .contact-link {
        display: flex;
        align-items: center;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        gap: 6px;
        transition: color 0.3s;
      }

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

      .contact-link i {
        font-size: 16px;
      }

      .divider {
        color: rgba(255, 255, 255, 0.6);
        font-weight: bold;
      }

      /* Offer Section Styling */
      .offer-section {
        text-align: right;
        display: flex;
        align-items: center;
        gap: 4px;
      }

      .offer-section .offers a {
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        transition: color 0.3s;
      }

      .offer-section .offers a:hover {
        color: #ffe600;
      }

      .offer-text a {
        font-size: 16px;
        font-weight: 700;
        color: #ffe600;
        text-decoration: none;
        transition: color 0.3s;
      }

      .offer-text a:hover {
        color: #ffffff;
      }

      .offers {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 1rem;
      }

      .offer-button {
        display: inline-block;
        padding: 1px 8px;
        margin-top: 4px;
        margin-bottom: 4px;
        background-color: #e60023;
        /* red-like color */
        color: white;
        font-weight: bold;
        text-decoration: none;
        border-radius: 8px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        transition: transform 0.5s ease, box-shadow 0.3s ease;
      }

      /* Pop-in on load */
      .offer-button {
        animation: popIn 0.6s ease;
      }

      /* Pop-out on hover */
      .offer-button:hover {
        transform: scale(1.08);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
      }

      @keyframes popIn {
        0% {
          transform: scale(0.8);
          opacity: 0;
        }

        100% {
          transform: scale(1);
          opacity: 1;
        }
      }

      /* Responsive Adjustments */
      @media (max-width: 768px) {
        .content-wrapper {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px;
          padding: 0 12px;
        }

        .contact-item {
          justify-content: space-between;
          width: 100%;
          gap: 8px;
        }

        .offer-section {
          display: none;
        }

        .main-header.header-style-three .inner-container {
          display: flex;
        }
      }

      @media (max-width: 480px) {
        .top-bar {
          font-size: 10px;
        }

        .contact-link i {
          font-size: 14px;
        }
      }

      /* Cart / Profile Dropdown */
      .cart-box {
        position: relative;
      }

      .cart-panel {
        position: absolute !important;
        top: 40px !important;
        right: 0 !important;
        width: 260px !important;
        background: #fff !important;
        border-radius: 10px;
        border: 1px solid #e0e0e0 !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
        z-index: 1000 !important;
        display: none;
        padding: 16px !important;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
      }

      .cart-box:hover .cart-panel {
        display: block;
        opacity: 1;
        transform: translateY(0);
      }

      .cart-product .inner {
        text-align: center;
      }

      .cart-product .image img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      }

      .cart-product h3 {
        font-size: 16px;
        margin-bottom: 5px;
        font-weight: 600;
        color: #333;
      }

      .quantity-text {
        font-size: 13px;
        color: #777;
        margin-bottom: 6px;
      }

      .btns-boxed {
        margin-top: 12px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
      }

      .btns-boxed li {
        list-style: none;
      }

      .btns-boxed li a {
        display: block !important;
        text-align: center !important;
        padding: 12px 20px !important;
        border-radius: 10px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        transition: all 0.3s ease-in-out !important;
        min-width: 100px;
        background: linear-gradient(to right, #fcab17, #145da0) !important;
        color: #fff !important;
        box-shadow: 0 4px 10px rgba(0, 86, 179, 0.15) !important;
        position: relative !important;
        overflow: hidden !important;
        z-index: 1 !important;
      }

      /* Swipe effect using ::before */
      .btns-boxed li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #145da0, #fcab17);
        transition: left 0.4s ease;
        z-index: -1;
      }

      /* Hover Effect */
      .btns-boxed li a:hover::before {
        left: 0;
      }

      .btns-boxed li a:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 86, 179, 0.3);
      }

      .login-panel {
        background: #ffffff;
        padding: 24px 20px;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
        text-align: center;
        max-width: 320px;
        margin: 0 auto;
        transition: all 0.3s ease-in-out;
      }

      .login-panel h4 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #333;
      }

      .login-panel p {
        font-size: 1rem;
        color: #666;
        margin-bottom: 20px;
      }

      .auth-buttons {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
      }

      .auth-buttons a {
        padding: 10px 20px;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        min-width: 100px;
        text-align: center;
      }

      /* Common button styles */
      .btn-login,
      .btn-signup {
        position: relative;
        overflow: hidden;
        z-index: 1;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      /* Swipe effect using ::before */
      .btn-login::before,
      .btn-signup::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        z-index: -1;
        transition: left 0.4s ease;
      }

      /* Login button */
      .btn-login {
        position: relative;
        z-index: 1;
        color: #fcab17;
        /* replaced bg with text color */
        padding: 0.75rem 1.5rem;
        background-color: transparent;
        border: none;
        font-weight: 600;
        cursor: pointer;
        overflow: hidden;
        border-radius: 8px;
        transition: color 0.3s ease;
      }

      .btn-login::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #fcab17, #0056b3);
        /* border gradient */
        z-index: -2;
        border-radius: 8px;
        padding: 2px;
        /* makes room for inner fill */
        -webkit-mask:
          linear-gradient(#fff 0 0) content-box,
          linear-gradient(#fff 0 0);
        -webkit-mask-composite: destination-out;
        mask-composite: exclude;
      }

      .btn-login::after {
        content: '';
        position: absolute;
        inset: 0;
        background: transparent;
        z-index: -1;
        border-radius: 8px;
        transition: background 0.4s ease;
      }

      .btn-login:hover {
        color: #fcab17;
      }

      .btn-login:hover::before {
        left: 0;
      }

      .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 86, 179, 0.3);
        color: #fcab17;
      }

      .btn-signup {
        position: relative;
        display: inline-block;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(to right, #fcab17, #145da0);
        border: none;
        border-radius: 6px;
        overflow: hidden;
        z-index: 1;
        cursor: pointer;
        transition: all 0.4s ease;
      }



      .btn-signup:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 86, 179, 0.3);
        color: white;
      }

      /* ================================
   TOP MOVING OFFER BAR (FIXED)
   ================================ */

      .top-offer-bar {
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: 360px;
        /* keeps it compact */
        overflow: hidden;
      }

      /* OFFER badge */
      .offer-badge {
        background: #e60023;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        padding: 2px 10px;
        border-radius: 6px;
        line-height: 1.2;
        white-space: nowrap;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
      }

      /* Marquee container */
      .offer-marquee {
        position: relative;
        width: 240px;
        /* IMPORTANT: controls visibility */
        height: 22px;
        /* SMALL HEIGHT like reference */
        overflow: hidden;
      }

      /* Moving text */
      .offer-marquee-track {
        position: absolute;
        left: 100%;
        top: 0;
        white-space: nowrap;
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
        line-height: 22px;
        animation: offerScroll 8s linear infinite;
      }

      /* Animation */
      @keyframes offerScroll {
        0% {
          transform: translateX(0);
        }

        100% {
          transform: translateX(-160%);
        }
      }

      /* Pause on hover */
      .top-offer-bar:hover .offer-marquee-track {
        animation-play-state: paused;
      }

      /* Hide on mobile (matches your logic) */
      @media (max-width: 768px) {
        .top-offer-bar {
          display: none !important;
        }
      }

      @media (max-width: 768px) {
        .cart-box {
          margin-top: 0px !important;
        }

        .mobile-nav-toggler {
          padding: 0px !important;
        }

        .outer-container {
          padding: 0px 15px 0px 15px !important;
        }

      }

      /* HEADER ORDER NOW BUTTON (COMPACT) */
      .header-order a {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;

        padding: 8px 20px;
        height: 38px;
        min-width: 120px;

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

        color: #ffffff !important;
        background: linear-gradient(135deg, #5b22c6, #145da0) !important;

        border-radius: 10px;
        text-decoration: none !important;

        box-shadow: 0 6px 14px rgba(74, 23, 163, 0.3);
        transition: all 0.25s ease;
      }

      /* Hover effect */
      .header-order a:hover {
        background: linear-gradient(135deg, #145da0, #3d1288) !important;
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(74, 23, 163, 0.4);
      }

      /* Mobile adjustment */
      @media (max-width: 992px) {
        .header-order a {
          padding: 7px 18px;
          height: 36px;
          font-size: 13px;
        }
      }

      @keyframes microSlide {
        0% {
          transform: translateY(0);
        }

        50% {
          transform: translateY(-3px);
        }

        100% {
          transform: translateY(0);
        }
      }

      .header-order a {
        animation: microSlide 2.8s ease-in-out infinite;
      }

      .header-order a:hover {
        animation-play-state: paused;
      }
        :root {
        --brand-purple: #fcab17;
        --strip-bg: #e9f7fe;
        --text: #111827;
        --muted: #374151;
        --link: #0b6bd3;
      }

      .seo-readmore-section {
        padding: 18px 0 0;
        background: var(--strip-bg);
      }

      .seo-readmore-wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 18px;
      }

      .seo-readmore-card {
        border-radius: 14px;
        color: var(--text);
      }

      /* ✅ H2 main heading */
      .seo-readmore-title {
        color: var(--text);
        font-size: 20px;
        margin: 16px 0 8px;
        font-weight: 600;
        line-height: 1.3;
      }

      /* ✅ preview smaller than heading */
      .seo-readmore-preview {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        /* change to 2 if needed */
        -webkit-box-orient: vertical;
        overflow: hidden;

        font-size: 13.5px;
        line-height: 1.85;
        color: var(--muted);
        margin: 0;
      }

      .seo-readmore-actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
      }

      .seo-readmore-btn {
        border: none;
        background: transparent;
        color: var(--link);
        font-weight: 800;
        font-size: 13.5px;
        cursor: pointer;
        padding: 6px 0;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
      }

      .seo-readmore-btn:hover {
        color: #094f9b;
      }

      .seo-readmore-btn .chev {
        width: 18px;
        height: 18px;
        border-radius: 999px;
        background: rgba(17, 24, 39, .08);
        display: grid;
        place-items: center;
        transition: transform .25s ease;
      }

      .seo-readmore-btn[aria-expanded="true"] .chev {
        transform: rotate(180deg);
      }

      .seo-readmore-btn svg {
        width: 14px;
        height: 14px;
        color: var(--text);
        opacity: .85;
      }

      /* ✅ Expand area */
      .seo-readmore-content {
        margin-top: 12px;
        color: var(--text);
        font-size: 13.5px;
        /* ✅ smaller text */
        line-height: 1.95;

        max-height: 0;
        overflow: hidden;
        transition: max-height .55s ease;
      }

      .seo-readmore-content.open {
        max-height: 15000px;
      }

      /* ✅ All sub headings must be H3 now */
      .seo-readmore-content h3 {
        color: var(--text);
        font-size: 16px;
        margin: 16px 0 8px;
        font-weight: 600;
        line-height: 1.3;
      }

      .seo-readmore-content h2 {
        color: var(--text);
        font-size: 20px;
        margin: 16px 0 8px;
        font-weight: 600;
        line-height: 1.3;
      }

      .seo-readmore-content p {
        margin: 0 0 10px;
        color: var(--text);
        font-size: 13.5px;
        line-height: 1.95;
      }

      .seo-readmore-content ul {
        margin: 8px 0 14px 18px;
        padding: 0;
        color: var(--text);
        font-size: 13.5px;
        line-height: 1.9;
      }

      .seo-readmore-content li {
        margin: 6px 0;
      }

      .seo-readmore-content strong {
        color: var(--text);
        font-weight: 600;
      }

      .seo-readmore-bottom {
        margin-top: 14px;
        display: flex;
        justify-content: flex-end;
      }

      @media(max-width:640px) {

        .seo-readmore-title,
        .seo-readmore-content h2 {
          font-size: 17px;
        }

        .seo-readmore-preview,
        .seo-readmore-content,
        .seo-readmore-content p,
        .seo-readmore-content ul {
          font-size: 13px;
        }

        .seo-readmore-content h3 {
          font-size: 15px;
        }
      }

/* ========== Index page: Hero & form (from index.php) ========== */
:root {
  --index-text: #0f172a;
  --index-muted: #64748b;
  --index-accent: #fcab17;
  --index-accent-2: #145da0;
}

/* Mini-quote form */
.mini-quote {
  width: 440px;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .9) 0%, rgba(237, 231, 248, .7) 100%);
  border: 1px solid rgba(255, 255, 255, .5);
  box-shadow: 0 10px 30px rgba(2, 6, 23, .08);
  position: relative;
}

.mini-offer {
  width: 100%;
  justify-content: center;
  position: absolute;
  height: 48px;
  width: 300px;
  top: -25px;
  right: 0;
  z-index: 5;
  pointer-events: none;
}

.mini-offer__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-top-right-radius: 10px;
}

.mini-quote__tagline {
  padding-top: 16px;
  font-size: 18px;
  color: var(--index-accent);
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.mini-quote__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 10px;
}

.mini-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 1px;
  color: #333;
}

.mini-field input,
.mini-field select {
  width: 100%;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--index-accent);
  padding: 0 10px;
  font-size: 13px;
  outline: none;
  background: #fff;
}

.mini-field--pages {
  grid-column: 1 / -1;
}

.phone-field {
  position: relative;
  display: flex;
  border-radius: 8px;
  border: 1px solid var(--index-accent);
  background: #fff;
  overflow: visible;
}

.cc-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 6px;
  background: #f1f5f9;
  border: none;
  border-right: 1px solid #ddd;
  cursor: pointer;
  font-weight: 700;
  min-width: 70px;
  height: 34px;
  font-size: 12px;
}

.phone-field input[type="tel"] {
  flex: 1;
  border: none !important;
  height: 34px;
  padding: 0 8px;
}

.cc-menu {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999;
}

.cc-menu.open {
  display: block;
}

.cc-list {
  max-height: 180px;
  overflow-y: auto;
}

.cc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  cursor: pointer;
  font-size: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.pages-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--index-accent);
  border-radius: 8px;
  height: 36px;
  background: #fff;
}

.pg-btn {
  width: 36px;
  height: 100%;
  border: none;
  background: #f8fafc;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.pg-mid {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}

.pg-muted {
  color: var(--index-muted);
  font-size: 10px;
}

.mini-policy {
  margin-top: 6px;
  font-size: 11px;
}

.mini-submit {
  width: 100%;
  height: 40px;
  margin-top: 10px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(63, 21, 154, 0.85), rgba(14, 143, 206, 0.85));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(63, 21, 154, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s;
}

.mini-submit:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(63, 21, 154, 1), rgba(14, 143, 206, 1));
}

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px 12px;
  background: #ef4444;
  color: #fff;
  border-radius: 8px;
  display: none;
  z-index: 10000;
  font-size: 12px;
}

.toast.success {
  background: #22c55e;
}

.mini-error {
  margin-top: 4px;
  font-size: 11px;
  color: #ef4444;
  font-weight: 600;
  line-height: 1.2;
}

.mini-field.has-error input,
.mini-field.has-error select,
.mini-field.has-error .phone-field {
  border-color: #ef4444 !important;
}

@media (max-width: 600px) {
  .mini-quote {
    width: 100%;
    padding: 10px 12px;
  }
  .mini-quote__grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .mini-offer {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(290px, 92%);
    top: -16px;
    height: 42px;
  }
  .mini-quote__tagline {
    padding-top: 18px;
    font-size: 16px;
  }
}

/* Hero section */
.bg-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 1rem;
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px inset;
  background-image: url(../bg/hero-bg.jpg);
}

.bg-hero::before {
  content: "";
  position: absolute;
  inset: -50%;
  z-index: 0;
}

@keyframes backgroundShift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(3deg); }
  66% { transform: translate(-20px, 20px) rotate(-3deg); }
}

.bg-hero .shape {
  position: absolute;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

.bg-hero .shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #174dbe, #133eac);
  border-radius: 50%;
  top: 8%;
  left: 4%;
  animation: float 15s ease-in-out infinite;
  filter: blur(1px);
}

.bg-hero .shape-2 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 55%;
  right: 6%;
  animation: float 12s ease-in-out infinite reverse;
  filter: blur(1px);
}

.bg-hero .shape-3 {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  bottom: 10%;
  left: 14%;
  animation: float 18s ease-in-out infinite;
  filter: blur(1px);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

.container-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  padding: 0 0.5rem;
}

.hero-content {
  display: flex;
  align-items: stretch;
  gap: 2rem;
}

.hero-content > .content-column {
  flex: 1 1 55%;
  max-width: 55%;
}

.hero-content > .form-column {
  flex: 0 0 auto;
  margin-left: auto;
}

.form-column .form-container {
  width: min(420px, 100%);
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }
  .hero-content > .content-column,
  .hero-content > .form-column {
    max-width: 100%;
    margin-left: 0;
  }
}

.form-container {
  margin: auto;
  display: flex;
  justify-content: center;
}

.main-heading {
  background: linear-gradient(to bottom, #fcab17, #d4d4d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.content-paragraph p {
  font-size: 1.1rem;
  line-height: 1.3;
  color: #efefef;
  margin-bottom: 1rem;
  text-align: justify;
}

.content-list-item {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.content-list {
  padding-left: 20px;
  margin: 0;
}

.content-list li {
  color: #333;
  list-style-type: square;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  align-items: stretch;
  margin-top: 40px;
}

.trust-card-hero {
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  border: 1px solid rgba(63, 21, 154, 0.14);
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.10);
  position: relative;
  min-height: 160px;
  height: 100%;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(6px);
}

a.trust-card-hero {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #374151;
  text-decoration: none;
}

a.trust-card-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.10);
}

.trust-card-hero-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
}

.trust-card-hero-sub {
  margin: 0;
  font-size: 15px;
}

.spinner {
  display: none;
}

.spinner.visible {
  display: inline;
}

@media (max-width: 900px) {
  .trust-cards {
    grid-template-columns: 1fr;
  }
  .trust-card-hero {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 2rem;
  }
  .content-paragraph p {
    font-size: 0.9rem;
    text-align: left;
    margin-bottom: 0.25rem;
  }
  .content-list li {
    font-size: 0.70rem;
  }
  .content-list-item {
    gap: 0.25rem;
  }
  .Trusted-paragraph {
    margin-top: 0.20rem;
    font-size: 0.70rem;
  }
}

@media (max-width: 600px) {
  .bg-hero {
    padding: 2.25rem 0.25rem 1rem;
  }
  .main-heading {
    font-size: 1.5rem;
  }
  .content-list-item {
    gap: 0.25rem;
  }
}

@media (max-width: 1154px) {
  .content-list-item {
    gap: 0;
  }
}

/* Process section */
.process-section {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 50%, #fce7f3 100%);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.12), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.12), transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.12), transparent 50%);
  animation: processBgMove 20s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes processBgMove {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(3deg); }
  66% { transform: translate(-20px, 20px) rotate(-3deg); }
}

.process-shape {
  position: absolute;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

.process-shape.shape-1 {
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  border-radius: 50%;
  top: 10%;
  left: 5%;
  animation: processFloat 15s ease-in-out infinite;
}

.process-shape.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 60%;
  right: 8%;
  animation: processFloat 12s ease-in-out infinite reverse;
}

.process-shape.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  bottom: 10%;
  left: 15%;
  animation: processFloat 18s ease-in-out infinite;
}

@keyframes processFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

.process-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.process-wrap {
  position: relative;
  margin-top: 36px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  margin-bottom: 26px;
  align-items: stretch;
}

.process-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 44px;
  color: #fcab17;
  opacity: 0.35;
  animation: processArrowPulse 2s ease-in-out infinite;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.process-arrow.arrow-1 { left: 29%; }
.process-arrow.arrow-2 { right: 33%; }

@keyframes processArrowPulse {
  0%, 100% { opacity: 0.35; transform: translateY(-50%) translateX(0); }
  50% { opacity: 0.75; transform: translateY(-50%) translateX(10px); }
}

.process-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 34px 24px 26px;
  text-align: center;
  border: 1px solid rgba(63, 21, 154, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease, border-color 0.35s ease;
  animation: processFadeInUp 0.85s ease-out backwards;
  min-height: 260px;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #fcab17, #145da0, #fcab17);
  border-radius: 22px;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  z-index: -1;
}

.process-card:hover::before {
  opacity: 1;
  animation: processRotateBorder 3s linear infinite;
}

@keyframes processRotateBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.process-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(14, 143, 206, 0.26);
  box-shadow: 0 20px 50px rgba(63, 21, 154, 0.18);
}

.process-step {
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fcab17, #145da0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 26px;
  box-shadow: 0 10px 26px rgba(63, 21, 154, 0.24);
  transition: transform 0.55s ease, box-shadow 0.55s ease;
  position: relative;
  z-index: 1;
}

.process-card:hover .process-step {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 14px 36px rgba(14, 143, 206, 0.30);
}

.process-card h3 {
  background: linear-gradient(to bottom, #fcab17, #145da0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}

.process-card p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #1f2937;
  margin: 0;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

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

.process-steps .process-card:nth-of-type(1) { animation-delay: 0.15s; }
.process-steps .process-card:nth-of-type(2) { animation-delay: 0.35s; }
.process-steps .process-card:nth-of-type(3) { animation-delay: 0.55s; }

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-arrow {
    display: none;
  }
  .process-card {
    text-align: left;
    padding: 24px 18px 18px;
    min-height: unset;
  }
  .process-step {
    margin: 0 0 12px;
    width: 64px;
    height: 64px;
    font-size: 22px;
  }
  .process-card h3 { font-size: 18px; }
  .process-card p { font-size: 0.92rem; }
}

/* Stats section */
.stats-strip-section {
  padding: 50px 0;
}

.stats-strip-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 14px;
}

.stats-strip {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 22px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.32);
  padding: 18px 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  overflow: hidden;
}

.stats-item {
  text-align: center;
  padding: 12px 16px;
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  animation: statsItemIn 0.6s ease-out forwards;
}

.stats-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: rgba(17, 24, 39, 0.25);
}

.stats-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #fcab17;
  margin: 0 0 8px;
}

.stats-accent {
  color: #145da0;
  font-weight: 800;
}

.stats-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.stats-item:nth-child(1) { animation-delay: 0.10s; }
.stats-item:nth-child(2) { animation-delay: 0.20s; }
.stats-item:nth-child(3) { animation-delay: 0.30s; }
.stats-item:nth-child(4) { animation-delay: 0.40s; }

@keyframes statsItemIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px 10px;
  }
  .stats-item:not(:last-child)::after {
    display: none;
  }
  .stats-item {
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: 16px;
  }
  .stats-number { font-size: 38px; }
  .stats-label { font-size: 16px; }
}

@media (max-width: 480px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }
  .stats-number { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .stats-item {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* Reviews slider (student reviews) */
.reviews-slider-section {
  background: #fbf7f6;
  padding: 30px 0;
}

.reviews-slider-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

.reviews-swiper {
  position: relative;
  padding: 18px 6px 24px;
}

.swiper.reviewsSwiper {
  padding: 10px !important;
}

.reviews-slide {
  height: auto;
}

.reviews-card {
  background: #fff;
  border-radius: 22px;
  padding: 26px 26px 24px;
  border: 1px solid rgba(15, 27, 61, 0.06);
  box-shadow: 0 5px 3px 1px rgba(0, 0, 0, 0.10);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.reviews-card:hover {
  border-color: rgba(110, 64, 201, 0.18);
}

.reviews-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.reviews-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 44px;
  background: #e9edf7;
  border: 2px solid rgba(110, 64, 201, 0.20);
}

.reviews-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviews-name {
  font-size: 20px;
  font-weight: 600;
  color: #0f1b3d;
  margin: 0;
  line-height: 1.1;
}

.reviews-meta {
  margin: 3px 0 0;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.1;
  font-weight: 400;
}

.reviews-text {
  font-size: 0.9rem !important;
  line-height: 1.5;
  color: #333;
  text-align: justify;
  margin-bottom: 15px;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: 0.2s ease;
  user-select: none;
}

.reviews-nav:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(110, 64, 201, 0.35);
}

.reviews-prev { left: -10px; }
.reviews-next { right: -10px; }

.reviews-nav.swiper-button-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.reviews-nav span {
  font-size: 26px;
  line-height: 1;
  color: #58607a;
  user-select: none;
}

@media (max-width: 1024px) {
  .reviews-text { font-size: 18px; }
  .reviews-prev { left: -6px; }
  .reviews-next { right: -6px; }
}

@media (max-width: 640px) {
  .reviews-text { font-size: 17px; }
  .reviews-nav {
    width: 42px;
    height: 42px;
  }
}

/* University section */
.university-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
  background-color: #2a7c9c;
}

.university-section::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.12), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.12), transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.12), transparent 50%);
  animation: bgShift 20s ease-in-out infinite;
  z-index: 0;
}

.uni-shape {
  position: absolute;
  opacity: 0.12;
  z-index: 0;
}

.uni-shape-1 {
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  border-radius: 50%;
  top: 10%;
  left: 5%;
  animation: float 15s ease-in-out infinite;
}

.uni-shape-2 {
  width: 210px;
  height: 210px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-radius: 40%;
  top: 60%;
  right: 8%;
  animation: float 12s ease-in-out infinite reverse;
}

.uni-shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  bottom: 12%;
  left: 15%;
  animation: float 18s ease-in-out infinite;
}

.uni-wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  padding: 0 18px;
}

.university-card {
  display: inline-block;
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(50deg, #fcab17, white, #fcab17);
}

.university-inner {
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  width: 200px;
  height: 80px;
}

.university-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.university-marquee {
  display: grid;
  gap: 20px;
}

.university-marquee-row {
  overflow: hidden;
  white-space: nowrap;
}

.university-marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: scroll-left 20s linear infinite;
}

.university-marquee-row.right-left .university-marquee-track {
  animation: scroll-right 20s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(-30%); }
  100% { transform: translateX(0%); }
}

@keyframes scroll-right {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-80%); }
}

@media (max-width: 768px) {
  .university-inner {
    width: 150px;
    height: 65px;
  }
}

/* Services tabs */
.services-tabs-section {
  padding: 40px 0;
  background: #2a5e9c;
}

.services-tabs-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.services-tabs-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 18px;
}

.services-tabs-left {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 16px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.32);
  padding: 18px 14px;
  position: relative;
}

.services-tabs-left:before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 90px;
  height: 26px;
  background: radial-gradient(circle at 10px 10px, rgba(63, 21, 154, 0.12) 2px, transparent 3px) 0 0/12px 12px;
  opacity: 0.9;
  pointer-events: none;
}

.services-tabs-left-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 14px;
  padding-left: 4px;
  font-size: 13px;
}

.services-tabs-left-title .pen {
  width: 18px;
  height: 18px;
  color: var(--brand-purple);
}

.services-tab-btn {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: #fff;
  border-radius: 8px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: 0.2s ease;
  margin-bottom: 12px;
}

.services-tab-btn:last-child {
  margin-bottom: 0;
}

.services-tab-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(63, 21, 154, 0.35);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.32);
}

.services-tab-btn.active {
  border-color: #fcab17;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.32);
}

.services-tab-ic {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  color: var(--brand-purple);
}

.services-tab-ic svg {
  width: 26px;
  height: 26px;
}

.services-tab-text {
  font-weight: 600;
  color: black;
  font-size: 18px;
  line-height: 1;
}

.services-tabs-right {
  background: #f1f1f1;
  border-radius: 10px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.services-tabs-right:after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 220px;
  height: 220px;
  opacity: 0.12;
  background: radial-gradient(closest-side, rgba(63, 21, 154, 0.35), transparent 65%);
  pointer-events: none;
}

.services-content {
  display: none;
  position: relative;
  z-index: 1;
}

.services-content.active {
  display: block;
}

.services-content h3 {
  margin: 0 0 8px;
  color: #fcab17;
  font-weight: 600;
}

.services-content p {
  margin: 0 0 16px;
  color: #111827;
  line-height: 1.7;
  font-size: 15px;
  max-width: 900px;
}

.services-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 22px;
  margin-top: 10px;
  margin-bottom: 22px;
}

.services-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111827;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.services-check .tick {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  display: grid;
  place-items: center;
  flex: 0 0 18px;
}

.services-check .tick svg {
  width: 12px;
  height: 12px;
  color: #16a34a;
}

@media (max-width: 1024px) {
  .services-tabs-grid {
    grid-template-columns: 1fr;
  }
  .services-tabs-left { order: 1; }
  .services-tabs-right { order: 2; }
  .services-checklist { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .services-tabs-right { padding: 18px; }
  .services-tab-text { font-size: 16px; }
  .services-checklist { grid-template-columns: 1fr; }
  .services-check { white-space: normal; }
}

/* Sample page (subjects section wrapper) */
.sample-page {
  position: relative;
  overflow: hidden;
  padding: 40px 18px;
  background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 50%, #fce7f3 100%);
}

.sample-page::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.10), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.10), transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.10), transparent 50%);
  animation: sampleBgMove 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes sampleBgMove {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -25px) rotate(2deg); }
  66% { transform: translate(-20px, 20px) rotate(-2deg); }
}

.sample-page .sample-shape {
  position: absolute;
  opacity: 0.12;
  border-radius: 50%;
  z-index: 0;
}

.sample-page .sample-shape.shape-1 {
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  top: 10%;
  left: 5%;
  animation: sampleFloat 15s ease-in-out infinite;
}

.sample-page .sample-shape.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  top: 60%;
  right: 8%;
  animation: sampleFloat 12s ease-in-out infinite reverse;
}

.sample-page .sample-shape.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  bottom: 10%;
  left: 15%;
  animation: sampleFloat 18s ease-in-out infinite;
}

@keyframes sampleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.card-container {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.card-wrap {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  width: 260px;
  background: #6B4FA7;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  transform: translateY(-10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #DCCCFF;
  border-radius: 10px;
  transform: rotate(-7deg);
  z-index: -1;
  transition: transform 0.25s ease;
}

.card-wrap:hover .card {
  transform: translateY(-18px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.card-wrap:hover .card::after {
  transform: rotate(-9deg);
}

.card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  border-bottom: 2px solid #000;
}

.info {
  font-size: 14px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
}

.view-button {
  display: block;
  text-align: center;
  background: #6C49B8;
  color: #fff;
  padding: 8px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: transform 0.2s ease;
}

.view-button:hover {
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .card-container {
    flex-wrap: wrap;
    gap: 40px;
  }
  .card-wrap {
    flex: 0 0 45%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
  }
  .card-wrap {
    flex: 0 0 100%;
  }
}

/* Subjects icon grid */
.subjects-icon-section {
  padding: 50px 0;
  background: #fff;
}

.custom-icon-size {
  margin: 0;
  scale: 0.9;
}

.subjects-icon-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.subjects-icon-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 34px;
  align-items: start;
}

.subject-link {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.subject-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background-color: rgba(63, 21, 154, 0.10);
  border: 1px solid rgba(63, 21, 154, 0.12);
  box-shadow: 0 10px 22px rgba(63, 21, 154, 0.08);
  transition: 0.22s ease;
  background-image: url(../media/layout/subject/subjecticons.webp);
  background-repeat: no-repeat;
  background-size: calc(6 * 95px) auto;
}

.subject-label {
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  margin: 0;
  text-align: center;
  line-height: 1.1;
}

.subject-link:hover .subject-icon {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(63, 21, 154, 0.14);
  border-color: rgba(63, 21, 154, 0.22);
  background-color: rgba(63, 21, 154, 0.12);
}

.subject-link:hover .subject-label {
  color: #fcab17;
}

.icon-engineering { background-position: -53px -85px; }
.icon-business { background-position: -165px -85px; }
.icon-management { background-position: -291px -85px; }
.icon-accounting { background-position: -411px -85px; }
.icon-law { background-position: -54px -169px; }
.icon-healthcare { background-position: -165px -169px; }
.icon-it { background-position: -290px -169px; }
.icon-psychology { background-position: -412px -169px; }
.icon-math { background-position: -54px -258px; }
.icon-finance { background-position: -165px -258px; }
.icon-marketing { background-position: -291px -258px; }
.icon-science { background-position: -411px -258px; }

@media (max-width: 1100px) {
  .subjects-icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .subjects-icon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 18px;
  }
  .subject-label {
    font-size: 13px;
  }
}

/* New blog section */
.new-blog-section {
  padding: 30px 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.new-blog-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
}

.new-blog-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
}

.new-blog-card .media {
  position: relative;
}

.new-blog-card .media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 25px;
}

.new-blog-card .date {
  position: absolute;
  right: 14px;
  bottom: -26px;
  background: #fff;
  font-size: 12px;
  color: #555;
}

.new-blog-card .content {
  padding: 30px 18px 20px;
}

.new-blog-card h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  margin: 10px 0 12px;
}

.new-blog-card p {
  color: #444;
  line-height: 1.55;
  margin: 0 0 16px;
}

.new-blog-btn {
  display: inline-block;
  margin-top: 20px;
  background: #1C2C59;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: none;
}

.new-blog-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-20deg);
  transition: 0.6s;
}

.new-blog-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 18px rgba(28, 44, 89, 0.6);
  background-position: right center;
}

.new-blog-btn:hover::before {
  left: 200%;
}

.swiper {
  padding: 6px 6px 25px !important;
}

.swiper-slide {
  height: auto !important;
}

.blog-nav {
  display: flex;
  gap: 10px;
}

.blog-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
}

.blog-nav svg {
  width: 18px;
  height: 18px;
}

.swiper-pagination-bullet {
  background: #cfd5ff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #0d3bff;
}

.new-blog-card h3,
.new-blog-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .new-blog-card h3 { font-size: 22px; }
  .new-blog-card .media img { height: 190px; }
  .new-blog-section { padding: 20px 17px; }
}

/* New FAQ section */
.new-faq-section {
  padding: 30px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.new-faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
}

@media (max-width: 880px) {
  .new-faq-container {
    grid-template-columns: 1fr;
  }
}

.new-faq-text {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-top: -5px;
  margin-bottom: 20px;
}

.new-faq-graphic {
  text-align: center;
}

.new-faq-graphic img {
  width: 300px;
  max-width: 100%;
}

.new-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.new-faq-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.new-faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 16px;
  text-align: left;
  font-size: 18px;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.new-faq-btn p {
  transform: rotate(320deg);
  flex-shrink: 0;
  margin: 0;
}

.new-faq-btn span {
  font-weight: bold;
  flex-shrink: 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  height: 20px;
  width: 20px;
  background-color: #fcab17;
  border-radius: 50%;
  transition: transform 1s ease;
  transform: rotate(40deg);
}

.new-faq-btn.active span {
  transform: rotate(175deg);
  color: white;
}

.new-faq-btn.active {
  background: #e9f7fe;
  color: black;
}

.new-faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  transition: max-height 0.7s ease, padding 0.3s ease;
}

.new-faq-content.open {
  padding: 0 16px 14px;
  margin-bottom: 15px;
  background: #e9f7fe;
  color: black;
}

@media (max-width: 768px) {
  .new-faq-section {
    padding: 30px 3px;
  }
}

/* Utility classes (replaced inline styles) */
.review-link {
  color: black;
  text-decoration: none;
}

.review-box-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.page-section-clear {
  background: none;
  padding: 0;
  position: relative;
  z-index: 1;
}

.stars-right {
  text-align: right;
}

.star-gold {
  color: gold;
}

.expert-desc-margin {
  margin: 15px 0 8px;
}

.text-right {
  text-align: right;
}

.faq-cta-wrap {
  display: flex;
  width: 100%;
  justify-content: center;
}

.sample-inner-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-center {
  display: flex;
  justify-content: center;
}

.table-wrap {
  overflow-x: auto;
  margin: 40px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
  border: 2px solid #1b5e20;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

.comparison-table thead th {
  padding: 18px;
  text-align: left;
  background: #f1f3f5;
  border-bottom: 2px solid #ccc;
  font-weight: 700;
}

.comparison-table thead th:first-child {
  padding: 18px;
  text-align: left;
  background: #f1f3f5;
  border-bottom: 2px solid #ccc;
  font-weight: 700;
}

.comparison-table thead th:nth-child(2) {
  padding: 18px;
  text-align: center;
  background: #fff0f0;
  border-left: 1px solid #ccc;
  border-bottom: 2px solid #ccc;
  color: #b00020;
  font-weight: 700;
}

.comparison-table thead th:nth-child(3) {
  padding: 18px;
  text-align: center;
  background: #388e3c;
  color: #ffffff;
  border-left: 2px solid #1b5e20;
  border-bottom: 2px solid #1b5e20;
  font-weight: 700;
}

.comparison-table .th-sub {
  font-size: 13px;
  font-weight: 400;
}

.comparison-table tbody td {
  padding: 16px;
  border-bottom: 1px solid #ddd;
}

.comparison-table tbody td.td-center {
  padding: 16px;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.comparison-table tbody td.td-highlight {
  padding: 16px;
  border-left: 2px solid #1b5e20;
  border-bottom: 1px solid #ddd;
  text-align: center;
  font-weight: 600;
  color: #1b5e20;
}

.comparison-table tbody tr.alt-row {
  background: #fafafa;
}

.comparison-table tbody td.td-highlight-last {
  padding: 16px;
  border-left: 2px solid #1b5e20;
  text-align: center;
  font-weight: 600;
}

.comparison-table tbody tr:last-child td:first-child {
  padding: 16px;
}

.comparison-table tbody tr:last-child td.td-center {
  padding: 16px;
  border-left: 1px solid #ddd;
  text-align: center;
}

/* ========== Coursework Writing Help Page ========== */
/* Head: animations, whatsapp, body, banner, promo, loader */
@keyframes fall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

@media screen and (max-width: 768px), screen and (min-width: 768px) {
  .whatsapp_float {
    position: fixed;
    text-align: left;
    bottom: 25px;
    z-index: 25;
    pointer-events: none;
  }
}

body {
  font-family: 'Arial', sans-serif;
  font-display: swap;
}

.banner-section-three h1 {
  font-size: 35px;
  font-weight: 600;
  color: #000;
  padding: 5px 0 15px;
  text-transform: uppercase;
  display: block;
  opacity: 1;
  transition: font-size 0.3s ease;
}

@media screen and (max-width: 768px) {
  .banner-section-three h1 {
    font-size: 24px;
    opacity: 0.9;
    padding: 3px 0 10px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .banner-section-three h1 {
    font-size: 24px;
    opacity: 0.8;
    padding: 2px 0 8px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    display: block;
  }
}

.promo-img {
  margin-top: -68px;
  margin-bottom: -24px;
  height: 122px;
  width: auto;
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .promo-img {
    height: 80px;
    margin-top: -50px;
    margin-bottom: -10px;
  }
}

@media only screen and (max-width: 768px) {
  .promo-img {
    height: 100px;
    margin-top: -40px;
    margin-bottom: -15px;
  }
}

@keyframes loader-figure {
  0% { height: 0; width: 0; background-color: #1976d2; }
  30% { height: 2em; width: 2em; background-color: transparent; border-width: 1em; opacity: 1; }
  100% { height: 2em; width: 2em; border-width: 0; opacity: 0; background-color: transparent; }
}

@keyframes loader-label {
  0% { opacity: .25; }
  30% { opacity: 1; }
  100% { opacity: .25; }
}

/* Logo & header */
.logo-box {
  margin: 4px !important;
  padding: 0 !important;
  display: flex;
}

.logo-box .logo img {
  width: 70px !important;
}

@media (max-width: 768px) {
  .logo-box .logo img { width: 60px !important; }
}

@media (max-width: 1100px) {
  .outer-box { display: none !important; }
}

@media screen and (max-width: 1023px) {
  .logo-box {
    width: 100%;
    text-align: center;
    padding: 0 !important;
    margin: 4px !important;
  }
  .main-header.header-style-three .header-lower .logo-box { background-color: transparent; }
  .logo { display: inline-block; }
}

.main-header.header-style-three .header-lower .logo-box { position: relative; }

.main-header.header-style-three .main-menu .navigation > li > a { padding: 10px 6px; }

.main-header.header-style-three.fixed-header {
  top: 0; left: 0; right: 0; width: 100%;
}

.navbar-collapse .navigation > li > ul > li > ul {
  max-height: 50vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}

.navbar-collapse .navigation > li > ul > li > ul > li > a,
.main-menu .navigation > li > ul > li > a {
  padding: 5px 10px;
  font-size: 13px;
}

.navbar-collapse .navigation .subject-dropdown > ul,
.navbar-collapse .navigation .city-dropdown > ul {
  max-height: 50vh;
  overflow: auto;
  scrollbar-width: none;
}

/* Top bar & offer (coursework page) */
.top-bar {
  background: #3F159A;
  color: #fff;
  font-size: 14px;
  padding: 2px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between !important;
  align-items: center;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  gap: 6px;
  transition: color 0.3s;
}

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

.contact-link i { font-size: 16px; }

.divider { color: rgba(255, 255, 255, 0.6); font-weight: bold; }

.offer-section {
  text-align: right;
  display: flex;
  align-items: center;
  gap: 4px;
}

.offer-section .offers a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
}

.offer-section .offers a:hover { color: #ffe600; }

.offer-text a {
  font-size: 16px;
  font-weight: 700;
  color: #ffe600;
  text-decoration: none;
  transition: color 0.3s;
}

.offer-text a:hover { color: #ffffff; }

.offers {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}

.offer-button {
  display: inline-block;
  padding: 1px 8px;
  margin: 4px 0;
  background-color: #e60023;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  animation: popIn 0.6s ease;
}

.offer-button:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 12px;
  }
  .contact-item { justify-content: space-between; width: 100%; gap: 8px; }
  .offer-section { display: none; }
  .main-header.header-style-three .inner-container { display: flex; }
}

@media (max-width: 480px) {
  .top-bar { font-size: 10px; }
  .contact-link i { font-size: 14px; }
}

/* Cart / login panels */
.cart-box { position: relative; }

.cart-panel {
  position: absolute !important;
  top: 40px !important;
  right: 0 !important;
  width: 260px !important;
  background: #fff !important;
  border-radius: 10px;
  border: 1px solid #e0e0e0 !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  z-index: 1000 !important;
  display: none;
  padding: 16px !important;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-box:hover .cart-panel {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.cart-product .inner { text-align: center; }

.cart-product .image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.cart-product h3 { font-size: 16px; margin-bottom: 5px; font-weight: 600; color: #333; }

.quantity-text { font-size: 13px; color: #777; margin-bottom: 6px; }

.btns-boxed {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.btns-boxed li { list-style: none; }

.btns-boxed li a {
  display: block !important;
  text-align: center !important;
  padding: 12px 20px !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out !important;
  min-width: 100px;
  background: linear-gradient(to right, #3F159A, #0E8FCE) !important;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.15) !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
}

.btns-boxed li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0E8FCE, #3F159A);
  transition: left 0.4s ease;
  z-index: -1;
}

.btns-boxed li a:hover::before { left: 0; }

.btns-boxed li a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 86, 179, 0.3);
}

.login-panel {
  background: #fff;
  padding: 24px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}

.login-panel h4 { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: #333; }

.login-panel p { font-size: 1rem; color: #666; margin-bottom: 20px; }

.auth-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.auth-buttons a {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  min-width: 100px;
  text-align: center;
}

.btn-login,
.btn-signup {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-login::before,
.btn-signup::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: left 0.4s ease;
}

.btn-login {
  position: relative;
  z-index: 1;
  color: #3F159A;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  transition: color 0.3s ease;
}

.btn-login::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #3F159A, #0056b3);
  z-index: -2;
  border-radius: 8px;
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.btn-login::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: -1;
  border-radius: 8px;
  transition: background 0.4s ease;
}

.btn-login:hover {
  color: #3F159A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 86, 179, 0.3);
}

.btn-login:hover::before { left: 0; }

.btn-signup {
  position: relative;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #3F159A, #0E8FCE);
  border: none;
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-signup::before { background: linear-gradient(135deg, #0E8FCE, #3F159A); }

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 86, 179, 0.3);
  color: white;
}

/* Top offer bar */
.top-offer-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 360px;
  overflow: hidden;
}

.offer-badge {
  background: #e60023;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 6px;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.offer-marquee {
  position: relative;
  width: 240px;
  height: 22px;
  overflow: hidden;
}

.offer-marquee-track {
  position: absolute;
  left: 100%;
  top: 0;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 22px;
  animation: offerScroll 8s linear infinite;
}

@keyframes offerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-160%); }
}

.top-offer-bar:hover .offer-marquee-track { animation-play-state: paused; }

@media (max-width: 768px) {
  .top-offer-bar { display: none !important; }
  .cart-box { margin-top: 0 !important; }
  .mobile-nav-toggler { padding: 0 !important; }
  .outer-container { padding: 0 15px !important; }
}

/* Header order button */
.header-order a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  height: 38px;
  min-width: 120px;
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  background: linear-gradient(135deg, #5b22c6, #4a17a3) !important;
  border-radius: 10px;
  text-decoration: none !important;
  box-shadow: 0 6px 14px rgba(74, 23, 163, 0.3);
  transition: all 0.25s ease;
  animation: microSlide 2.8s ease-in-out infinite;
}

.header-order a:hover {
  background: linear-gradient(135deg, #4a17a3, #3d1288) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(74, 23, 163, 0.4);
  animation-play-state: paused;
}

@keyframes microSlide {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

@media (max-width: 992px) {
  .header-order a { padding: 7px 18px; height: 36px; font-size: 13px; }
}

/* Hero section (coursework page) */
.bg-hero {
  background: url(../bg/hero-bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 3rem 2rem;
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px inset;
}

.container-section { max-width: 1200px; margin: auto; padding: 0 0.5rem; }

.hero-content {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideIn 0.8s ease-out 0.2s forwards;
}

.form-container { margin: auto; display: flex; justify-content: center; }

.main-heading {
  background: linear-gradient(to bottom, #3F159A, #0E8FCE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.content-paragraph p {
  font-size: 1.1rem;
  color: #333;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: justify;
}

.content-list-item { display: flex; flex-wrap: wrap; gap: 1.2rem; }

.content-list { padding-left: 20px; margin: 0; }

.content-list li {
  color: #333;
  list-style-type: square;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.Trusted-paragraph { margin-top: 1rem; font-size: 1rem; font-weight: 500; }

@keyframes fadeSlideIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-content { flex-direction: column; }
  .main-heading { font-size: 2rem; }
  .content-paragraph p { font-size: 0.70rem; text-align: left; margin-bottom: 0.25rem; }
  .content-list li { font-size: 0.70rem; }
  .content-list-item { gap: 0.25rem; }
  .Trusted-paragraph { margin-top: 0.20rem; font-size: 0.70rem; }
}

@media (max-width: 600px) {
  .bg-hero { padding: 0.25rem; }
  .main-heading { font-size: 1.4rem; }
  .content-list-item { gap: 0.25rem; }
}

@media (max-width: 1154px) {
  .content-list-item { gap: 0; }
}

/* How it works */
.how-it-works {
  padding: 2rem 1.5rem;
  background: #fff;
  text-align: center;
}

.video-column {
  flex: 1;
  max-width: 600px;
  text-align: center;
}

.video-column iframe { width: 100%; height: 315px; border-radius: 12px; }

.steps-column { flex: 1; max-width: 600px; text-align: left; }

.step { margin-bottom: 30px; }

.step-number { font-size: 28px; color: #315e9a; font-weight: bold; display: inline-block; margin-bottom: 8px; }

.step h3 { font-size: 22px; margin: 8px 0; color: #333; }

.step p { font-size: 16px; color: #555; line-height: 1.6; }

@media (max-width: 768px) {
  .step-number { font-size: 24px; }
  .step h3 { font-size: 20px; }
  .step p { font-size: 14px; }
  .place-order-btn { max-width: 220px; font-size: 14px; padding: 10px; }
  .video-column iframe { height: 250px; }
}

@media (max-width: 480px) {
  .step-number { font-size: 20px; }
  .step h3 { font-size: 18px; }
  .step p { font-size: 13px; }
  .place-order-btn { width: 200px; font-size: 13px; padding: 8px; }
  .video-column iframe { height: 200px; }
}

/* Testimonial / expert slider */
.testimonial-section-four { max-width: 100%; }

.star-rating { font-size: 20px; margin: 5px auto; color: gold; }

.expert-slider { overflow: hidden; position: relative; max-width: 1000px; margin: auto; }

.slider-container { display: flex; width: 200%; animation: slide 20s infinite linear; }

.expert-card {
  background: #fff;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  border: 2px solid #4821c3;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex: 0 0 20%;
  text-align: center;
  transition: 0.3s;
}

.expert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.expert-img {
  margin: 0 auto;
  height: 100px;
  width: 100px !important;
  border-radius: 50%;
  margin-bottom: 10px;
}

.expert-name { font-size: 1.2rem; font-weight: bold; margin-bottom: 10px; color: #4821c3; }

.expert-card p {
  font-size: 0.9rem !important;
  line-height: 1.5;
  color: #333;
  text-align: justify;
  margin-bottom: 15px;
}

.buttons { display: flex; margin: auto; font-size: 0.9rem; align-items: center; justify-content: center; gap: 8px; }

.hire-btn {
  background: #4821c3;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.hire-btn:hover {
  background: linear-gradient(135deg, #4821c3, #35189f);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: white;
  transform: translateY(-5px);
}

.about-btn {
  background: #fff;
  border: 3px solid #4821c3;
  color: #4821c3;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.about-btn:hover { background: #4821c3; color: white; }

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .expert-card { flex: 0 0 90%; margin: 0 auto 20px; }
  .expert-name { font-size: 1.2rem; margin-bottom: 10px; }
  .expert-card p { font-size: 0.7rem !important; line-height: 1.5; }
  .buttons { flex-direction: row; gap: 10px; }
  .hire-btn, .about-btn { width: 100%; font-size: 1rem; padding: 10px; }
}

@media (max-width: 480px) {
  .expert-card { flex: 0 0 100%; padding: 15px; margin: 0 auto 15px; }
  .expert-img { height: 70px; width: 70px !important; }
  .hire-btn, .about-btn { font-size: 0.7rem; padding: 6px; }
}

.custom-nav-btn { text-align: center; margin-top: 20px; }

.custom-nav-btn button {
  background: #6C63FF;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 8px;
  margin: 0 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-nav-btn button:hover { background: #5a52d1; }

/* Video section */
.video-section {
  background: none !important;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.video-box {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.video-box:hover { transform: scale(1.02); }

.video-box iframe { width: 100%; height: 315px; border: none; display: block; }

@media (max-width: 768px) {
  .video-box iframe { height: 250px; }
}

@media (max-width: 500px) {
  .video-box iframe { height: 200px; }
}

.owl-carousel.owl-centered .owl-stage {
  margin: 0 auto !important;
  display: flex;
  justify-content: center;
}

/* Upload / features */
.upload-btn { text-align: center; margin: -37px 0 20px; }

.mobile-slider { display: none; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1150px;
  margin: 1.5rem auto;
}

.feature-box {
  background: linear-gradient(135deg, #3F159A, #0E8FCE);
  color: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  margin-top: 20px;
  animation: fadeInUp 1s ease-in-out;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 30px;
  margin-bottom: 10px;
  background: #fffafa;
  color: rgb(30, 0, 90);
  display: inline-block;
  padding: 15px;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  position: relative;
  top: -50px;
  border: 11px double;
}

.feature-box h3 { font-size: 20px; font-weight: bold; color: #fff; margin-bottom: 10px; }

.feature-box p { font-size: 14px; }

.heading-text { margin-top: -50px; }

.paragraph-text { margin-top: 5px; }

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

@media (max-width: 767px) {
  .features-grid { display: none !important; }
  .mobile-slider {
    display: block;
    position: relative;
    width: 100%;
    height: 320px;
    padding: 8px;
    overflow: hidden;
  }
  .slider-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    margin-top: 35px;
    width: 100%;
  }
  .mobile-slider .feature-box {
    flex: 0 0 calc(100% - 20px);
    margin: 0 10px;
    padding: 20px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #3F159A, #0E8FCE);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
  }
  .slider-btn.prev { left: 10px; }
  .slider-btn.next { right: 10px; }
  .feature-icon { font-size: 25px; height: 80px; width: 80px; }
}

@media (max-width: 480px) {
  .place-order-btn { margin-top: 50px !important; }
  .feature-box { padding: 15px; }
  .feature-icon { font-size: 30px !important; }
  .feature-box h3 { font-size: 16px; }
  .feature-box p { font-size: 12px; }
}

/* Numbers section */
.numbers-section {
  background: #315e9a;
  max-width: 100%;
  padding: 30px 20px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  color: #1f1f1f;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #315e9a;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover { transform: translateY(-5px); }

.stat-card i { font-size: 36px; color: #315e9a; margin-bottom: 15px; }

.stat-number { font-size: 28px; font-weight: bold; color: #315e9a; margin-bottom: 10px; }

.stat-card p { font-size: 12px; font-weight: 500; line-height: 1.3; margin-bottom: 0 !important; }

@media (max-width: 768px) {
  .section-title { font-size: 20px; }
  .stats-container { gap: 15px; }
  .stat-card i { font-size: 28px; }
  .stat-number { font-size: 20px; }
  .stat-card { padding: 10px 5px; }
}

/* Promo banner */
.promo-banner-wrapper {
  padding: 2px;
  background: linear-gradient(90.2deg, rgba(1, 47, 95, 1) -0.4%, rgba(56, 141, 217, 1) 106.1%);
  border-radius: 10px;
  display: inline-block;
  margin: 2rem auto;
  transition: box-shadow 0.3s ease;
}

.promo-banner-wrapper:hover {
  box-shadow: 0 0 15px rgba(1, 47, 95, 0.3), 0 0 25px rgba(56, 141, 217, 0.4);
}

.promo-banner {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 1200px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  justify-content: space-around;
  overflow: hidden;
  animation: fadeInUp 1s ease-out forwards;
}

.promo-banner__image img { width: 300px; animation: bounce 3s infinite ease-in-out; }

.promo-banner__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}

.banner-heading {
  text-align: left;
  font-size: 28px;
  font-weight: 700;
  color: #1e1e2f;
}

@media (min-width: 768px) {
  .promo-banner { flex-direction: row; }
  .promo-banner__content { text-align: left; align-items: flex-start; }
}

@media (max-width: 767px) {
  .promo-banner__image img { width: 150px; }
  .promo-banner { gap: 0; }
  .promo-banner__content { align-items: center; text-align: center; }
  .banner-heading { font-size: 18px; text-align: center; }
  .promo-banner__content span { font-size: 14px; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Services slider */
.services-slider-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  padding: 10px 0 20px;
}

.service-item {
  background: white;
  border-radius: 10px;
  border: 2px solid rgb(63, 21, 154);
  box-shadow: 0 4px 8px rgba(63, 21, 154, 0.2);
  padding: 20px;
  height: 350px;
  overflow-y: auto;
  transition: transform 0.3s, box-shadow 0.3s;
  scrollbar-width: thin;
  scrollbar-color: #315e9a #f0f0f0;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(94, 44, 237, 0.3);
}

.service-item::-webkit-scrollbar { width: 8px; }

.service-item::-webkit-scrollbar-track { background: #f0f0f0; }

.service-item::-webkit-scrollbar-thumb {
  background-color: #315e9a;
  border-radius: 10px;
  border: 1.5px solid #f0f0f0;
}

.service-item::-webkit-scrollbar-thumb:hover { background-color: #35189f; }

.service-item h3 { font-weight: bold; font-size: 20px; color: #315e9a; margin-bottom: 10px; }

.service-item p { text-align: left; font-weight: 500; font-size: 1rem; }

.custom-nav {
  position: relative;
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 20px;
  background-color: transparent;
}

.custom-nav button {
  background: linear-gradient(135deg, #315e9a, #4821c3);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  outline: none;
}

.custom-nav button:hover {
  background: linear-gradient(135deg, #4821c3, #35189f);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(94, 44, 237, 0.4);
}

.custom-nav button i { pointer-events: none; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
}

.feature-list li { font-size: 14px; color: #333; display: flex; align-items: center; font-weight: 500; }

.feature-list i { color: #28a745; margin-right: 6px; font-size: 14px; }

.owl-nav { display: none !important; }

@media (max-width: 1024px) { .service-item { height: 330px; } }

@media (max-width: 768px) {
  .service-item { height: 300px; }
  .service-item h3 { font-size: 18px; }
}

@media (max-width: 480px) {
  .service-item { height: auto; }
  .service-item h3 { font-size: 16px; }
  .service-item p { font-size: 12px; }
}

/* Subjects section */
.subjects-section { background: #f7f9fc; max-width: 100%; }

.subjects-grid,
.subjects-grid-boost {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  flex-direction: row;
}

.subjects-list-container,
.subjects-list-container-boost {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 1rem;
}

.included-services-card {
  background: #fff;
  padding: 25px 30px;
  width: 400px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.card-title { font-size: 20px; font-weight: bold; text-align: center; margin-bottom: 15px; }

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

.service-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.prices { display: flex; gap: 8px; align-items: center; }

.old-price { text-decoration: line-through; color: #999; font-size: 14px; }

.tag {
  background: #fffaeb;
  color: #f97316;
  font-size: 13px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
}

.subjects-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  list-style: none;
  max-width: 700px;
  width: 100%;
  padding: 0;
  margin: 0;
}

.subjects-list li {
  background: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  text-align: left;
}

.subjects-list li a { text-decoration: none; color: #333; display: flex; align-items: center; width: 100%; }

.subjects-list li:hover {
  color: #6a36ff;
  background-color: #e8dbff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.subjects-list li:hover .circle { background: #4a25cc; transform: scale(1.1); }

.circle {
  background-color: #6a36ff;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .subjects-grid { flex-direction: column; align-items: center; }
  .included-services-card { width: 680px; }
  .subjects-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .subjects-list li { font-size: 13px; padding: 12px; }
  .included-services-card { width: 680px; }
  .circle { width: 26px; height: 26px; font-size: 12px; }
}

@media (max-width: 480px) {
  .card-title { font-size: 16px; }
  .included-services-card { width: 100%; }
  .service-list li { font-size: 12px; text-align: left; }
  .old-price { font-size: 12px; }
  .tag { font-size: 11px; padding: 2px 8px; }
  .circle { width: 24px; height: 24px; font-size: 11px; }
  .subjects-list { grid-template-columns: 1fr; gap: 10px; }
  .subjects-list li { font-size: 12px; padding: 10px; }
}

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

/* Review cards / slider */
.review-header {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.review-header span::before { content: "|"; margin: 0 4px; color: #666; }

.review-header span:first-child::before { content: ""; margin: 0; }

.review-reply {
  margin-top: 10px;
  padding-left: 20px;
  border-left: 2px solid #eee;
  font-size: 14px;
  color: #444;
}

.reply-header { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }

.reply-logo { width: 40px; height: 40px; object-fit: contain; }

.reply-author { font-weight: 600; color: #315e9a; }

.reply-body { display: flex; gap: 6px; align-items: flex-start; }

.reply-arrow { color: #315e9a; font-weight: bold; margin-top: 2px; }

.reply-text { margin: 0; line-height: 1.4; font-size: 16px; text-align: left; }

.read-more { color: #315e9a; font-weight: 600; cursor: pointer; margin-left: 5px; text-decoration: none; }

.read-more:hover { text-decoration: underline; }

.reply-inline { display: inline; white-space: nowrap; }

.slider-containers {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.cards-wrapper {
  height: auto;
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.slider-card {
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  border: 2px solid #7744e0;
  border-radius: 12px;
  padding: 20px;
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  height: auto;
  box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 2px 6px 2px;
}

.slider-card p {
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  color: #333;
  margin-bottom: 12px;
}

.stars { text-align: left; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); }

.review-text {
  height: 150px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  padding: 10px;
}

.review-text::-webkit-scrollbar { width: 4px; }

.review-text::-webkit-scrollbar-thumb { background-color: #9995a7; border-radius: 4px; }

.review-text::-webkit-scrollbar-track { background-color: #f1f1f1; }

.location-text {
  width: 100px;
  padding: 5px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3b1e9e;
  color: #fff !important;
}

.review-details {
  display: flex;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 10px;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  color: #333;
  margin: 10px 0;
}

.review-details p {
  margin: 0;
  padding: 8px 12px;
  background-color: #f1f1f1;
  border-radius: 8px;
  flex: 1 1 auto;
  text-align: center;
  min-width: 100px;
  color: #3b1e9d;
}

.controls { text-align: center; margin-top: 20px; }

.controls button {
  padding: 10px 20px;
  background: #5b21b6;
  color: white;
  border: none;
  border-radius: 25px;
  margin: 0 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.controls button:hover { background-color: #3f168f; }

@media (min-width: 768px) {
  .slider-card { flex: 0 0 calc((100% - 20px) / 2); max-width: calc((100% - 20px) / 2); }
}

@media (min-width: 1024px) {
  .slider-card { flex: 0 0 calc((100% - 40px) / 3); max-width: calc((100% - 40px) / 3); }
}

/* Custom slider / tabs */
.custom-slider-viewport { overflow: hidden; width: 100%; }

.custom-slider-tracks {
  display: flex;
  gap: 2px;
  transition: transform 0.4s ease;
}

.custom-cards {
  flex: 0 0 100%;
  padding: 20px;
  margin-right: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ddd;
  background: linear-gradient(to right, #3d1c9d, #5046a6, #1382c8);
  color: #fff;
}

@media (min-width: 768px) {
  .custom-cards { flex: 0 0 calc(50% - 20px); }
}

@media (min-width: 1024px) {
  .custom-cards { flex: 0 0 calc(33.333% - 20px); }
}

.first-letter-div { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; justify-content: center; }

.first-letter {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5vw;
  min-width: 40px;
  height: auto;
  min-height: 40px;
  padding: 2px;
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  font-weight: bold;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(to right, #3d1c9d, #1382c8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.subheading-p { font-size: clamp(1rem, 2vw, 1.25rem) !important; font-weight: bold; color: #fff; margin: 0; }

.star-google { width: 100%; font-size: 14px; display: flex; justify-content: center; align-items: center; margin-bottom: 10px; color: #f1c40f; }

.review { color: #fff; }

.review-date { font-weight: bold; margin-bottom: 5px; }

.google-nxt-pre-btn { text-align: center; margin-top: 20px; }

.custom-slider-btn {
  padding: 10px 15px;
  background: #5b21b6;
  color: white;
  border: none;
  border-radius: 50px;
  margin: 0 5px;
  font-weight: bold;
  cursor: pointer;
}

.review-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-bottom: 30px;
  flex-wrap: nowrap;
  overflow-x: scroll;
  width: 100%;
  padding-bottom: 10px;
}

.review-tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tab-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  border-radius: 10px;
}

.tab-btn.active { border-color: #315e9a; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }

.tab-btn.active::before { opacity: 1; }

.tab-btn img { width: 120px; position: relative; z-index: 1; }

.tab-btn:hover { transform: scale(1.05); }

.tab-content { display: none; }

.tab-content.active { display: block; }

.custom-slider-container {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.custom-slider-track { display: flex; gap: 20.2px; transition: transform 0.4s ease; }

.custom-card {
  flex: 0 0 100%;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ddd;
}

@media (max-width: 600px) {
  .tab-btn img { width: 80px; }
  .review-tabs { justify-content: space-between; }
  .tab-btn { width: 48%; margin-bottom: 10px; }
  .tab-btn img { width: 100%; }
}

@media (min-width: 768px) {
  .slider-card, .custom-card { flex: 0 0 50%; }
}

@media (min-width: 1024px) {
  .slider-card, .custom-card { flex: 0 0 33.33%; }
}

.controls { text-align: center; margin-top: 15px; }

.slider-box { position: relative; max-width: 800px; margin: auto; overflow: hidden; }

.slider-track { display: flex; transition: transform 0.4s ease-in-out; }

.review-card { min-width: 100%; }

.review-card img {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 10px;
  border: 7px solid #00ac65;
  object-fit: cover;
}

.slider-btns {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00a26975;
  color: #fff;
  font-size: 24px;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.prev-btn { left: 10px; }

.next-btn { right: 10px; }

/* Chat card */
.chat-card {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.chat-card:hover { transform: translateY(-5px); }

.chat-review-img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 12px;
  background: #f4f4f4;
  padding: 5px;
}

.chat-user-name { font-weight: 600; margin-bottom: 6px; font-size: 1rem; }

.chat-review { font-size: 0.9rem; color: #555; line-height: 1.5; }

.chat-nxt-pre-btn { text-align: center; margin-top: 20px; }

.slider-item { flex: 0 0 340px; }

/* FAQ */
.faq-section { text-align: center; padding: 50px 20px; }

.faq-container { display: flex; justify-content: center; gap: 20px; max-width: 1200px; margin: 1rem auto; }

.faq-column { width: 45%; }

.faq-item {
  margin-bottom: 10px;
  border: 2px solid #315e9a;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: white;
  padding: 15px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  font-weight: 500;
}

.faq-question i { transition: transform 0.3s ease-in-out; color: #315e9a; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 15px;
  background: #f9f9f9;
  text-align: justify;
}

.faq-answer p { font-size: 14px; color: #555; }

.faq-item.active .faq-answer { max-height: 150px; padding: 10px 15px; }

.faq-item.active .faq-question i { transform: rotate(180deg); }

@media (max-width: 768px) {
  .faq-container { flex-direction: column; align-items: center; width: 100%; gap: 0; }
  .faq-column { width: 100%; }
  .section-title { margin-left: 0; }
}

/* Footer (coursework page) */
.main-footer,
.main-footer * {
  font-family: "Poppins", sans-serif !important;
}

.list .has-submenu { position: relative; cursor: pointer; }

.list .submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: linear-gradient(135deg, #d1d1d1, #f4f4f4);
  padding: 5px;
  list-style: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  z-index: 2;
  width: max-content;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #17a2b8 #e0e0e0;
}

.list .submenu::-webkit-scrollbar { width: 8px; }
.list .submenu::-webkit-scrollbar-thumb { background-color: #17a2b8; border-radius: 10px; }
.list .submenu::-webkit-scrollbar-track { background-color: #e0e0e0; }

.list .submenu li { margin: 0; padding: 0; }

.list .submenu li a {
  color: #333;
  text-decoration: none;
  padding: 4px 5px;
  display: block;
  font-size: 11px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.list .submenu li a:hover { color: #fff; background-color: #17a2b8; }

.list .submenu { max-width: 300px; overflow-wrap: break-word; }

.social-box li { margin-bottom: 4px !important; }

.toggle-icon {
  display: none;
  font-weight: bold;
  float: right;
  transition: transform 0.3s ease;
}

.ain-payment-box { padding: 10px; }

.ain-terms a { color: #4a17a3; }

.ain-discreption { font-size: 13px; }

.rating { font-size: 14px; font-weight: 900; color: #4a17a3; }

.ain-rating { font-size: 16px; font-weight: 600; }

.widgets-section { padding-top: 30px !important; }

.footer_column_Links,
.contact-us-box { font-size: 18px; font-weight: 600; }

.main-footer .list li a,
.main-footer .logo-widget .info-list li a { font-size: 13px; }

.main-footer .list li a {
  font-size: inherit;
  color: inherit !important;
  line-height: inherit;
  text-decoration: none !important;
  display: block;
}

@media (max-width: 768px) {
  .widgets-section .column { width: 100% !important; display: block; }
  .widgets-section { padding-top: 15px !important; }
  .widgets-section .footer_column_Links {
    display: block;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 1px solid #00184f;
    transition: background 0.3s ease;
  }
  .widgets-section .list { display: none; padding: 10px; margin-top: 5px; }
  .widgets-section .list li a { display: block; padding: 5px; font-size: 14px; text-decoration: none; margin: 0; }
  .has-submenu > a i { display: none; }
  .toggle-icon { display: inline-block; border: 0 !important; }
  .social-box { margin-bottom: 18px !important; }
  .open .toggle-icon { transform: rotate(45deg); }
  .contact-us-box { border: none !important; }
}
/* ========== assignment-help-services page (extracted from PHP) ========== */

/* Keyframes */
@keyframes fall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* Base body - single consolidated rule */
body {
    font-family: 'Arial', sans-serif;
    font-display: swap;
}

/* WhatsApp float - same values for all viewports */
.whatsapp_float {
    position: fixed;
    text-align: left;
    bottom: 25px;
    z-index: 25;
    pointer-events: none;
}

        .banner-section-three h1 {
            font-size: 35px;
            /* Default for desktop */
            font-weight: 600;
            color: #000;
            padding: 5px 0px 15px;
            text-transform: uppercase;
            display: block;
            opacity: 1;
            transition: font-size 0.3s ease;
        }

        /* Media Query for Below Tablet Size (max-width: 768px) */
        @media screen and (max-width: 768px) {
            .banner-section-three h1 {
                font-size: 24px;
                /* Reduce font size */
                opacity: 0.9;
                /* Slightly lower opacity */
                padding: 3px 0px 10px;
                /* Adjust padding */
                font-weight: 500;
                color: #000;
                text-transform: uppercase;
                display: block;
            }
        }

        /* Media Query for Mobile Devices (max-width: 480px) */
        @media screen and (max-width: 480px) {
            .banner-section-three h1 {
                font-size: 24px;
                /* Further reduce font size */
                opacity: 0.8;
                /* Lower opacity to reduce impact */
                padding: 2px 0px 8px;
                /* Minimal padding */
                font-weight: 500;
                color: #000;
                text-transform: uppercase;
                display: block;
            }
        }

/* --- */

/* Default Styles */
        .promo-img {
            margin-top: -68px;
            margin-bottom: -24px;
            height: 122px;
            width: auto;
            max-width: 100%;
        }

        /* Optimize for Mobile Devices */
        @media only screen and (max-width: 767px) {
            .promo-img {
                /* Hide or reduce size on mobile to improve LCP */
                height: 80px;
                /* Smaller height for faster loading */
                margin-top: -50px;
                margin-bottom: -10px;
            }
        }

        /* Optional - Defer image visibility on small screens if not in the viewport */
        @media only screen and (max-width: 768px) {
            .promo-img {
                height: 100px;
                /* Adjust for tablet */
                margin-top: -40px;
                margin-bottom: -15px;
            }
        }

        @keyframes loader-figure {
            0% {
                height: 0;
                width: 0;
                background-color: #1976d2;
            }

            30% {
                height: 2em;
                width: 2em;
                background-color: transparent;
                border-width: 1em;
                opacity: 1;
            }

            100% {
                height: 2em;
                width: 2em;
                border-width: 0;
                opacity: 0;
                background-color: transparent;
            }
        }

        @keyframes loader-label {
            0% {
                opacity: .25;
            }

            30% {
                opacity: 1;
            }

            100% {
                opacity: .25;
            }
        }

        /* Snow effect styles */
        /*.snowflake {*/
        /*    position: fixed;*/
        /*    top: -10px;*/
        /*    z-index: 99999;*/
        /*    color: white;*/
        /*    font-size: 1em;*/
        /*    pointer-events: none;*/
        /*    animation: fall linear infinite;*/
        /*}*/

        @keyframes fall {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }

            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

/* --- */

.logo-box {
        margin: 4px !important;
        padding: 0 !important;
        display: flex;
    }

    .logo-box .logo img {
        width: 170px !important;
    }

    @media (max-width: 768px) {
        .logo-box .logo img {
            width: 60px !important;
        }
    }

    @media (max-width: 1100px) {
        .outer-box {
            display: none !important;
        }
    }

    @media screen and (max-width: 1023px) {
        .logo-box {
            width: 100%;
            text-align: center;
            padding: 0 !important;
            margin: 4px !important;
        }

        .main-header.header-style-three .header-lower .logo-box {
            background-color: transparent;

        }

        .logo {
            display: inline-block;
        }

    }

    .main-header.header-style-three .header-lower .logo-box {
        position: relative;
    }

    .main-header.header-style-three .main-menu .navigation>li>a {
        padding: 10px 6px;
    }

    .main-header.header-style-three.fixed-header {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }

    .navbar-collapse .navigation>li>ul>li>ul {
        max-height: 50vh;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: none;
    }
    .navbar-collapse .navigation>li>ul>li>ul>li>a {
        padding: 5px 10px;
        font-size: 13px;
    }

    .navbar-collapse .navigation .subject-dropdown>ul {
        max-height: 50vh;
        overflow: auto;
        scrollbar-width: none;
    }

    .navbar-collapse .navigation .city-dropdown>ul {
        max-height: 50vh;
        overflow: auto;
        scrollbar-width: none;
    }

    .main-menu .navigation>li>ul>li>a {
        padding: 5px 10px;
        font-size: 13px;
    }

/* --- */

/* Top Bar Container */
    .top-bar {
        background: #215e9e;
        color: #fff;
        font-size: 14px;
        padding: 2px 0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    /* Wrapper for content alignment */
    .content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between !important;
        align-items: center;
        flex-wrap: wrap;
    }

    /* Contact Info Styling */
    .contact-item {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .contact-link {
        display: flex;
        align-items: center;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        gap: 6px;
        transition: color 0.3s;
    }

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

    .contact-link i {
        font-size: 16px;
    }

    .divider {
        color: rgba(255, 255, 255, 0.6);
        font-weight: bold;
    }

    /* Offer Section Styling */
    .offer-section {
        text-align: right;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .offer-section .offers a {
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        transition: color 0.3s;
    }

    .offer-section .offers a:hover {
        color: #ffe600;
    }

    .offer-text a {
        font-size: 16px;
        font-weight: 700;
        color: #ffe600;
        text-decoration: none;
        transition: color 0.3s;
    }

    .offer-text a:hover {
        color: #ffffff;
    }

    .offers {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 1rem;
    }

    .offer-button {
        display: inline-block;
        padding: 1px 8px;
        margin-top: 4px;
        margin-bottom: 4px;
        background-color: #e60023;
        /* red-like color */
        color: white;
        font-weight: bold;
        text-decoration: none;
        border-radius: 8px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        transition: transform 0.5s ease, box-shadow 0.3s ease;
    }

    /* Pop-in on load */
    .offer-button {
        animation: popIn 0.6s ease;
    }

    /* Pop-out on hover */
    .offer-button:hover {
        transform: scale(1.08);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    @keyframes popIn {
        0% {
            transform: scale(0.8);
            opacity: 0;
        }

        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .content-wrapper {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            padding: 0 12px;
        }

        .contact-item {
            justify-content: space-between;
            width: 100%;
            gap: 8px;
        }

        .offer-section {
            display: none;
        }

        .main-header.header-style-three .inner-container {
            display: flex;
        }
    }

    @media (max-width: 480px) {
        .top-bar {
            font-size: 10px;
        }

        .contact-link i {
            font-size: 14px;
        }
    }

    /* Cart / Profile Dropdown */
    .cart-box {
        position: relative;
    }

    .cart-panel {
        position: absolute !important;
        top: 40px !important;
        right: 0 !important;
        width: 260px !important;
        background: #fff !important;
        border-radius: 10px;
        border: 1px solid #e0e0e0 !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
        z-index: 1000 !important;
        display: none;
        padding: 16px !important;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .cart-box:hover .cart-panel {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .cart-product .inner {
        text-align: center;
    }

    .cart-product .image img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .cart-product h3 {
        font-size: 16px;
        margin-bottom: 5px;
        font-weight: 600;
        color: #333;
    }

    .quantity-text {
        font-size: 13px;
        color: #777;
        margin-bottom: 6px;
    }

    .btns-boxed {
        margin-top: 12px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }

    .btns-boxed li {
        list-style: none;
    }

    .btns-boxed li a {
        display: block !important;
        text-align: center !important;
        padding: 12px 20px !important;
        border-radius: 10px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        transition: all 0.3s ease-in-out !important;
        min-width: 100px;
        background: linear-gradient(to right, #3F159A, #0E8FCE) !important;
        color: #fff !important;
        box-shadow: 0 4px 10px rgba(0, 86, 179, 0.15) !important;
        position: relative !important;
        overflow: hidden !important;
        z-index: 1 !important;
    }

    /* Swipe effect using ::before */
    .btns-boxed li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0E8FCE, #3F159A);
        transition: left 0.4s ease;
        z-index: -1;
    }

    /* Hover Effect */
    .btns-boxed li a:hover::before {
        left: 0;
    }

    .btns-boxed li a:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 86, 179, 0.3);
    }

    .login-panel {
        background: #ffffff;
        padding: 24px 20px;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
        text-align: center;
        max-width: 320px;
        margin: 0 auto;
        transition: all 0.3s ease-in-out;
    }

    .login-panel h4 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #333;
    }

    .login-panel p {
        font-size: 1rem;
        color: #666;
        margin-bottom: 20px;
    }

    .auth-buttons {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .auth-buttons a {
        padding: 10px 20px;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        min-width: 100px;
        text-align: center;
    }

    /* Common button styles */
    .btn-login,
    .btn-signup {
        position: relative;
        overflow: hidden;
        z-index: 1;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Swipe effect using ::before */
    .btn-login::before,
    .btn-signup::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        z-index: -1;
        transition: left 0.4s ease;
    }

    /* Login button */
    .btn-login {
        position: relative;
        z-index: 1;
        color: #3F159A;
        /* replaced bg with text color */
        padding: 0.75rem 1.5rem;
        background-color: transparent;
        border: none;
        font-weight: 600;
        cursor: pointer;
        overflow: hidden;
        border-radius: 8px;
        transition: color 0.3s ease;
    }

    .btn-login::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #3F159A, #0056b3);
        /* border gradient */
        z-index: -2;
        border-radius: 8px;
        padding: 2px;
        /* makes room for inner fill */
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: destination-out;
        mask-composite: exclude;
    }

    .btn-login::after {
        content: '';
        position: absolute;
        inset: 0;
        background: transparent;
        z-index: -1;
        border-radius: 8px;
        transition: background 0.4s ease;
    }

    .btn-login:hover {
        color: #3F159A;
    }

    .btn-login:hover::before {
        left: 0;
    }

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 86, 179, 0.3);
        color: #3F159A;
    }

    .btn-signup {
        position: relative;
        display: inline-block;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(to right, #3F159A, #0E8FCE);
        border: none;
        border-radius: 6px;
        overflow: hidden;
        z-index: 1;
        cursor: pointer;
        transition: all 0.4s ease;
    }



    .btn-signup:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 86, 179, 0.3);
        color: white;
    }

    /* ================================
   TOP MOVING OFFER BAR (FIXED)
   ================================ */

    .top-offer-bar {
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: 360px;
        /* keeps it compact */
        overflow: hidden;
    }

    /* OFFER badge */
    .offer-badge {
        background: #e60023;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        padding: 2px 10px;
        border-radius: 6px;
        line-height: 1.2;
        white-space: nowrap;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    }

    /* Marquee container */
    .offer-marquee {
        position: relative;
        width: 240px;
        /* IMPORTANT: controls visibility */
        height: 22px;
        /* SMALL HEIGHT like reference */
        overflow: hidden;
    }

    /* Moving text */
    .offer-marquee-track {
        position: absolute;
        left: 100%;
        top: 0;
        white-space: nowrap;
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
        line-height: 22px;
        animation: offerScroll 8s linear infinite;
    }

    /* Animation */
    @keyframes offerScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-160%);
        }
    }

    /* Pause on hover */
    .top-offer-bar:hover .offer-marquee-track {
        animation-play-state: paused;
    }

    /* Hide on mobile (matches your logic) */
    @media (max-width: 768px) {
        .top-offer-bar {
            display: none !important;
        }
    }

    @media (max-width: 768px) {
        .cart-box {
            margin-top: 0px !important;
        }

        .mobile-nav-toggler {
            padding: 0px !important;
        }

        .outer-container {
            padding: 0px 15px 0px 15px !important;
        }

    }

    /* HEADER ORDER NOW BUTTON (COMPACT) */
    .header-order a {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;

        padding: 8px 20px;
        height: 38px;
        min-width: 120px;

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

        color: #ffffff !important;
        background: linear-gradient(135deg, #f8aa2c, #f8aa2c) !important;

        border-radius: 10px;
        text-decoration: none !important;

        box-shadow: 0 6px 14px rgba(74, 23, 163, 0.3);
        transition: all 0.25s ease;
    }

    /* Hover effect */
    .header-order a:hover {
        background: linear-gradient(135deg, #4a17a3, #3d1288) !important;
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(74, 23, 163, 0.4);
    }

    /* Mobile adjustment */
    @media (max-width: 992px) {
        .header-order a {
            padding: 7px 18px;
            height: 36px;
            font-size: 13px;
        }
    }

    @keyframes microSlide {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-3px);
        }

        100% {
            transform: translateY(0);
        }
    }

    .header-order a {
        animation: microSlide 2.8s ease-in-out infinite;
    }

    .header-order a:hover {
        animation-play-state: paused;
    }

/* --- */

.Trusted-paragraph {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
  }

  /* container */
  .review-container{
    max-width: 1200px;
    margin: 16px auto 0;
    padding: 0 0.5rem 8px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* card */
  .review-box{
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 10px 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    scroll-snap-align: start;
    box-shadow: 0 10px 25px rgba(2, 6, 23, 0.08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    min-width: 240px;
  }

  .review-box:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(2, 6, 23, 0.12);
    border-color: rgba(15, 23, 42, 0.14);
  }

  /* logo */
  .review-logo{
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex: 0 0 38px;
    margin: 0;
    transition: transform .18s ease;
  }
  .review-box:hover .review-logo{
    transform: scale(1.05);
  }

  /* middle text block */
  .review-box > div{
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
  }

  /* stars */
  .star-rating-box{
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
  }

  /* fontawesome safety */
  .fa{
    font-family: 'FontAwesome' !important;
  }

  .star{
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border-radius: 5px;
    color: #fff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.12);
  }

  .star.half{
    background: #cbd5e1;
    color: #fff;
  }

  /* rating number */
  .rating-number{
    font-size: 1.25rem;
    font-weight: 800;
    margin-left: auto;
    padding-left: 6px;
    color: #0f172a;
    white-space: nowrap;
  }

  /* brand colors (same as yours, refined) */
  .trustpilot-review .star.filled{ background: #00b67a; }
  .trustpilot-review .rating-number{ color: #00b67a; }

  .ain-review .star.filled{ background: #6B2FBF; }
  .ain-review .rating-number{ color: #6B2FBF; }

  .google-review .star.filled{ background: #4285F4; }
  .google-review .rating-number{ color: #4285F4; }

  /* Mobile */
  @media (max-width: 600px){
    .review-container{
      justify-content: flex-start;
      flex-wrap: nowrap;              /* âœ… mobile me nice horizontal cards */
      gap: 10px;
      padding-bottom: 10px;
    }

    .review-box{
      min-width: 220px;
      padding: 9px 10px;
      border-radius: 12px;
      box-shadow: 0 8px 18px rgba(2, 6, 23, 0.10);
    }

    .review-logo{
      width: 34px;
      height: 34px;
      flex-basis: 34px;
    }

    .rating-number{
      font-size: 1.15rem;
    }

    .star{
      width: 16px;
      height: 16px;
      font-size: 10px;
      border-radius: 4px;
    }
  }

/* --- */

:root {
    --text: #0f172a;
    --muted: #64748b;
    --accent: #3F159A;
    --accent-2: #0E8FCE;
  }

  /* âœ… Form Height Reduced */
  .mini-quote {
    width: 440px; max-width: 100%;
    padding: 10px 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,.9) 0%, rgba(237,231,248,.7) 100%);
    border: 1px solid rgba(255,255,255,.5);
    box-shadow: 0 10px 30px rgba(2, 6, 23, .08);
    position: relative;
  }

  .mini-offer {
    width: 100%;
    justify-content: center;
    position: absolute;
    height: 48px;
    width: 300px;
    top: -25px;
    right: 0px;
    z-index: 5;
    pointer-events: none;
  }

  .mini-offer__img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-top-right-radius: 10px;
  }

  .mini-quote__tagline{
    padding-top: 16px;
  }

  .mini-quote__tagline { font-size: 18px; color: var(--accent); font-weight: 700; margin-bottom: 8px; text-align: center; }

  .mini-quote__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 10px; }

  .mini-field label { display: block; font-size: 11px; font-weight: 700; margin-bottom: 1px; color: #333; }
  .mini-field input, .mini-field select {
    width: 100%; height: 36px; border-radius: 8px; border: 1px solid var(--accent);
    padding: 0 10px; font-size: 13px; outline: none; background: #fff;
  }
  .mini-field--pages { grid-column: 1 / -1; }

  .phone-field { position: relative; display: flex; border-radius: 8px; border: 1px solid var(--accent); background: #fff; overflow: visible; }
  .cc-btn { display: flex; align-items: center; gap: 4px; padding: 0 6px; background: #f1f5f9; border: none; border-right: 1px solid #ddd; cursor: pointer; font-weight: 700; min-width: 70px; height: 34px; font-size: 12px; }
  .phone-field input[type="tel"] { flex: 1; border: none !important; height: 34px; padding: 0 8px; }

  .cc-menu { position: absolute; top: 38px; left: 0; width: 100%; background: #fff; border: 1px solid #ddd; border-radius: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); display: none; z-index: 999; }
  .cc-menu.open { display: block; }
  .cc-list { max-height: 180px; overflow-y: auto; }
  .cc-item { display: flex; align-items: center; gap: 8px; padding: 8px; cursor: pointer; font-size: 12px; border-bottom: 1px solid #f1f5f9; }

  .pages-stepper { display: flex; align-items: center; border: 1px solid var(--accent); border-radius: 8px; height: 36px; background: #fff; }
  .pg-btn { width: 36px; height: 100%; border: none; background: #f8fafc; font-size: 16px; font-weight: 700; cursor: pointer; }
  .pg-mid { flex: 1; display: flex; justify-content: center; gap: 8px; font-size: 12px; font-weight: 700; }
  .pg-muted { color: var(--muted); font-size: 10px; }

  .mini-policy { margin-top: 6px; font-size: 11px; }

  .mini-submit {
    width: 100%; height: 40px; margin-top: 10px; border: none; border-radius: 10px;
    background: linear-gradient(135deg, rgba(248, 171, 46, 1), rgba(248, 171, 46, 1));
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    color: #fff; font-weight: 600; font-size: 18px; cursor: pointer;
    box-shadow: 0 4px 15px rgba(63, 21, 154, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    transition: transform 0.2s;
  }
  .mini-submit:hover { transform: translateY(-1px); background: linear-gradient(135deg, rgba(63, 21, 154, 1), rgba(14, 143, 206, 1)); }

  .toast {
    position: fixed; top: 20px; right: 20px;
    padding: 10px 12px;
    background: #ef4444; color: #fff;
    border-radius: 8px; display: none;
    z-index: 10000; font-size: 12px;
  }
  .toast.success { background: #22c55e; }

  /* âœ… field error text */
  .mini-error{
    margin-top: 4px;
    font-size: 11px;
    color: #ef4444;
    font-weight: 600;
    line-height: 1.2;
  }
  .mini-field.has-error input,
  .mini-field.has-error select,
  .mini-field.has-error .phone-field{
    border-color: #ef4444 !important;
  }

  @media (max-width: 600px){
    .mini-quote{ width: 100%; padding: 10px 12px; }
    .mini-quote__grid{ grid-template-columns: 1fr; gap: 6px; }
    .mini-offer{
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      width: min(290px, 92%);
      top: -16px;
      height: 42px;
    }
    .mini-quote__tagline{ padding-top: 18px; font-size: 16px; }
  }

/* --- */

.bg-hero {
            background: url(../bg/hero-bg.jpg) no-repeat center center;
            background-size: cover;
            padding: 3rem 2rem;
            box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px inset;
        }

        .container-section {
            max-width: 1200px;
            margin: auto;
            padding: 0 0.5rem;
        }

        .hero-content {
            display: flex;
            flex-direction: row;
            gap: 2rem;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeSlideIn 0.8s ease-out 0.2s forwards;
        }

        .form-container {
            margin: auto;
            display: flex;
            justify-content: center;
        }

        .main-heading {
            background: linear-gradient(to bottom, #f9ab31, #f9ab31);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 0.25rem;
        }

        .content-paragraph p {
            font-size: 1.1rem;
            color: #fff;
            font-weight: 400;
            margin-bottom: 1rem;
            text-align: justify;
        }

        .content-list-item {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
        }

        .content-list {
            padding-left: 20px;
            margin: 0;
        }

        .content-list li {
            color: #333;
            list-style-type: square;
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .Trusted-paragraph {
          color: #fff;
            margin-top: 1rem;
            font-size: 1rem;
            font-weight: 500;
        }
        .content-list-item li {
            color: #fff;
        }
        /* Lightweight compositor-friendly animation */
        @keyframes fadeSlideIn {
            0% {
                opacity: 0;
                transform: translateY(40px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .hero-content {
                flex-direction: column;
            }

            .main-heading {
                font-size: 2rem;
            }

            .content-paragraph p {
                font-size: 0.70rem;
                text-align: left;
                margin-bottom: 0.25rem;
            }

            .content-list li {
                font-size: 0.70rem;
            }

            .content-list-item {
                gap: 0.25rem;
            }

            .Trusted-paragraph {
                margin-top: 0.20rem;
                font-size: 0.70rem;
            }
        }

        @media (max-width: 600px) {
            .bg-hero {
                padding: 0.25rem 0.25rem;
            }

            .main-heading {
                font-size: 1.4rem;
            }

            .content-list-item {
                /* flex-direction: column; */
                gap: 0.25rem;
            }


        }

        @media (max-width: 1154px) {
            .content-list-item {
                gap: 0;
            }
        }

/* --- */

.how-it-works {
            padding: 2rem 1.5rem;
            background: #fff;
            text-align: center;
        }

        /*  */

        /* Main 2-column layout */
        .content-wrapper {
            display: flex;
            gap: 20px;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        /* Video section */
        .video-column {
            flex: 1;
            /* min-width: 300px; */
            max-width: 600px;
            text-align: center;
        }

        .video-column iframe {
            width: 100%;
            height: 315px;
            border-radius: 12px;
        }

        /* Steps section */
        .steps-column {
            flex: 1;
            /* min-width: 300px; */
            max-width: 600px;
            text-align: left;
        }

        .step {
            margin-bottom: 30px;
        }

        .step-number {
            font-size: 28px;
            color: #315e9a;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 8px;
        }

        .step h3 {
            font-size: 22px;
            margin: 8px 0;
            color: #333;
        }

        .step p {
            font-size: 16px;
            color: #555;
            line-height: 1.6;
        }

        /* Button Styling */
        /*  */

        /* Responsive Design */
        @media (max-width: 768px) {


            .step-number {
                font-size: 24px;
            }

            .step h3 {
                font-size: 20px;
            }

            .step p {
                font-size: 14px;
            }

            .place-order-btn {
                max-width: 220px;
                font-size: 14px;
                padding: 10px;
            }

            .video-column iframe {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .step-number {
                font-size: 20px;
            }

            .step h3 {
                font-size: 18px;
            }

            .step p {
                font-size: 13px;
            }

            .place-order-btn {
                width: 200px;
                font-size: 13px;
                padding: 8px;
            }

            .video-column iframe {
                height: 200px;
            }
        }

/* --- */

.testimonial-section-four {
            max-width: 100%;
        }

        .star-rating {
            font-size: 20px;
            margin: 5px auto;
            color: gold;
        }

        .expert-slider {
            overflow: hidden;
            position: relative;
            max-width: 1000px;
            margin: auto;
        }

        .slider-container {
            display: flex;
            width: 200%;
            animation: slide 20s infinite linear;
        }

        .expert-card {
            background: white;
            padding: 20px;
            margin: 10px;
            border-radius: 10px;
            border: 2px solid #4821c3;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            flex: 0 0 20%;
            text-align: center;
            transition: .3s;
        }

        .expert-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }

        .expert-img {
            margin: 0 auto;
            height: 100px;
            width: 100px !important;
            border-radius: 50%;
            margin-bottom: 10px;
        }

        .expert-name {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: #4821c3;
        }

        .expert-card p {
            font-size: .9rem !important;
            line-height: 1.5;
            color: #333;
            text-align: justify;
            margin-bottom: 15px;
        }

        .buttons {
            display: flex;
            margin: auto;
            font-size: .9rem;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .hire-btn {
            background: #4821c3;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: 0.3s;
        }

        .hire-btn:hover {
            background: #35189f;
            transform: translateY(-5px);
            background: linear-gradient(135deg, #4821c3, #35189f);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
            color: white;
        }

        .about-btn {
            background-color: white;
            border: 3px solid #4821c3;
            color: #4821c3;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: 0.3s;
        }

        .about-btn:hover {
            background-color: #4821c3;
            color: white;

        }

        @keyframes slide {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }



        @media (max-width: 768px) {
            .expert-card {
                flex: 0 0 90%;
                margin: 0 auto 20px;
            }

            .expert-name {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }

            .expert-card p {
                font-size: 0.7rem !important;
                line-height: 1.5;
            }

            .buttons {
                flex-direction: row;
                gap: 10px;
            }

            .hire-btn,
            .about-btn {
                width: 100%;
                font-size: 1rem;
                padding: 10px;
            }
        }

        @media (max-width: 480px) {
            .expert-card {
                flex: 0 0 100%;
                padding: 15px;
                margin: 0 auto 15px;
            }

            .expert-img {
                height: 70px;
                width: 70px !important;
            }

            .hire-btn,
            .about-btn {
                font-size: .7rem;
                padding: 6px;
            }
        }

        .custom-nav-btn {
            text-align: center;
            margin-top: 20px;
        }

        .custom-nav-btn button {
            background-color: #6C63FF;
            /* Purple */
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 8px;
            margin: 0 10px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .custom-nav-btn button:hover {
            background-color: #5a52d1;
            /* Darker purple on hover */
        }

/* --- */

.video-section {
        background: none !important;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .video-box {
        flex: 1;
        min-width: 300px;
        max-width: 550px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .video-box:hover {
        transform: scale(1.02);
    }

    .video-box iframe {
        width: 100%;
        height: 315px;
        border: none;
        display: block;
    }

    @media (max-width: 768px) {
        .video-box iframe {
            height: 250px;
        }
    }

    @media (max-width: 500px) {
        .video-box iframe {
            height: 200px;
        }
    }

    /* Add this to your <style> block */
.owl-carousel.owl-centered .owl-stage {
    margin: 0 auto !important;
    display: flex;
    justify-content: center;
}

/* --- */

.promo-banner-wrapper {
        padding: 2px;
        background: linear-gradient(90.2deg, rgba(1, 47, 95, 1) -0.4%, rgba(56, 141, 217, 1) 106.1%);
        border-radius: 10px;
        display: inline-block;
        margin: 2rem auto;
        transition: box-shadow 0.3s ease;
    }

    .promo-banner-wrapper:hover {
        box-shadow: 0 0 15px rgba(1, 47, 95, 0.3), 0 0 25px rgba(56, 141, 217, 0.4);
    }

    .promo-banner {
        background: white;
        border-radius: 20px;
        padding: 40px 30px;
        max-width: 1200px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        justify-content: space-around;
        overflow: hidden;
        animation: fadeInUp 1s ease-out forwards;
    }

    .promo-banner__image img {
        width: 300px;
        animation: bounce 3s infinite ease-in-out;
    }

    .promo-banner__content {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .banner-heading {
        text-align: left;
        font-size: 28px;
        font-weight: 700;
        color: #1e1e2f;
    }

    /* Responsive Styles */
    @media (min-width: 768px) {
        .promo-banner {
            flex-direction: row;
        }

        .promo-banner__content {
            text-align: left;
            align-items: flex-start;
        }
    }

    @media (max-width: 767px) {
        .promo-banner__image img {
            width: 150px;
        }

        .promo-banner {
            gap: 0;
        }

        .promo-banner__content {
            align-items: center;
            text-align: center;
        }

        .banner-heading {
            font-size: 18px;
            text-align: center;
        }

        .promo-banner__content span {
            font-size: 14px;
        }
    }

    /* Animations */
    @keyframes bounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

/* --- */

ul.service-points {
            list-style: none;
            padding: 0;
            margin-top: 15px;
            margin-bottom: 10px;
        }

        /* Style the list item (The Row) */
        ul.service-points li {
            display: flex;
            /* Use Flexbox to align dot and text */
            align-items: flex-start;
            /* âœ… Fixes alignment: Keeps dot at the top of the line */
            font-weight: 700;
            /* âœ… Makes text BOLD */
            color: #000;
            /* âœ… Makes text Black */
            font-size: 15px;
            margin-bottom: 8px;
            line-height: 1.5;
            /* Good spacing for multi-line text */
        }

        /* Style the Dot (The Bullet) */
        ul.service-points li .point-icon {
            font-weight: 900;
            /* âœ… Makes the dot extra BOLD */
            color: #000;
            /* Black dot */
            margin-right: 10px;
            /* Space between dot and text */
            min-width: 15px;
            /* Prevents dot from getting squished */
            margin-top: 2px;
            /* slight adjustment to align with text cap-height */
        }

        /* Academic services: title + description on top, slider below (column layout) */
        .academic-services .card-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            align-items: stretch;
            gap: 0;
            padding: 20px 0;
        }

        .academic-services .card-container .section-title,
        .academic-services .card-container .section-description {
            width: 100%;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .academic-services .card-container .section-title {
            margin-bottom: 0.5rem;
        }

        .academic-services .card-container .section-description {
            margin-bottom: 1.5rem;
            text-align: center;
            padding: 0 1rem;
        }

        .academic-services {
            margin-bottom: 30px;
        }

        .services-slider-wrapper {
            max-width: 100%;
            height: auto;
            overflow: hidden;
            margin: 0 auto;
            position: relative;
        }

        .services-slider {
            display: flex;
            transition: transform 0.3s ease-in-out;
            gap: 20px;
            padding: 20px 0;
        }



        .service-item {
            background: white;
            padding: 20px;
            border-radius: 10px;
            border: 2px solid rgb(63, 21, 154);
            box-shadow: 0 4px 8px rgba(63, 21, 154, 0.15);
            flex: 0 0 calc((100% - 40px) / 3);
            max-width: calc((100% - 40px) / 3);
            min-height: 300px;
            height: auto;
            text-align: center;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            position: relative;
            overflow: hidden;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: rgba(94, 44, 237, 0.7) 0px 2px 8px 0px;
        }

        .service-item h3 {
            font-weight: bold;
            font-size: 20px;
            color: #315e9a;
        }

        .service-item p {
            margin-top: 10px;
            margin-bottom: 7px;
            text-align: left;
            font-weight: 500;
            font-size: 16px;
        }

      

        .paragraph-container::-webkit-scrollbar {
            width: 8px;
        }

        .paragraph-container::-webkit-scrollbar-track {
            background: #fff;
            /* Track background */
            border-radius: 4px;
            border-radius: 4px;
        }

        .paragraph-container::-webkit-scrollbar-thumb {
            background-color: #315e9a;
            /* Thumb (scroll handle) color */
            border-radius: 4px;
            border: 2px solid #eee;
        }

        .read-more-btn {
            background: #315e9a;
            color: white;
            border: none;
            padding: 8px 16px;
            font-size: 14px;
            cursor: pointer;
            border-radius: 20px;
            transition: background 0.3s ease-in-out;
        }

        .read-more-btn:hover {
            background: rgb(63, 21, 154);
        }

        /* .large-paragraph {
            max-height: 180px;
            overflow: hidden;
            transition: max-height 0.3s ease;
        } */



        /* .service-item.expanded .large-paragraph {
            max-height:1000px;
    overflow: visible;
        } */

        .Card-btn {
            display: flex;
            justify-content: center;
            margin-top: 10px;
            gap: 20px;
        }



        .nav-button {
            background: #315e9a;
            color: white;
            border: none;
            padding: 12px 15px;
            font-size: 20px;
            cursor: pointer;
            border-radius: 50%;
            transition: background 0.3s ease-in-out;
        }

        .nav-button:hover {
            background: rgb(63, 21, 154);
        }

        .scroll-indicator {
            width: 100%;
            height: 3px;
            background: #e0e0e0;
            margin: 10px auto 0;
        }

        .scroll-indicator div {
            height: 100%;
            background: #315e9a;
            transition: width 0.3s ease-in-out;
            width: 0%;
        }

        /* Responsive View */
        @media (max-width: 768px) {
            .service-item {
                flex: 0 0 100%;
                max-width: 100%;
                height: auto;
            }



            .card-btn {
                position: fixed;
                top: 50%;
                transform: translateY(-50%);
                background-color: rgba(0, 0, 0, 0.6);
                color: white;
                border: none;
                padding: 12px 16px;
                font-size: 18px;
                border-radius: 50%;
                cursor: pointer;
                z-index: 10;
            }
        }

        @media (max-width: 380px) {
            .service-item {
                flex: 0 0 100%;
                max-width: 100%;
                height: auto;
            }

            .services-slider {
                gap: 19.7px;
            }

            .service-item h3 {
                font-size: 14px;
            }

            .service-item p {
                font-size: 12px;
            }

            .read-more-btn {
                font-size: 12px;
                padding: 6px 12px;
            }
        }


        @media (max-width: 360px) {
            .service-item {
                flex: 0 0 100%;
                max-width: 100%;
                height: auto;
            }

            .service-item h3 {
                font-size: 14px;
            }

            .service-item p {
                font-size: 12px;
            }

            .read-more-btn {
                font-size: 12px;
                padding: 6px 12px;
            }
        }

        @media (max-width: 1024px) {
            .service-item {
                flex: 0 0 calc(50% - 10px);
                max-width: calc(50% - 10px);
            }
        }

        @media (max-width: 600px) {
            .service-item {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

/* --- */

.review-header {
        display: flex;
        gap: 8px;
        /* space between items */
        align-items: center;
        flex-wrap: wrap;
        /* allows wrapping on smaller screens */
        font-size: 14px;
        /* adjust as needed */
    }

    .review-header span::before {
        content: "|";
        margin: 0 4px;
        color: #666;
    }

    /* Remove the first '|' before the first item */
    .review-header span:first-child::before {
        content: "";
        margin: 0;
    }

    .review-reply {
        margin-top: 10px;
        padding-left: 20px;
        border-left: 2px solid #eee;
        font-size: 14px;
        color: #444;

    }

    .reply-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 5px;
    }

    .reply-logo {
        width: 40px;
        /* small logo */
        height: 40px;
        object-fit: contain;
    }

    .reply-author {
        font-weight: 600;
        color: #315e9a;
        /* purple like your theme */
    }

    .reply-body {
        display: flex;
        gap: 6px;
        align-items: flex-start;
    }

    .reply-arrow {
        color: #315e9a;
        font-weight: bold;
        margin-top: 2px;
    }

    .reply-text {
        margin: 0;
        line-height: 1.4;
        font-size: 16px;
        text-align: left;
    }

    .read-more {
        color: #315e9a;
        font-weight: 600;
        cursor: pointer;
        margin-left: 5px;
        text-decoration: none;
    }

    .read-more:hover {
        text-decoration: underline;
    }

    .reply-inline {
        display: inline;
        white-space: nowrap;
        /* keeps text + Read More together */
    }

    .slider-containers {
        max-width: 1200px;
        margin: auto;
        overflow: hidden;
        position: relative;
    }

    .cards-wrapper {
        height: auto;
        display: flex;
        transition: transform 0.5s ease;
        gap: 20px;
    }

    .slider-card {
        /* background: #fff; */
        background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
        /* light gradient */
        border: 2px solid #7744e0;
        border-radius: 12px;
        padding: 20px;
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        height: auto;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    }

   

    .stars {
        text-align: left;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }

    .review-text {
        height: 150px;
        overflow-y: scroll;
        /* scrollbar-width: none; */
        -ms-overflow-style: none;
        padding: 10px;

    }

    .review-text::-webkit-scrollbar {
        width: 4px;
    }

    .review-text::-webkit-scrollbar-thumb {
        background-color: #9995a7;
        /* blue */
        border-radius: 4px;
    }

    /* Scrollbar Track (background) */
    .review-text::-webkit-scrollbar-track {
        background-color: #f1f1f1;
    }

    .location-text {
        width: 100px;
        padding: 5px;
        border-radius: 10px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #3b1e9e;
        color: #fff !important;
    }


    .review-details {
        display: flex;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 10px;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
        align-items: center;
        font-size: 14px;
        color: #333;
        margin: 10px 0;
    }

    .review-details p {
        margin: 0;
        padding: 8px 12px;
        background-color: #f1f1f1;
        border-radius: 8px;
        flex: 1 1 auto;
        text-align: center;
        min-width: 100px;
        color: #3b1e9d;

    }

    .controls {
        text-align: center;
        margin-top: 20px;
    }

    .controls button {
        padding: 10px 20px;
        background: #5b21b6;
        color: white;
        border: none;
        border-radius: 25px;
        margin: 0 10px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
    }

    .controls button:hover {
        background-color: #3f168f;
    }

    /* Responsive card width */
    @media (min-width: 768px) {
        .slider-card {
            flex: 0 0 calc((100% - 20px) / 2);
            max-width: calc((100% - 20px) / 2);
        }
    }

    @media (min-width: 1024px) {
        .slider-card {
            flex: 0 0 calc((100% - 40px) / 3);
            max-width: calc((100% - 40px) / 3);
        }
    }

/* --- */

.custom-slider-viewport {
        overflow: hidden;
        width: 100%;
    }

    .custom-slider-tracks {
        display: flex;
        gap: 2px;
        transition: transform 0.4s ease;
    }


    .custom-cards {
        flex: 0 0 100%;
        padding: 20px;
        margin-right: 20px;
        border-radius: 10px;
        box-shadow: 0 0 10px #ddd;
        background: linear-gradient(to right, #3d1c9d, #5046a6, #1382c8);
        color: #fff;
    }

    @media (min-width: 768px) {
        .custom-cards {
            flex: 0 0 calc(50% - 20px);
        }
    }

    @media (min-width: 1024px) {
        .custom-cards {
            flex: 0 0 calc(33.333% - 20px);
        }
    }

    .first-letter-div {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        justify-content: center;
    }

    .first-letter {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3.5vw;
        min-width: 40px;
        height: auto;
        min-height: 40px;
        padding: 2px;
        font-size: clamp(1.5rem, 2vw, 2.5rem);
        font-weight: bold;
        color: #fff;
        border-radius: 50%;
        background: linear-gradient(to right, #3d1c9d, #1382c8);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .subheading-p {
        font-size: clamp(1rem, 2vw, 1.25rem) !important;

        font-weight: bold;
        color: #fff;
        font-weight: 600;
        margin: 0;
    }

    .star-google {
        width: 100%;
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
        color: #f1c40f;
    }

    .review {
        color: #fff;
    }

    .review-date {
        font-weight: bold;
        margin-bottom: 5px;
    }

    .google-nxt-pre-btn {
        text-align: center;
        margin-top: 20px;
    }

    .custom-slider-btn {
        padding: 10px 15px;
        background: #5b21b6;
        color: white;
        border: none;
        border-radius: 50px;
        margin: 0 5px;
        font-weight: bold;
        cursor: pointer;
    }

    .review-tabs {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7px;
        margin-bottom: 30px;
        flex-wrap: nowrap;
        overflow-x: scroll;
        width: 100%;
        padding-bottom: 10px;
    }

    .review-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        position: relative;
        overflow: hidden;
        border: 1px solid transparent;
        border-radius: 10px;
        padding: 10px;
        background: transparent;
        cursor: pointer;
        flex: 0 0 auto;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .tab-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: #fff;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 0;
        border-radius: 10px;
    }

    .tab-btn.active {
        border-color: #315e9a;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .tab-btn.active::before {
        opacity: 1;
    }

    .tab-btn img {
        width: 120px;
        position: relative;
        z-index: 1;
    }

    .tab-btn:hover {
        transform: scale(1.05);
    }

    .review-tabs button {
        background: none;
        border: none;
        margin: 0 10px;
        cursor: pointer;

    }

    .review-tabs button img {}

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
    }

    .slider-containers,
    .custom-slider-container {
        max-width: 1200px;
        margin: auto;
        overflow: hidden;
        position: relative;
    }

    .cards-wrapper,
    .custom-slider-track {
        display: flex;
        gap: 20.2px;
        transition: transform 0.4s ease;
    }

    .slider-card,
    .custom-card {
        flex: 0 0 100%;
        background: #f9f9f9;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 10px #ddd;
    }

    @media (max-width: 600px) {
        .tab-btn img {
            width: 80px;
        }
    }

    @media (max-width: 600px) {
        .review-tabs {
            justify-content: space-between;
        }

        .tab-btn {
            width: 48%;
            margin-bottom: 10px;
        }

        .tab-btn img {
            width: 100%;
        }
    }



    @media (min-width: 768px) {

        /* .review-card img {
        width: 100%;
        height: auto;
        max-height: 400px;
        border-radius: 10px;
        border:7px solid #00ac65;
        object-fit: cover;
     } */
        .slider-card,
        .custom-card {
            flex: 0 0 50%;
        }
    }

    @media (min-width: 1024px) {

        .slider-card,
        .custom-card {
            flex: 0 0 33.33%;
        }
    }

    .controls {
        text-align: center;
        margin-top: 15px;
    }

    .controls button,
    .custom-slider-btn {
        padding: 10px 15px;
        background: #5b21b6;
        color: white;
        border: none;
        border-radius: 50px;
        margin: 0 5px;
        font-weight: bold;
        cursor: pointer;
    }

    .slider-box {
        position: relative;
        max-width: 800px;
        margin: auto;
        overflow: hidden;
    }

    .slider-track {
        display: flex;
        transition: transform 0.4s ease-in-out;
    }

    .review-card {
        min-width: 100%;
    }

    .review-card img {
        width: 100%;
        height: auto;
        /* âœ… Adjusts height automatically */
        max-height: 400px;
        /* padding:10px; */
        border-radius: 10px;
        border: 7px solid #00ac65;
        object-fit: cover;
    }

    .slider-btns {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #00a26975;
        color: #fff;
        font-size: 24px;
        border: none;
        padding: 10px;
        cursor: pointer;
        border-radius: 50%;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

/* --- */

.chat-card {
        background: #fff;
        border: 1px solid #e3e3e3;
        border-radius: 12px;
        padding: 15px;
        text-aign: center;
        transition: transform 0.3s ease;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    }

    .chat-card:hover {
        transform: translateY(-5px);
    }

    .chat-review-img {
        width: 100%;
        height: 250px;
        object-fit: contain;
        border-radius: 8px;
        margin-bottom: 12px;
        background: #f4f4f4;
        padding: 5px;
    }

    .chat-user-name {
        font-weight: 600;
        margin-bottom: 6px;
        font-size: 1rem;
    }



    .chat-review {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.5;
    }

    .chat-nxt-pre-btn {
        text-align: center;
        margin-top: 20px;
    }

    .custom-slider-tracks {
        display: flex;
        gap: 24px;
        /* space between cards */
        transition: transform 0.3s ease;
    }

    .slider-item {
        flex: 0 0 340px;
        /* each card is 300px wide */
    }

/* --- */

.faq-section {
            text-align: center;
            padding: 50px 20px;
        }

        .faq-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            max-width: 1200px;
            margin: 1rem auto;
        }

        .faq-column {
            width: 45%;
        }

        .faq-item {
            margin-bottom: 10px;
            border: 2px solid #315e9a;
            border-radius: 5px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            text-align: left;
            background: white;
            padding: 15px;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: none;
            font-weight: 500;
        }

        .faq-question i {
            transition: transform 0.3s ease-in-out;
            color: #315e9a;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            padding: 0 15px;
            background: #f9f9f9;
            text-align: justify;
        }

        .faq-answer p {
            font-size: 14px;
            color: #555;
        }

        .faq-item.active .faq-answer {
            max-height: 150px;
            padding: 10px 15px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        @media (max-width: 768px) {
            .faq-container {
                flex-direction: column;
                align-items: center;
                width: 100%;
                gap: 0px;
            }

            .faq-column {
                width: 100%;
            }

            .section-title {
                margin-left: 0px;
            }
        }

/* --- */

/* âœ… Force Poppins everywhere in footer (NO UI change) */
  .main-footer,
  .main-footer * {
    font-family: "Poppins", sans-serif !important;
  }

  .list .has-submenu {
    position: relative;
    cursor: pointer;
  }

  .list .submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: linear-gradient(135deg, #d1d1d1, #f4f4f4);
    padding: 5px;
    list-style: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 2;
    width: max-content;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #17a2b8 #e0e0e0;
  }

  .list .submenu::-webkit-scrollbar { width: 8px; }
  .list .submenu::-webkit-scrollbar-thumb { background-color: #17a2b8; border-radius: 10px; }
  .list .submenu::-webkit-scrollbar-track { background-color: #e0e0e0; }

  .list .submenu li { margin: 0; padding: 0; }

  .list .submenu li a {
    color: #333;
    text-decoration: none;
    padding: 4px 5px;
    display: block;
    font-size: 11px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .list .submenu li a:hover {
    color: #ffffff;
    background-color: #17a2b8;
  }

  .list .submenu { max-width: 300px; overflow-wrap: break-word; }

  .social-box li { margin-bottom: 4px !important; }

  .toggle-icon {
    display: none;
    font-weight: bold;
    float: right;
    transition: transform 0.3s ease;
  }

  .ain-payment-box { padding: 10px; }

  .ain-terms a { color: #4a17a3; }

  .ain-discreption { font-size: 13px; }

  .rating { font-size: 14px; font-weight: 900; color: #4a17a3; }

  .ain-rating { font-size: 16px; font-weight: 600; }

  .widgets-section { padding-top: 30px !important; }

  .footer_column_Links,
  .contact-us-box {
    font-size: 18px;
    font-weight: 600;
  }

  .main-footer .list li a,
  .main-footer .logo-widget .info-list li a {
    font-size: 13px;
  }

  .main-footer .list li a {
    font-size: inherit;
    color: inherit !important;
    line-height: inherit;
    text-decoration: none !important;
    display: block;
  }

  /* Mobile view adjustments */
  @media (max-width: 768px) {
    .widgets-section .column { width: 100% !important; display: block; }
    .widgets-section { padding-top: 15px !important; }

    .widgets-section .footer_column_Links {
      display: block;
      padding: 5px 10px;
      font-weight: bold;
      cursor: pointer;
      font-size: 16px;
      border-bottom: 1px solid #00184f;
      transition: background 0.3s ease;
    }

    .widgets-section .list {
      display: none;
      padding: 10px;
      margin-top: 5px;
    }

    .widgets-section .list li a {
      display: block;
      padding: 5px;
      font-size: 14px;
      text-decoration: none;
      margin: 0px;
    }

    .has-submenu > a i { display: none; }

    .toggle-icon { display: inline-block; border: 0px !important; }

    .social-box { margin-bottom: 18px !important; }

    .open .toggle-icon { transform: rotate(45deg); }

    .contact-us-box { border: none !important; }
  }
