 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lexend", sans-serif;
  }
 
  html,
  body {
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
 

 
  .navbar {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 99999;
  }
 
  .nav-container {
    position: relative;
    z-index: 5;
    width: 90%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:#103B65;
    backdrop-filter: blur(1px);
    height: 60px;
    margin-top: 48px;
  }
 
  /* Logo */
  .logo_nav img {
    width: 50px;
    height: 50px;
    margin-top: 4px;
  }
 
  /* Menu */
  .nav-menu {
    list-style: none;
    display: flex;
    gap: 60px;
  }
 
  .nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
  }
 
  /* Contact Button */
  .nav-btn {
          margin-top: -1px;
    background: #9a0002;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 400;
  }
 
  .nav-btn:hover {
    background: #c40000;
  }
 
 
 
 
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
 
  .hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transition: 0.3s;
  }
 
  .mobile-contact-btn {
    display: none;
  }
 
  /* ============= MOBILE MENU ============= */
 @media (max-width: 768px) {
 
  .nav-btn{
    display: none;
  }
 
  .nav-menu li a{
    color: black;
  }
 
  .nav-container {
    height: 60px !important;
    padding: 10px 10px;
    position: relative;
    z-index: 10;
  }
 
   .nav-menu {
    border-radius: 16px;
  position: absolute;
  top: 59px;
  left: 64%;              /* Center align */
  transform: translateX(-50%) translateY(-100%); /* FIX */
  width: 65%;
  max-width: 90%;         /* Same width as your nav-container */
  background: white;
  flex-direction: column;
  gap: 20px;
  padding: 15px;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 9999;
}
 
 
 .nav-menu.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
  .mobile-contact-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #9a0002;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
  }
 
  .hamburger {
      background: red;
        height: 45px;
        width: 45px;
        padding: 13px 8px;
        margin-right: 0px;
        border-radius: 99999px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10000;
  }
}
  /* ============= HAMBURGER ANIMATION ============= */
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
 
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
 
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
 
  .hero-section {
    width: 100%;
    height: 692px;
    /* background-image: url(images/red_car.jpg); */
    background-size: cover;
    background-position: center;
    position: relative;
  }
 
  .hero-section::before {
    display: none;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(7, 7, 7, 0) 0%,
        rgba(7, 7, 7, 1) 100%);
    z-index: 1;
    pointer-events: none;
  }
 
  /* Container styling */
.hero_heading {
    width: 872px;
    height: 228px;
    padding-top: 226px;
    padding-left: 93px;
    font-weight: 400;
    font-size: 79px;
    line-height: 144%;
    color: #ffffff;
}
 
  /* ==========================
   HEADING (comes from top)
========================== */
 
  /* First part: "We Bring" */
  .first {
    color: #103B65;
    opacity: 0;
    transform: translateY(-60px);
    /* from top */
    display: inline-block;
    animation: slideDown 0.8s ease-out forwards;
    animation-delay: 0.2s;
  }
 
  /* Second part: Shine + rest line */
  #second {
    color: #103B65;
    opacity: 0;
    transform: translateY(-60px);
    /* from top */
    display: inline-block;
    animation: slideDown 0.6s ease-out forwards;
    animation-delay: 0.3s;
  }
 
  /* ==========================
   PARAGRAPH & BUTTON
========================== */
  p.hero-text {
    color: #103B65;
    font-size: 20px;
    font-weight: 400;
    line-height: 144%;
    letter-spacing: 2px;
    padding-top: 17px;
    margin-bottom: -15px;
    opacity: 0;
    transform: translateY(-60px);
    /* from top */
    animation: slideDown 0.2s ease-out forwards;
    animation-delay: 0.9s;
  }
 
  .hero-btn {
    background: #9a0002;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 400;
    opacity: 0;
    transform: translateY(-60px);
    /* from top */
    animation: slideDown 0.4s ease-out forwards;
    animation-delay: 1s;
  }
 
  /* ==========================
   KEYFRAMES
========================== */
 
  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-60px);
    }
 
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
 
  /* Shine styling (unchanged) */
span.dark_shine {
    font-weight: 400;
    font-size: 128px;
    line-height: 60%;
    font-family: "Great Vibes", cursive;
    color: #9a0002;
    /*background: linear-gradient(to right, #9a0002 0, #fff 15%, #9a0002 30%);*/
     background: linear-gradient(120deg, #9a0002 0%, #fff 15%, #9a0002 30%);
    background-size: 250%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 7s infinite linear;
    padding-right: 10px;
}
  
@keyframes shineText {
    0% {
        background-position: 0%;
    }
   
    100% {
        background-position: 500%;
    }
}

 
  .overlay-content {
    position: relative;
    z-index: 2;
  }
 
  .hero-box {
    width: 100%;
    height: 146px;
    margin-top: 330px;
    /* padding-left: 227px; */
    display: flex;
    justify-content: center;
    align-items: anchor-cente;
    position: relative;
    animation: slideUpAll 0.6s ease-out forwards;
    animation-delay: 1.6s;
    opacity: 0;
    gap: 100px;
  }
   .section-title::after {
  content: "";
    position: absolute;
    top: 4%;
    transform: translateY(-50%);
    width: 188px;
    height: 115px;
    background: url(images/whatwe.png) no-repeat center center / contain;
}
 
 
  /* Main Boxes */
  .sub-box {
    position: relative;
    width: 253px;
    height: 190px;
    color: white;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #dfe7f1;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    background: #103B65;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
  }
 
  .sub-box .bg {
    position: absolute;
    inset: 0;
    background: url(images/RSW.png) center / contain no-repeat;
    opacity: 2.45;
    z-index: 1;
  }
 
  img.icon {
    width: 48px;
    height: 48px;
    color: #103B65;
  }
 
  .logo_heading {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: Lexend;
  }
 
  p.box-p {
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 2px;
    font-family: Lexend;
  }
 
  /* ▼ Slide-up animation */
  @keyframes slideUpAll {
    0% {
      transform: translateY(120px);
      opacity: 0;
    }
 
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
 
  /* ============================================
   RESPONSIVE DESIGN — MOBILE & TABLET
============================================ */
 
  /* ========== TABLET VIEW (max-width: 1024px) ========== */
  @media (max-width: 1024px) {
 
 
 
    .hero_heading {
      width: 100%;
      font-size: 60px;
      padding-left: 40px;
      padding-top: 180px;
    }
 
    span.dark_shine {
      font-size: 64px;
    }
 
    p.hero-text {
      width: 90%;
      padding-left: 0px;
      font-size: 16px;
    }
    .hero-section{
      width: 75%;
    }
 
    .hero-btn {
      margin-left: 0px;
    }
    #second, .first{
    font-size: 64px;
    }
 
    .hero-box {
              gap: 20px;
        padding: 0px 20px;
        margin-top: 160px;
    }
 
    .sub-box {
      width: 200px;
      height: 180px;
      text-align: center;
    }
  }
 
 
  /* ========== MOBILE VIEW (max-width: 576px) ========== */
  @media (max-width: 576px) {
          #second, .first {
        font-size: 48px;
    }
 
    .hero-section {
      width: 100%;
      height: 390px;
      /*background-image: url(images/red_car.jpg);*/
      background-size: cover;
      background-position: center;
      position: relative;
    }
 
    /* .navbar {
      width: 350px;
      display: flex;
      justify-content: center;
      height: 50px;
    }
 
    .nav-container {
      width: 92%;
      height: 55px;
      padding: 8px 8px;
    } */
 
    .logo_nav img {
      width: 40px;
      height: 40px;
    }
 
    /* HERO HEADING */
    .hero_heading {
      padding-left: 20px;
      padding-top: 200px;
      font-size: 35px;
      line-height: 148%;
      font-weight: 400;
      font-family: system-ui;
    }
 
    span.dark_shine {
      font-size: 48px;
      margin-right: -18px;
      line-height: 60%;
    }
 
    /* HERO TEXT */
    p.hero-text {
      width: 90%;
      font-size: 14px;
      padding-left: 0px;
      letter-spacing: 1px;
      padding-bottom: 15px;
    }
 
    /* HERO BUTTON */
    .hero-btn {
        margin-left: 0px;
        font-size: 16px;
        padding: 0;
        max-width: 113px;
        padding: 6px 18px;
    }
 
    /* HERO BOX SECTION */
    .hero-box {
      align-items: center;
      gap: 5px;
      margin-top: 216px;
      /*width: 390px;*/
      height: 112px;
      justify-content: center;
      padding: 0px 10px
    }
 
    .sub-box {
      width: 90px;
        height: 146px;
        border-radius: 16px;
    }
 
    .sub-box .bg {
      opacity: 2.45;
      width: 87px;
      height: 67px;
      z-index: 1;
      position: absolute;
    }
 
    img.icon {
      width: 30px;
      height: 30px;
      color: #103B65;
    }
 
    .logo_heading {
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 1px;
      font-family: Lexend;
      text-align: center;
    }
 
    p.box-p {
      font-weight: 400;
        padding: 0 10px;
        display: flex;
        font-size: 12px;
        letter-spacing: 0px;
        font-family: Lexend;
        text-align: center;
    }
 
  }
 
    .hr-line{
        display: none;
    }

    .vv-doorstep-section {
        /*background: linear-gradient(90deg, #020710, #0f121a, #000);*/
        padding: 80px 0;
        color: #fff;
        font-family: "Inter", sans-serif;
    }

    /* TOP HEADING */
    .vv-doorstep-heading {
        text-align: center;
        /* margin-bottom: 50px; */
    }

    .vv-doorstep-title {
        line-height: 1.0;
        /*font-family: "Stack Sans Notch", sans-serif;*/
        font-size: 64px;
        font-weight: 800;
        color: #313131;
        margin-bottom: 10px;
    }

    .vv-doorstep-subtitle {
        /*font-family: "Stack Sans Notch", sans-serif;*/
        font-weight: 300;
        color: #313131;
        font-size: 32px;

    }

    /* IMAGE + TEXT ROW */
    .vv-doorstep-container {
        width: 100%;
        max-width: 1110px;
        margin: auto;
        display: flex;
        align-items: center;
        gap: 60px;
    }

    /* LEFT IMAGE */
    .vv-doorstep-left {
        /* flex: 1; */
        display: flex;
        justify-content: center;
    }

    .vv-doorstep-img {
        width: 315px;
        border-radius: 16px;
    }

    /* RIGHT TEXT */
    .vv-doorstep-right {
        flex: 1;
    }

    .vv-doorstep-desc {
        font-weight: 300;
        line-height: 1.7;
        font-size: 20px;
        color: #000000;
        margin-bottom: 30px;
    }

    /* FEATURES */
    .vv-doorstep-features {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 18px 25px;
    }

    .vv-feature-item {
        /*font-family: "Stack Sans Notch", sans-serif;*/
        background: #103B65;
        color: #fff;
        padding: 12px 22px;
        border-radius: 30px;
        font-size: 18px;
        font-weight: 400;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.08);
    }

    /* icon style */
    .vv-feature-icon {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }



    /* Tablets (992px ↓) */
    @media (max-width: 992px) {
        .vv-doorstep-container {
            gap: 20px;
            padding: 0px 20px;
        }

        .vv-doorstep-img {
            width: 310px;
        }

        .vv-doorstep-title {
            font-size: 60px;
        }

        .vv-doorstep-subtitle {
            font-size: 26px;
        }

        .vv-doorstep-desc {
            font-size: 18px;
        }

        .vv-feature-item {
            font-size: 14px;
            padding: 10px 18px;
        }
    }

    /* Mobile (768px ↓) */
    @media (max-width: 768px) {
        .vv-doorstep-container {
            flex-direction: column;
            /* Stack image & text */
            text-align: center;
            gap: 45px;
        }

        .vv-doorstep-img {
            width: 240px;
        }

        .vv-doorstep-features {
            grid-template-columns: 1fr;
            /* Single column */
            justify-items: center;
        }

        .vv-feature-item {
            width: max-content;
        }
    }

    /* Small Mobile (480px ↓) */
    @media (max-width: 480px) {
        .vv-doorstep-container {
          margin-top: -30px;
            flex-direction: row;
        text-align: start;
        gap: 5px;
        padding: 0px 10px;
        }
        .vv-doorstep-features{
            display: none;
        }
        .vv-doorstep-title {
            line-height: normal;
            font-size: 32px;
        }

        .vv-doorstep-subtitle {
            font-size: 16px;
        }

        .vv-doorstep-img {
            width: 187px;
            height: 136px;
        }

        .vv-doorstep-desc {
            font-size: 10px;
            margin-bottom: 0px;
            line-height: 1.5;
        }

        .vv-feature-item {
            font-size: 16px;
            padding: 10px 16px;
        }
    }

    /* Very small screens (360px ↓) */
    @media (max-width: 360px) {
        .vv-doorstep-title {
            font-size: 30px;
        }

        .vv-doorstep-subtitle {
            font-size: 18px;
        }

        .vv-feature-item {
            font-size: 15px;
        }
    }


    /* SECTION */
    .vv-beforeafter-section {
        padding: 90px 0;
        /*background: linear-gradient(90deg, #020710, #0f121a, #000);*/
        color: #fff;
        font-family: "Inter", sans-serif;
        text-align: center;
    }

    /* TITLE */
    .vv-beforeafter-title {
        font-size: 64px;
        font-weight: 800;
        margin-bottom: 60px;
        color: #313131;
        position: relative;
        /*font-family: "Stack Sans Notch", sans-serif;*/
    }

    .vv-beforeafter-title span {
        color: #103B65;
        /* blue & icon color in your screenshot */
    }

    /* CARD CONTAINER */
    .vv-beforeafter-card {
        width: 90%;
        max-width: 1000px;
        margin: 0 auto 60px auto;
        /* background: #0c0f15; */
        padding: 35px;
        border-radius: 24px;
        /* border: 1px solid white; */
        flex-direction: column;
        display: flex;
        align-items: center;
        gap: 25px;
    }
    /* IMAGE BOX */
    .vv-ba-img-box {
        flex: 1;
    }

    .vv-ba-img {
        max-width: 300px;
        border-radius: 15px;
        display: block;
    }

      /* BEFORE IMAGE (left side) */
.vv-beforeafter-title::before {
  content: "";
  background-image: url("images/left.png");
  background-size: cover;
      position: relative;
      top: 100px;
  background-position: center;
  width: 120px;
  height: 120px;
  border-radius: 10px;
  margin-right: 15px;
  display: inline-block;
}
.vv-package-title::before {
  content: "";
  background-image: url("images/crown.png");
  background-size: cover;
      position: relative;
      top: -30px;
  background-position: center;
  width: 120px;
  height: 120px;
  border-radius: 10px;
  margin-right: -90px;
  display: inline-block;
  animation: tilt 2s infinite ease-in-out;
}
@keyframes tilt {
  0% { transform: rotate(-5deg); }
  50% { transform:  rotate(5deg); }
  100% { transform:rotate(-5deg); }
}

/* AFTER IMAGE (right side) */
.vv-beforeafter-title::after {
      position: relative;
      top: 100px;
  content: "";
  background-image: url("images/right.png");
  background-size: cover;
  background-position: center;
  width: 120px;
  height: 120px;
  border-radius: 10px;
  margin-left: 15px;
  display: inline-block;
}
.two-cars{
  display: flex;
  gap: 20px;
}
    /* TEXT BOX */
    .vv-ba-text {
      color: #242424;
        letter-spacing: 2px;
        font-weight: 400;
        flex: 1;
        font-size: 20px;
        line-height: 1.7;
        opacity: 0.9;
        padding: 10px 20px;
        text-align: center;
    }

    .vv-ba-text1 {
        letter-spacing: 2px;
        font-weight: 400;
        flex: 1;
        font-size: 20px;
        line-height: 1.7;
        opacity: 0.9;
        padding: 10px 20px;
        text-align: right;
    }

    /* Tablets (992px ↓) */
    @media (max-width: 992px) {

        .vv-beforeafter-title {
            font-size: 50px;
        }

        .vv-beforeafter-card {
            padding: 28px;
            gap: 20px;
        }

        .vv-ba-text,
        .vv-ba-text1 {
            font-size: 18px;
            line-height: 1.6;
        }
    }

    /* Mobile (768px ↓) */
    @media (max-width: 768px) {

        .vv-beforeafter-card {
            flex-direction: column;
            /* Stack image + text */
            text-align: center;
        }

        .vv-ba-text,
        .vv-ba-text1 {
            text-align: center !important;
            padding: 0 10px;
            font-size: 17px;
        }

        .vv-ba-img {
            width: 100%;
            max-width: 380px;
            margin: 0 auto 20px;
        }

        .vv-beforeafter-title {
            font-size: 42px;
        }
    }

    /* Small Mobile (480px ↓) */
    @media (max-width: 480px) {

        .vv-beforeafter-title {
            font-size: 28px;
            margin-bottom: 50px;
        }

        .vv-beforeafter-card {
            /* flex-direction: column-reverse; */
            padding: 12px;
            gap: 15px;
        }

        .vv-ba-text,
        .vv-ba-text1 {
            font-size: 12px;
            letter-spacing: 1px;
        }

        .vv-ba-img {
            border-radius: 12px;
        }
    }

    /* Very Small Screens (360px ↓) */
    @media (max-width: 360px) {

        .vv-beforeafter-title {
            font-size: 28px;
        }

        .vv-ba-text,
        .vv-ba-text1 {
            font-size: 14px;
        }

        .vv-beforeafter-card {
            padding: 16px;
        }
    }













    /* SECTION */
    .vv-package-section {
        padding: 90px 0;
        color: #fff;
        font-family: "Inter", sans-serif;
        text-align: center;
    }

    /* TITLE */
    .vv-package-title {
        /*font-family: "Stack Sans Notch", sans-serif;*/
        color: #000000;
        font-size: 64px;
        font-weight: 800;
        margin-bottom: 10px;
        font-size: 54px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .vv-package-subtitle {
      color: #000000;
        font-weight: 500;
        font-size: 20px;
        /* opacity: 0.8; */
        /* line-height: 1.5; */
        margin-bottom: 30px;
    }

    /* TOGGLE */
    .vv-toggle-box {
        background: #e9e8e8;
        width: fit-content;
        margin: 0 auto 50px;
        padding: 5px;
        border-radius: 40px;
        display: flex;
        gap: 5px;
    }

    .vv-toggle {
        font-weight: 500;
        background: transparent;
        border: none;
        padding: 10px 25px;
        font-size: 16px;
        color: black;
        border-radius: 30px;
        cursor: pointer;
    }

    .vv-toggle.active {
        background: #103B65;
        color: white;
    }

    /* CARD GRID */
    .vv-package-cards {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
        margin-bottom: 60px;
    }

    /* PACKAGE CARD */
    .vv-card {
        width: 336px;
        background: #0b0f14;
        padding: 15px;
        border-radius: 20px;
        border: 0px solid rgba(255, 255, 255, 0.12);
        text-align: left;
    }
    .vv-card-zz{
      background-color: white;
      color: #272727;
    padding: 20px 10px;
    border-radius: 16px;
    min-height: 320px;

    }

    /* Colors */
    .vv-standard-card {
        border-color: #1E3A19;
    }

    .vv-premium-card {
        border-color: #533300;
    }

    .vv-premiumplus-card {
        border-color: #516EFF
    }

    /* HEADER */
    .vv-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .vv-card-header h3 {
        margin: 0;
        color: #619E54;
        font-size: 32px;
        font-weight: 500;
    }

    .vv-card-icon {
        width: 32px;
    }

    /* Description */
    .vv-card-desc {
        width: 73%;
        font-weight: 300;
        margin: 0px 0 15px;
        font-size: 10px;
        min-height: 40px;
    }

    /* PRICES */
    .vv-price-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 25px;
    }

    .vv-price-row h4 {
        font-size: 35px;
        margin-top: 0px;
    }

    .vv-price-row span {
        font-weight: 600;
        font-size: 16px;

    }

    /* INCLUDES */
    .vv-includes {

        letter-spacing: 2px;
        font-weight: 500;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .vv-features {
        list-style: disc;
        margin-left: 25px;

    }

    .vv-features li {
        margin-bottom: 6px;
    }

    /* ADD-ONS */
    .vv-addons-title {
      color: #103B65;
        font-weight: 500;
        font-size: 24px;
        margin-bottom: 20px;

    }

    .vv-addons-box {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .vv-addon {
        min-width: 24%;
        background: #103B65;
        color: #fff;
        padding: 12px 25px;
        border-radius: 30px;
        font-size: 20px;
        font-weight: 500;
    }


    .differnce {
        display: flex;
        font-family: "Lexend", sans-serif;
        flex-direction: column;
        gap: 10px;
    }

    .vv-hide {
        display: none !important;
    }

    .vv-package-cards.monthly-view {
        flex-direction: column !important;
    }


    .vv-cards-onetime,
    .vv-cards-monthly {
        display: flex;
        flex-direction: row;
        gap: 25px;
    }


    /* Tablet — 992px ↓ */
    @media (max-width: 992px) {
        .vv-package-title {
            font-size: 46px;
        }

       
         .vv-cards-onetime, .vv-cards-monthly {
        display: flex;
        gap: 15px;
        padding: 10px;
        scroll-behavior: smooth;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* hides scrollbar in Firefox */
        }

        .vv-cards-onetime::-webkit-scrollbar,
        .vv-cards-monthly::-webkit-scrollbar {
        display: none; /* hides scrollbar in Chrome */
        }
    }

    /* Mobile — 768px ↓ */
    @media (max-width: 768px) {
        .vv-package-title {
            font-size: 38px;
        }

        .vv-card {
            width: 100%;
            max-width: 420px;
        }

        .vv-price-row h4 {
            font-size: 32px;
        }
    }

    /* Small Mobile — 480px ↓ */
    @media (max-width: 480px) {
        .vv-card-icon {
    width: 28px;
}
        .vv-card-header h3 {
            font-size: 20px;
        }
        .vv-features li {
    margin-bottom: 2px;
    font-size: 10px;
    text-align: start;
    margin-left: -10px;
}
.vv-includes {
    margin-bottom: 5px;
}
        .vv-doorstep-section {
            padding: 40px 0px;
        }
        .vv-beforeafter-section{
            padding: 40px 0px;
        }
        .vv-package-section {
            padding: 40px 0px;
        }
        
        .vv-package-title {
            font-size: 32px;
                    padding: 0 10px;
        }
        .vv-card-zz {
    border-radius: 10px;
    /*min-height: 320px;*/
}
        .vv-card-desc {
        width: 100%;
        height: 50px;
        font-size: 10px;
        letter-spacing: 1px;
        line-height: 0.9rem;
    }
        .vv-card-header {
        align-items: flex-start;
        }
        .vv-card-zz {
          min-height: 328px;
        }
        .vv-package-subtitle {
          font-size: 14px;
          padding: 0px 10px;
          line-height: 1;
        }

        .vv-addon {
            font-size: 14px;
            padding: 10px 18px;
            width: 80%;
        }
        .vv-addons-title {
    font-size: 16px;
    padding: 0 20px;
}
        .vv-price-row{
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 5px;
        }
        .hr-line{
        display: block;
        width: 70%;
        }
        .vv-card {
        min-width: 250px;
        padding: 8px;
        border-radius: 18px;
        }

       .vv-cards-onetime, .vv-cards-monthly {
        display: flex;
        gap: 15px;
        padding: 10px;
        scroll-behavior: smooth;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* hides scrollbar in Firefox */
        }

        .vv-cards-onetime::-webkit-scrollbar,
        .vv-cards-monthly::-webkit-scrollbar {
        display: none; /* hides scrollbar in Chrome */
        }

        

    }

    /* Very Small — 360px ↓ */
    @media (max-width: 360px) {
        .vv-package-title {
            font-size: 28px;
        }

        .vv-price-row h4 {
            font-size: 26px;
        }
    }


    /* .vv-price-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    position: relative;
}


.vv-price-row div:nth-child(1) {
    position: relative;
    padding-right: 25px;
}

.vv-price-row div:nth-child(1)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.4); 
} */





.last-car{
    position: absolute;
    right: 5%;
    bottom: 0;
    /*animation: driveCar 4s linear infinite;*/
}
@keyframes driveCar {
    0% {
        right: -50%;
    }
    100% {
         right: 140%;
    }
}


    .vv-contact-section {
        position: relative;
        padding: 80px 0px 0px 0px;
        color: #fff;
        font-family: "Arya", sans-serif;
        overflow: hidden;
    }

    .vv-contact-container {
        width: 92%;
        max-width: 1450px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    /* LEFT SIDE */
    .vv-contact-left {
        width: 36%;
    }

    .vv-contact-left h2 {
        /*font-family: "Stack Sans Notch", sans-serif;*/
        margin: 0px;
        color: #103B65;
        font-size: 94px;
        font-weight: 700;
    }

    .vv-contact-left h2 span {

        color: #103B65;
    }

    .vv-contact-left p {
        /*font-family: "Stack Sans Notch", sans-serif;*/
        margin: 0px;
        font-weight: 400;
        font-size: 20px;
        color: #103B65;
    }

    .vv-contact-mascot img {
        width: 280px;
        float: right;
    }

    /* RIGHT SIDE FORM */
    .vv-contact-right {
        width: 55%;
    }

    .vv-contact-form {
        width: 100%;
    }

    .vv-form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

    .vv-form-row>.vv-input-group {
        flex: 1;
        /* FIX: Force equal width like Services / E-Mail */
    }

    .vv-input-group {
        width: 100%;
        /* FIX: make each input take equal width in row */
        display: flex;
        flex-direction: column;
    }

    .vv-input-group.full {
        width: 100%;
    }

    .vv-input-group label {
        color: #3B3B3B;
        font-size: 14px;
        font-weight: 300;
    }


    /* Smooth dropdown transition */
    .vv-has-select select {
        transition: background 0.3s ease, color 0.3s ease;
    }



    /* Remove native arrow */
    .vv-has-select {
        position: relative;
    }

    .vv-has-select select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: transparent;
        padding-right: 40px;
        color: #3B3B3B;
        cursor: pointer;
    }

    /* Arrow */
    .vv-has-select::after {
        content: "";
        position: absolute;
        top: 69%;
        right: 15px;
        width: 24px;
        height: 24px;
        transform: translateY(-50%);
        background-size: contain;
        background-repeat: no-repeat;
        color: #3B3B3B;
        pointer-events: none;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16'><path fill='white' d='M4 6l4 4 4-4'/></svg>");
        transition: transform 0.3s ease;
    }

    .vv-has-select.open::after {
        transform: translateY(-50%) rotate(180deg);
    }


    /* Dropdown options black */
    .vv-has-select select option {
        color: #000;
        background: #fff;
    }





    .vv-input-group input,
    .vv-input-group select,
    .vv-input-group textarea {
        box-sizing: border-box;
        width: 100%;
        padding: 12px 18px;
        border: 1px solid #AAAAAA;
        background: transparent;
        color: #3B3B3B;
        border-radius: 10px;
        outline: none;
        font-size: 12px;
    }

    .vv-input-group textarea {
        height: 120px;
        resize: none;
    }

    .vv-contact-btn {
        margin-top: 20px;
        padding: 12px 20px;
        background: #9A0002;
        color: #fff;
        border-radius: 50px;
        font-size: 20px;
        border: none;
        cursor: pointer;
        float: right;
    }

    /* CAR IMAGE */
    .vv-contact-car {
        position: absolute;
        width: 1223px;
        top: 24px;
        right: 0;
        /* opacity: 0.25; */
        pointer-events: none;
        height: 874px;
    }







    @media(max-width: 992px) {
        .vv-contact-container {
            flex-direction: column;
        }

        .vv-contact-left,
        .vv-contact-right {
            width: 100%;
        }

        .vv-contact-car {
        height: 500px;
        width: 100%;
        opacity: 0.9;
        margin-top: 40px;
        top: 26%;
        }
        .vv-contact-left p,.vv-contact-left h2 {
      text-align: end;
    }
    }



    @media(max-width: 480px) {
        .vv-contact-section{
           padding: 40px 0px 0px 0px;
        }
        .vv-contact-left h2 {
            text-align: left;
            font-size: 48px;
        }
        
        .last-car{
          height: 160px;
          width: 300px;
        }




        .vv-contact-left p {

            text-align: left;
            font-size: 14px;
        }

        .vv-contact-mascot img {
            width: 200px;

        }

        .vv-form-row {

            margin-bottom: 12px;
        }

        .vv-input-group label {
            font-size: 12px;

        }


        .vv-contact-btn {
            padding: 10px 20px;
            font-size: 12px;
        }


        .vv-input-group input,
        .vv-input-group select,
        .vv-input-group textarea {

            font-size: 11px;


        }
    }

    /* ==========================
   WHAT WE CAN SECTION
========================== */
  .services-section {
    padding-top: 114px;
    color: #fff;
    position: relative;
    z-index: 1;
    /*background: black;*/
  }
 
  .container {
    width: 90%;
    margin: auto;
  }
 
  /* === TITLE === */
  .section-title {
    position: relative;
    color: #313131;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 800;
    font-size: 64px;
    letter-spacing: 5%;
    line-height: 100%;
    margin-bottom: 45px;
  }
 
  /* === CARD WRAPPER === */
  .services-wrapper {
    display: flex;
    gap: 26px;
  }
 
  /* === CARD === */
  .service-box {
    width: 230px;
    height: 320px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
  }
 
  .service-box.big {
    width: 260px;
  }
 
  /* === IMAGE === */
  .service-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
 
  /* === DARK GRADIENT (important for FIGMA look) === */
  .service-box .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 100%);
  }
 
 
  /* === TEXT === */
  .service-box p {
    position: absolute;
    white-space: normal;
    bottom: 18px;
    left: 18px;
    right: 18px;
    font-size: 32px;
    font-weight: 800;
    font-family: "Reddit Sans", sans-serif;
    line-height: 1.3;
  }
 
 
 
 
 
  @media (max-width: 1200px) {
 
    .service-box,
    .service-box.big {
      width: calc(33.33% - 20px);
      height: 300px;
    }
 
    .service-box p {
      font-size: 26px;
    }
  }
 
  /* ============================= */
  /*             TABLETS           */
  /* ============================= */
  @media (max-width: 900px) {
    .section-title {
      font-size: 64px;
    }
 
    .service-box,
    .service-box.big {
      width: calc(30% - 15px);
      height: 282px;
    }
 
    .service-box p {
      font-size: 22px;
    }
  }
 
  /* ============================= */
  /*            MOBILE             */
  /* ============================= */
   @media (min-width: 600px) {
     .services-scroll {
      overflow: visible;
      -ms-overflow-style: none;
      /* IE + Edge */
      scrollbar-width: none;
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 10px;
    }
   }
  @media (max-width: 600px) {
    .section-title::after {
    top: 0%;
    width: 112px;
    height: 77px;
}
.service-box,
    .service-box.big {
      width: calc(60% - 15px);
      height: 282px;
    }
    .section-title {
      font-size: 34px;
    }
    .service-box p {
      font-size: 24px;
      bottom: 16px;
      left: 16px;
      right: 16px;
      line-height: 1.2;
      white-space: normal;
      /* allows text to break in 2–3 lines */
    }
 
    /* enable horizontal scroll */
    .services-scroll {
      overflow: visible;
      -ms-overflow-style: none;
      /* IE + Edge */
      scrollbar-width: none;
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 10px;
    }
 
    /* custom scrollbar */
    .services-scroll::-webkit-scrollbar {
      display: none;
      height: 6px;
    }
 
    .services-scroll::-webkit-scrollbar-thumb {
      background: #2da5ff;
      border-radius: 10px;
    }
 
    .services-scroll::-webkit-scrollbar-track {
      background: #0d0d0d;
    }
 
    /* wrapper turns into inline-flex */
    .services-wrapper {
      display: inline-flex !important;
      gap: 18px;
    }
 
    /* ensure snap alignment */
    .service-box {
      scroll-snap-align: start;
    }
 
   
  }

   .about-section { 
    width: 100%;
     /*background: black; */
    color: #ffffff;
    font-family: "Lexend", sans-serif;
    padding-top: 239px;
    opacity: 0;
    transform: scale(0.85) translateY(70px);
    transition: all 0.5s ease-out;
    /* SPEED HERE */
  }
 
  .about-section.show {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
 
  /* Align image + content */
  .about-container {
    /* width: 90%; */
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    /* gap: 80px; */
  }
 
  /* LEFT IMAGE */
  .about-image img {
    object-fit: contain;
    border-radius: 16px;
  }
 
  /* RIGHT CONTENT */
  .about-content {
    max-width: 799px;
    z-index: 1;
  }
 
  /* Heading */
  .about-title {
    font-weight: 700;
    font-size: 55px;
    line-height: 115%;
    letter-spacing: 2px;
  }
 
  .about-white {
    color: #313131;
    font-size: 64px;
    font-weight: 600;
    line-height: 85%;
  }
 
  .about-blue {
    color: #103B65;
    font-size: 64px;
    font-weight: 600;
    line-height: 85%;
  }
 
  /* Subheading */
  .subheading {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
    letter-spacing: 2px;
  }
 
  /* Paragraph */
  .about-text {
    margin-top: 15px;
    font-size: 20px;
    line-height: 150%;
    color: #000000;
    font-weight: 300;
    letter-spacing: 2px;
  }
 
  /* BOTTOM LINE */
  .bottom-line {
    width: 500px;
    margin: 80px auto 0 auto;
    border-bottom: 4px solid #000000;
    opacity: 0.4;
  }
    @media (max-width: 992px) {
    
    .about-text {
      font-size: 16px;
    }
    }
  @media (max-width: 480px) {
      .about-section{
          padding-top: 60px;
      }
      .about-title {
          display: none;
      }
      .about-container{
          gap: 10px;
          padding: 0px 20px;
      }
  .about-image img {
            width: 100%;
        height: 140px;
        object-fit: contain;
        border-radius: 16px;
  }
  .about-text {
    margin-top: 0px;
    font-size: 12px;
    line-height: 130%;
    font-weight: 300;
    letter-spacing: 0px;
}
.subheading {
    font-size: 14px;
    font-weight: 500;
     margin-top: 0px; 
    letter-spacing: 2px;
}
}
 
 /* ==========================
   Footer
========================== */
  /*.main-footer {*/
  /*  background: #030b1a;*/
  /*  color: white;*/
  /*  padding: 60px 13%;*/
  /*  font-family: "Poppins", sans-serif;*/
    
  /*}*/
 
  /*.footer-top {*/
  /*  display: flex;*/
  /*  justify-content: space-between;*/
  /*  align-items: flex-start;*/
  /*  flex-wrap: wrap;*/
  /*  width: 100%;*/
  /*}*/
 
  /*.footer-left h2 {*/
  /*  font-size: 48px;*/
  /*  margin-bottom: 20px;*/
  /*  line-height: 1.3;*/
  /*  font-weight: 600;*/
  /*  letter-spacing: 2px;*/
  /*}*/
 
  /*.book-btn {*/
  /*  display: inline-block;*/
  /*  background: #9A0002;*/
  /*  color: white;*/
  /*  padding: 9px 20px;*/
  /*  border-radius: 50px;*/
  /*  font-size: 24px;*/
  /*  text-decoration: none;*/
  /*  font-weight: 400;*/
  /*  width: 190px;*/
  /*  height: 47px;*/
  /*  text-align: center;*/
  /*  letter-spacing: 2px;*/
  /*}*/
 
  /*.footer-right h3 {*/
  /*  font-size: 33px;*/
  /*  margin-bottom: 20px;*/
  /*  font-weight: 600;*/
  /*  padding-top: 20px;*/
  /*}*/
 
  /*.contact-box {*/
  /*  background: white;*/
  /*  color: #000;*/
  /*  padding: 5px 25px;*/
  /*  border-radius: 25px;*/
  /*  margin-bottom: 12px;*/
  /*  width: 260px;*/
  /*  font-weight: 400;*/
  /*  font-size: 16px;*/
  /*}*/
 
  /*.email-box {*/
  /*  background: white;*/
  /*  color: #000;*/
  /*  padding: 5px 25px;*/
  /*  border-radius: 25px;*/
  /*  margin-bottom: 12px;*/
  /*  width: 335px;*/
  /*  font-weight: 400;*/
  /*  font-size: 16px;*/
  /*}*/
 
  /*.social-row {*/
  /*  text-align: center;*/
  /*  margin: 50px 0 20px;*/
  /*}*/
 
  /*.social-row a {*/
  /*  display: inline-block;*/
  /*  margin: 0 15px;*/
  /*}*/
 
  /*.social-icon {*/
  /*  width: 35px;*/
  /*  height: 35px;*/
  /*  object-fit: contain;*/
  /*  transition: 0.3s;*/
  /*  cursor: pointer;*/
  /*}*/
 
  /*.social-icon:hover {*/
  /*  transform: scale(1.2);*/
  /*}*/
 
 
  /*.footer-bottom a {*/
  /*  color: white;*/
  /*  text-decoration: none;*/
  /*  margin: 0 10px;*/
  /*  font-size: 20px;*/
  /*  font-weight: 300;*/
  /*}*/
 
  /*.divider {*/
  /*  display: inline-block;*/
  /*  width: 1px;*/
  /*  height: 40px;*/
  /*  background: white;*/
  /*  vertical-align: middle;*/
  /*}*/
 
  /*.footer-bottom {*/
  /*  text-align: center;*/
  /*  padding-right: 54px;*/
  /*}*/
 
 
 
  @media (max-width: 992px) {
    
    /*.main-footer{*/
    /*  padding: 60px 5%;*/
    /*}*/
    .about-section {
      padding-top: 150px;
    }
  
    .vvv{
      display: none;
    }
    .about-container {
      flex-direction: column;
    }
    /*.footer-top {*/
    /*  flex-direction: column;*/
    /*  text-align: left;*/
    /*  gap: 40px;*/
    /*}*/
 
    /*.footer-left h2 {*/
    /*  font-size: 40px;*/
    /*}*/
 
    /*.footer-right h3 {*/
    /*  font-size: 26px;*/
    /*}*/
  }
 
 
  /* ============================= */
  /*         MOBILE VIEW           */
  /* ============================= */
 
  @media (max-width: 600px) {
    /*.main-footer {*/
    /*  padding: 30px 20px;*/
    /*}*/
 
    /*.footer-left h2 {*/
    /*  font-size: 32px;*/
    /*    text-align: left;*/
    /*}*/
 
    /*.book-btn {*/
    /*  margin-top: -10px;*/
    /*    float: left;*/
    /*    font-size: 12px;*/
    /*    padding: 10px 10px;*/
    /*    width: 110px;*/
    /*    height: 34px;*/
    /*}*/
 
    /*.footer-right h3 {*/
    /*  padding: 0px;*/
    /*  text-align: left;*/
    /*  font-size: 24px;*/
    /*}*/
 
  /*  .contact-box,*/
  /*  .email-box {*/
  /*    width: 100%;*/
  /*    text-align: left;*/
  /*    font-size: 12px;*/
  /*  }*/
 
  /*  .social-icon {*/
  /*    width: 28px;*/
  /*    margin: 0 10px;*/
  /*  }*/
 
  /*  .footer-bottom {*/
  /*    padding: 0px;*/
  /*    font-size: 14px;*/
  /*    margin-top: 30px;*/
  /*  }*/
 
  /*  .footer-bottom a {*/
  /*    font-size: 12px;*/
  /*  }*/
 
  /*  .social-row a {*/
  /*    margin: 0px 5px;*/
  /*  }*/
  /*}*/
  }

    .about-title1 { 
    display: none; 
  font-weight: 700;
  font-size: 55px;
  line-height: 115%;
  letter-spacing: 2px;
}

.about-white1 { 
  color: #ffffff;
  font-size: 64px;
  font-weight: 600;
  line-height: 85%;
}

.about-blue1 { 
  color: #103B65;
  font-size: 64px;
  font-weight: 600;
  line-height: 85%;
}
/* Tablet screens (1024px and below) */
@media (max-width: 1024px) {
  .about-title1 {
    font-size: 48px;
  }
  .about-white1,
  .about-blue1 {
    font-size: 56px;
  }
}

/* Small tablets / landscape phones (768px and below) */
@media (max-width: 768px) {
  .about-title1 {
    font-size: 40px;
  }
  .about-white1,
  .about-blue1 {
    font-size: 48px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .about-title1 {
      display: block;
    font-size: 40px;
    text-align: center;
  }
  .bb{
      display:none;
  }

  .about-white1,
  .about-blue1 {
    font-size: 32px;
    line-height: 100%;
    text-align: left;
    padding: 0px 20px;
    display: block;
    color: #103B65;
  }
}

   .vv-doorstep-features1 {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            padding: 10px;
        }
         .item2 {
            display: none;
        }

        /* Default hidden below 480px */
        .vv-doorstep-features1 {
            display: none;
        }

        @media (max-width: 480px) {
            .vv-doorstep-features1 {
                margin-top: 30px;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .item2 {
                /*width: fit-content;*/
                padding: 0px 10px;
                margin-top: 0px;
                display: grid;
                grid-template-columns: repeat(2, 2fr);
                gap: 10px;
                
            }
            
        }

        /* Style for all items (pill style) */
        .vv-feature-item1,
        .vv-feature-item2 {
            display: flex;
            align-items: center;
            gap: 6px;
            background: #103B65;
            color: white;
            border-radius: 50px;
            padding: 5px 10px;
            font-size: 11px;
            font-weight: 500;
            border: 1px solid rgba(0,0,0,0.1);
        }

        /* Icon size */
        .vv-feature-icon1 {
            width: 20px;
            height: 20px;
        }
       
/* ==========================
   WHY SECTION BASE STYLE
========================== */
.why-section {
  width: 100%;
  padding: 100px 20px;
  color: #fff;
}

.why-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.why-img img {
  width: 600px;
  height: 540px;
  object-fit: cover;
  border-radius: 8px;
}

.why-content {
    width: 100%;
    z-index: 0;
}

.why-content h2 {
  color: #171717;
  font-size: 64px;
  font-weight: 800;
  font-family: "Reddit Sans", sans-serif;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.why-content ul {
   color: #171717;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-content ul li {
     background-color: #103B65;
    color: #ffff;
    font-size: 20px;
    line-height: 1.1;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Lexend';
    letter-spacing: 2px;
    transition: all 0.3s ease;
  cursor: pointer;
}
.why-content ul li:hover {
  
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}


span.valid-color {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
      padding-left: 33px;
}
.small-list {
    display: none;
}
.car-sv{
  margin-bottom: -5px;
}

/* ==========================
   RESPONSIVE BREAKPOINTS
========================== */

/* Medium screens: Tablet Landscape (1024px and down) */
@media (max-width: 1024px) {
  .why-container {
    width: 100%;
    gap: 20px;
  }

  .why-content h2 {
    font-size: 38px;
    font-family: "Reddit Sans", sans-serif;
  }
  .why-section {
    padding: 20px 20px;
}

  .why-img img {
    width: 350px;
    height: 330px;
  }
  .why-content ul li,
  span.valid-color {
    line-height: 1.1;
  }
  .why-content ul li{
  font-size: 16px;
}

span.valid-color {
    font-size: 14px;
  }
}



/* Tablet & Large Mobile (768px and down) */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }


  .why-content h2 {
    font-size: 42px;
  }

  .why-content ul li,
  span.valid-color {
      text-align: left;
    font-size: 18px;
  }
}



.vv-contact-bg{
  background-image: url(images/last-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 50vh;
}

/* Small Mobile (480px and down) */
@media (max-width: 480px) {
  .vv-package-title::before {
    height: 64px;
    width: 64px;
        margin-right: -62px;
        top: -20px;
  }

   .bottom-line {
    width: 250px;
    margin: 80px auto 0 auto;
    border-bottom: 2px solid #000000;
    opacity: 0.4;
}
    .why-container {
        flex-direction: row;
        text-align: center;
        width: 100%;
        gap: 10px;
    }
  .why-section {
    padding: 60px 15px;
  }

  .why-content h2 {
    font-size: 34px;
    letter-spacing: 1px;
    text-align: left;
    margin-bottom: 0px;
  }

  .why-img img {
    object-fit: cover;
        width: 184px;
        height: 173px;
        border-radius: 16px;
  }
  .why-content ul {
    display: none;
  }
  .small-list {
    font-family: "Lexend", sans-serif;
    display: block;
    list-style: none;
        color: #ffff;
    margin-top: 20px;
    line-height: 1.3;
  }
      .small-list  li{
          background: #103B65;
          border-radius: 16px;
          padding: 10px;
        margin-bottom: 10px;
        font-size: 20px;
        line-height:1;
         transition: all 0.3s ease;
  cursor: pointer;
  
      }
.small-list li:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
  .why-content ul li,
  span.valid-color {
    font-size: 12px;
    /*line-height: 1.4;*/
    font-weight: 400;
    padding-left: 30px;
    display: block;
  }
  .vv-contact-bg {
    background-image: url(images/last-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 38vh;
    margin-top: -100px;
}
.last-car{
  height: 97px;
  width: 225px;
}
}

.doorstep-img {
    width: 197px;
    height: 70px;
    object-fit: cover;
}
@media (max-width: 1024px) {
  .doorstep-img {
    width: 170px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  .doorstep-img {
    width: 150px;
    height: 55px;
  }
}
@media (max-width: 480px) {
  .doorstep-img {
    width: 100px;
    height: 45px;
  }
  .vv-doorstep-heading {
    margin-bottom: 20px;
}
}
