:root {
    --brand-green: #00e65a;
    --dark-bg: #282828;
    --text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    --text-muted: #555;
    --feature-text: #e0e0e0;
    --sm-green: #10d43f;
    --sm-black: #000000;
    --sm-gray: #f8f9fa;
    --sm-border-light: #dee2e6;
    --avx-bg: #f4f4f4;
    --avx-text: #2d2d2d;
    --avx-muted: #5d5d5d;
    --avx-green: #12d441;
    --avx-black: #111111;
    --avx-border: #bdbdbd;
    --avx-white: #ffffff;
    --avm-bg-color: #d9d9db;
    --avm-card-white: #f7f7f7;
    --avm-text-dark: #1f1f1f;
    --avm-text-muted: #454545;
    --avm-green-main: #1fd14a;
    --avm-green-soft: #4ba96b;
    --avm-green-dark: #2a8e4c;
    --avm-red-main: #b95148;
    --avm-brown-main: #815f4d;
    --avm-border-light: #b7b7b7;
    --avm-shadow-main: 0 6px 16px rgba(0, 0, 0, 0.12);
    --avm-font-display: "DM Serif Display", serif;
    --avm-font-body: "Inter", sans-serif;
    --chalk-white: rgba(255, 255, 255, 0.95);
    --text-muted: rgba(255, 255, 255, 0.7);
    --bg-dark: #1a1a1a;
    --ts-card-width: 220px;
    --ts-card-margin: 30px;
    --ts-speed: 30s; /* Adjust to make faster or slower */
    --sm-bg-dark: #2d2d2d;
    --sm-text-gray: #b0b0b0;
    --sm-btn-green: #00e640;
    --sm-white: #ffffff;
    --sm-font-family: 'Kreon', serif !important;
    --smalltext-family:'Raleway',serif !important;
    --sm-dark-green: #388E3C;
    --sm-border-color: #333;


    --faq-bg: #222222; /* Dark background from image */
            --faq-border: #555555;
            --faq-text: #ffffff;
            --faq-accent: #ffffff;
        }
        body {
            background-color: #f8f9fa;
            overflow-x: hidden;  
            margin: 0;
            padding: 0;
        }













        /* --- Global Sections --- */
        .sm-section-dark { background-color: var(--dark-bg); color: #fff; padding: 100px 0; }
       

        /* Navbar Styling */
        .navbar {
            background-color: #212121;
            padding: 1rem;
        }
        .navbar-brand {
            font-weight: 700;
            letter-spacing: 1px;
            font-size: 1.5rem;
        }
        .nav-link {
            color: white !important;
            font-size: 0.9rem;
            margin: 0 10px;
        }
        .nav-link.active-green {
            color: var(--brand-green) !important;
            font-weight: bold;
        }

        /* Hero Section Slider */
        /* Hero Slider */
        .hero-slider{
            width: 100%;
            overflow: hidden;
        }

        .hero-slider .carousel,
        .hero-slider .carousel-inner,
        .hero-slider .carousel-item{
            width: 100%;
            min-height: 100vh;
        }

        .hero-slider .carousel-item{
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Overlay on background image */
        .hero-slider .carousel-item::before{
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.45);
            z-index: 1;
        }

     

        .hero-inner{
            max-width: 900px;
            margin: auto;
        }

        .doodle-img{
            max-width: 320px;
            width: 100%;
            margin: 0 auto 20px;
            filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.10));
        }

        .hero-title{
            font-family: var(--sm-font-family);
           
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1.05;
            color: #000;
            margin-bottom: 10px;
        }

        .hero-title .green-text{
            color: var(--brand-green);
            text-shadow: 2px 2px 0 rgba(0,0,0,0.05);
        }

        .hero-subtitle{
            font-size: clamp(18px, 2vw, 30px);
            font-weight: 400;
            color: #111;
            margin-bottom: 30px;
            font-family: var(--smalltext-family);
        }

        .cta-container{
            display: inline-flex;
            align-items: stretch;
           
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
            border-radius: 4px;
            overflow: hidden;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-improve{
            background-color: var(--brand-green);
            color: #fff;
            border: none;
            padding: 16px 28px;
            font-weight: 700;
            font-size: 1.1rem;
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .btn-improve::before{
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.2);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .btn-improve:hover::before{
            left: 0;
        }

        .google-icon-box{
            background: #fff;
            padding: 14px 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-left: 1px solid #eee;
            display: block;
        }

        .google-icon-box img{
            width: 34px;
        }

        /* Carousel arrows */
        .carousel-control-prev,
        .carousel-control-next{
            z-index: 3;
            width: 8%;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon{
            filter: invert(0);
            background-size: 70% 70%;
        }

        /* Responsive */
        @media (max-width: 768px){
            .hero-slider .carousel-item,
            .slide-content{
                min-height: 85vh;
            }

            .doodle-img{
                max-width: 220px;
            }

            .cta-container{
                flex-direction: column;
                width: 100%;
                max-width: 320px;
            }

            .google-icon-box{
                border-left: none;
                border-top: 1px solid #eee;
            }

            .btn-improve{
                width: 100%;
            }
        }

        .hero-slider{
        width: 100%;
        overflow: hidden;
        height: 86vh;
    }

    #heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item{
    width: 100%;
    min-height: 100vh;
}

#heroCarousel .carousel-item{
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#heroCarousel .carousel-item::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.05);
    z-index: 1;
}

.slide-content{
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding-top: 230px;   /* main fix */
   
}
.slide-content .container{
        position: absolute;
    /* top: 337px; */
    bottom: 127px;

}
.hero-inner{
    max-width: 900px;
    margin: 0 auto;
}



.green-text{
    color: #12d84f;
}

.hero-subtitle{
    font-size: clamp(20px, 2vw, 32px);
    color: #111;
    margin-bottom: 35px;
}



.btn-improve{
    background: #12d84f;
    color: #fff;
    border: none;
    padding: 18px 34px;
    font-size: 1.2rem;
    font-weight: 700;
}

.google-icon-box{
    padding: 15px 22px;
    background: #fff;
    border-left: 1px solid #eee;
}

.google-icon-box img{
    width: 35px;
}

        /* Trusted By Section (image_03d763.png) */
        .trusted-section { padding: 60px 0; background: #fff; text-align: center; }
        .section-title { font-size: 1.8rem; margin-bottom: 40px; color: #333; }
        .section-title span { font-weight: 700; }
        
        .logo-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .logo-item {
            width: 150px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: 0.3s ease-in-out;
        }
        .logo-item:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }
        .logo-item img { max-width: 100%; height: auto; }

        .sub-footer-text {
            max-width: 700px;
            margin: 50px auto 0;
            font-size: 1.2rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

     
        /* --- Make The Switch Section (NEW) --- */
        .sm-switch-container { 
            position: relative;
    padding: 80px 0; /* Add padding for spacing since we removed 100vh */
    height: auto; 
    overflow: visible;

         }
         /* 2. Make the left column sticky */
@media (min-width: 992px) { /* Only sticky on desktop */
    .sm-switch-container .col-lg-5 {
        position: sticky;
        top: 100px; /* Distance from the top of the screen when scrolling */
        height: fit-content;
        align-self: flex-start;
    }
}

/* 3. Ensure the right column flows naturally */
.sm-switch-container .col-lg-7 {
    display: flex;
    flex-direction: column;
    /*gap: 50px;*/
}

/* Optional: Smooth out the feature blocks */
.sm-feature-block {
    display: flex;
    align-items: center;
    margin-bottom: 100px; /* Space between features */
}
        .sm-main-heading { 
            font-size: clamp(3rem, 8vw, 5.5rem); 
            line-height: 1; 
            margin-bottom: 20px; 
            font-family: var(--sm-font-family);
        }
        .sm-sub-heading { font-size: 1.8rem; font-weight: 400; opacity: 0.9; max-width: 300px;font-family: var(--smalltext-family); }
        
        .sm-feature-block { display: flex; align-items: center; }
        .sm-feature-content { flex: 1; }
        .sm-feature-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px;font-family: var(--sm-font-family); }
        .sm-feature-text { font-size: 1rem; color: var(--feature-text); line-height: 1.6;             font-family: 'Raleway', sans-serif;
  font-weight: 400; /* Regular */

         }
        .sm-feature-img { width: 50%; flex-shrink: 0; }
        .sm-feature-img img { width: 100%; height: auto; filter: brightness(0) invert(1); opacity: 0.9; }

        /* Paper Plane Decoration */
        .sm-plane-icon { position: absolute; left: 10%; opacity: 0.6; }

       
        .avx-section-main {
      padding: 40px 0 50px;
      overflow: hidden;
      background-color: #fff;
    }

    .avx-container-box {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .avx-header-zone {
      text-align: center;
      margin-bottom: 42px;
    }

    .avx-main-title {
      font-size: 58px;
      line-height: 1.08;
      font-weight: 400;
      color: var(--avx-green);
      margin-bottom: 14px;
      font-family: var(--sm-font-family);
    }

    .avx-sub-text {
    
      margin: 0 auto;
     font-family: var(--smalltext-family);
      font-size: 22px;
      font-weight: 400;
      line-height: 1.45;
      color: #3e3e3e;
    }

    .avx-compare-row {
      position: relative;
      row-gap: 30px;
    }

    .avx-column-shell {
      position: relative;
      padding-top: 95px;
    }

    .avx-top-label-wrap {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 82%;
      height: 112px;
      z-index: 3;
    }

    .avx-top-outline {
      position: absolute;
      inset: 0;
      border: 4px solid var(--avx-border);
      border-radius: 40px;
      background: transparent;
    }

    .avx-top-outline.avx-outline-green {
      border-color: var(--avx-green);
    }

    .avx-top-outline.avx-outline-black {
      border-color: #000000;
    }

    .avx-top-pill {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      min-height: 68px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 12px 24px;
      font-size: 22px;
      line-height: 1.2;
      font-weight: 700;
      color: var(--avx-white);
      z-index: 2;
    }

    .avx-top-pill.avx-pill-green {
      background: var(--avx-green);
      color: #111111;
    }

    .avx-top-pill.avx-pill-black {
      background: #000000;
      color: var(--avx-white);
    }

    .avx-card-shell {
      position: relative;
      background: transparent;
      border: 4px solid var(--avx-border);
      border-radius: 36px;
      min-height: 470px;
      padding: 60px 34px;
    }

    .avx-card-shell.avx-card-left::before {
      content: "";
      position: absolute;
      left: -58px;
      top: -64px;
      width: 60px;
      height: calc(100% + 68px);
      border-left: 4px solid var(--avx-green);
      border-top: 4px solid var(--avx-green);
      border-top-left-radius: 34px;
    }

    .avx-card-shell.avx-card-right::after {
      content: "";
      position: absolute;
      right: -58px;
      top: -64px;
      width: 60px;
      height: calc(100% + 68px);
      border-right: 4px solid #000000;
      border-top: 4px solid #000000;
      border-top-right-radius: 34px;
    }

    .avx-list-box {
      list-style: none;
      margin: 0;
      padding: 0;
      font-family: var(--smalltext-family);
      font-weight: 400;
    }

    .avx-list-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      font-size: 18px;
      line-height: 1.4;
      color: #393939;
    }

    .avx-list-item + .avx-list-item {
      margin-top: 26px;
    }

    .avx-icon-round {
      flex: 0 0 30px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      position: relative;
      margin-top: 3px;
    }

    .avx-icon-round.avx-icon-check {
      border: 3px solid var(--avx-green);
    }

    .avx-icon-round.avx-icon-check::before {
      content: "";
      position: absolute;
      left: 7px;
      top: 8px;
      width: 11px;
      height: 6px;
      border-left: 3px solid var(--avx-green);;
      border-bottom: 3px solid var(--avx-green);;
      transform: rotate(-45deg);
    }

    .avx-icon-round.avx-icon-cross {
      border: 3px solid #111111;
    }

    .avx-icon-round.avx-icon-cross::before,
    .avx-icon-round.avx-icon-cross::after {
      content: "";
      position: absolute;
      top: 12px;
      left: 5px;
      width: 16px;
      height: 3px;
      background: #111111;
      border-radius: 4px;
    }

    .avx-icon-round.avx-icon-cross::before {
      transform: rotate(45deg);
    }

    .avx-icon-round.avx-icon-cross::after {
      transform: rotate(-45deg);
    }

    .avx-card-right .avx-list-item {
      color: #3b3b3b;
    }

   















.avm-pricing-section-wrap {
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
    padding: 36px 0;
    overflow: hidden;
}

.avm-pricing-container {
    max-width: 1280px;
}

.avm-pricing-content-card {
    background: #fff;
    box-shadow: var(--avm-shadow-main);
    padding: 28px 34px 30px;
    border-radius: 10px;
    min-height: 337px;
    margin: 0 auto;
}

.avm-pricing-main-title {
    font-family: var(--avm-font-display);
    color: var(--avm-green-main);
        font-size: 3.1rem;
    line-height: 0.9;
    margin-bottom: 35px;
    letter-spacing: -1px;
}

.avm-pricing-sub-title {
    color: var(--avm-text-dark);
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.22;
    margin-bottom: 12px;
}

.avm-pricing-desc-text {
    color: var(--avm-text-muted);
    font-size: 0.95rem;
    line-height: 1.45;
    max-width: 260px;
    margin: 0;
}

.avm-pricing-visual-stage {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.avm-compare-box {
    position: relative;
    z-index: 2;
}

.avm-compare-label {
    min-width: 120px;
    text-align: center;
    font-size: 0.9rem;
    color: #4e4e4e;
    background: #d8d8d8;
    border: 1px solid var(--avm-border-light);
    padding: 8px 10px;
    line-height: 1.15;
    margin: 0 auto 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.avm-compare-label-success {
    color: #45a35d;
    font-weight: 700;
}

.avm-office-card {
    width: 110px;
    height: 160px;
    border: 2px solid #7d7d7d;
    background: #ececec;
    position: relative;
}

.avm-office-card-bad .avm-office-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #b8c0c5 0%, #adb6bb 55%, #d6dcdf 55%, #d6dcdf 100%);
    overflow: visible;
}

.avm-office-top-icons {
    position: absolute;
    top: 14px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.avm-pound-icon {
    font-size: 2rem;
    color: #d8ac3b;
    line-height: 1;
}

.avm-mini-plant {
    width: 10px;
    height: 18px;
    background: linear-gradient(to top, #5f9f58 0%, #7fce6a 100%);
    border-radius: 10px 10px 0 0;
    position: relative;
}

.avm-mini-plant::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: -2px;
    width: 14px;
    height: 6px;
    background: #9e7657;
    border-radius: 2px;
}

.avm-mini-monitor {
    width: 16px;
    height: 12px;
    background: #e9e9e9;
    border: 2px solid #9ba3aa;
    position: relative;
}

.avm-mini-monitor::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 4px;
    width: 6px;
    height: 6px;
    background: #9ba3aa;
}

.avm-office-desk {
    position: absolute;
    bottom: 52px;
    left: 12px;
    width: 44px;
    height: 8px;
    background: #7c6659;
}

.avm-office-chair {
    position: absolute;
    bottom: 40px;
    left: 56px;
    width: 18px;
    height: 32px;
    border: 2px solid #6f767c;
    border-radius: 3px;
}

.avm-office-plant-big {
    position: absolute;
    bottom: 18px;
    left: 12px;
    width: 18px;
    height: 48px;
    background: linear-gradient(to top, #4f9e62 0%, #84d284 100%);
    border-radius: 12px;
}

.avm-office-plant-big::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: -2px;
    width: 22px;
    height: 10px;
    background: #7c5e48;
    border-radius: 2px;
}

.avm-price-tag {
    position: absolute;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0,0,0,0.14);
}

.avm-price-tag-red {
    left: -14px;
    top: 34px;
    background: var(--avm-red-main);
    padding: 6px 14px;
    transform: rotate(10deg);
    font-size: 0.95rem;
    border-radius: 4px;
}

.avm-price-tag-brown {
    left: -2px;
    bottom: 10px;
    background: var(--avm-brown-main);
    padding: 6px 8px;
    transform: rotate(-8deg);
    font-size: 0.58rem;
    line-height: 1.1;
    border-radius: 3px;
    text-align: center;
}

.avm-price-tag-green-left {
    left: 10px;
    bottom: -18px;
    background: #4f9d65;
    padding: 5px 10px;
    font-size: 0.9rem;
    border-radius: 3px;
}

.avm-middle-connector-area {
    width: 210px;
    height: 220px;
    position: relative;
    z-index: 2;
}

.avm-cartoon-person {
    position: absolute;
    right: 52px;
    bottom: 22px;
    width: 86px;
    height: 170px;
    z-index: 3;
}

.avm-person-head {
    width: 28px;
    height: 28px;
    background: #e8b09b;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 28px;
    border: 1px solid rgba(0,0,0,0.18);
}

.avm-person-head::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 12px;
    background: #7f716a;
    border-radius: 16px 16px 6px 6px;
}

.avm-person-body {
    width: 56px;
    height: 78px;
    background: #b7c7bb;
    border-radius: 26px 26px 18px 18px;
    position: absolute;
    top: 24px;
    left: 16px;
    border: 1px solid rgba(0,0,0,0.14);
}

.avm-person-arm {
    position: absolute;
    height: 10px;
    background: #b7c7bb;
    top: 62px;
    border-radius: 10px;
}

.avm-person-arm-left {
    width: 40px;
    left: -2px;
    transform: rotate(-24deg);
}

.avm-person-arm-right {
    width: 46px;
    right: -8px;
    transform: rotate(30deg);
}

.avm-person-arm-left::after,
.avm-person-arm-right::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #e8b09b;
    border-radius: 50%;
    right: -3px;
    top: 0;
}

.avm-person-leg {
    position: absolute;
    width: 14px;
    height: 66px;
    background: #67a877;
    bottom: 0;
    border-radius: 10px;
}

.avm-person-leg-left {
    left: 28px;
    transform: rotate(2deg);
}

.avm-person-leg-right {
    left: 44px;
    transform: rotate(-6deg);
}

.avm-curve-line {
    position: absolute;
    left: 0;
    bottom: 18px;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.avm-office-card-good {
    background: #e9ece8;
    border-color: #5f8f6c;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 14px;
    position: relative;
}

.avm-team-wrap {
    position: relative;
    width: 82px;
    height: 116px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.avm-team-person {
    width: 34px;
    position: relative;
}

.avm-team-head {
    width: 22px;
    height: 22px;
    background: #f1b29d;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.avm-team-body {
    width: 34px;
    height: 74px;
    border-radius: 16px 16px 8px 8px;
    margin-top: -2px;
    position: relative;
}

.avm-team-person-male .avm-team-body {
    background: #94bcae;
}

.avm-team-person-female .avm-team-body {
    background: #d2af4b;
}

.avm-team-laptop {
    position: absolute;
    left: 25px;
    bottom: 26px;
    width: 32px;
    height: 20px;
    background: #ca5646;
    border-radius: 3px;
    z-index: 4;
    box-shadow: 0 2px 3px rgba(0,0,0,0.15);
}

.avm-approval-mark {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #49a15d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

.avm-flat-fee-badge {
    display: inline-block;
    margin-top: 10px;
    background: #58a86e;
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 6px 12px;
    border-radius: 4px;
}

.avm-ground-shadow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 20px;
    background: rgba(0,0,0,0.12);
    filter: blur(2px);
    border-radius: 50%;
    z-index: 0;
}


.agency-vibe-section {
    /* Subtle chalkboard texture effect */
    background-color: #1a1a1a;
    background-image: url("image/infographic_3-[Converted] 2.png"); 
    padding: 40px 0;
    color: white;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
        background-repeat: round;
}

.agency-vibe-title {
    font-family: var(--sm-font-family);
    margin-bottom: 60px;
    line-height: 1.2;
    font-weight: 400;
}

.agency-vibe-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.agency-vibe-card:hover {
    transform: translateY(-25px);
}

.agency-vibe-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--chalk-white);
    /* Giving icons a "sketched/chalk" glow */
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.4));
}

.agency-vibe-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--chalk-white);
     font-family: var(--sm-font-family);
}

.agency-vibe-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 300px;
    margin: 0 auto;
     font-family: var(--smalltext-family);
}



/* Custom class naming starting with sm- for Sandy Media */

.sm-container-row {
    background-color: #f8f9fa; /* Light grey background */
    padding: 2rem;
    border-radius: 10px;
}

/* Specific styling for the visual section image */
.sm-workflow-image {
    max-height: 400px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Card Styling for the Right Side */
.sm-checklist-card {
    border: 2px solid #333; /* Darker border like a clipboard */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* Custom Green Header styling */
.sm-checklist-header {
    background-color: #28a745; /* Green header */
    color: white;
    padding: 1.5rem;
    font-weight: bold;
    font-style: italic;
    border-bottom: 2px solid #333;
}

/* Body and List Styling */
.sm-checklist-body {
    padding: 2rem;
}

.sm-checklist-list {
    font-size: 1.1rem;
    line-height: 1.8;
}

.sm-checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.sm-bullet {
    color: #28a745; /* Match green for bullets */
    font-size: 1.5rem;
    margin-right: 10px;
    margin-top: -5px; /* Alignment adjustment */
}








/* Custom Styles for Testimonial Section */
.unique-tst-section {
    background-color: #e9e9e9; /* Light gray background from image */
    padding: 30px 0;
    font-family: 'Poppins', sans-serif;
}

.unique-tst-label {
    color: #666;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-family: var(--smalltext-family);
}

.unique-tst-main-heading {
    font-family: var(--sm-font-family);
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 10px;
    color: #1a1a1a;
}

.unique-tst-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.unique-tst-img-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
}

.unique-tst-img-box img {
    max-width: 80%;
    height: auto;
    border-radius: 6px;
}

.unique-tst-name {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #111;
}

.unique-tst-feedback {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    padding: 0 10px;
}

/* Carousel Control Customization */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.2);
    border-radius: 50%;
    padding: 20px;
}











.custom-lead-form-wrapper {
    max-width: 850px;
}

/* Typography */
.custom-lead-form-label {
    display: block;
    font-family: var(--sm-font-family);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0;
}

.custom-lead-form-sublabel {
    font-size: 1rem;
    color: #999;
    margin-bottom: 8px;
    font-weight: 300;
}

/* Form Inputs */
.custom-lead-form-input {
    border: 1px solid #ccc;
    border-radius: 0; /* Square edges as per design */
    padding: 12px;
    font-size: 1rem;
}

.custom-lead-form-input:focus {
    box-shadow: none;
    border-color: #000;
}

.custom-lead-form-input::placeholder {
    color: #d1d1d1;
}

/* Captcha Box Placeholder */
.custom-lead-form-captcha-box {
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    padding: 10px 15px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 250px;
}

/* The Green Button with Shadow */
.custom-lead-form-submit-btn {
    background-color: #00e640; /* High-vibrancy green */
    color: white;
    font-weight: 600;
    font-size: 18px;
    border: none;
    border-radius: 0;
    padding: 10px 25px;
    position: relative;
    box-shadow: 4px 4px 0px #000; /* Solid black shadow */
    transition: transform 0.1s;
}

.custom-lead-form-submit-btn:hover {
    background-color: #00c837;
    color: white;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000;
}

.custom-lead-form-submit-btn:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}








.alt-faq-section {
            padding: 80px 0;
            background: #2D2D2E;
            color: #fff;
        }

        .alt-faq-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 50px;
            letter-spacing: -1px;
        }

        /* Unique Accordion Styling */
        .alt-custom-accordion .accordion-item {
            background-color: transparent;
            border: none;
            border-bottom: 1px solid var(--faq-border);
            border-radius: 0;
        }

        .alt-custom-accordion .accordion-button {
            background-color: transparent;
            color: var(--faq-text);
            font-size: 1.1rem;
            font-weight: 300;
            padding: 25px 0;
            box-shadow: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Remove default Bootstrap arrow */
        .alt-custom-accordion .accordion-button::after {
            display: none;
        }

        /* Custom Plus/Cross Icon */
        .alt-faq-icon {
            font-size: 0.9rem;
            transition: transform 0.3s ease;
            opacity: 0.7;
        }

        /* Rotate icon when active */
        .alt-custom-accordion .accordion-button:not(.collapsed) .alt-faq-icon {
            transform: rotate(45deg);
        }

        .alt-custom-accordion .accordion-button:focus {
            z-index: 3;
            outline: 0;
            box-shadow: none;
        }

        .alt-faq-content {
            color: #bbbbbb;
            padding-bottom: 25px;
            line-height: 1.6;
            font-weight: 300;
        }

  




        .ts-custom-trusted-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    text-align: center;
}

.ts-header-title {
    font-size: 32px;
    margin-bottom: 50px;
    color: #000;
    font-family: var(--smalltext-family);
}

.ts-header-title span {
    font-weight: 800;
}

/* Wrapper to hide overflow */
.ts-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 25px;
    display: flex;
    position: relative;
}

/* The actual moving track */
.ts-logo-track {
    display: flex;
    width: max-content; /* Ensure it stays in one line */
}

/* Individual Card Design (Matches image_a0beda.jpg) */
.ts-card {
    width: var(--ts-card-width);
    height: 140px;
    margin-right: var(--ts-card-margin);
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    padding: 20px;
    flex-shrink: 0;
}

.ts-card img {
    max-width: 90%;
    /*max-height: 80%;*/
    object-fit: contain;
}

/* Animations */
.ts-animate-left {
    animation: tsScrollLeft var(--ts-speed) linear infinite;
}

.ts-animate-right {
    animation: tsScrollRight var(--ts-speed) linear infinite;
}

@keyframes tsScrollLeft {
    from { transform: translateX(0); }
    /* Slide left by exactly half the total width of the content */
    to { transform: translateX(-50%); }
}

@keyframes tsScrollRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.ts-footer-description {
    
    margin: 60px auto 0;
    font-size: 20px;
    line-height: 1.4;
    color: #000;
}








/* Footer Main Container */
        .sm-footer-wrapper {
            background-color: var(--sm-bg-dark);
            color: var(--sm-white);
            padding: 80px 0;
        }

        /* Typography */
        .sm-footer-brand {
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: 1px;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .sm-footer-brand span {
            font-weight: 300;
        }

        .sm-footer-desc {
            color: var(--sm-text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
            max-width: 280px;
            margin-bottom: 25px;
        }

        .sm-footer-meta {
            color: var(--sm-text-gray);
            font-size: 0.9rem;
            text-decoration: none;
            display: block;
            margin-top: 5px;
        }

        .sm-footer-link:hover {
            color: var(--sm-white);
        }

      

        /* Right Side Layout */
        .sm-footer-cta-text {
            font-size: 1.1rem;
            margin-right: 20px;
            font-weight: 300;
        }

        /* The Custom Green Button */
        .sm-footer-btn-login {
            background-color: var(--sm-btn-green);
            color: #fff;
            border: none;
            font-weight: 700;
            padding: 12px 20px;
            font-size: 1.1rem;
            box-shadow: 4px 4px 0px #000; /* Recreating that solid shadow look */
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }

        .sm-footer-btn-login:hover {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0px #000;
            background-color: #00ff48;
            color: #fff;
        }

        .sm-footer-secondary-link {
            display: block;
            margin-top: 40px;
            color: var(--sm-text-gray);
            text-decoration: none;
            font-size: 1.1rem;
        }

     .search-container{
        display: none;
     }
     .texthideshow{
        display: none;
     }


/* Container for the overlay */
.checklist-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

/* Positioning the text over the image */
.checklist-overlay {
    position: absolute;
    top: 68px;
    left: -10px;
    width: 100%;
    height: 100%;
    padding: 10% 12%; /* Adjusts text to fit inside the paper borders */
    display: flex;
    flex-direction: column;
}

/* Green Header Positioning */
.checklist-header {
   
    margin-bottom: 20%;
}
.setbgimg{

}

.checklist-header h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    left: 27px;
}

/* List Styling */
.custom-checklist li {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
}

.custom-checklist li i {
    color: #28a745; /* Green checkmark */
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .checklist-header h2 {
        font-size: 15px;
    }
    .custom-checklist li {
                margin-top: 10px;
        font-size: 13px;
        margin-bottom: 0.5rem;
    }
    .checklist-header {
        margin-bottom: 10%;
    }
}
























