
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary-orange: #FF7B00;
  --primary-yellow: #FFD34E;
  --bg-cream: #F9F6F1;
  --text-dark: #333;
  --text-muted: #666;
  --white: #ffffff;
}

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

body {
   font-family: "Manrope", sans-serif;
  color: var(--text-dark);
  line-height: 1.5;
  background-color: #fff;
}

.orange-text { color: var(--primary-orange); }

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: #fff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img { height: 40px; }
.logo-text { display: flex; flex-direction: column; }
.logo-hcs { font-weight: 800; font-size: 1.2rem; line-height: 1; }
.logo-sub { font-size: 0.7rem; color: var(--text-muted); }

.nav a {
  text-decoration: none;
  color: var(--text-dark);
  margin: 0 15px;
  font-weight: 500;
  font-size: 0.95rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-number { font-weight: 600; color: var(--primary-orange); }
.icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  margin: 20px 5%;
  border-radius: 30px;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  top: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  max-width: 450px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hero-card h1 { font-size: 2rem; line-height: 1.2; margin-bottom: 15px; }
.hero-card p { color: var(--text-muted); margin-bottom: 25px; }

.hero-btns { display: flex; gap: 15px; margin-bottom: 25px; }
.btn-primary {
  background: var(--primary-yellow);
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}
.btn-secondary {
  background: #FFA55A;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

.hero-features {
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
}
.hero-features li { display: flex; align-items: center; gap: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot.orange { background: var(--primary-orange); }

/* How it Works */
.section { padding: 80px 5%; text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 40px; }

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

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;background: #ffffff;
    box-shadow: 0px 0px 12px 5px #3331;
    border-radius: 50px;
}
.orange-light { background: #fff; }
.step-num {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary-orange);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Who we are */
.who-we-are {
    background-color: var(--bg-cream);
    border-radius: 40px;
    margin: 0px 10%;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 60px;
    border: 1px solid #ff7b0059; position: relative;
    z-index: 99;
}

.who-we-are-content { flex: 1; }
.subtitle { color: var(--primary-orange); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.who-we-are-content h2 { font-size: 2.2rem; margin: 15px 0; color: var(--primary-orange); }
.who-we-are-content p { margin-bottom: 30px; color: var(--text-muted); }

.btn-orange {
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
}

.who-we-are-img { flex: 1; border-radius: 20px; overflow: hidden; }
.who-we-are-img img { width: 100%; display: block; }

/* Stats Bar */
.stats-bar {
  background: var(--primary-yellow);
  padding: 40px 5%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0px 10%;
  position: relative;
  margin-top: -30px; z-index: 999; border-radius: 85px;
}

.stats-intro { max-width: 200px; font-weight: 500; }
.stat-item h3 { font-size: 2.5rem; margin-bottom: 5px; font-weight: 800; }
.stat-item p { font-size: 0.9rem; display: flex; align-items: center; margin-bottom: 0px; gap: 5px; }

/* Services */
.section-subtitle { margin-top: -30px; margin-bottom: 50px; color: var(--text-muted); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
      background: var(--bg-cream);
    padding: 20px;
    border-radius: 20px;
    text-align: left;
    border: 3px solid #fdeaa2;
}
.service-img {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 200px;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { margin-bottom: 15px; }
.btn-service {
  width: 100%;
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.center-btn { margin-top: 40px; }
.btn-yellow-large {
  background: var(--primary-yellow);
  border: none;
  padding: 15px 40px;
  border-radius: 28px;
  font-weight: 600;
  cursor: pointer;
}
.stats-pattern img {
    width: 80px;
}
/* Testimonials */
.testimonials { background: var(--bg-cream);  position: relative; z-index: 9;   border: 1px solid #3F704D; margin: 0px 5% 60px; border-radius: 40px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
}
.client-info { display: flex; gap: 15px; align-items: center; margin-bottom: 15px; }
.client-info img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.client-info h4 { margin: 0; }
.client-info span { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: var(--primary-yellow); margin-top: 15px; }

/* FAQ Section */
.faq-section {
    background: var(--primary-orange);
    padding: 80px 5%;
    color: white;
    border-radius: 40px 40px 0 0;
    margin-top: -120px;
    position: relative;
    z-index: 0;
}.faq-container { display: flex; gap: 60px; }
.faq-left { flex: 1.5; }
.faq-right { flex: 1; }
.stats-intro::after {
    content: '';
    width: 2px;
    height: 240%;
    background: #999;
    position: absolute;
    right: 0px;
    top: -45px;
    bottom: -52px;
}.stats-intro { 
  position: relative;
 }
 .stats-pattern {
    width: 180px;
    height: 160px;
    position: absolute;
    right: -86px;
    top: 26px;
}
.faq-title { font-size: 2.2rem; margin-bottom: 40px; font-weight: 800; text-align: center; }
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.3); padding: 20px; }
.accordion-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}
.accordion-content { padding-top: 15px; font-size: 0.9rem; opacity: 0.9; }

.faq-img-box { border-radius: 20px; overflow: hidden; margin-bottom: 20px; }
.faq-img-box img { width: 100%; }

.question-box {
  background: white;
  color: var(--text-dark);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}
.question-box h4 { margin-bottom: 10px; }
.question-box p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.btn-yellow-outline {
  border: 2px solid var(--primary-yellow);
  background: transparent;
  padding: 10px 20px;
  border-radius: 80px;
  font-weight: 600;
  cursor: pointer;
}

/* Newsletter */
.newsletter-section {
  position: relative;
  top: -40px;
  padding: 0 5%;
}
.newsletter-card {
  background: white;
  padding: 40px;
  border-radius: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  padding: 12px 20px;
  border: 1px solid #eee;
  background: #f9f9f9;
  border-radius: 30px;
  width: 250px;
}
.btn-black {
  background: #000;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
}
.accordion {
    background: transparent;
    gap: 20px;
    display: flex;
    flex-direction: column;
}
/* Footer */
.footer { background: var(--primary-yellow); padding: 80px 5% 20px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand h2 { font-size: 2.5rem; margin-bottom: 20px; }
.footer-brand p { color: #000; font-size: 0.9rem; line-height: 1.6; }
.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-icons span {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
      background: rgb(255 255 255 / 75%);
  border-radius: 50%;
  cursor: pointer;
}

.footer-links h4 { margin-bottom: 20px; }
.footer-links ul { list-style: none;     padding-left: 10px; }
.footer-links li { margin-bottom: 10px; color: #000; cursor: pointer; font-size: 0.9rem; }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #000;
}
/* WHY CHOOSE US */

.why-choose{
  background: #F5F2EC;
    padding: 90px 5%;
    border-radius: 60px;
    margin: -50px 1%;
    position: relative;
    z-index: 1;
}

.why-title{
  font-size:48px;
  font-weight:700;
}

.why-sub{
  color:#666;
  max-width:700px;
  margin:auto;
}

.why-row{
  margin-top:60px;
}

.circle-img{
  width:230px;
  height:230px;
  border-radius:50%;
  overflow:hidden;
  position:relative;
  margin:auto;
}

.circle-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

/* orange arc border */
.circle-img::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  border:6px solid #ff7b00;
  border-bottom-color:transparent;
  border-left-color:transparent;
  transform:rotate(35deg);
}

.why-box h4{
  font-weight:600;
  font-size:26px;
  margin-bottom:10px;
}

.why-box p{
  color:#666;
  line-height:1.6;
}
/* Responsive */
@media (max-width: 992px) {
  .hero-card { position: relative; top: 0; right: 0; margin: 20px auto; max-width: 90%; }
  .steps-grid, .services-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .who-we-are { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-container { flex-direction: column; }
  .newsletter-card { flex-direction: column; gap: 20px; text-align: center; }
}t