:root {
  --primary-color: #00b2c6;
  --primary-dark: #007298;
  --text-dark: #002e3a;
  --accent: #008fa3;
}

/* Buttons */
button,
.btn,
input[type="submit"],
a.button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}

button:hover,
.btn:hover,
a.button:hover {
  background-color: var(--primary-dark);
}

/* Navbar or Header */
header,
.navbar {
  background-color: var(--primary-dark);
  color: white;
}

/* Links */
a {
  color: var(--primary-color);
}
a:hover {
  color: var(--primary-dark);
}

/* Highlight text */
h1, h2, h3, h4, h5 {
  color: var(--primary-dark);
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  border: 1px solid var(--primary-color);
}




/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #00A8C6;
  position: relative;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  height: 40px;
}
.flag {
  height: 20px;
}
.desktop-menu a {
  margin-left: 20px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}
.login-btn {
  border: 2px solid white;
  border-radius: 25px;
  padding: 5px 15px;
}
.mobile-menu-icon {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #f15a29;
  padding: 1rem;
}
.mobile-menu a {
  color: white;
  margin: 10px 0;
  text-decoration: none;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background: linear-gradient(to right, #f9b233, #f15a29);
  color: white;
}
.hero-text {
  max-width: 50%;
}
.hero-text h1 {
  font-size: 3rem;
  color: #222;
}
.hero-text span {
  color: #222;
  font-weight: bold;
}
.hero-text p {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: white;
}
.hero-slider {
  position: relative;
  width: 50%;
}
.hero-slider img {
  width: 100%;
  height: auto;
  display: none;
  border-radius: 10px;
}
.hero-slider img.active {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  .mobile-menu-icon {
    display: block;
  }
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-slider {
    width: 100%;
    margin-top: 1rem;
  }
}
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #f9b233, #f15a29);
    padding: 10px 0;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }

  .mobile-bottom-nav .nav-item {
    text-align: center;
    color: white;
    font-size: 12px;
    text-decoration: none;
  }

  .mobile-bottom-nav .nav-item img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
  }
}
/* Mobile Overlay Menu */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: #00A8C6;
  z-index: 9999;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.overlay-logo {
  height: 40px;
}
.overlay-flag {
  height: 20px;
}

.mobile-overlay a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
}

.mobile-overlay a.apply-btn {
  background: #002E47;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 20px;
  display: inline-block;
}

.overlay-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
}
.overlay-footer a {
  color: white;
  text-decoration: underline;
}
.overlay-footer p {
  margin-top: 5px;
  color: white;
}

@media (min-width: 769px) {
  .mobile-overlay {
    display: none !important;
  }
}.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
.mobile-bottom-menu {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #015B69;
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  }

  .mobile-bottom-menu .menu-item {
    text-align: center;
    color: white;
    text-decoration: none;
    font-size: 12px;
  }

  .mobile-bottom-menu .menu-item i {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
    color: white;
  }

  .mobile-bottom-menu .menu-item span {
    font-weight: bold;
  }
}
.slider-dots {
  display: flex;
  justify-content: center;
  margin: 15px auto 60px auto; /* Adds bottom space for mobile menu */
  gap: 10px;
}
@media (max-width: 480px) {
  .slider-dots {
    margin-bottom: 80px;
  }
}


.slider-dots .dot {
  width: 30px;
  height: 12px;
  background-color: #ccc;
  border-radius: 20px;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.slider-dots .dot.active {
  background-color: #007bff;
}

.loan-calculator-section {
  background-color: #f4f4f4;
  padding: 3rem 1rem;
  text-align: center;
}

.loan-calculator-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
}

.calculator-card {
  background: white;
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.calculator-card h3 {
  margin-bottom: 1rem;
  color: #222;
}

.calc-control {
  background: #f15a29;
  color: white;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 15px;
}

.calc-control label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.control-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.control-group button {
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  border: none;
  border-radius: 50%;
  background: white;
  color: #f15a29;
  cursor: pointer;
  font-weight: bold;
}

.control-group input {
  width: 100px;
  padding: 0.5rem;
  font-size: 1.2rem;
  text-align: center;
  border-radius: 10px;
  border: none;
  background: #fff;
  color: #f15a29;
  font-weight: bold;
}

.calc-result {
  margin-top: 1rem;
  background: #f15a29;
  color: white;
  border-radius: 15px;
  padding: 1rem;
}

.calc-result input {
  width: 100%;
  background: white;
  color: #f15a29;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0.5rem;
  border: none;
  border-radius: 10px;
  padding: 0.5rem;
}
.loan-calculator-section-embed {
  padding: 1rem 0 3rem 0;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
}

.loan-calculator-frame {
  width: 90%;
  max-width: 600px;
  height: 670px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

/* Tweak top margin on mobile */
@media (max-width: 768px) {
  .loan-calculator-frame {
    margin-top: 1rem;
    width: 95%;
  }
}
.capfin-calculator {
  background: #f3f8fd;
  padding: 2rem 1rem;
  border-radius: 12px;
  max-width: 1100px;
  margin: 2rem auto;
}

.capfin-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: #eaf3fc;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.capfin-container .left,
.capfin-container .right {
  flex: 1 1 45%;
}

.capfin-container h3 {
  font-size: 1.2rem;
  color: #0c2d52;
  margin-bottom: 1rem;
}

.loan-value {
  font-size: 2rem;
  font-weight: bold;
  color: #0c2d52;
  margin-bottom: 1rem;
}

input[type="range"] {
  width: 100%;
  margin-bottom: 0.5rem;
  accent-color: #0c2d52;
}

.loan-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #0c2d52;
}

.months-options {
  margin: 1rem 0;
  display: flex;
  gap: 1.5rem;
}

.month-option {
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-bottom: 3px solid transparent;
  font-weight: bold;
  color: #0c2d52;
}

.month-option.selected {
  border-color: #f7a100;
}

.learn-link {
  display: inline-block;
  margin-top: 1rem;
  color: #0073e6;
  text-decoration: underline;
  font-size: 0.9rem;
}

.right .monthly-amount {
  font-size: 2rem;
  color: #f7a100;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.right .note {
  font-size: 0.85rem;
  color: #333;
}

.fees {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.fees p {
  margin: 0.2rem 0 0 0;
  color: #0c2d52;
  font-weight: bold;
}

.apply-now-btn {
  display: inline-block;
  margin-top: 2rem;
  background: #00A8C6;
  color: white;
  font-weight: bold;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
}
.orange-theme {
  background: linear-gradient(to right, #fcb045, #fd1d1d); /* ORANGE TO RED gradient */
  padding: 3rem 1rem;
  color: #fff;
}

.capfin-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.capfin-container .left,
.capfin-container .right {
  flex: 1 1 48%;
}

.loan-value {
  font-size: 2rem;
  font-weight: bold;
  color: #0c2d52;
  margin-bottom: 1rem;
}

input[type="range"] {
  width: 100%;
  accent-color: #0c2d52;
  margin: 10px 0;
}

.loan-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #0c2d52;
}

.monthly-amount {
  font-size: 2rem;
  font-weight: bold;
  color: #f7a100;
}

.note, .info-note {
  font-size: 0.9rem;
  color: #333;
}

.fees {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.fees p {
  font-weight: bold;
  margin: 0.2rem 0;
  color: #0c2d52;
}

.apply-now-btn {
  margin-top: 2rem;
  display: inline-block;
  background: #00A8C6;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .capfin-container {
    flex-direction: column;
  }

  .capfin-container .left,
  .capfin-container .right {
    flex: 1 1 100%;
  }

  .apply-now-btn {
    width: 100%;
    text-align: center;
  }
}
/* Modern Range Slider Styling */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: #d6d6d6;
  border-radius: 5px;
  outline: none;
  transition: background 0.3s ease;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f7a100;
  border: 3px solid white;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #ffa500;
  transform: scale(1.1);
}

input[type="range"]::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f7a100;
  border: 3px solid white;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

input[type="range"]::-moz-range-thumb:hover {
  background: #ffa500;
  transform: scale(1.1);
}
.slider-note {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}
.months-options {
  margin: 1.5rem 0 0.5rem;
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
}

.month-option {
  cursor: pointer;
  padding-bottom: 4px;
  font-weight: normal;
  color: #0c2d52;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.month-option.selected {
  font-weight: bold;
  border-color: #f7a100;
}
.qualify-section {
  background: #fef7f0;
  padding: 4rem 1rem;
}

.qualify-heading {
  text-align: center;
  font-size: 2rem;
  color: #20413c;
  margin-bottom: 2rem;
}

.qualify-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-radius: 20px;
  background: white;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.qualify-image {
  flex: 1 1 45%;
  background: linear-gradient(to bottom right, #f7333b, #a4161a);
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.qualify-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
}

.speech-bubble {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: #63c3ad;
  color: #20413c;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.qualify-info {
  flex: 1 1 50%;
  background: #00A8C6;
  padding: 2rem;
  border-radius: 20px;
  color: #20413c;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #20413c;
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem; /* ✅ centers horizontally + spacing below */
}


.qualify-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.qualify-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.qualify-list li span {
  background: #c62828;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}

.qualify-apply-btn {
  background: none;
  border: 2px solid white;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.2s ease;
}

.qualify-apply-btn:hover {
  background: white;
  color: #20413c;
}

@media (max-width: 768px) {
  .qualify-container {
    flex-direction: column;
  }

  .qualify-image {
    padding: 1.5rem;
    text-align: center;
  }

  .speech-bubble {
    position: static;
    margin-top: 1rem;
  }

  .qualify-info {
    padding: 1.5rem;
  }
}
.how-it-works {
  padding: 4rem 1rem;
  background: #fef7f0;
  text-align: center;
}

.section-heading {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #20413c;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: #00A8C6;
  color: white;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  flex: 1 1 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
}

.step-icon {
  font-size: 2rem;
  background: #20413c;
  color: white;
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .step-card {
    width: 100%;
  }
}
.faq-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #00A8C6; /* your site theme */
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 2rem 0;
  color: white;
  flex-wrap: wrap;
}

.faq-content {
  max-width: 50%;
}

.faq-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.faq-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.faq-button {
  background-color: transparent;
  border: 2px solid white;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.faq-button:hover {
  background-color: white;
  color: #f15b2a;
}

.faq-image {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-image img {
  max-width: 300px;
  height: auto;
}

.chat-bubble {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-weight: bold;
  font-size: 0.9rem;
}

.dots-bubble {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d62828;
  color: white;
  font-size: 1.5rem;
  padding: 0.4rem 1rem;
  border-radius: 15px;
}
.final-cta-section {
  background: #00A8C6; /* Teal to red-orange */
  color: #fff;
  padding: 60px 30px;
  border-radius: 35px;
  margin: 60px auto;
  max-width: 1100px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.final-cta-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.final-cta-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-btn {
  display: inline-block;
  background-color: #fff;
  color: #f85e3f;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.final-cta-btn:hover {
  background-color: #ffe1db;
  color: #28443e;
}
.site-footer {
  background: linear-gradient(to right, #28443e, #f85e3f);
  color: white;
  padding: 50px 20px 20px;
  font-size: 14px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 10px;
}

.footer-links,
.footer-contact,
.footer-social {
  flex: 1 1 200px;
}

.footer-links ul,
.footer-contact p {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-social .social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social .social-icons a:hover {
  color: #ffe1db;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 13px;
}
.about-hero {
  background: #00A8C6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  border-radius: 0 0 2rem 2rem;
  flex-wrap: wrap;
}

.about-hero .hero-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.about-hero .hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-hero .hero-text p {
  font-size: 1.2rem;
  line-height: 1.8;
}

.about-hero .hero-image {
  flex: 1 1 40%;
  text-align: right;
}

.about-hero .hero-image img {
  max-width: 100%;
  height: auto;
}
.about-section {
  background-color: #f2f2f2;
  padding: 4rem 2rem;
  border-radius: 2rem;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 1.5rem;
  object-fit: cover;
}

.about-content {
  flex: 1 1 50%;
  color: #173c3f;
}

.about-content h2 {
  color: #d7263d;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
}
.impact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #00A8C6; /* site theme */
  padding: 4rem 2rem;
  border-radius: 0;
  color: white;
}

.impact-content {
  flex: 1 1 55%;
  padding: 1rem;
}

.impact-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.impact-content .highlight {
  font-weight: 900;
}

.impact-content p {
  font-size: 1.25rem;
  margin-top: 1rem;
}

.impact-image {
  flex: 1 1 40%;
  text-align: right;
}

.impact-image img {
  max-width: 100%;
  height: auto;
}
.why-choose-us {
  background: linear-gradient(90deg, #fcb034, #f25c2e);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.why-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-header p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.why-card {
  background: white;
  color: #333;
  border-radius: 1rem;
  padding: 2rem;
  width: 260px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card img {
  height: 60px;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
 .testimonial-card {
    min-width: 100%;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    box-sizing: border-box;
  }
  .testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
  }
  .testimonial-author {
    margin-top: 20px;
    font-style: italic;
    color: #666;
  }
  .testimonial-stars {
    margin-top: 15px;
    color: #f5a623;
    font-size: 1.5rem;
  }
  .dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
  }
  .active-dot {
    background-color: #264e46;
  }
  .contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.contact-section .container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #28443E;
}

.contact-section p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #333;
}

.contact-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  width: 100%;
}

.contact-form .submit-btn {
  padding: 15px;
  font-size: 16px;
  background: linear-gradient(to right, #f9a825, #f44336);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form .submit-btn:hover {
  background: linear-gradient(to right, #f44336, #f9a825);
}

.contact-info {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.contact-info h3 {
  color: #28443E;
  font-size: 22px;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 16px;
}
/* Privacy Policy Section Styles */
.privacy-policy-section {
  padding: 60px 20px;
  background-color: #fefefe;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.privacy-policy-section .container {
  max-width: 1000px;
  margin: auto;
}

.privacy-policy-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
  text-align: left;
}

.privacy-policy-section h3 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 10px;
  color: #222;
}

.privacy-policy-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.privacy-policy-section ul {
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.privacy-policy-section ul li {
  list-style-type: disc;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}
/* Terms & Conditions Section Styles */
.terms-section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.terms-section .container {
  max-width: 1000px;
  margin: auto;
}

.terms-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.terms-section h3 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 10px;
  color: #222;
}

.terms-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background-color: #00A8C6 !important;
  font-family: 'Segoe UI', sans-serif;
}

.faq-section .container {
  max-width: 800px;
  margin: auto;
}

.faq-section h2 {
  font-size: 32px;
  text-align: center;
  color: #28443E;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #356057;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-question.active::after {
  content: '-';
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  font-size: 16px;
  color: #333;
}
