.doz-education-sub{
    font-size: 45px;
    font-weight: 700;
    color: #00495F;
}
.doz-education-subtitle{
    font-size: 25px;
    font-weight: 600;
    color: #333;
}
.doz-education-title{
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.doz-app-image {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
  background: #e6f4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 6px 6px 10px rgba(0, 0, 0, 0.15),
    inset -6px -6px 10px rgba(255, 255, 255, 0.8);
}

.doz-app-image i {
  font-size: 20px;
  color: #008E97;
}

.doz-app-card{
    border: none;
    box-shadow: rgba(140, 140, 140, 0.25) 0px 50px 100px -20px, rgba(140, 139, 139, 0.3) 0px 30px 60px -30px, rgba(127, 127, 128, 0.35) 0px -2px 6px 0px inset;
    background-color: #FFF;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 0;
    margin-left: 7px;
}
.doz-app-image{
  float: left;
}
.doz-app-subtitle{
    font-size: 40px;
    font-weight: 700;
    color: #000;
}
.doz-deliver-sec{
  padding: 50px 0px;
}

.modern-scroll-card {
  position: relative;
  min-width: 360px;
  height: 75px;
  background: #ffffff;
  border-radius: 45px;
  padding: 0px 10px 0px 120px;
  display: flex;
  align-items: center;
  margin: 0 20px;
  box-shadow: 0px 5px 18px rgba(0,0,0,0.12);
  border: 1px solid #e5ecf1;
}

.modern-scroll-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 95px;
  height: 100%;
  background: #024c6c;
  border-radius: 45px 0 0 45px;
}

.left-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.left-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.modern-scroll-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #024c6c;
  white-space: wrap;
  margin: 0;
}

.doz-para-need{
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  margin-top: 7px;
}
.doz-para-need-1{
  font-size: 18px;
  font-weight: 600;
}

.hero-food-section {
  width: 100%;
  padding-bottom: 70px;
  background: #fff;
  overflow: hidden;
}

.hero-left {
  padding-top: 60px;
}

.food-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
}

.food-desc {
  margin-top: 15px;
  max-width: 380px;
  color: #333;
  font-size: 18px;
  font-weight: 500;
}

.hero-right {
  position: relative;
  height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.big-food {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 3px solid #F4A530;
  background-size: cover;
  background-position: center;
  z-index: 10;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.big-food p {
  font-size: 25px;
  font-weight: 600;
  color: #000;
  padding: 7px 10px;
  line-height: 25px;
}

.orbit-wrapper {
  position: absolute;
  width: 500px;
  height: 500px;
  animation: orbit 18s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@keyframes orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-food-section .circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid #F4A530;
  background-size: cover;
  background-position: center;
  background-color: #ffffff1a;
  position: absolute;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
  font-weight: 500;
  color: #000;
  transition: transform 0.3s, scale 0.3s;
}

.hero-food-section .circle:hover {
  transform: scale(1.1) rotate(0deg);
}

.hero-food-section .circle p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-food-section .circle:nth-child(1) { transform: rotate(0deg) translate(220px) rotate(0deg); }
.hero-food-section .circle:nth-child(2) { transform: rotate(72deg) translate(220px) rotate(-72deg); }
.hero-food-section .circle:nth-child(3) { transform: rotate(144deg) translate(220px) rotate(-144deg); }
.hero-food-section .circle:nth-child(4) { transform: rotate(216deg) translate(220px) rotate(-216deg); }
.hero-food-section .circle:nth-child(5) { transform: rotate(288deg) translate(220px) rotate(-288deg); }

@media (max-width: 992px) {
  .orbit-wrapper {
    width: 380px;
    height: 380px;
  }

  .hero-food-section .circle {
    width: 130px;
    height: 130px;
  }

  .hero-food-section .circle:nth-child(1) { transform: rotate(0deg) translate(160px) rotate(0deg); }
  .hero-food-section .circle:nth-child(2) { transform: rotate(72deg) translate(160px) rotate(-72deg); }
  .hero-food-section .circle:nth-child(3) { transform: rotate(144deg) translate(160px) rotate(-144deg); }
  .hero-food-section .circle:nth-child(4) { transform: rotate(216deg) translate(160px) rotate(-216deg); }
  .hero-food-section .circle:nth-child(5) { transform: rotate(288deg) translate(160px) rotate(-288deg); }

  .hero-food-section .big-food {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 768px) {
  .doz-cir{
    margin-left: 230px;
  }
  .hero-left {
  padding-top: 10px;
}
    .hero-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        margin-top: 30px;
    }

    .big-food {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }

    .orbit-wrapper {
        position: relative;
        animation: none;
        width: 100%;
        display: flex;
        flex-direction: row;      
        gap: 20px;
        align-items: center;
        overflow-x: auto;       
        overflow-y: hidden;
        padding: 10px 0;
        scroll-snap-type: x mandatory; 
    }

    .hero-food-section .circle {
        flex: 0 0 auto;       
        width: 180px;
        height: 180px;
        scroll-snap-align: center; 
        position: relative;
        transform: none !important;
    }

    .orbit-wrapper::-webkit-scrollbar {
        display: none;
    }
    .orbit-wrapper {
        -ms-overflow-style: none;
        scrollbar-width: none;
        height: 180px;
    }
    .doz-img-circle{
      margin-top: 5px !important;
      margin-bottom: 0px !important;
    }
    .pt-top{
      padding-top: 100px !important;
    }
}
.doz-process-title{
  color: #036380;
  font-size: 45px;
}

.doz-process-title2{
  color: #F4A530;
}
.doz-img-circle{
  width: 70px;
  margin-top: 30px;
  margin-bottom: 15px;
}
.doz-img-circle1{
  width: 50px;
  margin-top: 10px;
  margin-bottom: 10;
}
.doz-img-circle3{
  width: 80px;
  margin-top: 10px;
  margin-bottom: 10;
}
.doz-number-coun{
  font-size: 30px !important;
  font-weight: 700;
  color: #000;
  background-color: #F4A530;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 5px auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doz-number-coun1{
  font-size: 45px !important;
  font-weight: 700;
  color: #000;
  background-color: #F4A530;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 5px auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doz-benefits h1{
  font-size: 42px;
  font-weight: 800;
  color: #012f4e;
  text-align: center;
  padding-bottom: 35px;
  letter-spacing: 1px;
  position: relative;
}

.doz-benefits h1::after {
  content: "";
  width: 150px;
  height: 4px;
  background: #f4a530;
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  border-radius: 5px;
  animation: widen 1s ease forwards;
}

@keyframes widen {
  from { width: 0; }
  to { width: 80px; }
}

.doz-benefits-card {
  border: none;
  background: #ffffff;
  text-align: center;
  min-height: 160px;
  border-radius: 16px;
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.doz-benefits-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px;
}

.doz-benefits-card i{
  font-size: 40px;
  color: #02416a;
  transition: 0.3s ease;
  margin-bottom: 15px;
}

.doz-benefits-card:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #fab64f;
}

.doz-benefits-subtitile{
  font-size: 19px;
  font-weight: 700;
  color: #02416a;
  margin-top: 10px;
  transition: 0.3s ease;
}

.doz-benefits-card:hover .doz-benefits-subtitile{
  color: #fcb64d;
}

.doz-benefits-card::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  background: rgba(244, 165, 48, 0.1);
  top: -150%;
  left: -40%;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.doz-benefits-card:hover::before {
  top: -20%;
}

@media (max-width: 768px) {
  .doz-benefits-card {
    margin-bottom: 20px;
  }
}
.doz-work-content ul{
  list-style-type: none;
}

.doz-work-content ul li{
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 20px;
}
.doz-work-icon{
  float: left;
  margin-right: 15px;
  background-color: #fef5e9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f4a530;
}
.doz-icon-color{
   color: #f4a530;
   background-color: #fef5e9;
}
.doz-icon-color1{
   color: #085098;
   background-color: #d0e8fa;
}
.doz-icon-color2{
   color: #0c4303;
   background-color: #e3fadf;
}
.doz-icon-color3{
   color: #e45b77;
   background-color: #fee0e6;
}
.doz-icon-color4{
   color: #1ca68a;
   background-color: #defdf6;
}


.doz-lets-sec {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fbff, #eef4ff);
}

.doz-lets-para {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.doz-lets-card {
  border-radius: 22px;
  min-height: 130px;
  padding: 15px 7px 7px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(0, 90, 255, 0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}

.doz-lets-card:nth-child(1) { animation-delay: 0.1s; }
.doz-lets-card:nth-child(2) { animation-delay: 0.2s; }
.doz-lets-card:nth-child(3) { animation-delay: 0.3s; }
.doz-lets-card:nth-child(4) { animation-delay: 0.4s; }

.doz-lets-card i {
  font-size: 40px;
  color: #004A6F;
  margin-bottom: 0px;
  animation: floatIcon 3s ease-in-out infinite;
}

.doz-lets-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: #004A6F;
  margin-top: 10px;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.doz-lets-card {
  border-radius: 22px;
  min-height: 130px;
  padding: 18px 10px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(0, 90, 255, 0.15);
  background: #ffffff;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}

.doz-lets-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(135deg, #2a6786, #90c6e1);
  box-shadow: 0 20px 40px rgba(36, 107, 182, 0.25);
  border-color: transparent;
}

.doz-lets-card i {
  font-size: 40px;
  color: #004A6F;
  margin-bottom: 5px;
  transition: all 0.4s ease;
  animation: floatIcon 3s ease-in-out infinite;
}

.doz-lets-card:hover i {
  color: #ffffff;
  transform: scale(1.15);
  text-shadow: 0 8px 20px rgba(255, 255, 255, 0.6);
}

.doz-lets-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: #004A6F;
  margin-top: 10px;
  transition: color 0.4s ease;
}

.doz-lets-card:hover h3 {
  color: #ffffff;
}


.faq-bs-sec {
  background: #ffffff;
}

.doz-benefits1 h1 {
    font-size: 42px;
    font-weight: 800;
    color: #012f4e;
    text-align: center;
    padding-bottom: 35px;
    letter-spacing: 1px;
    position: relative;
}

.doz-benefits1 h1::after {
    content: "";
    width: 150px;
    height: 4px;
    background: #f4a530;
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    border-radius: 5px;
    animation: widen 1s ease forwards;
}

.faq-accordion .faq-item {
  border: none;
  border-radius: 22px;
  margin-bottom: 16px;
  background: #a7cce0;
  overflow: hidden;
}

.faq-accordion .accordion-buttons {
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  color: #3a2f2f;
  width: 100%;
}
.accordion-buttons{
  width: 100%;
  border: none;
  padding: 15px 20px;
  position: relative;
}
.faq-text{
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.accordion-buttons::after {
  background-image: none;
  content: "+";
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  transform: none;
  position: absolute;
  right: 30px;
  background-color: #00476D;
  width: 30px;
  height: 30px;
  border-radius: 50px; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion-buttons:not(.collapsed)::after {
  content: "−";
  background-color: #fff;
  color: #00476D;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-num {
  font-size: 30px;
  font-weight: 700;
  color: #00476D;
  min-width: 40px;
}

.pt-top{
  padding: 20px;
}

.accordion-buttons:not(.collapsed) .faq-num {
  color: #ffffff;
  font-size: 35px;
}
.accordion-buttons:not(.collapsed) .faq-text {
  color: #ffffff;
}

.accordion-buttons:not(.collapsed) {
  background: #00476D;
  border-bottom: 1px solid #8b8b8b;
  color: #fff;
}

.accordion-body{
  padding: 20px 26px 22px 22px;
}

.accordion-body p{
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0;
}
@media screen and (max-width: 850px){
    .doz-img-circle1{
      width: 30px;
      margin: 0px;
    }
    .doz-img-circle3{
      width: 50px;
      margin: 0px;
    }
    .doz-img-circle{
      width: 50px;
      margin: 0px;
    }
    .pt-top{
      padding-top: 100px !important;
    }
}
@media screen and (max-width: 912px){
    .doz-img-circle1{
      width: 30px;
      margin: 0px;
    }
    .doz-img-circle3{
      width: 50px;
      margin: 0px;
    }
    .doz-img-circle{
      width: 50px;
      margin: 0px;
    }
    .pt-top{
      padding-top: 100px !important;
    }
}
/* ---------- Tablet & Mobile ---------- */
@media (max-width: 992px) {
  .faq-text {
    font-size: 18px;
  }

  .faq-num {
    font-size: 26px;
  }

  .accordion-buttons:not(.collapsed) .faq-num {
    font-size: 30px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {

  .faq-accordion .faq-item {
    border-radius: 16px;
  }

  .faq-accordion .accordion-buttons {
    gap: 0px;
  }

  .accordion-buttons {
    padding: 14px 45px 14px 16px;
    gap: 12px;
  }

  .faq-text {
    font-size: 16px;
    line-height: 1.4;
  }

  .faq-num {
    font-size: 22px;
    min-width: 32px;
  }

  .accordion-buttons:not(.collapsed) .faq-num {
    font-size: 26px;
  }

  .accordion-buttons::after {
    width: 26px;
    height: 26px;
    font-size: 18px;
    right: 12px;
  }

  .accordion-body {
    padding: 14px 16px 18px 16px;
  }

  .accordion-body p {
    font-size: 15px;
  }
}

/* ---------- Small Mobile ---------- */
@media (max-width: 480px) {

  .accordion-buttons {
    padding: 12px 40px 12px 14px;
  }

  .faq-text {
    font-size: 15px;
  }

  .faq-num {
    font-size: 20px;
  }

  .accordion-buttons:not(.collapsed) .faq-num {
    font-size: 24px;
  }

  .accordion-buttons::after {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
}










