html, body{
overflow-x:hidden;
}
/* BASE HEADER */
.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}
/* TOP BAR */
.top-bar{
  background: #111;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
    text-align: Center;
}

/* INNER */
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
}

/* NAV */
.nav{
  display: flex;
  gap: 50px;
  align-items: center;
}

/* LINKS */
.nav-link,
.dropdown-toggle{
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* DROPDOWN DESKTOP */
.nav-dropdown{
  position: relative;
}

.dropdown-menu{
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  display: none;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.dropdown-menu a{
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  transition: 0.3s ease;
}

.dropdown-menu a:hover{
  background: #f0f0f0;
  color: #ff6600; /* apna brand color */
}
.nav-dropdown:hover .dropdown-menu{
  display: flex;
	 min-width: 250px;   /* try 250–300px as per design */
    padding: 10px 0;
}

.dropdown-menu a{
  padding: 10px;
  text-decoration: none;
  color: #000;
	white-space: nowrap;   /* text ek line me rahe */
    padding: 10px 20px;
    display: block;
	
}

/* RIGHT SIDE */
.header-right{
  display: flex;
  gap: 10px;
}

/* HAMBURGER */
.hamburger{
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 991px){

   .hamburger{
    display: block;
    z-index: 2000;
  }

  .header-right{
    display: none !important;
  }

   .nav{
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;

    display: none;
    flex-direction: column;
    z-index: 2000;
    overflow-y: auto;
  }

   .nav.active{
    display: flex;
  }

   .nav-dropdown{
    width: 100%;
  }

  .dropdown-menu{
    width: 100%;
    display: none;
    background: #f5f5f5;
  }
    .dropdown-toggle{
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: none;
    border: none;
  }
.dropdown-menu a{
    display: block;
    padding: 12px 20px;
  }
 .nav-dropdown.active .dropdown-menu{
    display: block;
  }

} .terms-section {
    padding: 50px 20px;
  }
  .toc {
    padding: 24px;
    margin-bottom: 40px;
  }
  .toc h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  .toc ul li a {
    font-size: 0.9rem;
  }
  .terms-item {
    margin-bottom: 40px;
  }
  .terms-item h2 {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }
  .terms-item p {
    font-size: 0.9rem;
  }
  .terms-list li {
    font-size: 0.9rem;
    padding-left: 24px;
  }
  .contact-info {
    padding: 20px;
  }
  .cta-section {
    padding: 60px 20px;
  }
  .cta-section h2 {
    font-size: 1.6rem;
  }
  .cta-section p {
    font-size: 0.95rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer .container {
    padding: 40px 20px 20px;
  }

}
 /* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #111; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 35%; display: block; }
/* ===== UTILITIES ===== */
.container{
max-width:1200px;
width:100%;
margin:auto;
padding:0 20px;
}
.text-orange { color: #F97316; }
/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.3s; border: none; font-family: inherit; }
.btn-gradient { background: linear-gradient(135deg, #F97316, #F59E0B); color: #fff; box-shadow: 0 4px 15px rgba(249,115,22,0.35); }
.btn-gradient:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(249,115,22,0.45); }
.btn-outline { border: 2px solid #111; color: #111; background: transparent; }
.btn-outline:hover { background: #111; color: #fff; }
.btn-lg { padding: 14px 36px; font-size: 1rem; }
/* ===== ANIMATIONS ===== */
.animate { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.animate.visible { opacity: 1; transform: translateY(0); }
/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; padding: 80px 0 100px; }
.hero-bg { position: absolute; inset: 0; opacity: 0.05; }
.hero-blob { position: absolute; border-radius: 50%; background: #F97316; filter: blur(80px); }
.hero-blob-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.hero-blob-2 { width: 300px; height: 300px; bottom: -50px; left: -50px; }
.hero-content { position: relative; max-width: 750px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: 3rem; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
.hero-sub { margin-top: 24px; font-size: 1.1rem; color: #666; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { margin-top: 32px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-header h2 { font-size: 2rem; font-weight: 700; }
.section-header p { margin-top: 12px; color: #666; }
/* ===== SERVICES ===== */
.services { padding: 80px 0; background: #fafaf8; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #fff; border: 1px solid #e5e5e5; border-radius: 12px; padding: 28px; transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(249,115,22,0.1); }
.service-icon { width: 48px; height: 48px; background: rgba(249,115,22,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: #666; line-height: 1.6; margin-bottom: 16px; text-align: left; }
.read-more { font-size: 0.9rem; font-weight: 500; color: #F97316; transition: gap 0.2s; }
.read-more:hover { text-decoration: underline; }
/* ===== WHY CHOOSE US ===== */
.why-us { padding: 60px 50px; }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.why-us-text h2 { font-size: 2rem; font-weight: 700; }
.why-us-text > p { text-align: left; margin-top: 16px; color: #666; }
.check-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: left; gap: 12px; font-weight: 500; }
.check-icon { color: #F97316; font-weight: 700; font-size: 1.1rem; }
.stats-box { background: #fafaf8; border: 1px solid #e5e5e5; border-radius: 16px; padding: 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stat { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: #F97316; }
.stat-suffix { font-size: 2rem; font-weight: 700; color: #F97316; }
.stat-label { display: block; margin-top: 4px; font-size: 0.85rem; color: #666; font-weight: 500; }
/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 0; background: #fafaf8; }
.testimonial-slider { max-width: 650px; margin: 0 auto; }
.testimonial-card { background: #fff; border: 1px solid #e5e5e5; border-radius: 12px; padding: 36px; }
.quote-icon { font-size: 3rem; color: rgba(249,115,22,0.25); font-family: Georgia, serif; line-height: 1; }
.testimonial-quote { font-size: 1.05rem; font-style: italic; line-height: 1.7; margin: 12px 0 24px; }
.author-name { font-weight: 600; }
.author-role { font-size: 0.85rem; color: #666; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.slider-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #e5e5e5; background: transparent; font-size: 1.3rem; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: #F97316; color: #fff; border-color: #F97316; }
.dots { display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: #e5e5e5; cursor: pointer; transition: background 0.2s; padding: 0; }
.dot.active { background: #F97316; }
/* ===== CTA ===== */
.cta { padding: 80px 0; background: #111; }
.cta-content { text-align: center; max-width: 650px; margin: 0 auto; }
.cta h2 { font-size: 2rem; font-weight: 700; color: #fff; text-align: center; }
.cta p { margin-top: 16px; color: rgba(255,255,255,0.7); text-align: center; }
.cta .btn { margin-top: 32px; text-align: center;}
/* ===== FOOTER ===== */
.footer { background: #111; color: #fff; border-top: 1px solid rgba(255,255,255,0.1); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand p { margin-top: 16px; font-size: 0.85rem; opacity: 0.7; line-height: 1.6; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size:20px; transition: all 0.2s; }
.social-links a:hover { border-color: #F97316; background: #F97316; }
.footer h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #F97316; margin-bottom: 16px; font-weight: 600; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 0.85rem; opacity: 0.7; transition: opacity 0.2s, color 0.2s; }
.footer ul a:hover { opacity: 1; color: #F97316; }
.contact-list li { font-size: 0.85rem; opacity: 0.7; display: flex; align-items: flex-start; gap: 8px; }
.footer-bottom { margin-top: 40px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.75rem; opacity: 0.5; }
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .btn-lg { padding: 12px 24px; font-size: 0.9rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-grid { gap: 20px; }
}
/* Hero About Us */
.about-hero { padding: 60px 0 80px; background: #fafaf8; text-align: center; }
.about-hero h1 { font-size: 36px; font-weight: 600; line-height: 1.2; }
.about-hero p { margin-top: 16px; font-size: 1.1rem; color: #666; max-width: 1150px; margin-left: auto; margin-right: auto; }
/* Cards Grid */
.cards-section { padding: 80px 0; }
.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card { border: 1px solid #e5e5e5; border-radius: 16px; padding: 32px; }
.card-icon { width: 48px; height: 48px; background: rgba(249,115,22,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg { width: 24px; height: 24px; color: #F97316; stroke: #F97316; fill: none; }
.card h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 0.95rem; color: #666; line-height: 1.7; text-align: justify;}
/* Expertise */
.expertise { padding: 80px 0; background: #fafaf8; }
.expertise-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.expertise-inner h2 { font-size: 2rem; font-weight: 700; }
.expertise-inner p { margin-top: 16px; color: #666; line-height: 1.8; font-size: 0.95rem; }
/* Compliance */
.compliance { padding: 80px 0; }
.compliance-box { max-width: 800px; margin: 0 auto; border: 1px solid #e5e5e5; border-radius: 16px; padding: 36px; display: flex; gap: 20px; align-items: flex-start; }
.compliance-box .card-icon { flex-shrink: 0; }
.compliance-box h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; }
.compliance-box p { font-size: 0.95rem; color: #666; line-height: 1.7; }
/* Team */
.team { padding: 80px 0; background: #fafaf8; }
.team-header { text-align: center; margin-bottom: 48px; }
.team-header h2 { font-size: 2rem; font-weight: 700; }
.team-header p { margin-top: 10px; color: #666; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.team-member { text-align: center; }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; background: rgba(249,115,22,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.6rem; font-weight: 700; color: #F97316; }
.team-member h3 { font-weight: 600; font-size: 1rem; }
.team-member p { font-size: 0.85rem; color: #666; }

/* ── Hero Services ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Poppins', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
/* ── Header ── */
.logo { display: flex; align-items: center; gap: 8px; font-size: 1.25rem; font-weight: 700; }
.logo-icon {
  width: 36px; height: 36px; background: #F97316; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.1rem;
}
.logo span { color: #F97316; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { font-size: .9rem; font-weight: 500; }
.btn-orange {
  background: linear-gradient(135deg, #F97316, #f59e0b);
  color: #fff; border: none; padding: 10px 24px; border-radius: 50px;
  font-weight: 600; font-size: .9rem; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.btn-orange:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(249,115,22,.35); }

/* ── Hero ── */
.hero {
  background: #faf8f5; padding: 80px 20px; text-align: center;
}
.hero h1 { font-size: 2.8rem; font-weight: 800; max-width: 700px; margin: 0 auto 16px; }
.hero h1 span { color: #F97316; }
.hero p { font-size: 1.1rem; color: #555; max-width: 600px; margin: 0 auto; }
/* ── Services ── */
.services-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.service-block {
  display: flex; align-items: flex-start; gap: 48px; margin-bottom: 80px;
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s, transform .7s;
}
.service-block.visible { opacity: 1; transform: translateY(0); }
.service-block.reverse { flex-direction: row-reverse; }
.service-content { flex: 1; }
.service-icon-wrap {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(249,115,22,.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-icon-wrap svg { width: 28px; height: 28px; color: #F97316; stroke: #F97316; fill: none; }
.service-content h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 12px; }
.service-content p { color: #555; margin-bottom: 20px; line-height: 1.7; }
.service-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.service-bullets li { display: flex; align-items: flex-start; gap: 8px; font-size: .9rem; }
.bullet-dot { width: 6px; height: 6px; border-radius: 50%; background: #F97316; margin-top: 8px; flex-shrink: 0; }
.service-visual {
  flex: 1; display: flex; align-items: center; justify-content: center;
}
.service-visual-box {
  width: 100%; max-width: 380px; height: 200px; border-radius: 16px;
  border: 1px solid #e5e5e5; background: #faf8f5;
  display: flex; align-items: center; justify-content: center;
}
.service-visual-box svg { width: 80px; height: 80px; stroke: #F97316; fill: none; opacity: .2; }
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Poppins',sans-serif;color:#1a1a1a;background:#fff;overflow-x:hidden}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* Buttons */
.btn-orange{background:linear-gradient(135deg,#F97316,#ea580c);color:#fff;border:none;padding:12px 28px;border-radius:50px;font-family:'Poppins',sans-serif;font-weight:600;font-size:.95rem;cursor:pointer;transition:transform .2s,box-shadow .2s}
.btn-orange:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(249,115,22,.35)}
.btn-outline{background:transparent;color:#F97316;border:2px solid #F97316;padding:11px 28px;border-radius:50px;font-family:'Poppins',sans-serif;font-weight:600;font-size:.95rem;cursor:pointer;transition:background .2s,color .2s}
.btn-outline:hover{background:#F97316;color:#fff}
/* Hero */
.hero{background:linear-gradient(135deg,#fff5eb 0%,#fff 60%);padding:80px 20px;text-align:center}
.hero h1{font-size:2.8rem;font-weight:800;line-height:1.2;max-width:800px;margin:0 auto}
.hero h1 span{color:#F97316}
.hero p{font-size:1.15rem;color:#555;max-width:640px;margin:16px auto 0;line-height:1.7}
.hero .hero-buttons{display:flex;gap:14px;justify-content:center;margin-top:32px;flex-wrap:wrap}
/* Overview */
.overview{padding:80px 20px}
.overview .container{display:flex;gap:48px;align-items:center}
.overview-text{flex:1}
.overview-text h2{font-size:2rem;font-weight:700;margin-bottom:16px}
.overview-text h2 span{color:#F97316}
.overview-text p{color:#555;line-height:1.8;margin-bottom:12px}
.overview-visual{flex:1;display:flex;justify-content:center}
.overview-visual-box{width:100%;max-width:420px;height:280px;background:#fef3e2;border:1px solid #fed7aa;border-radius:20px;display:flex;align-items:center;justify-content:center}
.overview-visual-box svg{width:80px;height:80px;fill:none;stroke:#F97316;opacity:.3}
/* Process */
.process{padding:80px 20px;background:#fafafa}
.process h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:8px}
.process h2 span{color:#F97316}
.process>p{text-align:center;color:#555;max-width:600px;margin:0 auto 48px}
.process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;max-width:1200px;margin:0 auto}
.process-card{background:#fff;border-radius:16px;padding:32px 28px;border:1px solid #f0f0f0;transition:transform .3s,box-shadow .3s;position:relative}
.process-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.08)}
.process-step{width:44px;height:44px;background:linear-gradient(135deg,#F97316,#ea580c);border-radius:12px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:1.1rem;margin-bottom:16px}
.process-card h3{font-size:1.15rem;font-weight:600;margin-bottom:8px}
.process-card p{color:#555;font-size:.92rem;line-height:1.7}
/* What's Included */
.included{padding:80px 20px}
.included h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:48px}
.included h2 span{color:#F97316}
.included-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;max-width:900px;margin:0 auto}
.included-item{display:flex;align-items:flex-start;gap:14px;padding:20px 24px;background:#fff;border:1px solid #f0f0f0;border-radius:14px;transition:box-shadow .3s}
.included-item:hover{box-shadow:0 6px 20px rgba(0,0,0,.06)}
.included-icon{width:40px;height:40px;min-width:40px;background:#fef3e2;border-radius:10px;display:flex;align-items:center;justify-content:center}
.included-icon svg{width:20px;height:20px;fill:none;stroke:#F97316;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.included-item h4{font-size:1rem;font-weight:600;margin-bottom:4px}
.included-item p{font-size:.88rem;color:#555;line-height:1.6}
/* Benefits */
.benefits{padding:80px 20px;background:linear-gradient(135deg,#1a1a1a,#2a2a2a)}
.benefits h2{text-align:center;font-size:2rem;font-weight:700;color:#fff;margin-bottom:48px}
.benefits h2 span{color:#F97316}
.benefits-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;max-width:1200px;margin:0 auto}
.benefit-card{text-align:center;padding:32px 20px}
.benefit-number{font-size:2.4rem;font-weight:800;color:#F97316;margin-bottom:8px}
.benefit-card h4{color:#fff;font-weight:600;margin-bottom:6px}
.benefit-card p{color:rgba(255,255,255,.6);font-size:.88rem;line-height:1.6}
/* FAQ */
.faq{padding:80px 20px}
.faq h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:48px}
.faq h2 span{color:#F97316}
.faq-list{max-width:760px;margin:0 auto}
.faq-item{border-bottom:1px solid #eee;padding:20px 0}
.faq-question{display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-weight:600;font-size:1.05rem;gap:16px}
.faq-question span{transition:transform .3s;font-size:1.3rem;color:#F97316}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0px 20px; /* top-bottom 0 initially */
}

.faq-item.open .faq-answer {
  max-height: 300px; /* adjust if content zyada hai */
  padding: 15px 20px;
}
.faq-item.open .faq-question span{transform:rotate(45deg)}
/* Hero */
.hero{background:linear-gradient(135deg,#fff5eb 0%,#fff 60%);padding:80px 20px;text-align:center}
.hero h1{font-size:2.8rem;font-weight:800;line-height:1.2;max-width:800px;margin:0 auto}
.hero h1 span{color:#F97316}
.hero p{font-size:1.15rem;color:#555;max-width:640px;margin:16px auto 0;line-height:1.7}
.hero .hero-buttons{display:flex;gap:14px;justify-content:center;margin-top:32px;flex-wrap:wrap}
/* Overview */
.overview{padding:80px 20px}
.overview .container{display:flex;gap:48px;align-items:center}
.overview-text{flex:1}
.overview-text h2{font-size:2rem;font-weight:700;margin-bottom:16px}
.overview-text h2 span{color:#F97316}
.overview-text p{color:#555;line-height:1.8;margin-bottom:12px}
.overview-visual{flex:1;display:flex;justify-content:center}
.overview-visual-box{width:100%;max-width:420px;height:280px;background:#fef3e2;border:1px solid #fed7aa;border-radius:20px;display:flex;align-items:center;justify-content:center}
.overview-visual-box svg{width:80px;height:80px;fill:none;stroke:#F97316;opacity:.3}
/* Process */
.process{padding:80px 20px;background:#fafafa}
.process h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:8px}
.process h2 span{color:#F97316}
.process>p{text-align:center;color:#555;max-width:600px;margin:0 auto 48px}
.process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;max-width:1200px;margin:0 auto}
.process-card{background:#fff;border-radius:16px;padding:32px 28px;border:1px solid #f0f0f0;transition:transform .3s,box-shadow .3s;position:relative}
.process-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.08)}
.process-step{width:44px;height:44px;background:linear-gradient(135deg,#F97316,#ea580c);border-radius:12px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:1.1rem;margin-bottom:16px}
.process-card h3{font-size:1.15rem;font-weight:600;margin-bottom:8px}
.process-card p{color:#555;font-size:.92rem;line-height:1.7}
/* What's Included */
.included{padding:80px 20px}
.included h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:48px}
.included h2 span{color:#F97316}
.included-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;max-width:900px;margin:0 auto}
.included-item{display:flex;align-items:flex-start;gap:14px;padding:20px 24px;background:#fff;border:1px solid #f0f0f0;border-radius:14px;transition:box-shadow .3s}
.included-item:hover{box-shadow:0 6px 20px rgba(0,0,0,.06)}
.included-icon{width:40px;height:40px;min-width:40px;background:#fef3e2;border-radius:10px;display:flex;align-items:center;justify-content:center}
.included-icon svg{width:20px;height:20px;fill:none;stroke:#F97316;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.included-item h4{font-size:1rem;font-weight:600;margin-bottom:4px}
.included-item p{font-size:.88rem;color:#555;line-height:1.6}
/* Specialties */
.specialties{padding:80px 20px;background:#fafafa}
.specialties h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:8px}
.specialties h2 span{color:#F97316}
.specialties>p{text-align:center;color:#555;max-width:600px;margin:0 auto 48px}
.specialties-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;max-width:1000px;margin:0 auto}
.specialty-tag{background:#fff;border:1px solid #f0f0f0;border-radius:12px;padding:16px 20px;text-align:center;font-weight:600;font-size:.95rem;transition:border-color .3s,box-shadow .3s}
.specialty-tag:hover{border-color:#F97316;box-shadow:0 4px 16px rgba(249,115,22,.12)}
/* Benefits */
.benefits{padding:80px 20px;background:linear-gradient(135deg,#1a1a1a,#2a2a2a)}
.benefits h2{text-align:center;font-size:2rem;font-weight:700;color:#fff;margin-bottom:48px}
.benefits h2 span{color:#F97316}
.benefits-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;max-width:1200px;margin:0 auto}
.benefit-card{text-align:center;padding:32px 20px}
.benefit-number{font-size:2.4rem;font-weight:800;color:#F97316;margin-bottom:8px}
.benefit-card h4{color:#fff;font-weight:600;margin-bottom:6px}
.benefit-card p{color:rgba(255,255,255,.6);font-size:.88rem;line-height:1.6}
/* FAQ */
.faq{padding:80px 20px}
.faq h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:48px}
.faq h2 span{color:#F97316}
.faq-list{max-width:760px;margin:0 auto}
.faq-item{border-bottom:1px solid #eee;padding:20px 0}
.faq-question{display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-weight:600;font-size:1.05rem;gap:16px}
.faq-question span{transition:transform .3s;font-size:1.3rem;color:#F97316}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease,padding .3s;color:#555;line-height:1.7;font-size:.95rem}
.faq-item.open .faq-answer{max-height:200px;padding-top:12px}
.faq-item.open .faq-question span{transform:rotate(45deg)}
/* Footer */
.footer{background:#fff;color:#000;padding:60px 20px 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px}
.footer-brand p{margin-top:12px;font-size:.9rem;line-height:1.7;color:#000}
.footer-socials{display:flex;gap:10px;margin-top:16px}
.footer-socials a{width:36px;height:36px;border-radius:50%;border:1px solid #000;display:flex;align-items:center;justify-content:center;font-size:.8rem;color:#000;transition:border-color .2s,color .2s}
.footer-socials a:hover{border-color:#F97316;color:#F97316}
.footer h4{font-weight:600;margin-bottom:16px;color:#000;font-size:1rem}
.footer ul li{margin-bottom:10px}
.footer ul li a{color:#000;font-size:.9rem;transition:color .2s}
.footer ul li a:hover{color:#F97316}
.footer-contact li{font-size:.9rem;color:#000;margin-bottom:10px}
.footer-bottom{text-align:center;padding:24px 0;margin-top:40px;border-top:2px solid #000;font-size:.85rem;color:#000}
/* Animations */
.animate-section{opacity:1;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease}
.animate-section.visible{opacity:1;transform:translateY(0)}
/* Responsive */
@media(max-width:1024px){
  .overview .container{flex-direction:column}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .benefits-grid{grid-template-columns:repeat(2,1fr)}
  .specialties-grid{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:480px){
  .hero{padding:50px 16px}
  .hero h1{font-size:1.7rem}
  .hero .hero-buttons{flex-direction:column;align-items:center}
  .specialties-grid{grid-template-columns:1fr}
}
/* Hero */
.hero{background:linear-gradient(135deg,#fff5eb 0%,#fff 60%);padding:80px 20px;text-align:center}
.hero h1{font-size:2.8rem;font-weight:800;line-height:1.2;max-width:800px;margin:0 auto}
.hero h1 span{color:#F97316}
.hero p{font-size:1.15rem;color:#555;max-width:640px;margin:16px auto 0;line-height:1.7}
.hero .hero-buttons{display:flex;gap:14px;justify-content:center;margin-top:32px;flex-wrap:wrap}
/* Overview */
.overview{padding:80px 20px}
.overview .container{display:flex;gap:48px;align-items:center}
.overview-text{flex:1}
.overview-text h2{font-size:2rem;font-weight:700;margin-bottom:16px}
.overview-text h2 span{color:#F97316}
.overview-text p{color:#555;line-height:1.8;margin-bottom:12px}
.overview-visual{flex:1;display:flex;justify-content:center}
.overview-visual-box{width:100%;max-width:420px;height:280px;background:#fef3e2;border:1px solid #fed7aa;border-radius:20px;display:flex;align-items:center;justify-content:center}
.overview-visual-box svg{width:80px;height:80px;fill:none;stroke:#F97316;opacity:.3}
/* Process */
.process{padding:80px 20px;background:#fafafa}
.process h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:8px}
.process h2 span{color:#F97316}
.process>p{text-align:center;color:#555;max-width:600px;margin:0 auto 48px}
.process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;max-width:1200px;margin:0 auto}
.process-card{background:#fff;border-radius:16px;padding:32px 28px;border:1px solid #f0f0f0;transition:transform .3s,box-shadow .3s;position:relative}
.process-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.08)}
.process-step{width:44px;height:44px;background:linear-gradient(135deg,#F97316,#ea580c);border-radius:12px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:1.1rem;margin-bottom:16px}
.process-card h3{font-size:1.15rem;font-weight:600;margin-bottom:8px}
.process-card p{color:#555;font-size:.92rem;line-height:1.7}
/* What's Included */
.included{padding:80px 20px}
.included h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:48px}
.included h2 span{color:#F97316}
.included-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;max-width:900px;margin:0 auto}
.included-item{display:flex;align-items:flex-start;gap:14px;padding:20px 24px;background:#fff;border:1px solid #f0f0f0;border-radius:14px;transition:box-shadow .3s}
.included-item:hover{box-shadow:0 6px 20px rgba(0,0,0,.06)}
.included-icon{width:40px;height:40px;min-width:40px;background:#fef3e2;border-radius:10px;display:flex;align-items:center;justify-content:center}
.included-icon svg{width:20px;height:20px;fill:none;stroke:#F97316;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.included-item h4{font-size:1rem;font-weight:600;margin-bottom:4px}
.included-item p{font-size:.88rem;color:#555;line-height:1.6}
/* Benefits */
.benefits{padding:80px 20px;background:linear-gradient(135deg,#1a1a1a,#2a2a2a)}
.benefits h2{text-align:center;font-size:2rem;font-weight:700;color:#fff;margin-bottom:48px}
.benefits h2 span{color:#F97316}
.benefits-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;max-width:1200px;margin:0 auto}
.benefit-card{text-align:center;padding:32px 20px}
.benefit-number{font-size:2.4rem;font-weight:800;color:#F97316;margin-bottom:8px}
.benefit-card h4{color:#fff;font-weight:600;margin-bottom:6px}
.benefit-card p{color:rgba(255,255,255,.6);font-size:.88rem;line-height:1.6}
/* FAQ */
.faq{padding:80px 20px}
.faq h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:48px}
.faq h2 span{color:#F97316}
.faq-list{max-width:760px;margin:0 auto}
.faq-item{border-bottom:1px solid #eee;padding:20px 0}
.faq-question{display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-weight:600;font-size:1.05rem;gap:16px}
.faq-question span{transition:transform .3s;font-size:1.3rem;color:#F97316}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease,padding .3s;color:#555;line-height:1.7;font-size:.95rem}
.faq-item.open .faq-answer{max-height:200px;padding-top:12px}
.faq-item.open .faq-question span{transform:rotate(45deg)}
/* Overview */
.overview{padding:80px 20px}
.overview .container{display:flex;gap:48px;align-items:center}
.overview-text{flex:1}
.overview-text h2{font-size:2rem;font-weight:700;margin-bottom:16px}
.overview-text h2 span{color:#F97316}
.overview-text p{color:#555;line-height:1.8;margin-bottom:12px}
.overview-visual{flex:1;display:flex;justify-content:center}
.overview-visual-box{width:100%;max-width:420px;height:280px;background:#fef3e2;border:1px solid #fed7aa;border-radius:20px;display:flex;align-items:center;justify-content:center}
.overview-visual-box svg{width:80px;height:80px;fill:none;stroke:#F97316;opacity:.3}
/* Process */
.process{padding:80px 20px;background:#fafafa}
.process h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:8px}
.process h2 span{color:#F97316}
.process>p{text-align:center;color:#555;max-width:600px;margin:0 auto 48px}
.process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;max-width:1200px;margin:0 auto}
.process-card{background:#fff;border-radius:16px;padding:32px 28px;border:1px solid #f0f0f0;transition:transform .3s,box-shadow .3s;position:relative}
.process-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.08)}
.process-step{width:44px;height:44px;background:linear-gradient(135deg,#F97316,#ea580c);border-radius:12px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:1.1rem;margin-bottom:16px}
.process-card h3{font-size:1.15rem;font-weight:600;margin-bottom:8px}
.process-card p{color:#555;font-size:.92rem;line-height:1.7}
/* What's Included */
.included{padding:80px 20px}
.included h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:48px}
.included h2 span{color:#F97316}
.included-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;max-width:900px;margin:0 auto}
.included-item{display:flex;align-items:flex-start;gap:14px;padding:20px 24px;background:#fff;border:1px solid #f0f0f0;border-radius:14px;transition:box-shadow .3s}
.included-item:hover{box-shadow:0 6px 20px rgba(0,0,0,.06)}
.included-icon{width:40px;height:40px;min-width:40px;background:#fef3e2;border-radius:10px;display:flex;align-items:center;justify-content:center}
.included-icon svg{width:20px;height:20px;fill:none;stroke:#F97316;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.included-item h4{font-size:1rem;font-weight:600;margin-bottom:4px}
.included-item p{font-size:.88rem;color:#555;line-height:1.6}
/* Benefits */
.benefits{padding:80px 20px;background:linear-gradient(135deg,#1a1a1a,#2a2a2a)}
.benefits h2{text-align:center;font-size:2rem;font-weight:700;color:#fff;margin-bottom:48px}
.benefits h2 span{color:#F97316}
.benefits-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;max-width:1200px;margin:0 auto}
.benefit-card{text-align:center;padding:32px 20px}
.benefit-number{font-size:2.4rem;font-weight:800;color:#F97316;margin-bottom:8px}
.benefit-card h4{color:#fff;font-weight:600;margin-bottom:6px}
.benefit-card p{color:rgba(255,255,255,.6);font-size:.88rem;line-height:1.6}
/* FAQ */
.faq{padding:80px 20px}
.faq h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:48px}
.faq h2 span{color:#F97316}
.faq-list{max-width:760px;margin:0 auto}
.faq-item{border-bottom:1px solid #eee;padding:20px 0}
.faq-question{display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-weight:600;font-size:1.05rem;gap:16px}
.faq-question span{transition:transform .3s;font-size:1.3rem;color:#F97316}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease,padding .3s;color:#555;line-height:1.7;font-size:.95rem}
.faq-item.open .faq-answer{max-height:200px;padding-top:12px}
.faq-item.open .faq-question span{transform:rotate(45deg)}
/* Hero */
.hero{background:linear-gradient(135deg,#fff5eb 0%,#fff 60%);padding:80px 20px;text-align:center}
.hero h1{font-size:2.8rem;font-weight:800;line-height:1.2;max-width:800px;margin:0 auto}
.hero h1 span{color:#F97316}
.hero p{font-size:1.15rem;color:#555;max-width:640px;margin:16px auto 0;line-height:1.7}
.hero .hero-buttons{display:flex;gap:14px;justify-content:center;margin-top:32px;flex-wrap:wrap}
/* Overview */
.overview{padding:80px 20px}
.overview .container{display:flex;gap:48px;align-items:center}
.overview-text{flex:1}
.overview-text h2{font-size:2rem;font-weight:700;margin-bottom:16px}
.overview-text h2 span{color:#F97316}
.overview-text p{color:#555;line-height:1.8;margin-bottom:12px}
.overview-visual{flex:1;display:flex;justify-content:center}
.overview-visual-box{width:100%;max-width:420px;height:280px;background:#fef3e2;border:1px solid #fed7aa;border-radius:20px;display:flex;align-items:center;justify-content:center}
.overview-visual-box svg{width:80px;height:80px;fill:none;stroke:#F97316;opacity:.3}
/* Process */
.process{padding:80px 20px;background:#fafafa}
.process h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:8px}
.process h2 span{color:#F97316}
.process>p{text-align:center;color:#555;max-width:600px;margin:0 auto 48px}
.process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;max-width:1200px;margin:0 auto}
.process-card{background:#fff;border-radius:16px;padding:32px 28px;border:1px solid #f0f0f0;transition:transform .3s,box-shadow .3s;position:relative}
.process-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.08)}
.process-step{width:44px;height:44px;background:linear-gradient(135deg,#F97316,#ea580c);border-radius:12px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:1.1rem;margin-bottom:16px}
.process-card h3{font-size:1.15rem;font-weight:600;margin-bottom:8px}
.process-card p{color:#555;font-size:.92rem;line-height:1.7}
/* What's Included */
.included{padding:80px 20px}
.included h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:48px}
.included h2 span{color:#F97316}
.included-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;max-width:900px;margin:0 auto}
.included-item{display:flex;align-items:flex-start;gap:14px;padding:20px 24px;background:#fff;border:1px solid #f0f0f0;border-radius:14px;transition:box-shadow .3s}
.included-item:hover{box-shadow:0 6px 20px rgba(0,0,0,.06)}
.included-icon{width:40px;height:40px;min-width:40px;background:#fef3e2;border-radius:10px;display:flex;align-items:center;justify-content:center}
.included-icon svg{width:20px;height:20px;fill:none;stroke:#F97316;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.included-item h4{font-size:1rem;font-weight:600;margin-bottom:4px}
.included-item p{font-size:.88rem;color:#555;line-height:1.6}
/* Benefits */
.benefits{padding:80px 20px;background:linear-gradient(135deg,#1a1a1a,#2a2a2a)}
.benefits h2{text-align:center;font-size:2rem;font-weight:700;color:#fff;margin-bottom:48px}
.benefits h2 span{color:#F97316}
.benefits-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;max-width:1200px;margin:0 auto}
.benefit-card{text-align:center;padding:32px 20px}
.benefit-number{font-size:2.4rem;font-weight:800;color:#F97316;margin-bottom:8px}
.benefit-card h4{color:#fff;font-weight:600;margin-bottom:6px}
.benefit-card p{color:rgba(255,255,255,.6);font-size:.88rem;line-height:1.6}
/* FAQ */
.faq{padding:80px 20px}
.faq h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:48px}
.faq h2 span{color:#F97316}
.faq-list{max-width:760px;margin:0 auto}
.faq-item{border-bottom:1px solid #eee;padding:20px 0}
.faq-question{display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-weight:600;font-size:1.05rem;gap:16px}
.faq-question span{transition:transform .3s;font-size:1.3rem;color:#F97316}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease,padding .3s;color:#555;line-height:1.7;font-size:.95rem}
.faq-item.open .faq-answer{max-height:200px;padding-top:12px}
.faq-item.open .faq-question span{transform:rotate(45deg)}
/* CTA */
.cta-section{padding:64px 20px;background:linear-gradient(135deg,#F97316,#ea580c);text-align:center}
.cta-section h2{font-size:2rem;font-weight:700;color:#fff;margin-bottom:8px}
.cta-section p{color:rgba(255,255,255,.85);margin-bottom:28px;font-size:1.05rem}
.cta-section .btn-white{background:#fff;color:#F97316;border:none;padding:14px 40px;border-radius:50px;font-family:'Poppins',sans-serif;font-weight:700;font-size:1rem;cursor:pointer;transition:transform .2s,box-shadow .2s}
.cta-section .btn-white:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.15)}
/* Hero */
.hero{background:linear-gradient(135deg,#fff5eb 0%,#fff 60%);padding:80px 20px;text-align:center}
.hero h1{font-size:2.8rem;font-weight:800;line-height:1.2;max-width:800px;margin:0 auto}
.hero h1 span{color:#F97316}
.hero p{font-size:1.15rem;color:#555;max-width:640px;margin:16px auto 0;line-height:1.7}
.hero .hero-buttons{display:flex;gap:14px;justify-content:center;margin-top:32px;flex-wrap:wrap}
/* Overview */
.overview{padding:80px 20px}
.overview .container{display:flex;gap:48px;align-items:center}
.overview-text{flex:1}
.overview-text h2{font-size:2rem;font-weight:700;margin-bottom:16px}
.overview-text h2 span{color:#F97316}
.overview-text p{color:#555;line-height:1.8;margin-bottom:12px;text-align:justify;}
.overview-visual{flex:1;display:flex;justify-content:center}
.overview-visual-box{width:100%;max-width:420px;height:280px;background:#fef3e2;border:1px solid #fed7aa;border-radius:20px;display:flex;align-items:center;justify-content:center}
.overview-visual-box svg{width:80px;height:80px;fill:none;stroke:#F97316;opacity:.3}
/* Process */
.process{padding:80px 20px;background:#fafafa}
.process h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:8px}
.process h2 span{color:#F97316}
.process>p{text-align:center;color:#555;max-width:600px;margin:0 auto 48px}
.process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;max-width:1200px;margin:0 auto}
.process-card{background:#fff;border-radius:16px;padding:32px 28px;border:1px solid #f0f0f0;transition:transform .3s,box-shadow .3s;position:relative;opacity:1;transform:translateY(20px)}
.process-card.visible{opacity:1;transform:translateY(0)}
.process-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.08)}
.process-step{width:44px;height:44px;background:linear-gradient(135deg,#F97316,#ea580c);border-radius:12px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:1.1rem;margin-bottom:16px}
.process-card h3{font-size:1.15rem;font-weight:600;margin-bottom:8px}
.process-card p{color:#555;font-size:.92rem;line-height:1.7;text-align:justify;}
/* What's Included */
.included{padding:80px 20px}
.included h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:48px}
.included h2 span{color:#F97316}
.included-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;max-width:900px;margin:0 auto}
.included-item{display:flex;align-items:flex-start;gap:14px;padding:20px 24px;background:#fff;border:1px solid #f0f0f0;border-radius:14px;transition:box-shadow .3s;opacity:1;transform:translateY(20px)}
.included-item.visible{opacity:1;transform:translateY(0)}
.included-item:hover{box-shadow:0 6px 20px rgba(0,0,0,.06)}
.included-icon{width:40px;height:40px;min-width:40px;background:#fef3e2;border-radius:10px;display:flex;align-items:center;justify-content:center}
.included-icon svg{width:20px;height:20px;fill:none;stroke:#F97316;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.included-item h4{font-size:1rem;font-weight:600;margin-bottom:4px}
.included-item p{font-size:.88rem;color:#555;line-height:1.6}
/* Benefits */
.benefits{padding:80px 20px;background:linear-gradient(135deg,#1a1a1a,#2a2a2a)}
.benefits h2{text-align:center;font-size:2rem;font-weight:700;color:#fff;margin-bottom:48px}
.benefits h2 span{color:#F97316}
.benefits-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;max-width:1200px;margin:0 auto}
.benefit-card{text-align:center;padding:32px 20px;opacity:1;transform:translateY(20px)}
.benefit-card.visible{opacity:1;transform:translateY(0)}
.benefit-number{font-size:2.4rem;font-weight:800;color:#F97316;margin-bottom:8px}
.benefit-card h4{color:#fff;font-weight:600;margin-bottom:6px}
.benefit-card p{color:rgba(255,255,255,.6);font-size:.88rem;line-height:1.6}
/* FAQ */
.faq{padding:80px 20px}
.faq h2{text-align:center;font-size:2rem;font-weight:700;margin-bottom:48px}
.faq h2 span{color:#F97316}
.faq-list{max-width:760px;margin:0 auto}
.faq-item{border-bottom:1px solid #eee;padding:2px 0}
.faq-question{display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-weight:600;font-size:1.05rem;gap:16px}
.faq-question span{transition:transform .3s;font-size:1.3rem;color:#F97316}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease,padding .3s;color:#555;line-height:1.7;font-size:.95rem}
.faq-item.open .faq-answer{max-height:200px;padding:0px 18px}
.faq-item.open .faq-question span{transform:rotate(45deg)}
/* CTA */
.cta-section{padding:64px 20px;background:linear-gradient(135deg,#F97316,#ea580c);text-align:center}
.cta-section h2{font-size:2rem;font-weight:700;color:#fff;margin-bottom:8px}
.cta-section p{color:rgba(255,255,255,.85);margin-bottom:28px;font-size:1.05rem}
.cta-section .btn-white{background:#fff;color:#F97316;border:none;padding:14px 40px;border-radius:50px;font-family:'Poppins',sans-serif;font-weight:700;font-size:1rem;cursor:pointer;transition:transform .2s,box-shadow .2s}
.cta-section .btn-white:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.15)}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Poppins', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
/* ── Header ── */
.logo { display: flex; align-items: center; gap: 8px; font-size: 1.25rem; font-weight: 700; }
.logo-icon {
  width: 36px; height: 36px; background: #F97316; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.1rem;
}
.logo span { color: #F97316; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { font-size: .9rem; font-weight: 500; }
.btn-orange {
  background: linear-gradient(135deg, #F97316, #f59e0b);
  color: #fff; border: none; padding: 10px 24px; border-radius: 50px;
  font-weight: 600; font-size: .9rem; cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: transform .3s, box-shadow .3s;
}
/* ── Hero ── */
.hero {
  background: #faf8f5; padding: 80px 20px; text-align: center;
}
.hero h1 { font-size: 2.8rem; font-weight: 800; max-width: 700px; margin: 0 auto 16px; }
.hero h1 span { color: #F97316; }
.hero p { font-size: 1.1rem; color: #555; max-width: 600px; margin: 0 auto; }
/* ── Contact Section ── */
.contact-section{
background:#f4f7fb;
padding:80px 0;
}
.contact-grid{
display:grid;
grid-template-columns: 1.4fr 1fr;
gap:60px;
align-items:start;
}

.contact-form-wrap{
background:#fff;
padding:35px;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.contact-info{
position:sticky;
top:100px;
}
/* Form */
.contact-form-wrap {
  opacity: 1; transform:translateY(40px);;
  transition: opacity .7s, transform .7s;
}
.contact-form-wrap.visible { opacity: 1; transform: translateY(0); }
.contact-form-wrap h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }
.contact-form-wrap h2 span { color: #F97316; }
.contact-form-wrap > p { color: #666; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label{
top:-8px;
font-size:11px;
color:#ff6b35;
}
.error-msg { display: none; color: #ef4444; font-size: .78rem; margin-top: 4px; }
.char-count { display: block; text-align: right; font-size: .75rem; color: #999; margin-top: 4px; }
.btn-submit { width: 100%; padding: 14px; font-size: 1rem; margin-top: 4px; }
/* Success */
.success-message {
  display: none; flex-direction: column; align-items: center; text-align: center;
  padding: 60px 20px; gap: 16px;
}
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff; font-size: 2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  animation: popIn .5s ease;
}
@keyframes popIn {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.success-message h3 { font-size: 1.5rem; font-weight: 700; color: #111; }
.success-message p { color: #666; max-width: 400px; }
/* Contact Info Cards */
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card{
background:linear-gradient(135deg,#ffffff,#f7f9fc);
padding:25px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
border-left:4px solid #ff6b35;
}
.info-card.visible { opacity: 1; transform:translateY(40px); }
.info-card:hover{
transform:translateY(-5px);
}
.info-icon{
font-size:26px;
margin-bottom:10px;
}
.info-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.info-card p { font-size: .88rem; color: #555; }
.info-card a { color: #F97316; font-weight: 500; }
.info-card a:hover { text-decoration: underline; }
.info-sub { font-size: .78rem !important; color: #999 !important; margin-top: 2px; }
/* Map */
.map-placeholder {
  border-radius: 14px; border: 2px dashed #ddd; background: #faf8f5;
  height: 180px; display: flex; align-items: center; justify-content: center;
}
.map-inner { text-align: center; color: #999; }
.map-inner span { font-size: 2rem; }
.map-inner p { font-size: .85rem; margin-top: 4px; }
/* ── FAQ ── */
.faq { padding: 80px 20px; background: #faf8f5; }
.faq h2 { text-align: center; font-size: 2rem; font-weight: 700; margin-bottom: 40px; }
.faq h2 span { color: #F97316; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: 12px; margin-bottom: 12px;
  border: 1px solid #eee; overflow: hidden;
  opacity: 1; transform: translateY(15px);
  transition: opacity .5s, transform .5s;
}
.faq-item.visible { opacity: 1; transform: translateY(0); }
.faq-question {
  padding: 18px 24px; font-weight: 600; font-size: .95rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: color .3s;
}
.faq-question:hover { color: #F97316; }
.faq-question span {
  font-size: 1.4rem; font-weight: 300; transition: transform .3s; color: #F97316;
}
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height 0.4s ease;
    
}

.faq-item.active .faq-answer{
max-height:500px;
}
/* ── CTA ── */
.cta-section {
  background: #111; padding: 80px 20px; text-align: center;
}
.cta-section h2 { font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,.7); margin-bottom: 28px; font-size: 1.05rem; }

body {
  font-family: 'Poppins', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}
a { 
  text-decoration: none; 
  color: inherit; 
}
ul { 
  list-style: none; 
}
.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px; 
}
/* ── Hero ── */
.hero {
  background: #faf8f5; 
  padding: 80px 20px; 
  text-align: center;
}
.hero h1 { 
  font-size: 36px; 
  font-weight: 700; 
  max-width: 1200px; 
  margin: 0 auto 16px; 
}
.hero h1 span { 
  color: #F97316; 
}
.hero p { 
  font-size: 1.1rem; 
  color: #555; 
  max-width: 1150px; 
  margin: 0 auto; 
}
/* ── Terms Section ── */
.terms-section {
  padding: 80px 20px;
}
.terms-content {
  max-width: 900px;
  margin: 0 auto;
}
/* Table of Contents */
.toc {
  background: #faf8f5;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 60px;
  border-left: 4px solid #F97316;
}
.toc h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}
.toc ul {
  list-style: none;
}
.toc ul li {
  margin-bottom: 12px;
}
.toc ul li a {
  color: #F97316;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.95rem;
}
.toc ul li a:hover {
  color: #111;
  text-decoration: underline;
}
/* Terms Items */
.terms-item {
  margin-bottom: 50px;
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.terms-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.terms-item h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
}
.terms-item h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 28px;
  background: #F97316;
  border-radius: 2px;
}
.terms-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.terms-list {
  list-style: none;
  margin: 20px 0;
  padding-left: 0;
}
.terms-list li {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
}
.terms-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F97316;
  font-weight: bold;
  font-size: 1.1rem;
}
.contact-info p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.contact-info p:last-child {
  margin-bottom: 0;
}
.last-updated {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 24px;
  margin-top: 60px;
  text-align: center;
  border: 1px solid #e5e5e5;
}
.last-updated p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
}
.last-updated p:first-child {
  font-weight: 600;
  color: #111;
}
/* ── CTA Section ── */
.cta-section {
  background: #111;
  padding: 80px 20px;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .toc h3 {
    font-size: 1.1rem;
  }
  .terms-item h2 {
    font-size: 1.3rem;
  }
  .cta-section h2 {
    font-size: 1.3rem;
  }
}
/* Privacy Items */
.privacy-item {
  margin-bottom: 50px;
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.privacy-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.privacy-item h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
}
.privacy-item h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 28px;
  background: #F97316;
  border-radius: 2px;
}
.privacy-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.privacy-list {
  list-style: none;
  margin: 20px 0;
  padding-left: 0;
}
.privacy-list li {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
}
.privacy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F97316;
  font-weight: bold;
  font-size: 1.1rem;
}
.contact-info {
  background: #faf8f5;
  padding: 24px;
  margin-top: 20px;
}
.contact-info p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.contact-info p:last-child {
  margin-bottom: 0;
}
.last-updated {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 24px;
  margin-top: 60px;
  text-align: center;
  border: 1px solid #e5e5e5;
}
.last-updated p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
}
.last-updated p:first-child {
  font-weight: 600;
  color: #111;
}
.success-message{
display:none;
}
@media(max-width:768px){

.contact-grid{
grid-template-columns:1fr;
gap:30px;
}

.contact-form-wrap{
padding:30px;
}

}
.contact-section{
background:#f4f7fb;
padding:80px 0;
}

.contact-grid{
display:grid;
grid-template-columns:1.4fr 1fr;
gap:60px;
align-items:start;
}

.why-us-grid {
    grid-template-columns: 1fr;
}


/* FORM */
.contact-form-wrap{
background:#fff;
padding:40px;
border-radius:16px;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.contact-form-wrap h2{
font-size:28px;
margin-bottom:10px;
}

.contact-form-wrap p{
color:#666;
margin-bottom:25px;
}

/* FLOATING INPUT */
.form-group{
position:relative;
margin-bottom:20px;
}

.form-group input,
.form-group textarea,
.form-group select{
width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:8px;
outline:none;
background:none;
font-size:14px;
}

.form-group label{
position:absolute;
top:50%;
left:14px;
transform:translateY(-50%);
background:#fff;
padding:0 5px;
color:#999;
font-size:13px;
transition:0.3s;
pointer-events:none;
}

input:focus + label,
input:not(:placeholder-shown) + label{
top:-8px;
font-size:11px;
}
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label,
.form-group select:focus + label,
.form-group select:valid + label{
top:-8px;
font-size:11px;
color:#ff6b35;
}

/* ROW */
.form-row{
display:flex;
gap:20px;
}

/* BUTTON */
.btn-submit{
width:100%;
padding:14px;
background:#ff6b35;
color:#fff;
border:none;
border-radius:8px;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.btn-submit:hover{
background:#e85a2a;
}

/* SUCCESS BOX */
.success-box{
display:none;
text-align:center;
padding:40px;
}

.success-box h3{
color:#28a745;
}

/* RIGHT SIDE */
.contact-info{
display:flex;
flex-direction:column;
gap:25px;
position:sticky;
top:100px;
}

.info-card{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
border-left:4px solid #ff6b35;
transition:0.3s;
}

.info-card:hover{
transform:translateY(-5px);
}

.info-icon{
font-size:24px;
margin-bottom:10px;
}

/* MOBILE */
@media(max-width:768px){
    .why-us-text {
    text-align: Left;
}
.stats-grid {
    grid-template-columns: 1fr;
}
.contact-grid{
grid-template-columns:1fr;
}

.form-row{
flex-direction:column;
}

.contact-info{
position:static;
}

}
.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height 0.4s ease;
}

.faq-item.active .faq-answer{
max-height:200px;
}

.faq-question{
cursor:pointer;
display:flex;
justify-content:space-between;
}
.faq{
min-height:auto;
}
section {
  width: 100%;
  overflow: hidden;
}
/* ===== FINAL RESPONSIVE FIX ===== */

/* ===== SERVICES RESPONSIVE FIX ===== */

@media (max-width: 992px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 576px) {

  .services-grid {
    grid-template-columns: 1fr;
  }
     .process-grid {
    grid-template-columns: 1fr !important;
  }
.cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: left;
  }
    .service-card {
    padding: 20px;
  }
.compliance-box {
    flex-direction: column;
    text-align: justify;
    align-items: center;
  }
  .service-card h3 {
    font-size: 1rem;
  }
 .included-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact-form-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ===== RESET EXTRA SPACING ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== REMOVE UNWANTED WHITE SPACE ===== */
html, body {
  overflow-x: hidden;
}

/* ===== SECTION SPACING CONTROL ===== */
section {
  padding: 60px 0; /* adjust as needed */
  margin: 0;
}

/* ===== REMOVE EXTRA GAP BETWEEN SECTIONS ===== */
section + section {
  margin-top: 0;
}

/* ===== HEADINGS CLEANUP ===== */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px;
}

/* ===== PARAGRAPH CLEANUP ===== */
p {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ===== REMOVE EXTRA SPACE FROM DIVS ===== */
div {
  margin: 0;
}

/* ===== UL LI CLEAN ===== */
ul {
  padding-left: 0;
  list-style: none;
}

/* ===== CONTAINER FIX ===== */
.container {
  padding-left: 15px;
  padding-right: 15px;
}