* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none !important;
}



/* NAVBAR */

.custom-navbar {
  height: 76px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  padding: 0 15px;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1260px;
}

.navbar-container {
  max-width: 1320px;
}

.navbar-logo {
  width: 154px;
  height: 40px;
  object-fit: contain;

  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
}

.navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #111827;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #7c3aed;
}

.navbar-nav .nav-link.active {
  color: #7c3aed;
  font-weight: 500;
}

/* Mobile navbar toggler */

.navbar-toggler {
  border: none;
  padding: 4px 8px;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* NAVBAR MOBILE RESPONSIVE */

@media (max-width: 991px) {
  .custom-navbar {
    padding: 0 15px;
    height: auto;
    min-height: 76px;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  .navbar-container {
    padding: 0;
  }

  .navbar-nav {
    padding: 20px 0;
    text-align: center;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    padding: 12px 0 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }

  .custom-navbar .navbar-brand,
  .custom-navbar .navbar-toggler {
    align-self: center;
  }

  .navbar-nav .nav-item {
    margin-bottom: 10px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    padding: 12px 16px;
    display: inline-block;
  }

  .center-menu {
    width: 100%;
    text-align: center;
    gap: 0 !important;
  }

  .d-flex {
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 20px;
  }

  .download-btn {
    width: 200px;
    height: 48px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .navbar-logo {
    width: 120px;
    height: 32px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    padding: 10px 12px;
  }

  .download-btn {
    width: 180px;
    height: 44px;
    font-size: 14px;
  }
}

.download-btn {
  width: 162px;
  height: 44px;
  background: #A855F7;
  color: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* TRUSTED SECTION */

.trusted-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
  color: #333333;
}

.trusted-section .section-title {
  color: #333333;
}

.trusted-section .section-subtitle {
  color: #666666;
}

.trusted-numbers-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.trusted-card {
  background: none;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 20px 0;
  text-align: center;
  transition: none;
  flex: 1;
  min-width: 0;
}

.trusted-card:hover {
  background: none;
  transform: none;
}

.trusted-number {
  font-size: 48px;
  font-weight: 700;
  color: #000000;

}


.download-btn:hover {
  background: #6d28d9;
  color: #ffffff;
  transform: translateY(-1px);
}

/* HERO SECTION */

.hero-section {
  width: 100%;

  background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 35.36%, #F0FDFA 70.71%);
  display: flex;
  align-items: center;
  margin-top: 20px;

  padding-left: 40px;
}


.hero-container {
  max-width: 1320px;
  /* margin:  16px; */

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  max-width: 620px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: #f3e8ff;
  color: #a855f7;
  font-size: 14px;
  border-radius: 20px;
  font-weight: 600;
}

.star {
  display: block;
  color: #a855f7;
  width: 225px;
  height: 36px;
}

.star1 {
  display: none !important;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 75px;
  letter-spacing: -0.5px;
  margin-top: 16px;
  color: #111827;
}

.hero-title span {
  color: #a855f7
}

.hero-desc {
  font-size: 18px;
  line-height: 30px;
  color: #6b7280;
  margin-top: 20px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 28px;

}

.hero-store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: #000000;
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  width: 164.515625px;
  height: 60px;
  transform: rotate(0deg);
  opacity: 1;
  justify-content: flex-start;
  transition: all 0.3s ease;
}

.hero-store-btn:hover {
  background: #272424;
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-store-btn i {
  font-size: 20px;
}

.hero-store-btn .store-text {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}

.hero-store-btn .store-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.store-btn {
  padding: 12px 22px;
  background: #111827;
  color: #ffffff;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
}

.store-btn:hover {
  background: #000000;
  color: #ffffff;
}

.hero-image-wrapper {
  flex-shrink: 0;
}

.hero-image {
  width: 700px;
  height: 100%;
  object-fit: contain;
}

/* HERO SECTION MOBILE RESPONSIVE */
@media (max-width: 1024px) {}

/* Fix for iPad Pro horizontal overflow */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait),
only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {

  html,
  body {
    max-width: 100vw;
    overflow-x: hidden !important;
  }

  .hero-section {
    width: 100%;

  }

  .hero-container {
    max-width: 1320px;
    margin-top: 30px;


  }
}

@media (max-width: 991px) {
  .hero-section {
    height: auto;
    padding: 60px 0;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-store-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    max-width: 560px;
    height: auto;
    margin-top: 20px;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 0;
  }

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

  .star {
    display: none !important;
  }

  .star1 {
    display: block !important;

    margin-left: 80px;
    margin-top: 30px;

  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 54px;
    line-height: 80px;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 26px;
  }

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

  .section-subtitle {
    font-size: 16px;
  }

  .hero-stats {

    gap: 40px;
  }

  .stat-number {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .hero-container {
    padding: 0 15px;
  }

  .hero-buttons {
    flex-direction: row;
    align-items: center;
    width: auto;
    height: 40px;
    margin-left: 20px;
    margin-right: 20px;


  }

  .store-btn {
    width: 100%;
    max-width: 280px;
    text-align: left;
    padding: 10px 10px;
  }
}

/* HERO STATISTICS */

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 20px;
  margin-bottom: 0;
  /* margin-left: 14px; */
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

/* SECTION HEADERS */

.section-header {
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 20px;
  color: #6b7280;
  margin: 0;
  font-weight: 400;
}

/* SERVICES SECTION */

.services-section {
  padding: 80px 0;
  background: #ffffff;
}

.service-card {
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  width: 100%;
  height: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #ffffff;
}

/* Food Delivery Card */
.food-delivery-card {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 70.71%);

}

.food-delivery-icon {
  background: #8A48F6;
}

.food-delivery-link {
  color: #8A48F6;
}

/* Groceries Card */
.groceries-card {
  background: linear-gradient(135deg, #F0FDFA 0%, #CCFBF1 70.71%);

}

.groceries-icon {
  background: #4AC9B0;
}

.groceries-link {
  color: #4AC9B0;
}

/* Fruits & Veggies Card */
.fruits-veggies-card {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 70.71%);

}

.fruits-veggies-icon {
  background: #4CAF50;
}

.fruits-veggies-link {
  color: #4CAF50;
}

/* Daily Essentials Card */
.daily-essentials-card {
  background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 70.71%);

}

.daily-essentials-icon {
  background: #8A48F6;
}

.daily-essentials-link {
  color: #8A48F6;
}

/* How it works */

.service-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link:hover {
  transform: translateX(3px);
}

/* SERVICES SECTION MOBILE RESPONSIVE */

@media (max-width: 767px) {
  .service-card {
    padding: 20px 20px;
  }
}



.how-it-works-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 70.71%);

}

.step-card {

  border-radius: 20px;
  padding: 60px 30px 40px;
  text-align: center;
  height: 100%;
  position: relative;

}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: 20px;
  left: 80%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 1;
}

.step-1-number {
  background: #8A48F6;
}

.step-2-number {
  background: #2CC4B1;
}

.step-3-number {
  background: #4CAF50;
}

.step-icon {
  width: 128px;
  height: 128px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 24px;
  font-size: 32px;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.step-1-icon {
  background: #F46A2C;
}

.step-2-icon {
  background: #2CC4B1;
}

.step-3-icon {
  background: #4CAF50;
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* HOW IT WORKS SECTION MOBILE RESPONSIVE */

@media (max-width: 767px) {
  .step-card {
    padding: 20px 20px;
  }
}

/* WHY CHOOSE US SECTION */

.why-choose-section {
  padding: 0px 0;
  background: #ffffff;
}

.feature-card1 {
  border: 1px solid #FFEDD5;
  background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 70.71%);

}

.feature-card2 {
  border: 1px solid #CCFBF1;
  background: linear-gradient(135deg, #F0FDFA 0%, #FFFFFF 70.71%);


}

.feature-card3 {
  border: 1px solid #F3E8FF;
  background: linear-gradient(135deg, #FAF5FF 0%, #FFFFFF 70.71%);


}

.feature-card4 {
  border: 1px solid #DCFCE7;
  background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 70.71%);


}

.feature-card5 {
  border: 1px solid #DBEAFE;
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 70.71%);


}

.feature-card6 {
  border: 1px solid #FCE7F3;
  background: linear-gradient(135deg, #FDF2F8 0%, #FFFFFF 70.71%);
}

.feature-card {


  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: #7c3aed;
}

.feature-icon {
  width: 56px;
  height: 56px;
  /* background: linear-gradient(135deg, #7c3aed, #a855f7); */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  font-size: 24px;
  color: #ffffff;
}


.feature-icon-1 {
  background: #A855F7;

}


.feature-icon-2 {
  background: #4ECDC4;

}


.feature-icon-3 {
  background: #A855F7;

}


.feature-icon-4 {
  background: #22C55E;

}


.feature-icon-5 {
  background: #3B82F6;
}


.feature-icon-6 {
  background: #EC4899;
}




.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* WHY CHOOSE US SECTION MOBILE RESPONSIVE */

@media (max-width: 767px) {
  .feature-card {
    padding: 20px 20px;
  }
}

/* Trusted Cards */

.trusted-card-1 .trusted-number {
  color: #8A48F6;
}


.trusted-card-2 .trusted-number {
  color: #2CC4B1;
}

.trusted-card-3 .trusted-number {
  color: #4CAF50;
}


.trusted-card-4 .trusted-number {
  color: #8A48F6;
}

.trusted-card-4 .trusted-number i {
  color: #FFD700;
  font-size: 36px;
  margin-left: 5px;
}

.trusted-label {
  font-size: 16px;
  color: #666666;
  font-weight: 500;
}

/* TRUSTED SECTION MOBILE RESPONSIVE */

@media (max-width: 768px) {
  .trusted-numbers-container {
    flex-wrap: wrap;
    gap: 30px 20px;
  }

  .trusted-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .trusted-number {
    font-size: 36px;
  }

  .trusted-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .trusted-numbers-container {
    gap: 20px 15px;
  }

  .trusted-number {
    font-size: 28px;
  }

  .trusted-label {
    font-size: 12px;
  }
}

/* DOWNLOAD SECTION */

.download-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #A855F7 0%, #9015B2 70.71%);

  ;
}

.download-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.download-subtitle {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 40px;
}

.download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.download-store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: #ffffff;
  color: #000000;
  border-radius: 12px;
  text-decoration: none;
  /* min-width: 214px;
  min-height: 76px; */
  text-align: left;
  justify-content: flex-start;
  transition: all 0.3s ease;
}

.download-store-btn:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}

.download-store-btn i {
  font-size: 24px;
}

.store-text {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  padding-bottom: 4px;
  padding-left: 2px;
}

.store-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

/* DOWNLOAD SECTION MOBILE RESPONSIVE */

@media (max-width: 991px) {
  .download-buttons {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .download-store-btn {
    width: auto;
    max-width: 300px;
    justify-content: center;
    flex: 0 1 auto;
  }
}

@media (max-width: 767px) {
  .download-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .download-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    width: auto;
    height: 40px;
    flex-wrap: nowrap;
    margin-left: 20px;
    margin-right: 20px;
  }

  .download-store-btn {
    flex: 0 0 48%;
    max-width: 48%;
    min-width: 140px;
    padding: 12px 14px;
    min-height: 56px;
    text-align: left;
    justify-content: center;
  }

  .store-text {
    font-size: 10px;
    line-height: 1;
    font-weight: 400;
    padding-bottom: 4px;
    padding-left: 2px;
  }

  .store-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
  }
}

/* FOOTER */

.footer {
  background: #1A1A2E;
  color: #ffffff;
  padding: 80px 0 80px;
}

.footer-logo {
  width: 153;
  height: 39.0975456237793;

  object-fit: contain;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 16px;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 350px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #7c3aed;
  transform: translateY(-2px);
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #7c3aed;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.6;
}

.contact-list i {
  color: #7c3aed;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 40px;
}

.copyright {
  color: #9ca3af;
  margin: 0;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #7c3aed;
}

/* FOOTER MOBILE RESPONSIVE */

@media (max-width: 991px) {
  .footer-bottom-links {
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 50px;
  }

  .footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Footer responsive layout */

  .footer .col-lg-4.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .footer .col-lg-4.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
  }

  .footer .col-lg-4.col-md-6:last-child {
    margin-bottom: 0;
  }

  .footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
  }

  .footer-bottom .row {
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

.rights {
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
  margin-top: 20px;
}

/* Footer mobile responsive */

@media (max-width: 576px) {
  .social-links {
    justify-content: center;
  }


  .contact-list li {
    font-size: 14px;
  }


  .footer .col-lg-4.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;

  }

  .footer .col-lg-4.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer .col-lg-4.col-md-6:last-child {
    margin-bottom: 0;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-list li a,
  .contact-list li {
    font-size: 12px;
    line-height: 1.4;
  }

  .footer-list li {
    margin-bottom: 8px;
  }

  .contact-list li {
    margin-bottom: 10px;
  }
}

.rights {
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
  margin: 40px 0px 0px 0px;
}


/* ========================================================================= */
/* Contact us - Page specific styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #ffffff;
}

/* Header */
.contact-header {
  background: #A855F7;
  /* padding: 76px 0; */
  text-align: center;
  color: white;
  height: 306px;
}

.contact-header h1 {
  font-size: 48px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding-top: 167px;

}

/* Main Section */
.contact-section {
  padding: 60px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Left Info */
.contact-info {
  flex: 1;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.icon {
  background-color: #ede4fb;
  color: #A855F7;
  padding: 12px;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 900;
  height: 90px;
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-box h4 {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;

}

.info-box p {
  font-size: 16px;
  color: #4B5563;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0px;
  line-height: 1.5;
}

/* Right Form */

.contact-form {
  flex: 1.5;
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

.input-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

input,
textarea {
  width: 315px;
  height: 50px;
  padding: 12px;
  border: 1px solid #d5f73e;
  border-radius: 6px;
  font-size: 16px;

}

textarea {
  height: 145px;
  width: 650px;
  resize: none;
  margin-bottom: 15px;
}

button {
  background-color: #A855F7;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  float: right;
  transition: 0.3s;
}

button:hover {
  background-color: #6f26ce;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .input-row {
    flex-direction: column;
  }

  button {
    float: none;
  }

  /* Header */
  .contact-header {


    height: 206px;
  }

  .contact-header h1 {

    padding-top: 110px;

  }

}

@media (max-width: 500px) {
  .contact-container {
    padding: 0 10px;
  }

  textarea {
    width: 100%;
  }
}