:root {
    --section-sm: 60px;
    --section-md: 80px;
    --section-lg: 100px;

    --font-heading: 'Lato', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --text-h1: 44px;
    --text-h2: 36px;
    --text-h3: 28px;
    --text-h4: 20px;

    --text-body-lg: 16px;
    --text-body: 15px;
    --text-body-sm: 13px;

    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-body);
    line-height: 1.7;
    color: #374151;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #111827;
}

h1 {
    font-size: var(--text-h1);
    font-weight: var(--weight-extrabold);
}

h2 {
    font-size: var(--text-h2);
    font-weight: var(--weight-bold);
}

h3 {
    font-size: var(--text-h3);
    font-weight: var(--weight-bold);
}

h4 {
    font-size: var(--text-h4);
    font-weight: var(--weight-semibold);
}


small,
.badge,
.tag{
    font-size: var(--text-body-sm);
    font-weight: var(--weight-medium);
}


/*hero*/

.hero {
  padding: 90px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Left content */
.hero-content h1 {
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 520px;
  margin-bottom: 36px;
}

/* Decorative pill */
.hero-pill {
  display: inline-block;
  width: 120px;
  height: 22px;
  background: #e6f7f1;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-green {
  background: #3eb489;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(62, 180, 137, 0.35);
}

.btn-green:hover {
  background: #34a77f;
}

.btn-pink {
  background: #ec008c;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(236, 0, 140, 0.35);
}

.btn-pink:hover {
  background: #d4007e;
}

.btn-primary {
  background: #3eb489;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(62, 180, 137, 0.35);
}

.btn-primary:hover {
  background: #34a77f;
    transform: translateY(-2px);
}


/* Outline button */
.btn-outline {
  background: transparent;
  border: 2px solid #00adef;
  color: #00adef;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}


.btn-outline:hover {
  background: #f9c80e;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Right image */
.hero-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* =========================
   HERO RESPONSIVE
========================= */

/* Tablets */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .hero-pill {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .hero-image img {
    border-radius: 16px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .hero {
    padding: 50px 16px;
  }
}



.container {
  max-width: 1200px;
  margin: 0 auto;
}

.ecosystem {
  padding: 80px 20px;
}


.section-title { margin-bottom: 12px; }


.section-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}

.card h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* Icons */
.icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.icon.blue {
  background: #e0f2fe;
  color: #0284c7;
}

.icon.green {
  background: #e6f7f1;
  color: #3eb489;
}

.icon.pink {
  background: #fde8f3;
  color: #ec008c;
}

.icon.yellow {
  background: #fff4cc;
  color: #f9c80e;
}

.icon.grey {
  background: #f3f4f6;
  color: #6b7280;
}

/* Coming Soon Badge */
.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f3f4f6;
  color: #374151;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .ecosystem {
    padding: 70px 20px;
  }

  .section-subtitle {
    margin-bottom: 40px;
  }

  .card-grid {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .ecosystem {
    padding: 60px 16px;
    text-align: center;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .card-grid {
    grid-template-columns: 1fr; /* stack cards */
    gap: 20px;
  }

  .card {
    text-align: center;
    padding: 26px 20px;
  }

  .icon {
    margin: 0 auto;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }

  .badge {
    top: 14px;
    right: 14px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .card {
    padding: 22px 18px;
  }

  .icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}
@media (hover: none) {
  .card:hover {
    transform: none;
  }
}



/*    Service    */

.services {
  padding: 100px 20px;
  background: #ffffff;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.services-content h2 {
  margin-bottom: 16px;
}

.services-desc {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

/* Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.service-card .icon {
  font-size: 22px;
  color: #3eb489;
  margin-bottom: 12px;
}

.service-card h4 {
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* Active Card */
.service-card.active {
  border: 2px solid #3eb489;
  box-shadow: 0 12px 30px rgba(62, 180, 137, 0.15);
}

/* Buttons */
.service-actions {
  display: flex;
  gap: 20px;
}

/* Right Image */
.services-image {
  position: relative;
}

.services-image img {
  width: 100%;
  max-width: 603px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Floating Badge */

.badge span {
  font-size: 20px;
  color: #3eb489;
}

.badge p {
  font-size: 13px;
  color: #6b7280;
}

@media (max-width: 1024px) {
  .services {
    padding: 80px 20px;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-content {
    text-align: center;
  }

  .services-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .service-actions {
    justify-content: center;
  }

  .services-image img {
    width: 100%;
    height: auto;
    max-width: 520px;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 60px 16px;
  }

  .services-content h2 {
    font-size: 24px;
  }

  .services-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
  }

  /* Cards stack */
  .service-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    text-align: center;
    padding: 20px;
  }

  .service-card .icon {
    margin-left: auto;
    margin-right: auto;
  }

  /* Buttons stack */
  .service-actions {
    flex-direction: column;
    gap: 14px;
  }

  .service-actions a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .services-image img {
    display: none;
  }
}
@media (max-width: 480px) {
  .services-content h2 {
    font-size: 22px;
  }

  .service-card h4 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }

  .services-image img {
    display: none;
  }
}
@media (hover: none) {
  .service-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/*    Products     */

.products {
  padding: 100px 20px;
  background: #ffffff;
}

.products-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Headings */
.products-title h2{
  margin-bottom: 12px;
}

.products-subtitle {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 60px;
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.product-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  text-align: left;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* Image */
.product-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Content */
.product-content {
  padding: 32px;
}

.product-content h3 {
  margin-bottom: 12px;
}

.product-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 26px;
}

/* Tags */
.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.tag-green {
  background: #e6f7f1;
  color: #3eb489;
}

.tag-pink {
  background: #fde8f3;
  color: #ec008c;
}
@media (max-width: 1024px) {
  .products {
    padding: 80px 20px;
  }

  .products-grid {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .products {
    padding: 60px 16px;
  }

  .products-title {
    font-size: 24px;
  }

  .products-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .products-grid {
    grid-template-columns: 1fr; /* stack cards */
    gap: 24px;
  }

  .product-card {
    border-radius: 18px;
  }

  .product-image img {
    height: 220px;
  }

  .product-content {
    padding: 24px;
    text-align: center;
  }

  .tag {
    margin-left: auto;
    margin-right: auto;
  }

  .product-content h3 {
    font-size: 18px;
  }

  .product-content p {
    font-size: 14px;
  }

  .product-content .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .products-title {
    font-size: 22px;
  }

  .products-subtitle {
    font-size: 14px;
  }

  .product-image img {
    height: 200px;
  }

  .product-content {
    padding: 20px;
  }
}

/*   Frsnchise    */
.franchise {
  padding: 100px 20px;
  background: linear-gradient(135deg, #00adef, #3eb489);
  color: #ffffff;
}

.franchise-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* Left content */
.franchise-content h2 {
  line-height: 1.2;
  margin-bottom: 24px;
}

.franchise-desc {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.95);
}

/* Features */
.franchise-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: #00adef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.feature strong {
  font-size: 15px;
}

.feature p {
  font-size: 13px;
  opacity: 0.9;
}

/* Button */
.franchise-btn {
  display: inline-block;
  background: #ffffff;
  color: #00adef;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.franchise-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* Right glass card */
.franchise-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.franchise-card h3 {
  margin-bottom: 24px;
}

/* Rows */
.card-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.card-row:last-child {
  border-bottom: none;
}

.card-row span {
  font-size: 14px;
  opacity: 0.9;
}

.card-row strong {
  font-size: 14px;
}

@media (max-width: 1024px) {
  .franchise {
    padding: 80px 20px;
  }

  .franchise-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .franchise-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .franchise-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature {
    justify-content: center;
    text-align: left;
  }

  .franchise-btn {
    margin: 0 auto;
  }

  .franchise-card {
    max-width: 520px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .franchise {
    padding: 60px 16px;
  }

  .franchise-content h2 {
    font-size: 24px;
  }

  .franchise-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
  }

  .franchise-features {
    gap: 18px;
    margin-bottom: 32px;
  }

  .feature span {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .feature strong {
    font-size: 14px;
  }

  .feature p {
    font-size: 12.5px;
  }

  .franchise-btn {
    width: 100%;
    text-align: center;
  }

  .franchise-card {
    padding: 28px;
    border-radius: 18px;
  }

  .franchise-card h3 {
    font-size: 18px;
  }

  .card-row {
    padding: 14px 0;
  }

  .card-row span,
  .card-row strong {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .franchise-content h2 {
    font-size: 22px;
  }

  .franchise-card {
    padding: 24px;
  }

  .card-row {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  .card-row strong {
    font-weight: 600;
  }
}


/* Testimonials  */
.testimonials {
  padding: 100px 20px;
  background: #ffffff;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Headings */
.testimonials-title h2{
  margin-bottom: 10px;
}

.testimonials-subtitle {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 60px;
}

/* Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

/* Stars */
.stars {
  color: #f9c80e;
  font-size: 18px;
  margin-bottom: 16px;
}

/* Quote */
.quote {
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 28px;
}

/* Author */
.author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.author span {
  font-size: 13px;
  color: #6b7280;
}
@media (max-width: 1024px) {
  .testimonials {
    padding: 80px 20px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 16px;
  }

  .testimonials-title {
    font-size: 24px;
  }

  .testimonials-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .quote {
    font-size: 14px;
    line-height: 1.6;
  }

  .stars {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .testimonials-title {
    font-size: 22px;
  }

  .testimonials-subtitle {
    font-size: 14px;
  }

  .testimonial-card {
    padding: 20px;
    border-radius: 14px;
  }

  .author strong {
    font-size: 14px;
  }

  .author span {
    font-size: 12px;
  }
}
@media (hover: none) {
  .testimonial-card:hover {
    transform: none;
  }
}


/* final cta  */
.final-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #3eb489, #00adef);
  color: #ffffff;
  text-align: center;
}

.final-cta-container {
  max-width: 1200px;
  margin: auto;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 16px;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 60px;
  opacity: 0.95;
}

/* Cards */
.cta-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.cta-card {
  background: #ffffff;
  color: #111827;
  border-radius: 18px;
  padding: 36px;
  text-align: left;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-6px);
}

.cta-card h3 {
  margin-bottom: 10px;
}

.cta-card p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 22px;
}

/* Icons */
.cta-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.cta-icon.green {
  background: #e6f7f1;
  color: #3eb489;
}

.cta-icon.blue {
  background: #e0f2fe;
  color: #00adef;
}

/* Links */
.cta-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.green-link {
  color: #3eb489;
}

.blue-link {
  color: #00adef;
}

.cta-link span {
  transition: transform 0.3s ease;
}

.cta-link:hover span {
  transform: translateX(4px);
}

/* Footer */
.cta-footer {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 14px;
  opacity: 0.95;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .final-cta {
    padding: 80px 20px;
  }

  .cta-cards {
    gap: 24px;
  }

  .cta-footer {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .final-cta {
    padding: 60px 16px;
  }

  .final-cta h2 {
    font-size: 24px;
  }

  .cta-subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
  }

  /* Stack CTA cards */
  .cta-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .cta-card {
    padding: 28px;
    text-align: center;
  }

  .cta-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-card h3 {
    font-size: 18px;
  }

  .cta-card p {
    font-size: 14px;
  }

  .cta-link {
    justify-content: center;
  }

  /* Footer stacks better */
  .cta-footer {
    flex-direction: column;
    gap: 14px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .final-cta h2 {
    font-size: 22px;
  }

  .cta-subtitle {
    font-size: 14px;
  }

  .cta-card {
    padding: 22px;
    border-radius: 16px;
  }

  .cta-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
@media (hover: none) {
  .cta-card:hover {
    transform: none;
  }

  .cta-link:hover span {
    transform: none;
  }
}


/* ===== HERO SLIDER ===== */
/* ===== FIXED SIZE HERO SLIDER ===== */
.hero-image {
  position: relative;
  width: 100%;
}

/* Fixed height slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 480px;              /* 👈 FIXED HEIGHT */
  overflow: hidden;
  border-radius: 20px;
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Images */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* 👈 keeps image proportional */
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}


/* ===== SLIDER BUTTONS ===== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  z-index: 5;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

/* Button positions */
.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

.slider-btn i {
  font-size: 14px;
  color: #111827;
}
/* ===============================
   Partner Modal Overlay
   =============================== */

.partner-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.partner-modal.active {
  display: flex;
}

/* ===============================
   Modal Card
   =============================== */

.partner-modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 560px;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  position: relative;
  font-family: "Lato", "Open Sans", sans-serif;
  animation: fadeUp 0.35s ease;
      max-height: 85vh;      /* smaller overall height */
    overflow-y: auto;     /* scroll if needed */
    padding: 28px 30px;   /* reduce padding */
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #6b7280;
}

.close-btn:hover {
  color: #111827;
}

/* ===============================
   Typography
   =============================== */

.partner-modal-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.modal-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 26px;
}
.partner-form input,
.partner-form textarea {
    padding: 10px 12px;
    font-size: 14px;
}
.partner-form textarea {
    min-height: 80px;   /* instead of tall default */
    resize: vertical;  /* allow user to expand if needed */
}
.partner-form textarea {
    min-height: 70px;
}

/* ===============================
   Form Layout
   =============================== */

.partner-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-success {
  background: #e6f7f1;
  color: #065f46;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 600;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Labels */
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

/* Inputs & Textareas */
.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.25s ease;
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

/* Focus State */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0ea5a4;
  box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.15);
}

/* Divider */
.form-divider {
  border: none;
  height: 1px;
  background: #e5e7eb;
  margin: 8px 0;
}

/* ===============================
   Submit Button
   =============================== */

.submit-btn {
  padding: 15px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #0ea5a4, #0284c7);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(2, 132, 199, 0.35);
}

/* ===============================
   Footer Note
   =============================== */

.form-note {
  font-size: 12.5px;
  color: #6b7280;
  text-align: center;
  margin-top: 10px;
}

/* ===============================
   Animations
   =============================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

