:root {
  --white: #ffffff;
  --primary: #0066cc;
  --dark: #333333;
  --body-color: #F4F8FF;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: var(--body-color) !important;
  color: var(--dark-gray);
  overflow-x: hidden;
}

.btn {
  font-weight: 600;
  padding: 9px 17px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.navbar {
	background-color: var(--body-color);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}
.btn-primary {
  background: #124578 !important;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #0f3564 !impor;
  cursor: pointer; 
}

.hero-section {
    padding: 100px 0 80px 0;
    color: #000;
}


  h1 {
            font-size: 3.6rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .subtext {
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 550px;
        }

        .image-rounded {
            border-radius: 22px;
            overflow: hidden;
        }

        .play-circle {
            width: 115px;
            height: 115px;
            border-radius: 50%;
            background: #1c4ed8;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            right: -35px;
            bottom: -35px;
            border: 8px solid white;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .play-circle i {
            font-size: 38px;
        }

        /* Courier avatar group */
        .courier-avatars img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 3px solid white;
            margin-left: -12px;
        }

        .btn-primary-custom {
            background-color: #1c4ed8;
            border: none;
            padding: 12px 32px;
            border-radius: 10px;
            font-size: 1.1rem;
        }

        .contact-box {
            background: white;
            padding: 14px 26px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
        }

        .contact-box i {
            font-size: 26px;
            color: #1c4ed8;
            margin-right: 10px;
        }

        .contact-text {
            font-size: 1rem;
            line-height: 1.3;
        }

        .contact-text strong {
            color: #1c4ed8;
        }

        
.accordion-topic{
font-size: 18px;
text-transform: uppercase;
text-align: center;
margin: 2rem 0 10px 0;
align-items: center;
font-weight: 700;
}
.accordion {
    max-width: 1200px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    border-left: none;
    border-right: none;
    margin-bottom: 5px;
    border-radius: 5px;
}

.accordion-header {
    background-color: #ffffff;
    padding: 15px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 700;
    position: relative;
    transition: background-color 0.3s ease;
}


.accordion-header::after {
    content: '+';
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 15px;
    max-height: 0;
    background-color: #ffffff;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 600px;
    padding: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  
      .navbar {
    padding: 0.75rem 0;
  }

  .hero-section {
    padding: 100px 0 0px;
  }
}


.join-us-section {
    background-color: #F4F8FF;
}

.section-title {
    font-size: 28px;
}

.join-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.join-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.join-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #124578;
    margin-bottom: 15px;
}

.join-card-text {
    font-size: 16px;
    color: #333333;
    flex-grow: 1;
}

.join-card-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: #124578;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.join-card-btn:hover {
    background: #1560A0;
    transform: translateY(-3px);
}

.footer {
    background: #124578;
    color: #ffffff;
    padding: 60px 0 20px;
    border-radius: 20px;
    font-size: 14px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

form.mt-4 {
    max-width: 450px;
}


form .form-control {
    border: 2px solid #124578;
    border-right: none; 
    border-radius: 50px 0 0 50px;
    padding: 12px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #124578;
    background-color: #ffffff;
}

form .form-control::placeholder {
    color: #999999;
    font-style: italic;
}

form .form-control:focus {
    border-color: #1560A0; 
    box-shadow: 0 0 5px rgba(18, 69, 120, 0.4);
}

form .btn {
    border-radius: 0 50px 50px 0;
    background-color: #ffffff; 
    color: #000;
    font-weight: 700;
    padding: 12px 25px;
    border: 2px solid #124578;
    transition: all 0.3s ease;
}

form .btn:hover {
    background-color: #1560A0; 
    color: #fff;
    border-color: #1560A0;
}

/* Responsive adjustments */
@media (max-width: 576px) {

    form.mt-4 {
    max-width: 350px; 
}

    form .form-control,
    form .btn {
        font-size: 14px;
        padding: 10px 15px;
    }

    form .form-control {
        border-radius: 50px;
        border-right: 2px solid #124578;
    }

    form .btn {
        border-radius: 50px;
    }
}


    .lux-card {
            background-color: rgba(255, 255, 255, 0.7);
        border-radius: 22px;
        padding: 10px;
        height: 100%;
    }

    .lux-card-gray {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .lux-img {
        width: 100%;
        border-radius: 18px;
    }

    .btn-round {
        border-radius: 40px;
        padding: 10px 20px;
    }

    .overlay-text {
        position: absolute;
        bottom: 20px;
        left: 20px;
        color: #000;
    }

    .overlay-card {
        position: relative;
        border-radius: 22px;
        overflow: hidden;
    }


     .hero-box {
        border-radius: 30px;
        position: relative;
        padding: 40px;
        margin: 0px 20px;
    }

    .hero-imt {
        position: absolute;
        left: -20px;
        bottom: 0;
        width: 55%;
        max-width: 250px;
    }

    @media (max-width: 992px) {
        .hero-img {
            width: 100%;
            margin-bottom: 20px;
        }
    }
	
	
	
	
/* ------------------------------
   ADDRESS TRIGGER (Fake Input)
--------------------------------*/
.address-trigger {
    cursor: pointer;
    transition: all 0.25s ease;
    background-color: #ffffff;
    border: 2px solid #dee2e6;
}

.address-trigger:hover {
    border-color:  #124578;
}


/* ------------------------------
   MODAL CUSTOMIZATION
--------------------------------*/
#addressModal .modal-content {
    border-radius: 12px;
    overflow: hidden;
}

#addressModal .modal-header {
    color: #000;
    border-bottom: none;
}

#addressModal .modal-title {
    font-weight: 600;
}

#addressModal .modal-body {
    padding: 1.5rem;
}

#addressModal input.form-control {
    padding: 0.8rem 0.4rem;
	font-size: 16px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: border-color 0.25s;
}

#addressModal input.form-control:focus {
    border-color: #124578;
    box-shadow: none;
}

#addressModal .modal-footer {
    padding: 1rem 1.5rem;
    border-top: none;
}


/* ------------------------------
   RESPONSIVE IMPROVEMENTS
--------------------------------*/
@media (max-width: 768px) {

    .address-trigger {
        text-align: center !important;
    }
}

@media (max-width: 576px) {

	      .badge { min-width: 92px; font-size: 0.95rem; padding: .45rem .9rem; }
}


    .section-delivery {
      position: relative;
      background: var(--mustard);
      color: var(--heading);
      padding: 6rem 0 6.5rem; 
      overflow: hidden;
    }
	
	
.badge-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.badge {
  background-color: #124578;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
}



.features-section {
      padding-top: 3.5rem;
      padding-bottom: 4.5rem;
    }

    .features-section h1.main-title {
      font-weight: 800;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      margin-bottom: 2.5rem;
      text-align: center;
    }

    .icon-wrap {

      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon-wrap img {
      max-width: 72%;
      height: auto;
      display: block;
    }

    .feature-title {
      font-weight: 700;
      margin-top: 0.5rem;
      margin-bottom: 0.75rem;
      text-align: center;
    }

    .feature-desc {
      color: #333;
      text-align: center;
      line-height: 1.45;
    }

    /* inline highlight chip */
    .highlight {
      display: inline-block;
      background: var(--mustard);
      color: #0d0d0d;
      padding: 0.15rem 0.55rem;
      border-radius: 999px;
      font-weight: 600;
      margin-left: .2rem;
      margin-right: .2rem;
      transform: translateY(1px);
    }

    .cta-wrap { margin-top: 2.5rem; }
    .btn-cta {
      background: var(--cta-green);
      color: #fff;
      border: 0;
      padding: 0.8rem 2.1rem;
      border-radius: 999px;
      font-weight: 700;
      box-shadow: 0 6px 18px rgba(14,139,108,0.12);
    }
    .btn-cta:active { transform: translateY(1px); }

    @media (max-width: 576px) {
      .icon-wrap { width: 110px; height: 110px; }
      .feature-desc { padding: 0 1rem; max-width: 100%; }
    }
	
	
@media (max-width: 576px) {
	
	#addressModal .modal-content {
    border-radius: 12px 12px 0px 0px;
    overflow: hidden;
}

  .mobile-modal .modal-dialog {
    margin: 0;
    height: 100%;
	 border-radius: 0; 
    display: flex;
    align-items: flex-end;
  }

  .mobile-modal .modal-content {
    border-radius: 20px 20px 0 0;
    animation: slideUp 0.35s ease;
    height: auto;
	 border-radius: 0; 
    max-height: 92vh;
    display: flex;
    flex-direction: column;
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  /* Sticky header */
  .mobile-modal-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 99;
    border-bottom: 1px solid #eee;
  }

  /* Scrollable content */
  .mobile-modal-body {
    overflow-y: auto;
    padding-bottom: 40px;
  }

  /* Darker backdrop like native modal sheets */
  .modal-backdrop.show {
    opacity: 0.35 !important;
  }
}


.download-app-section {
  background: #124578;
  border-radius: 20px;
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}

/* Text Area */
.download-app-section h1 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
}

.download-app-section p.lead {
  font-size: 1.15rem;
  color: #fff;
}

.store-badges img {
  height: 50px;
  width: auto;
  transition: transform 0.2s ease;
}

.store-badges img:hover {
  transform: scale(1.05);
}
.phones-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
}

.phone-mockup {
  position: absolute;
    
  width: 360px;
  max-width: 100%;
  z-index: 2;
  transition: all 0.3s ease;
}

.phone-mockup {
  filter: drop-shadow(0px 8px 20px rgba(0,0,0,0.15));
}


@media (max-width: 992px) {
  .phone-mockup {
    position: relative;
    top: 0;
    right: 0;
    margin: 0 auto 0;
    display: block;
    width: 280px;
  }

  .phones-wrap {
    min-height: auto;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .download-app-section {
    padding: 50px 10px;
  }

  .download-app-section h1 {
    font-size: 1.9rem;
  }

  .store-badges img {
    height: 44px;
  }

  .phone-mockup {
    width: 150px;
  }
}
