.btn-tab {
  background-color: transparent;
  color: #1a5b69;
  border: 2px solid #1a5b69;
  border-radius: 20px;
  padding: 10px 20px;
  margin: 0px 10px;
  font-size: 20px;
  /* font-weight: bold; */
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-tab.active,
.btn-tab:hover {
  background-color: #1a5b69;
  color: #fff;
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .app-section .container {
    padding: 20px;
  }

  .btn-tab {
    margin: 5px 0;
    padding: 10px 20px;
    font-size: 14px;
    min-width: unset; /* Allow buttons to resize dynamically */
  }

  .feature-box p {
    padding: 10px;
  }
  #tab-image img {
    max-width: 80%;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 32px !important;
  }

  .btn-tab {
    font-size: 14px;
    padding: 8px 15px;
  }

  .feature-box p {
    font-size: 14px;
  }
}

.section.app-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

@media (max-width: 768px) {
  .section.app-section {
    padding: 0px !important;
  }
}

/* Promo Section Styles */
.promo-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.promo-text {
  max-width: 40%;
}

.promo-images {
  position: relative;
  width: 50%;
  height: 500px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.promo-images .column {
  width: 33.3333%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.promo-images .column:nth-child(1) {
  animation: scrollUp 25s linear infinite;
  transform: translateZ(-100px);
}

.promo-images .column:nth-child(2) {
  animation: scrollDownContinuous 30s linear infinite;
  transform: translateZ(0);
}

.promo-images .column:nth-child(3) {
  animation: scrollUp 35s linear infinite;
  transform: translateZ(100px);
}

.promo-images img {
  width: 100%;
  height: 33.3333%;
  object-fit: cover;
}

.promo-images img.main {
  width: 260px;
  height: auto;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  position: absolute;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes scrollDownContinuous {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Mobile Promo Section */
.mobile-promo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: -1px;
  background-color: #fff;
}

.mobile-promo-images {
  display: flex;
  overflow-x: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  height: 200px;
  opacity: 80%;
}

.mobile-promo-images img {
  width: auto;
  height: 100%;
  margin: -1px;
  animation: scrollLeft 20s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.mobile-promo-text {
  text-align: center;
  margin-top: 20px;
  padding: 0 20px;
}

.mobile-promo-text h1 {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.mobile-promo-text span {
  color: #1a5b69;
}

.mobile-promo-text button {
  margin-top: 15px;
}

@media (max-width: 768px) {
  .promo-section {
    display: none;
  }
  .mobile-promo-section {
    display: flex;
  }
}

@media (min-width: 769px) {
  .promo-section {
    display: flex;
  }
  .mobile-promo-section {
    display: none;
  }
}

/* Core Values Section */
.core-values-section {
  background-color: #1a5b69; /* Background color */
  color: white;
  padding: 50px 0;
}

.core-values-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: left;
}

.value-card {
  background-color: white;
  color: black;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.core-values-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row.align-items-center {
  align-items: center;
}

.col-lg-6 {
  padding: 10px;
}

h4.font-weight-bold {
  font-size: 1.25rem;
  margin-bottom: 10px;
  text-align: left;
}

.value-card p {
  margin: 15px 0;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .core-values-section h2 {
    font-size: 1.8rem;
  }

  .value-card {
    padding: 15px;
  }

  h4.font-weight-bold {
    font-size: 1.1rem;
  }

  .value-card p {
    font-size: 0.9rem;
  }

  .image {
    display: none;
  }
}

.core-new-image img {
  display: block;
  max-width: 98%;
  height: auto;
  border: none;
  box-shadow: none !important;
}
core-new-image {
  background: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 480px) {
  .core-values-section h2 {
    font-size: 1.5rem;
  }

  .value-card {
    padding: 10px;
  }

  h4.font-weight-bold {
    font-size: 1rem;
  }

  .value-card p {
    font-size: 0.85rem;
  }
  .core-new-image img {
    display: none;
  }
}

/* partner section csss */

.partner {
  background-color: rgb(243, 239, 247);
  padding: 50px 0;
  font-family: Arial, sans-serif;
}

.partner .section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.partner .section-heading span {
  color: #1a5b69;
}

.partner .tabs-container {
  display: flex;
  flex-wrap: wrap; /* Allow tabs to stack on smaller screens */
  justify-content: center;
  margin-bottom: 30px;
}

.partner .tab-btn {
  border: 2px solid #1a5b69;
  background-color: transparent;
  color: #1a5b69;
  padding: 10px 20px;
  margin: 5px; /* Reduced spacing for better fit */
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px; /* Slightly smaller font size for tabs */
  cursor: pointer;
  transition: all 0.3s ease;
}

.partner .tab-btn.active,
.partner .tab-btn:hover {
  background-color: #1a5b69;
  color: #fff;
}

.partner .tab-content {
  background: #1a5b69;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 50%;
  margin: auto;
  text-align: left;
}

.partner .tab-content h3 {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: white;
}

.partner .tab-content p {
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: #fff;
}

.partner .tab-content p strong {
  display: block;
  margin-bottom: 5px;
}

.partner .btn-custom {
  background-color: #1a5b69;
  color: #fff;
  border: none;
  padding: 10px 20px; /* Adjusted padding */
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem; /* Smaller font size */
  font-weight: bold;
  transition: 0.3s;
}

.partner .btn-custom:hover {
  background-color: #5f38cc;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .partner .section-heading h1 {
    font-size: 1.8rem; /* Smaller heading size */
  }

  .partner .tab-content {
    padding: 30px; /* Reduced padding */
  }

  .partner .tab-content h3 {
    font-size: 1.2rem; /* Smaller font size for headings */
  }

  .partner .tab-content p {
    font-size: 0.8rem; /* Smaller font size */
  }

  .partner .btn-custom {
    padding: 8px 15px; /* Smaller button padding */
    font-size: 0.8rem; /* Adjusted font size */
  }

  .partner .tabs-container {
    flex-direction: column; /* Stack tabs vertically on small screens */
    align-items: center;
  }

  .partner .tab-btn {
    width: 80%; /* Full-width buttons on small screens */
    font-size: 1rem;
  }

  .partner .tab-content {
    background-color: #1a5b69;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    margin: auto;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .partner .section-heading h1 {
    font-size: 1.5rem; /* Even smaller heading size */
  }

  .partner .tab-content {
    padding: 20px; /* Further reduced padding */
  }

  .partner .tab-btn {
    width: 100%; /* Full-width buttons on very small screens */
    margin: 5px 0;
  }
}

/* Business Section Styles */
.business-section {
  font-family: Arial, sans-serif;
}

.business-left-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-left-card img {
  border-radius: 15px;
  height: 100%;
  object-fit: cover;
}

.business-left-card .business-image-text {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.business-right-card {
  background-color: #1a5b69;
  border-radius: 15px;
  height: 100%;
}

.business-right-card h3 {
  color: white;
  font-size: 22px;
}

.business-right-card p {
  color: white;
  font-size: 16px;
}

.business-right-card a {
  background-color: #563d7c;
  border-color: #563d7c;
  color: white;
  text-decoration: none;
}

.business-right-card a:hover {
  background-color: #452c63;
  border-color: #452c63;
}

/* Ensure equal height for both sections */
.business-section .row {
  display: flex;
}

.business-section .col-md-6 {
  display: flex;
  flex-direction: column;
}

/* Hide the left section image on smaller screens */
@media (max-width: 768px) {
  .business-left-card {
    display: none;
  }
}

/* get section styles css */
.get-started-section {
  background-color: #1a5b69; /* Green background */
  padding: 160px 15px; /* Add padding for responsiveness */
}

.get-started-box .text-content {
  position: relative;
  z-index: 2; /* Ensure the text is above the arrow shape */
}

.get-started-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #1a5b69;
}

.get-started-box p {
  margin-bottom: 15px;
  color: #1a5b69 !important;
}

@media (max-width: 768px) {
  .get-started-box {
    padding: 20px;
  }
  .get-started-box .arrow-shape {
    width: 100px;
  }
  .get-started-box h2 {
    font-size: 20px;
  }
  .get-started-box p {
    font-size: 14px;
  }
}

@media (max-width: 422px) {
  .get-started-box .arrow-shape {
    display: none;
  }
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #d7f0d7;
  border-right: 16px solid #1a5b69;
  border-bottom: 16px solid #d7f0d7;
  border-left: 16px solid #1a5b69;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.zgo-values {
  background-color: #1a5b69;
  padding: 50px 15px;
}

.zgo-title {
  font-size: 32px;
  font-weight: bold;
  color: white;
}

.zgo-highlight {
  color: #fb2576; /* Purple color */
  font-weight: bold;
}

.zgo-subtitle {
  font-size: 16px;
  color: white;
  margin-bottom: 30px;
}

.zgo-box {
  background: linear-gradient(135deg, #1a5b69, #fcbe00);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.zgo-box:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.zgo-icon img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  padding: 3px;
  border-radius: 10px;
}

.zgo-heading {
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.zgo-text {
  font-size: 14px;
  color: white;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 767px) {
  .zgo-box {
    margin-bottom: 20px;
  }
}

/* HERO PRO SECTION */

.hero-pro {
  position: relative;
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at 18% 36%, rgba(238, 7, 21, 0.36), transparent 65%),
    radial-gradient(circle at 92% 20%, rgba(7, 31, 58, 0.36), transparent 74%),
    linear-gradient(145deg, #f6f9ff 0%, #eef3fa 52%);
  overflow: hidden;
}

.hero-pro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 44px;
}

.hero-pro-content {
  max-width: 620px;
}

/* TEXT */
.hero-pro-content h1 {
  margin: 0 0 14px;
  line-height: 1.12;
  color: #071F3A !important;
  font-weight: 800 !important;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  letter-spacing: -0.02em;
}

.hero-pro-content h1 span {
  color: #EE0715;
}

.hero-pro-content p {
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #46646d;
}

.hero-pro-tags {
  margin: 0 0 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-pro-tags span {
  color: #071F3A;
  padding: 8px 14px;
  border-radius: 40px;
  font-size: 0.86rem;
  font-weight: 700;
  border: 1px solid rgba(7, 31, 58, 0.2);
  background: #fff;
  box-shadow: 0 8px 18px rgba(12, 39, 46, 0.08);
}

.hero-app-download {
  margin-top: 0;
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 31, 58, 0.14);
  box-shadow: 0 16px 30px rgba(13, 44, 54, 0.09);
}

.download-text {
  display: block;
  font-size: 0.98rem;
  color: #071F3A;
  margin-bottom: 10px;
  font-weight: 700;
}

.app-store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 14px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.store-btn img {
  width: 172px;
  height: auto;
  border-radius: 12px;
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(16, 42, 52, 0.2);
}

/* VISUAL AREA */
/* SECONDARY PHONE */
.phone-secondary {
  left: 8%;
  top: 6%;
  width: 245px;
  transform: rotate(-8deg);
  animation: floatSecondary 7.5s ease-in-out infinite;
  z-index: 1;
}

.hero-float {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 31, 58, 0.18);
  box-shadow: 0 14px 26px rgba(15, 42, 51, 0.13);
  color: #071F3A;
  font-size: 13px;
  font-weight: 700;
}

.hero-float.rating {
  top: 8%;
  right: 2%;
}

.hero-float.delivery {
  bottom: 12%;
  left: 2%;
}

/* ANIMATIONS */
@keyframes floatMain {
  0% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(4deg) translateY(-12px);
  }
  100% {
    transform: rotate(4deg) translateY(0);
  }
}

@keyframes floatSecondary {
  0% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(-8deg) translateY(-10px);
  }
  100% {
    transform: rotate(-8deg) translateY(0);
  }
}

@media (max-width: 991px) {
  .hero-pro {
    padding: 72px 0 52px;
  }

  .hero-pro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-pro-content {
    max-width: 100%;
  }

  .hero-pro-visual {
    height: 420px;
    margin-top: 14px;
  }


  .phone-secondary {
    width: 210px;
    left: 12%;
    top: 10%;
  }

  .hero-float {
    font-size: 12px;
    padding: 8px 11px;
  }
}

@media (max-width: 576px) {
  .hero-pro {
    padding: 60px 0 40px;
  }

  .hero-pro-content h1 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  .hero-pro-content p {
    font-size: 0.97rem;
    line-height: 1.72;
  }

  .hero-pro-tags span {
    font-size: 0.8rem;
    padding: 7px 12px;
  }

  .store-btn img {
    width: 150px;
  }

  .hero-pro-visual {
    height: 350px;
  }

  .hero-pro-visual::before {
    width: 280px;
    height: 280px;
  }

  .phone-main {
    width: 210px;
    right: 10%;
    top: 28%;
  }

  .phone-secondary {
    width: 170px;
    left: 10%;
  }

  .hero-float.rating {
    top: 4%;
    right: 1%;
  }

  .hero-float.delivery {
    left: 1%;
    bottom: 6%;
  }
}
/* LEFT SIDE */
.core-left {
  color: #fff;
}

/* TITLE */
.core-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 36px;
  line-height: 1.2;
}

/* CARD */
.core-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 18px 22px;
  border-radius: 18px;
  margin-bottom: 16px;
  transition: all 0.35s ease;
}

.core-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
}

/* ICON */
.core-icon {
  font-size: 1.7rem;
  line-height: 1;
  margin-top: 4px;
}

/* TEXT */
.core-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.core-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

/* MOBILE */
@media (max-width: 991px) {
  .core-title {
    text-align: center;
  }
  .hero-pro {
    padding: 80px 0;
  }
}
.core-title {
  color: #ffffff;
}
.core-card h4 {
  color: #ffffff;
}
/* PARTNER CARD */
.partner-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 48px;
  max-width: 1000px !important;
  margin: 40px auto 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
}

/* HEADING */
.partner-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: #121212;
}

/* FEATURES LIST */
.partner-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 18px;
}

.partner-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f8fafb;
  padding: 18px 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.partner-features li:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* ICON */
.partner-features .icon {
  font-size: 1.6rem;
  line-height: 1;
}

/* TEXT */
.partner-features p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

.partner-features strong {
  color: #1a5b69;
  margin-right: 4px;
}

/* CTA BUTTON */
.partner-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 30px;
  background: white !important;
  color: #1a5b69;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}

.partner-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26, 91, 105, 0.35);
  color: black !important;
}

/* MOBILE */
@media (max-width: 768px) {
  .partner-card {
    padding: 32px 24px;
  }

  .partner-card h3 {
    text-align: center;
  }
}
.feature-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 16px;
}

.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 5px;
  background: #1a5b69;
  border-radius: 10px;
}

.feature-card strong {
  display: block;
  color: #1a5b69;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card span {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .app-store-buttons {
    justify-content: center;
  }
}
