@charset "UTF-8";
.navbarSection {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 90px;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.navbarSection .nav-link {
  color: #000;
  font-weight: 500;
}
.navbarSection .nav-link.active, .navbarSection .nav-link:hover {
  color: #ff5722;
}
.navbarSection .btn-orange {
  background-color: #ff5722;
  border: none;
}
.navbarSection .btn-orange:hover {
  background-color: #ff5722;
}
.navbarSection .dropdown-menu {
  min-width: auto;
}
.navbarSection .navbar-toggler {
  border: none;
}
.navbarSection .navbar-toggler:focus {
  box-shadow: none;
}
.navbarSection .btn-outline-dark {
  border: 1px solid #d5d9dd;
  color: #000;
  background-color: transparent;
  transition: all 0.3s ease;
  font-weight: 600;
  height: 40px;
}
.navbarSection .btn-outline-dark:hover {
  background-color: #ff5722;
  color: #fff;
  border-color: #ff5722;
}
@media (max-width: 991.98px) {
  .navbarSection .navbar-collapse {
    flex-direction: column;
    gap: 1rem;
  }
  .navbarSection .nav-item {
    padding: 0.5rem 0;
  }
}

.hero-section {
  background-color: #db4e4e;
}
.hero-section .subtitle {
  color: #ff5722;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-section .title {
  max-width: 500px;
}
.hero-section .description {
  max-width: 500px;
}
.hero-section .hero-img-wrapper {
  max-width: 100%;
  position: relative;
}
.hero-section .hero-img-wrapper img {
  max-width: 100%;
}
.hero-section .hero-img-wrapper .burger-card {
  top: 50%;
  left: -5%;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  z-index: 2;
}
.hero-section .hero-img-wrapper .burger-card .card-content {
  padding: 12px;
}
.hero-section .hero-img-wrapper .delivery-card {
  bottom: 0;
  right: 1%;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .hero-section .burger-card {
    left: 0 !important;
    top: 5% !important;
  }
  .hero-section .delivery-card {
    right: 0 !important;
    bottom: -10% !important;
  }
}
.stats-section {
  background-color: #fdfdfd;
}
.stats-section .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}
.stats-section .stat-number .plus, .stats-section .stat-number .percent {
  color: #ff4d30;
}
.stats-section .stat-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #8f7e7e;
  margin-top: 0.25rem;
}

.aboutSection {
  background-color: white;
}
.aboutSection .about_data {
  max-width: 600px;
}
.aboutSection .subtitle {
  color: #ff5722;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.aboutSection .image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.aboutSection .about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.aboutSection .heading {
  font-size: 44px;
}
@media (max-width: 768px) {
  .aboutSection .heading {
    font-size: 26px;
  }
}

.missionSection {
  background-color: white;
}
.missionSection .mission_data {
  max-width: 650px;
}
.missionSection .subtitle {
  color: #ff5722;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.missionSection .image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.missionSection .mission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.missionSection .heading {
  font-size: 44px;
}
@media (max-width: 768px) {
  .missionSection .heading {
    font-size: 26px;
  }
}

.journey-section {
  background-color: #fafafa;
  font-family: sans-serif;
  justify-content: center;
}
.journey-section .subtitle {
  color: #ff5722;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
.journey-section .title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}
.journey-section .download-btn {
  background-color: #ff5722;
  border: none;
  padding: 20px;
  font-weight: 600;
  border-radius: 8px;
}
.journey-section .download-btn:hover {
  background-color: rgb(238, 57.0769230769, 0);
}
.journey-section .timeline-cards {
  overflow-y: scroll;
}
.journey-section .journey-card {
  margin: 10px;
  width: 400px;
  height: 300px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(61, 57, 57, 0.1);
  border: none;
}
.journey-section .journey-card .year {
  font-weight: bold;
  font-size: 14px;
  color: #ff5722;
}
.journey-section .journey-card .card-title {
  font-weight: 600;
  font-size: 18px;
}
.journey-section .journey-card .card-text {
  margin-top: 30px;
  font-size: 15px;
  color: #444;
}
@media (max-width: 767.98px) {
  .journey-section .title {
    font-size: 24px;
  }
  .journey-section .timeline-cards {
    max-height: none;
    overflow: visible;
  }
}

.partners-section {
  background-color: #fff;
  font-family: sans-serif;
}
.partners-section .subtitle {
  color: #ff5722;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.partners-section .title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}
.partners-section img {
  height: 96px;
}
.partners-section p {
  font-size: 15px;
  max-width: 300px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .partners-section .title {
    font-size: 24px;
  }
  .partners-section p {
    font-size: 14px;
  }
}

.press-section {
  background-color: rgb(250, 250, 250);
  text-align: center;
  padding: 50px 20px;
  font-family: sans-serif;
}

.press-section .subtitle {
  color: #ff5722;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.press-section .title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #000;
  max-width: 500px;
  margin: 0 auto;
}

.press-section .news-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.press-section .news-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
}

.press-section .news-card {
  margin-top: 10px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
  flex: 1 1 280px;
  max-width: 100%;
  transition: transform 0.3s;
}

.press-section .news-card:hover {
  transform: translateY(-4px);
}

.press-section .news-card .news-title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-top: 15px;
  margin-bottom: 20px;
}

.press-section .news-card .news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.press-section .news-card .news-footer .read-more {
  font-size: 14px;
  color: #ff5722;
  font-weight: 600;
  text-decoration: none;
}

.press-section .news-card .news-footer .read-more:hover {
  text-decoration: underline;
}

.press-section .news-card .news-footer .date {
  font-size: 13px;
  color: #888;
}

/* ✅ Responsive adjustments */
@media (max-width: 768px) {
  .press-section .title {
    font-size: 28px;
  }
  .press-section .news-sub {
    flex-direction: column;
    align-items: center;
  }
  .press-section .news-card {
    padding: 20px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .press-section {
    padding: 40px 15px;
  }
  .press-section .title {
    font-size: 24px;
  }
  .press-section .news-card {
    padding: 16px;
  }
  .press-section .news-card .news-title {
    font-size: 14px;
  }
  .press-section .news-card .news-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.download-section {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.download-section .app-icon {
  background-color: #ff5a3c;
  border-radius: 10px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-section .app-icon img {
  width: 24px;
  height: 24px;
}
.download-section p {
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}
.download-section .btn-ios,
.download-section .btn-android {
  background-color: #ff5a3c;
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.download-section .btn-ios:hover,
.download-section .btn-android:hover {
  background-color: #e14c30;
  color: #fff;
}
.download-section .btn-ios i,
.download-section .btn-android i {
  font-size: 18px;
}

.footer {
  background: #fff;
  padding: 60px 20px 30px;
  font-family: "Arial", sans-serif;
  color: #333;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer .footer__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer .footer_cities {
  display: flex;
  gap: 30px;
  cursor: pointer;
}
.footer .footer_cities .cities-text {
  font-size: 12px;
  font-weight: 600;
  margin-top: 20px;
  font-family: sans-serif;
}
.footer .footer__column {
  flex: 1;
  min-width: 220px;
}
.footer .footer__column h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer .footer__column ul {
  list-style: none;
  padding: 0;
}
.footer .footer__column ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}
.footer .footer__column ul li img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.footer .footer__column ul li .highlight {
  color: #ff4d30;
  font-weight: 600;
  border-bottom: 2px solid #ff4d30;
}
.footer .footer__column ul a {
  color: inherit;
  text-decoration: none;
}
.footer .footer__column ul a:hover {
  text-decoration: underline;
}
.footer .footer__bottom {
  width: 100%;
  text-align: center;
  border-top: 1px solid #eee;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.875rem;
}
.footer .footer__bottom span {
  color: #ff4d30;
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .footer__column {
    width: 100%;
  }
}
.footer .menu-columns {
  display: flex;
  gap: 40px;
}
.footer .menu-columns ul {
  list-style: none;
  padding: 0;
}

/*# sourceMappingURL=main.css.map */
