body{
      margin:0;
    }

    /* NAVBAR */
    .navbar{
      position:fixed;
      top:0;
      width:100%;
      z-index:10;
      background:rgb(7, 211, 105);
      /* background:rgba(215, 8, 8, 0.6); */
    }

    .navbar a{
      color:#fff !important;
      font-weight:600;
    }
    #home img{
      width:100%;
      height:100%;
      object-fit:cover; /* FULL SCREEN */
    } 

@media (max-width:768px){
  #home{
    padding-top:100px; /* mobile navbar height */
  }
}

/* About */
.about-section{
  padding:80px 0;
  background:#fff7f9;
}

.section-title{
  text-align:center;
  font-size:32px;
  font-weight:700;
  margin-bottom:40px;
  color:#8e0038;
}

.about-content{
  max-width:900px;
  margin:auto;
  background:#ffffff;
  padding:40px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.about-content h3{
  font-size:26px;
  font-weight:700;
  color:#333;
}

.designation{
  display:block;
  font-weight:600;
  color:#e91e63;
  margin-bottom:20px;
}

.about-content p{
  font-size:16px;
  line-height:1.8;
  color:#444;
  margin-bottom:16px;
}

.about-content blockquote{
  margin-top:30px;
  padding:20px;
  background:#fff0f5;
  border-left:5px solid #e91e63;
  font-style:italic;
  font-weight:500;
  color:#555;
}

/* MOBILE */
@media(max-width:768px){
  .about-content{
    padding:25px;
  }
  .section-title{
    font-size:26px;
  }
}



/* Services */
/* SERVICES SECTION */
#services{
  padding:80px 20px;
  background:#fff;
}

#services h2{
  text-align:center;
  font-size:32px;
  font-weight:700;
  color:#8e0038;
  margin-bottom:50px;
}

/* GRID */
#services .grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
}

/* CARD */
.card-custom{
  background:#fff7f9;
  padding:35px 25px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.card-custom:hover{
  transform:translateY(-8px);
}

/* ICON (OPTIONAL) */
.card-custom i{
  width:60px;
  height:60px;
  margin:0 auto 18px;
  background:#8e0038;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
}

/* TITLE */
.card-custom h3{
  font-size:20px;
  font-weight:600;
  color:#8e0038;
  margin-bottom:10px;
}

/* DESCRIPTION (if you add later) */
.card-custom p{
  font-size:15px;
  color:#444;
  line-height:1.7;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:992px){
  #services .grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

/* Mobile */
@media(max-width:576px){
  #services .grid{
    grid-template-columns:1fr;
  }
}






/* .service-icon{
  width:60px;
  height:60px;
  background:#8e0038;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:18px;
}

.service-card{
  background:#fff7f9;
  padding:32px;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.service-card:hover{
  transform:translateY(-8px);
}

.service-card h3{
  font-size:20px;
  color:#8e0038;
  margin-bottom:10px;
}

.service-card p{
  font-size:15px;
  color:#444;
  line-height:1.7;
}
.services-section{
  padding:80px 0;
  background:#fff;
}

.section-title{
  text-align:center;
  font-weight:700;
  color:#8e0038;
  margin-bottom:50px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}

/* Tablet */
/* @media(max-width:992px){
  .services-grid{
    grid-template-columns:repeat(2, 1fr);
  }
} */

/* Mobile */
/* @media(max-width:576px){
  .services-grid{
    grid-template-columns:1fr;
  }
}  */




.why-section{
  padding:80px 0;
  background:#fff7f9;
}

.why-list{
  max-width:700px;
  margin:auto;
  list-style:none;
  padding:0;
}

.why-list li{
  background:#fff;
  margin-bottom:14px;
  padding:16px 20px;
  border-radius:12px;
  font-weight:500;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}


#success{
  padding:80px 0;
  background:#fff7f9;
}
.center-text{
  text-align:center;
}
.story{
  max-width:700px;
  margin:30px auto 0;
  background:#fff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  font-style:italic;
}

.story span{
  display:block;
  margin-top:12px;
  font-weight:600;
  color:#8e0038;
}
#process{
  padding:80px 0;
  background:#fff;
}

.process-list{
  max-width:700px;
  margin:auto;
  padding-left:20px;
}

.process-list li{
  margin-bottom:14px;
  font-weight:500;
}


#faq{
  padding:80px 0;
  background:#fff7f9;
}

#faq p{
  max-width:800px;
  margin:0 auto 20px;
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.cta{
  padding:70px 20px;
  text-align:center;
   background:#fff;
 list-style:none;
}

.cta-btn{
  display:inline-block;
  margin:10px;
  padding:12px 26px;
  background:#fff;
  color:#8e0038;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
}

.cta-btn.whatsapp{
  background:#25D366;
  color:#fff;
}

/* Contact */
.contact-section{
  padding:80px 0;
  background:#fff7f9;
}

.contact-subtitle{
  text-align:center;
  margin-bottom:50px;
  color:#555;
}

.contact-wrapper{
  max-width:1000px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* LEFT */
.contact-left h3{
  color:#8e0038;
  margin-bottom:20px;
}

.founder-name{
  font-size:22px;
  font-weight:700;
  margin-bottom:4px;
}

.founder-role{
  color:#e91e63;
  font-weight:600;
  margin-bottom:20px;
}

.contact-info p{
  font-size:15px;
  margin-bottom:10px;
  color:#444;
}

/* RIGHT */
.contact-right h3{
  color:#8e0038;
  margin-bottom:20px;
}

.contact-right form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.contact-right input,
.contact-right select,
.contact-right textarea{
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #ddd;
  font-size:14px;
}

.contact-right textarea{
  resize:none;
  height:100px;
}

.contact-right input:focus,
.contact-right select:focus,
.contact-right textarea:focus{
  outline:none;
  border-color:#e91e63;
}

/* BUTTON */
.submit-btn{
  background:#25D366;
  color:#fff;
  padding:14px;
  border:none;
  border-radius:30px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.submit-btn:hover{
  background:#1ebe5d;
  transform:translateY(-2px);
}

/* MOBILE */
@media(max-width:768px){
  .contact-wrapper{
    grid-template-columns:1fr;
    padding:25px;
  }
}

.footer{
  background:#111;
  color:#ccc;
  text-align:center;
  padding:30px 10px;
  font-size:14px;
}
@media(max-width:992px){
  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .services-grid,
  .contact-wrapper{
    grid-template-columns:1fr;
  }

  .section-title{
    font-size:26px;
  }
}


.lang-btn{
  background:transparent;
  border:1px solid #fff;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  margin-left:6px;
  cursor:pointer;
}

.lang-btn.active{
  background:#ffc107;
  color:#8e0038;
  border-color:#ffc107;
}
.contact-left a{
  color:#8e0038;
  font-weight:600;
  text-decoration:none;
}

.contact-left a:hover{
  text-decoration:underline;
}

.error-msg{
  color:#e53935;
  font-size:13px;
  margin-top:4px;
  display:block;
}
