/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #00C49A;
  --green-dark: #009e7c;
  --dark: #0f1923;
  --dark2: #1a2635;
  --dark3: #243040;
  --light: #f5f7fa;
  --white: #ffffff;
  --text: #333;
  --text-light: #666;
  --font: 'DM Sans', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --radius: 12px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-light { background: var(--light); }
.center { text-align: center; }

.section-label {
  display: inline-block;
  color: var(--green);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.center.section-label, h2.center { display: block; }

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.25;
  color: inherit;
}

h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
p { color: var(--text-light); margin-bottom: 12px; }
.bg-dark p, .bg-dark h4, .bg-dark h2 { color: rgba(255,255,255,0.85); }
.bg-dark .section-label { color: var(--green); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,196,154,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.full-width { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,25,35,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.logo-name {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}
.logo-sub {
  display: block;
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 85vh;
  background: linear-gradient(135deg, rgba(15, 25, 35, 0.75) 0%, rgba(26, 38, 53, 0.75) 100%), url('image.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-indicator {
  text-decoration: none;
  cursor: pointer;
}
.scroll-indicator i {
  font-size: 1rem;
  color: var(--green);
  line-height: 0.6;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,196,154,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,196,154,0.08) 0%, transparent 70%);
  bottom: -50px; left: -50px;
  border-radius: 50%;
}
.hero-overlay { display: none; }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
}
.hero-tagline {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.highlight { color: var(--green); }
.hero h4 {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--green);
  padding-left: 16px;
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.about-img-wrap {
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--green);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,196,154,0.08));
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--green);
  color: var(--white);
  padding: 16px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(0,196,154,0.4);
}
.about-text { padding-left: 10px; }
.about-text h2 { color: var(--dark); }
.about-text p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.about-text .section-label { display: block; }

.about-points {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 500;
}
.about-points li i {
  color: var(--green);
  font-size: 1rem;
}

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(0,196,154,0.08);
  border-color: rgba(0,196,154,0.3);
  transform: translateY(-6px);
}
.why-icon {
  width: 60px; height: 60px;
  background: rgba(0,196,154,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--green);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e8edf2;
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.service-card:hover {
  border-color: var(--green);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,196,154,0.15);
}
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(0,196,154,0.12), rgba(0,196,154,0.05));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--green);
  color: var(--white);
}
.service-card h4 { color: var(--dark); }

/* ===== BLOG ===== */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.coming-soon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

.coming-soon-box {
  text-align: center;
  background: #fff;
  border: 2px dashed #00C49A;
  border-radius: 16px;
  padding: 60px 80px;
  color: #333;
}

.coming-soon-box i {
  font-size: 3rem;
  color: #00C49A;
  margin-bottom: 16px;
}

.coming-soon-box h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.coming-soon-box p {
  font-size: 1rem;
  color: #666;
}

.blog-card {
  background: var(--white);
  border: 1px solid #e8edf2;
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover { 
  border-color: var(--green);
  transform: translateY(-8px); 
  box-shadow: 0 16px 40px rgba(0,196,154,0.15);
}
.blog-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,196,154,0.12), rgba(0,196,154,0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.blog-card:hover .blog-icon {
  background: var(--green);
  color: var(--white);
}
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--dark);
  line-height: 1.5;
}
.blog-card > p {
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}
.blog-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
  flex-wrap: wrap;
}
.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-img-placeholder {
  height: 180px;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--green);
}
.blog-content { padding: 24px; }
.blog-content h4 { color: var(--dark); font-size: 1rem; margin-bottom: 10px; }
.read-more {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  transition: var(--transition);
}
.read-more:hover { gap: 10px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 50px; height: 50px;
  background: rgba(0,196,154,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.contact-card a, .contact-card p { color: rgba(255,255,255,0.72); font-size: 0.95rem; }
.contact-card a:hover { color: var(--green); }

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.contact-form h3 {
  color: var(--dark);
  font-size: 1.4rem;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e0e7ef;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: #fafbfc;
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,196,154,0.1);
}

/* ===== FOOTER ===== */
.footer {
  background: #080f17;
  color: rgba(255,255,255,0.72);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-about p { font-size: 0.9rem; margin-top: 18px; line-height: 1.8; color: rgba(255,255,255,0.55); }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; }
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer ul a i { color: var(--green); font-size: 0.7rem; }
.footer ul a:hover { color: var(--green); padding-left: 4px; }
.footer-contact p {
  font-size: 0.9rem;
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.footer-contact i { color: var(--green); margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--green); }

.social-links {
  display: flex; gap: 12px; margin-top: 20px;
}
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-links a:hover { background: var(--green); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding: 22px 24px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
  .about-img-placeholder { aspect-ratio: 3/2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blogs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h2 { font-size: 1.7rem; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .scroll-indicator { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero h4 { font-size: 1rem; }
  .hero-tagline { font-size: 0.85rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .services-grid, .blog-grid, .blogs-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { display: flex; flex-direction: column-reverse; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark); padding: 24px; gap: 20px; border-top: 1px solid rgba(255,255,255,0.06); z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .coming-soon-box { padding: 40px 24px; }
  .section-pad { padding: 60px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 48px 0; }
  .hero h1 { font-size: 1.8rem; }
  .hero h4 { font-size: 0.95rem; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 16px; }
  .about-badge { bottom: -12px; right: 10px; font-size: 0.78rem; padding: 12px 16px; }
  .footer-grid { gap: 24px; }
  h2 { font-size: 1.5rem; }
  .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-btns .btn { width: auto; }
  .coming-soon-box { padding: 32px 16px; }
  .coming-soon-box h3 { font-size: 1.4rem; }
}
