:root {
      --primary-color: #0284c7;
      --primary-hover: #0369a1;
      --dark-navy: #2d428f;
      --text-main: #334155;
      --text-muted: #64748b;
      --bg-light: #f8fafc;
      --white: #ffffff;
      --border-color: #e2e8f0;

      /* Accents */
      --blue-soft: #e0f2fe;
      --green-soft: #dcfce7;
      --orange-soft: #ffedd5;
      --purple-soft: #f3e8ff;

      --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
      --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }


/*------------------------------------- CONTACT PAGE ----------------------------------------*/
 /* Contact Section */
    .contact-section {
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 3.5rem;
      align-items: start;
    }

    /* Left Column: Details */
    .badge {
      display: inline-block;
      background-color: #e0f2fe;
      color: #0284c7;
      font-weight: 700;
      font-size: 0.85rem;
      padding: 0.35rem 0.9rem;
      border-radius: 20px;
      margin-bottom: 1rem;
    }

    .info-header h1 {
      font-size: 2.75rem;
      color: #2d428f;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .info-header p {
      color: #64748b;
      font-size: 1.1rem;
      margin-bottom: 2.5rem;
    }

    /* Info Cards */
    .info-cards {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      margin-bottom: 2.5rem;
    }

    .info-card {
      background: #FFF;
      padding: 1.25rem 1.5rem;
      border-radius: 14px;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      border: 1px solid #e2e8f0;
      box-shadow:0 4px 6px -1px rgba(0, 0, 0, 0.05);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .info-card:hover {
      transform: translateX(6px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    }

    .icon-box {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .icon-box.blue {
      background-color: #e0f2fe;
      color: #0284c7;
    }

    .icon-box.green {
      background-color: #dcfce7;
      color: #16a34a;
    }

    .icon-box.purple {
      background-color: #f3e8ff;
      color: #9333ea;
    }

    .card-details h4 {
      color: var(--dark-navy);
      font-size: 1rem;
      margin-bottom: 0.2rem;
    }

    .card-details p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.4;
    }
 
    /* Right Column: Form */
    .contact-form-container {
      background: #FFF;
      padding: 3rem;
      border-radius: 20px;
      border: 1px solid var(--border-color);
      box-shadow:  0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    }

    .map h3 {
      font-size: 1.75rem;
      color: #2d428f;
      margin-bottom: 0.5rem;
    }

    .map p {
      color: #64748b;
      font-size: 0.95rem;
      margin-bottom: 2rem;
    } 

    /* Responsive Breakdown */
    @media (max-width: 992px) {
      .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .contact-form-container {
        padding: 2rem;
      }
    }
 






    /*-------------------------------------------- About --------------------------------*/
    
    /* 1. INTRO CONTENT SECTION */
    .intro-section {
      padding: 5rem 0;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 4rem;
      align-items: center;
    }

    .intro-text h1 {
      font-size: 2.75rem;
      color: var(--dark-navy);
      line-height: 1.25;
      margin-bottom: 1.25rem;
    }

    .intro-text .lead {
      font-size: 1.15rem;
      color: var(--dark-navy);
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .intro-text p {
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    .intro-btn-group {
      display: flex;
      gap: 1rem;
    }
 /* Intro Visual Image Container */
.intro-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  background-color: var(--dark-navy);
}

.intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.intro-visual:hover .intro-img {
  transform: scale(1.03);
}

/* Floating Badges overlaid on top of image */
.floating-badge {
  position: absolute;
  background-color: var(--white);
  color: var(--dark-navy);
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border-color);
  z-index: 2;
}

.badge-1 {
  top: -15px;
  right: -15px;
}

.badge-1 i { 
  color: #16a34a; 
}

.badge-2 {
  bottom: -15px;
  left: -15px;
}

.badge-2 i { 
  color: #ea580c; 
}

/* Mobile Adjustments */
@media (max-width: 576px) {
  .image-wrapper {
    height: 260px;
  }

  .badge-1 {
    right: 0px;
    top: -10px;
  }

  .badge-2 {
    left: 0px;
    bottom: -10px;
  }
}

   

    /* 3. VISION & MISSION SECTION */
    .vm-section {
      padding: 4rem 0;
    }

    .vm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
    }

    .vm-card {
      background-color: var(--white);
      padding: 3rem;
      border-radius: 20px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .vm-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-xl);
    }

    .vm-icon {
      width: 60px;
      height: 60px;
      border-radius: 14px;
      background-color: var(--blue-soft);
      color: var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 1.5rem;
    }

    .vm-card h3 {
      font-size: 1.5rem;
      color: var(--dark-navy);
      margin-bottom: 1rem;
    }

    .vm-card p {
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .vm-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .vm-list li {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--dark-navy);
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .vm-list li i {
      color: #16a34a;
      font-size: 0.85rem;
    }
 

    /* Responsive Breakdown */
    @media (max-width: 992px) {
      .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .vm-grid {
        grid-template-columns: 1fr;
      }
    }
 


    /*----------------------- Service Page --------------------------*/
      /* Responsive CSS Grid Layout */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
    }

    /* Service Card Design */
    .card {
      background: #ffffff;
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid #e2e8f0;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      border-color: #cbd5e1;
    }

    .service-img{
      width:100%;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    .card-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }

    /* Icon Box Placeholder */
    .card-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background-color: #eff6ff;
      color: #2563eb;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .card-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: #0f172a;
      line-height: 1.3;
    }

    .card-body p {
      font-size: 0.9rem;
      color: #64748b;
      line-height: 1.5;
      margin-bottom: 20px;
    }

    /* Action Button */
    .card-btn {
      display: inline-block;
      width: 100%;
      text-align: center;
      padding: 10px 16px;
      background-color: #f1f5f9;
      color: #334155;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.875rem;
      border-radius: 8px;
      transition: background-color 0.2s, color 0.2s;
    }

    .card-btn:hover {
      background-color: #2563eb;
      color: #ffffff;
    }


/* Counter Section Styling */
        .counter-section {
            background: #2e4485;
            color: #ffffff;
            width: 100%;
            padding: 70px 20px;
            position: relative;
            overflow: hidden;
        }

        .counter-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .counter-box {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 20px;
            border-radius: 12px;
            transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .counter-box:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: #ff6b00; /* Accent color on hover */
        }

        .icon-wrapper {
            font-size: 2.5rem;
            color: #ff6b00; /* Fleetocity Vibrant Accent */
            margin-bottom: 15px;
            display: inline-block;
        }

        .counter-number {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .counter-label {
            font-size: 1.05rem;
            color: #cbd5e1;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Responsive Breakpoints */
        
        /* Tablets (Medium Screens) */
        @media (max-width: 992px) {
            .counter-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        /* Mobile Devices (Small Screens) */
        @media (max-width: 576px) {
            .counter-section {
                padding: 50px 15px;
            }

            .counter-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .counter-box {
                padding: 30px 15px;
            }

            .counter-number {
                font-size: 2.2rem;
            }

            .icon-wrapper {
                font-size: 2rem;
            }
        }
 
 /* =====================================
           INSTAGRAM SECTION
        ===================================== */
        .insta-section {
            width: 100%;
            padding: 70px 0;
            background: #ffffff;
            overflow: hidden;
        }

        .insta-container {
            width: 100%;
            margin: 0 auto;
            padding: 0;
        }

        /* =====================================
           CAROUSEL
        ===================================== */
        .insta-carousel {
            width: 100%;
            overflow: hidden;
        }

        /* =====================================
           TRACK
        ===================================== */
        .insta-track {
            display: flex;
            gap: 18px;
            width: max-content;
            will-change: transform;
            animation: instaScroll 60s linear infinite;
        }

        /* Pause on hover */
        .insta-carousel:hover .insta-track {
            animation-play-state: paused;
        }

        /* =====================================
           IMAGE ITEM (DESKTOP - 5 IMAGES)
        ===================================== */
        .insta-item {
            position: relative;
            /* 5 visible images: 4 gaps * 18px = 72px total gap */
            flex: 0 0 calc((100vw - 72px) / 5);
            width: calc((100vw - 72px) / 5);
            aspect-ratio: 1 / 1;
            overflow: hidden;
            border-radius: 10px;
            display: block;
            text-decoration: none;
        }

        .insta-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        /* Hover Zoom */
        .insta-item:hover img {
            transform: scale(1.08);
        }

        /* Overlay */
        .insta-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.45);
            color: #ffffff;
            font-size: 30px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .insta-item:hover .insta-overlay {
            opacity: 1;
        }

        /* =====================================
           INFINITE SCROLL ANIMATION
        ===================================== */
        @keyframes instaScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-50% - 9px));
            }
        }

        /* =====================================
           TABLET (4 IMAGES VISIBLE)
        ===================================== */
        @media (max-width: 991px) {
            .insta-section {
                padding: 55px 0;
            }

            .insta-track {
                gap: 16px;
                animation-duration: 50s;
            }

            .insta-item {
                /* 4 visible images: 3 gaps * 16px = 48px total gap */
                flex: 0 0 calc((100vw - 48px) / 4);
                width: calc((100vw - 48px) / 4);
            }

            @keyframes instaScroll {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-50% - 8px)); }
            }
        }

        /* =====================================
           MOBILE (2 IMAGES VISIBLE)
        ===================================== */
        @media (max-width: 767px) {
            .insta-section {
                padding: 40px 0;
            }

            .insta-track {
                gap: 12px;
                animation-duration: 40s;
            }

            .insta-item {
                /* Strictly 2 images visible side-by-side */
                flex: 0 0 calc(50vw - 12px) !important;
                width: calc(50vw - 12px) !important;
                min-width: calc(50vw - 12px) !important;
                max-width: calc(50vw - 12px) !important;

                aspect-ratio: 1 / 1 !important;
                height: auto !important;

                border-radius: 8px;
                overflow: hidden;
            }

            .insta-item img {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
                object-position: center !important;
                display: block;
                transform: none !important;
            }

            .insta-item:hover img {
                transform: none !important;
            }

            @keyframes instaScroll {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-50% - 6px)); }
            }
        }

        /* =====================================
           SMALL MOBILE
        ===================================== */
        @media (max-width: 480px) {
            .insta-section {
                padding: 30px 0;
            }

            .insta-track {
                gap: 10px;
            }

            .insta-item {
                flex: 0 0 calc(50vw - 10px) !important;
                width: calc(50vw - 10px) !important;
                min-width: calc(50vw - 10px) !important;
                max-width: calc(50vw - 10px) !important;
            }

            @keyframes instaScroll {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-50% - 5px)); }
            }
        }



/* ----------------------------- Service Detail Page ---------------------- */









/* ==========================================
   HERO VIDEO
========================================== */
/* =========================================
   HERO VIDEO
========================================= */

.hero-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 20px;
    background: #111;
}

.hero-video-thumbnail {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.hero-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Overlay */

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
}

.hero-video-thumbnail:hover .hero-video-overlay {
    background: rgba(0, 0, 0, 0.45);
}


/* Play Button */

.hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 78px;
    height: 78px;

    border: 0;
    border-radius: 50%;

    background: #ffffff;
    color: #0d6efd;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    padding-left: 5px;

    cursor: pointer;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);

    transition: all 0.3s ease;
}

.hero-play-btn:hover {
    background: #0d6efd;
    color: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
}


/* =========================================
   INSTAGRAM POPUP
========================================= */

.instagram-video-popup {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 99999;
}

.instagram-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.instagram-popup-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 540px;

    height: 80vh;
    max-height: 850px;

    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.instagram-popup-content iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* Close Button */

.instagram-close {
    position: absolute;
    top: 10px;
    right: 10px;

    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 50%;

    background: #ffffff;
    color: #111;

    font-size: 18px;

    z-index: 5;
    cursor: pointer;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .hero-video {
        border-radius: 12px;
    }

    .hero-play-btn {
        width: 62px;
        height: 62px;
        font-size: 18px;
    }

    .instagram-popup-content {
        width: 92%;
        height: 75vh;
    }

}




  /* =========================================
           FEATURE CARDS
        ========================================= */

        .fleet-ams .feature-card {
            height: 100%;

            padding: 35px;

            border: 1px solid #e4eaf2;
            border-radius: 12px;

            background: #fff;

            transition: all .3s ease;
        }

        .fleet-ams .feature-card:hover {
            transform: translateY(-7px);

            box-shadow:
                0 18px 45px rgba(16, 24, 40, .08);
        }

        .fleet-ams .feature-number {
            color: #e1e1e1;
            font-size: 28px;
            font-weight: 700;

            margin-bottom: 15px;
        }

        .fleet-ams .feature-card h3 {
            font-size: 24px;
            font-weight: 700;
 color: #2c4190;
            margin-bottom: 10px;
        }

        .fleet-ams .feature-card p {
            margin: 0;
        }

.fleet-ams .uses{
              background: #f5f9ff;

}

         .fleet-ams .problem-section {
            background: #f5f9ff;
        }

        .fleet-ams .problem-card {
            height: 100%;

            padding: 35px;

            background: #fff;

            border: 1px solid #e4eaf2;
            border-radius: 12px;

            transition: all .3s ease;
        }

        .fleet-ams .problem-card:hover {
            transform: translateY(-5px);

            box-shadow:
                0 15px 35px rgba(16, 24, 40, .08);
        }

        .fleet-ams .problem-number {
            color:#e1e1e1;
            font-size: 16px;
            font-weight: 700;
        }

        .fleet-ams .problem-card h3 {
            font-size: 20px;
            font-weight: 700;
color:#2c4190;
            margin: 18px 0 10px;
        }

        .fleet-ams .problem-card p {
            margin: 0;
        }



          .fleet-ams .capability-card {
            position: relative;

            min-height: 200px;

            padding: 25px;

            border: 1px solid #e4eaf2;
            border-radius: 12px;

            background: #fff;

            transition: all .3s ease;

            overflow: hidden;
        }

        .fleet-ams .capability-card:hover {
            background: #2c4190;
            border-color: #2c4190;

            transform: translateY(-5px);
        }

        .fleet-ams .capability-card:hover h3 {
            color: #fff;
        }
 
         .fleet-ams .capability-card img{
          width:80px;
          height:80px;
          margin-bottom: 15px;
          text-align: center;
         }

        .fleet-ams .capability-card h3 {
            font-size: 19px;
            font-weight: 600;
text-align: center;
            margin: 0;
        }



         .fleet-ams .usecase-card {
            height: 100%;
            min-height: 220px;

            padding: 30px;

            border-radius: 12px;

            background: #101828;
            color: #fff;

            transition: all .3s ease;
        }

        .fleet-ams .usecase-card:hover {
            background: #2c4190;

            transform: translateY(-5px);
        }

        .fleet-ams .usecase-icon {
            font-size: 30px;
            margin-bottom: 25px;
        }

        .fleet-ams .usecase-card h3 {
            font-size: 20px;
            font-weight: 700;

            margin-bottom: 15px;
        }

        .fleet-ams .usecase-card p {
            color: #c7d0dc;
            margin: 0;
        }

        .fleet-ams .usecase-card:hover p {
            color: #fff;
        }



         /* Numbered Icon Badge */
        .icon-badge {
            width: 44px;
            height: 44px;
            background: rgba(13, 110, 253, 0.08);
            color: #2c4190;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            flex-shrink: 0;
            transition: all 0.35s ease;
        }

        /* Interactive Feature Card */
        .fleet-card {
            background: #ffffff;
            border: 1px solid #e4eaf2;
            border-radius: 16px;
            padding: 28px 24px;
            height: 100%;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .fleet-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: #2c4190;
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .fleet-card:hover {
            transform: translateX(6px);
            border-color: rgba(13, 110, 253, 0.3);
            box-shadow: 0 12px 30px rgba(13, 110, 253, 0.12);
        }

        .fleet-card:hover::before {
            opacity: 1;
        }

        .fleet-card:hover .icon-badge {
            background: #2c4190;
            color: #ffffff;
            transform: scale(1.08);
        }

        .feature-title {
            color: #2c4190;
            font-size: 19px;
            font-weight: 700;
        }

        .feature-desc {
            color: #64748b;
            font-size: 16px;
            line-height: 1.5;
        }

        /* Responsive Breakpoints */
        @media (max-width: 991.98px) {
            .fleet-features-section {
                padding: 60px 0;
            }
            .fleet-card:hover {
                transform: translateY(-4px);
            }
        }














        .fleet-info-section { padding: 90px 0; background: #f7faf9; } .fleet-info-container { max-width: 1200px; margin: auto; } .fleet-info-title { text-align: center; font-size: 42px; font-weight: 700; color: #14213d; margin-bottom: 50px; } .fleet-info-card { height: 100%; background: #ffffff; border: 1px solid #e5ebe8; border-radius: 20px; padding: 35px 30px; transition: all 0.35s ease; } .fleet-info-card:hover { transform: translateY(-8px); box-shadow: 0 18px 45px rgba(20, 33, 61, 0.10); } .fleet-info-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 15px; background: #e9f7f0; color: #1c8c5e; font-size: 25px; margin-bottom: 22px; } .fleet-info-card h3 { font-size: 23px; font-weight: 700; color: #14213d; margin-bottom: 25px; } .fleet-info-list { padding: 0; margin: 0; list-style: none; } .fleet-info-list li { position: relative; padding-left: 27px; margin-bottom: 18px; color: #687386; font-size: 15px; line-height: 1.6; } .fleet-info-list li::before { content: "\2713"; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 50%; background: #e9f7f0; color: #1c8c5e; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; } .fleet-info-list li:last-child { margin-bottom: 0; } /* Different top border for each card */ .fleet-benefits { border-top: 4px solid #1c8c5e; } .fleet-used { border-top: 4px solid #3c7be8; } .fleet-why { border-top: 4px solid #f0a62b; } /* Tablet */ @media (max-width: 991px) { .fleet-info-section { padding: 70px 0; } .fleet-info-title { font-size: 36px; } .fleet-info-card { margin-bottom: 25px; } } /* Mobile */ @media (max-width: 767px) { .fleet-info-section { padding: 55px 0; } .fleet-info-title { font-size: 30px; margin-bottom: 35px; } .fleet-info-card { padding: 28px 24px; } .fleet-info-card h3 { font-size: 21px; } }