* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #1f2937;
  background-color: #f0fdfa;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-inline: 16px;
}

.btn {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  font-size: 1rem;
}

.btn.primary {
  background: linear-gradient(135deg, #0f766e, #d4af37);
  color: #ffffff;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.35);
}

.btn.secondary {
  border: 2px solid #0f766e;
  color: #0f766e;
  background: transparent;
}

.btn.secondary:hover {
  background: #0f766e;
  color: #ffffff;
}

.navbar {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  width: 100%;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.2rem;
  color: #0f766e;
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #0f766e;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0f766e, #d4af37);
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  /* background-image: url('./images/WhatsApp\ Ima'); */
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: #0f766e;
  padding: 40px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

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

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(15, 118, 110, 0.15);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 35px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.about {
  background: #f8fafc;
  padding: clamp(60px, 10vw, 100px) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #0f766e;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.about-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.08);
  border-left: 5px solid #d4af37;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 118, 110, 0.15);
}

.about-card h3 {
  color: #0f766e;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.about-card p {
  color: #4b5563;
  line-height: 1.7;
}

.core-values {
  text-align: center;
}

.core-values h3 {
  color: #0f766e;
  font-size: 2rem;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.value-item {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.15);
}

.value-icon {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #ffffff;
  border-radius: 50%;
  margin: 0 auto 15px;
  font-weight: 700;
}

.value-item p {
  color: #0f766e;
  font-weight: 600;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

.about-tag {
  color: #d4af37;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.about h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #0f766e;
}

.about-description p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: #4b5563;
  margin-bottom: 20px;
  max-width: 100%;
}

.about-features {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(15px, 3vw, 40px);
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #f1f5f9;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #334155;
}

.feature .icon {
  color: #d4af37;
  font-weight: 900;
}

section {
  padding: clamp(60px, 10vw, 100px) 0;
  width: 100%;
}

.services {
  padding: clamp(60px, 10vw, 100px) 0;
  background: #f8fafc;
}

.services .container {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  border: 2px dashed #14b8a6;
}

.services h2 {
  text-align: center;
  color: #0f766e;
  margin-bottom: 40px;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(135deg, #f0fdfa, #ffffff);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid #14b8a6;
  color: #0f766e;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(15, 118, 110, 0.15);
  border-left-color: #d4af37;
}

.apply {
  background: linear-gradient(180deg, #f0fdfa, #ffffff);
}

.not-allowed {
  margin-top: 50px;
  padding: 30px;
  background: #fff1f2;
  border-radius: 20px;
  border: 2px dashed #e11d48;
  max-width: 600px;
  margin: 50px auto 0;
}

.not-allowed h3 {
  color: #e11d48;
  margin-bottom: 15px;
  text-align: center;
}

.not-allowed ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  padding: 0;
}

.not-allowed li {
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  color: #9f1239;
}

.not-allowed li::before {
  content: "✕ ";
  font-weight: bold;
}
#apply {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  background-color: #f5f5f5;
}

#apply .container {
  max-width: 600px;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 10px;
}

form {
  max-width: 800px;
  margin: auto;
  background: #ffffff;
  padding: clamp(30px, 5vw, 60px);
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  width: 100%;
}

form h3 {
  margin: 25px 0 15px;
  color: #0f766e;
  border-bottom: 2px solid #f0fdfa;
  padding-bottom: 10px;
}

form input, 
form textarea, 
form select {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-family: inherit;
  font-size: 1rem;
}

form input:focus, 
form textarea:focus {
  outline: none;
  border-color: #14b8a6;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

.footer {
  background: linear-gradient(135deg, #0f766e, #064e3b);
  color: #ecfeff;
  padding: 80px 0 30px;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer h4 {
  margin-bottom: 20px;
  color: #d4af37;
  font-size: 1.2rem;
}

.footer ul {
  list-style: none;
}

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

.footer a {
  color: #ecfeff;
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.footer a:hover {
  color: #d4af37;
  opacity: 1;
}

.footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Professional Social Icons Container */
.social-icons {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.social-icons a {
  background: transparent;
  color: #ffffff;
  padding: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  width: 60px;
  height: 60px;
  border: none;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.social-icons a img {
  width: 30px;
  height: 30px;
}

/* Professional Brand Styling */
.whatsapp-float {
  background: #25d366;
}

.whatsapp-float:hover {
  background: #128c7e;
}

.facebook-float {
  background: #1877f2;
}

.facebook-float:hover {
  background: #166fe5;
}

.instagram-float {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-icons {
    bottom: 25px;
    right: 25px;
    gap: 10px;
  }
  
  .social-icons a {
    width: 50px;
    height: 50px;
    padding: 12px;
  }
  
  .social-icons a img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .social-icons {
    bottom: 20px;
    right: 20px;
    gap: 8px;
  }
  
  .social-icons a {
    width: 45px;
    height: 45px;
    padding: 10px;
  }
  
  .social-icons a img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding-inline: 24px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 260px;
    background: #ffffff;
    padding: 30px;
    border-radius: 0 0 0 20px;
    box-shadow: -10px 15px 30px rgba(0,0,0,0.1);
    gap: 20px;
    align-items: flex-start;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    text-align: center;
    min-height: auto;
    padding: 80px 0;
  }

  .hero-content {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about {
    padding: 60px 16px;
  }

  .about-card {
    padding: 40px 20px;
    border-top-width: 6px;
  }

  .about-features {
    flex-direction: column;
    gap: 15px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .whatsapp-float span {
    display: none;
  }
  
  .whatsapp-float {
    padding: 15px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }

  section {
    padding: 50px 0;
  }

  .about-card {
    border-radius: 16px;
  }

  form {
    padding: 25px 15px;
  }

  input, textarea, select {
    font-size: 16px !important;
  }
}

/* NEW SECTIONS STYLING */

.who-we-support {
  background: #ffffff;
  padding: clamp(60px, 10vw, 100px) 0;
}

.who-we-support h2 {
  text-align: center;
  color: #0f766e;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: #14b8a6;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.section-intro {
  text-align: center;
  color: #4b5563;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.support-card {
  background: linear-gradient(135deg, #f0fdfa, #ffffff);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.08);
  border-left: 4px solid #14b8a6;
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.15);
}

.support-card h4 {
  color: #0f766e;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.support-card p {
  color: #4b5563;
  line-height: 1.6;
}

/* SERVICES SHOWCASE */

.services-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-showcase-item {
  background: #f8fafc;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-showcase-item:hover {
  border-color: #14b8a6;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.12);
}

.service-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 20px;
}

.service-showcase-item h3 {
  color: #0f766e;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.service-showcase-item p {
  color: #4b5563;
  line-height: 1.7;
}

/* HOW IT WORKS */

.how-it-works {
  background: #f0fdfa;
  padding: clamp(60px, 10vw, 100px) 0;
}

.how-it-works h2 {
  text-align: center;
  color: #0f766e;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 15px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.step-item h3 {
  color: #0f766e;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.step-item p {
  color: #4b5563;
  line-height: 1.6;
}

/* WHY CHOOSE US */

.why-choose-us {
  background: #ffffff;
  padding: clamp(60px, 10vw, 100px) 0;
}

.why-choose-us h2 {
  text-align: center;
  color: #0f766e;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 15px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.trust-item {
  background: #f0fdfa;
  padding: 25px;
  border-radius: 12px;
  color: #0f766e;
  font-weight: 500;
  border-left: 4px solid #14b8a6;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.1);
  transform: translateX(8px);
}

/* TRUST & SAFETY */

.trust-safety {
  background: #f8fafc;
  padding: clamp(60px, 10vw, 100px) 0;
}

.trust-safety h2 {
  text-align: center;
  color: #0f766e;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 40px;
}

.trust-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.checklist-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.08);
  transition: all 0.3s ease;
}

.checklist-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.12);
}

.check-icon {
  font-size: 2rem;
  color: #14b8a6;
  font-weight: bold;
  flex-shrink: 0;
}

.checklist-item p {
  color: #0f766e;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

/* FAQ */

.faq {
  background: #ffffff;
  padding: clamp(60px, 10vw, 100px) 0;
}

.faq h2 {
  text-align: center;
  color: #0f766e;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: #f0fdfa;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #14b8a6;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.1);
  transform: translateY(-5px);
}

.faq-item h3 {
  color: #0f766e;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.faq-item p {
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* FINAL CTA */

.final-cta {
  background: linear-gradient(135deg, #0f766e, #064e3b);
  color: #ffffff;
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.final-cta p {
  color: #ecfeff;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0.95;
}

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

.cta-buttons .btn {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* FOOTER TAGLINE */

.footer-tagline {
  color: #d4af37;
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* RESPONSIVE ADJUSTMENTS */

@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
  }

  .services-showcase {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-checklist {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}