/* =============================================
   BRIGHT ACADEMIC SERVICES - Global Stylesheet
   ============================================= */

:root {
  --green-primary: #2d7a4f;
  --green-light: #e8f5ee;
  --green-mid: #4caf78;
  --green-header: #e4f8ed;
  --green-footer: #2d7a4f;
  --green-accent: #56c47f;
  --white: #fafdfb;
  --off-white: #f9fbfa;
  --text-dark: #012b11;
  --text-body: #3d5448;
  --text-muted: #6b8f7b;
  --border: #d0e8da;
  --shadow: 0 4px 24px rgba(45, 122, 79, 0.12);
  --shadow-lg: 0 8px 48px rgba(45, 122, 79, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

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

.section-pad { padding: 96px 0; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green-primary);
  color: rgb(251, 252, 251);
  border-color: var(--green-primary);
}
.btn-primary:hover {
  background: rgb(223, 178, 32);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(80, 121, 98, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border-color: var(--green-primary);
}
.btn-outline:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 24px; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ==================== SECTION HEADERS ==================== */
.section-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  background: linear-gradient(
    to right,
    #1b4332 20%,
    #2d6a4f 40%,
    #40916c 60%,
    #1b4332 80%
  );
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc { margin: 0 auto; }

/* ==================== HEADER ==================== */
.site-header {
  background: var(--green-header);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(45,122,79,0.18);
  margin-top: 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-white { color: var(--white); }
.logo-dot { color: var(--green-accent); }
.logo img {
  mix-blend-mode: multiply;
  filter: contrast(1.0);
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: rgb(0, 128, 0);
  font-weight: 900;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover, .nav-link.active {
  background: rgba(26, 49, 21, 0.15);
  color: rgb(0, 128, 0);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #c4a6a6;
  /* Fix: no margin-top gap */
  margin-top: 0;
  width: 100%;
}

/* --- SLIDER --- */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 8s ease;
  /* Ken Burns effect */
  transform: scale(1.08);
}

.slide.active {
  opacity: 1;
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.75) 40%,
    rgba(255,255,255,0.15) 100%
  );
  z-index: 1;
}

/* --- SLIDE DOTS --- */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(45, 122, 79, 0.3);
  border: 2px solid var(--green-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-dot.active {
  background: var(--green-primary);
  transform: scale(1.3);
}

/* --- BG PATTERN --- */
.hero-bg-pattern {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, rgba(200, 232, 213, 0.75) 0%, rgba(168, 216, 185, 0.75) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 2;
  pointer-events: none;
}

/* --- HERO CONTENT --- */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green-primary);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--text-dark);
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 20px;
}

.highlight {
  color: var(--green-primary);
  position: relative;
  display: inline-block;
}

/* Underline accent on highlight */
.highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--green-accent);
  border-radius: 2px;
  animation: expandWidth 1s ease forwards 0.8s;
  transform-origin: left;
  transform: scaleX(0);
}

@keyframes expandWidth {
  to { transform: scaleX(1); }
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: inline-flex;
}

.stat { text-align: center; }

.stat-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-primary);
}

.stat-plus {
  font-size: 1.5rem;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* --- FLOATING CARDS --- */
.hero-illustration {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.floating-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card1 { animation: floatCard 3.5s ease-in-out infinite; }
.card2 { animation: floatCard 3.5s ease-in-out infinite 0.8s; }
.card3 { animation: floatCard 3.5s ease-in-out infinite 1.6s; }

.card-icon { font-size: 1.4rem; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* ==================== HERO ENTRANCE ANIMATIONS ==================== */

/* Fade from top */
.animate-fadeInDown {
  opacity: 0;
  transform: translateY(-24px);
  animation: fadeInDown 0.7s ease forwards 0.2s;
}

/* Fade from bottom */
.animate-fadeInUp {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeInUp 0.7s ease forwards 0.4s;
}

.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.85s; }
.delay-4 { animation-delay: 1.1s; }

@keyframes fadeInDown {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==================== SCROLL REVEAL ANIMATIONS ==================== */
/* Elements start invisible; JS adds .revealed class */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-stagger {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-stagger { transform: translateY(30px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-stagger.revealed {
  opacity: 1;
  transform: translate(0);
}

/* Stagger delay for sibling elements */
.reveal-stagger:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger:nth-child(2) { transition-delay: 0.25s; }
.reveal-stagger:nth-child(3) { transition-delay: 0.4s; }
.reveal-stagger:nth-child(4) { transition-delay: 0.55s; }
.reveal-stagger:nth-child(5) { transition-delay: 0.7s; }

/* ==================== ABOUT ==================== */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual { position: relative; }

.about-img-frame {
  background: linear-gradient(135deg, var(--green-light), #b8dfc8);
  border-radius: var(--radius-lg);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 32px;
  position: relative;
  overflow: hidden;
}

.about-main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  /* Subtle blend to frame */
  mix-blend-mode: normal;
  filter: brightness(0.88) saturate(1.1);
  transition: transform 6s ease;
}

.about-img-frame:hover .about-main-img {
  transform: scale(1.04);
}

.about-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45,122,79,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 1;
}

/* Floating badge top-right */
.about-stat-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  background: var(--green-primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}
.about-stat-badge .badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-stat-badge .badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-top: 4px;
  display: block;
}

.about-quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  margin: 0 20px;
  /* Slide up animation on scroll */
  transform: translateY(10px);
  transition: transform 0.5s ease;
}
.about-img-frame:hover .about-quote-card {
  transform: translateY(0);
}
.about-quote-card p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.about-quote-card span {
  font-size: 0.82rem;
  color: var(--green-primary);
  font-weight: 600;
}
.about-text {
  margin-bottom: 16px;
  color: var(--text-body);
  font-size: 1rem;
}
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
  background: var(--green-light);
  transform: translateX(6px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.feature-item:hover .feature-icon {
  transform: rotate(-10deg) scale(1.15);
}
.feature-item strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 2px;
}
.feature-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ==================== SERVICES ==================== */
.services { background: var(--white); }

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

.service-card {
  height: 420px;
  perspective: 1000px;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

.service-card:hover .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-front, .service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* --- FRONT SIDE --- */
.service-card-front {
  background: #c0e6d6;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  transition: box-shadow 0.3s ease;
}
.service-card:hover .service-card-front {
  box-shadow: 0 16px 48px rgba(45, 122, 79, 0.2);
}

.service-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  display:flex;
  justify-content: center;
  align-items: center;
}

.service-card-image i {
  font-size: 130px;
  color: #27ae60;
  filter: drop-shadow(0 2px 4px rgba(39, 174, 96, 0.2));
  width: 100%;
  height: 280px;
  display:flex;
  justify-content: center;
  align-items: center;
}

.service-card:not(:hover) .service-card-image img {
  transform: scale(1);
}

.service-figure {
  width: 110px;
  height: 110px;
  margin-top: -55px;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 5;
}

.service-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-content-padding {
  padding: 25px;
  text-align: center;
}

.service-content-padding h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-content-padding p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- BACK SIDE --- */
.service-card-back {
  background: linear-gradient(135deg, #7cd3af 0%, #2d6a4f 100%);
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
}

.service-card-back h3 {
  margin-bottom: 15px;
  color: #ffd43b;
}

.service-card-back p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-service {
  padding: 12px 25px;
  background: #fff;
  color: #1b4332;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-service:hover {
  background: #ffd43b;
  transform: scale(1.05);
}

/* ==================== CONTACT ==================== */
.contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-item:hover {
  background: var(--white);
  transform: translateX(6px);
  box-shadow: var(--shadow);
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.contact-item:hover .contact-icon {
  transform: scale(1.15) rotate(-8deg);
}
.contact-item strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-body);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.1);
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--green-footer);
  color: rgba(255,255,255,0.88);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin: 16px 0 24px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--green-accent);
  transform: translateY(-3px);
}
.footer-links-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links-col ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}
.footer-links-col address {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
}
.footer-bottom p {
  text-align: center;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
}

/* ==================== INNER PAGES ==================== */
.inner-hero {
  background: linear-gradient(135deg, var(--green-header), #1f5a38);
  padding: 72px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.inner-hero-content { position: relative; z-index: 2; }
.inner-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.inner-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

.page-content { padding: 80px 0; }
.page-content .container { max-width: 860px; }

.content-block { margin-bottom: 48px; }
.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-light);
}
.content-block p {
  color: var(--text-body);
  margin-bottom: 12px;
  font-size: 0.97rem;
}
.content-block ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 8px;
}
.content-block ul li {
  padding-left: 20px;
  position: relative;
  color: var(--text-body);
  font-size: 0.97rem;
}
.content-block ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--green-primary);
  font-size: 0.6rem;
  top: 5px;
}

/* Process steps */
.process-steps { display: flex; flex-direction: column; gap: 24px; margin: 32px 0; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--green-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step-body strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 4px;
}
.step-body p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--green-primary), #1f5a38);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin: 64px 0 0;
}
.cta-banner h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--green-primary);
  border-color: var(--white);
}
.cta-banner .btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 960px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-illustration { display: none; }
  .hero-bg-pattern { clip-path: none; width: 100%; opacity: 0.25; }
  .hero { min-height: auto; padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { display: flex; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--green-header);
    padding: 16px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .cta-banner { padding: 36px 24px; }
  .hero-dots { bottom: 16px; }
  .about-img-frame { min-height: 340px; }
}

/* World Map Style */
/* The outer section */
.map-container {
    background-color: #fcfcfc; /* Ensures pure white background */
    padding: 60px 20px;       /* Adds professional spacing top and bottom */
    text-align: center;       /* Centers the Heading (H2) */
    width: 100%;
    overflow: hidden;         /* Prevents horizontal scroll on mobile */
}

/* The wrapper specifically for the image */
.map-wrapper {
    display: flex;
    justify-content: center;  /* Centers the map horizontally */
    align-items: center;      /* Centers the map vertically if needed */
    max-width: 1200px;        /* Prevents map from becoming too huge */
    margin: 0 auto;           /* Centers the container itself */
}

.world-map {
    width: 100%; 
    height: 600px; 
    display: block;
    mix-blend-mode: multiply;
    filter: contrast(1.2);
  
}

/* Footer bottom style */
.footer-bottom {
  border-top: 1px solid #eee; /* Adds a subtle line above the footer bar */
  padding: 20px 0;
  color: #faf8f8;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between; /* Pushes text left and link right */
  align-items: center;
  max-width: 1200px; /* Limits width on huge monitors */
  margin: 0 auto;    /* Centers the container */
  padding: 0 20px;   /* Prevents text from touching screen edges */
}

.red-heart {
  color: rgb(133, 38, 38);
  font-size: 14px; /* Matches your footer text size */
}

.developer-link {
  text-decoration: none;
  color: #a8cfb9;
  transition: all 0.3s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  font-size: 7px;
}

.developer-link:hover {
  color: #153f13;
  border-bottom: 1px solid #153f13;
  font-size: 14px;
}


@media (max-width: 600px) {
  .footer-container {
    flex-direction: column; 
    gap: 10px;
    text-align: center;
  }
}

/* Testimonials Design */
.testimonial-container {
  max-width: 600px;
  margin: 50px auto;
  position: relative;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.testimonial-card {
  display: none; /* Hidden by default */
  padding: 40px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: slideIn 0.6s ease-out;
}

.testimonial-card.active {
  display: block;
}

/* The Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
  margin-bottom: 25px;
}

.user-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.user-info img {
  border-radius: 50%;
}

.user-info h4 { margin: 0; color: #333; }
.user-info span { color: #888; font-size: 0.9rem; }

.dots { margin-top: 20px; }
.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}
.dot.active { background-color: #717171; }

/* logo-marquee style */

/* 1. Main Section Styling */

    .logo-marquee {
      max-width: 600px;
      margin: 90px auto;
      position: relative;
      text-align: center;
    }

  .logo-marquee-section {
    width: 100%;
    padding: 100px 0;
    background-color: #fcfdfc; /* Very soft green-white to make the title pop */
    display: block; 
    text-align: center;
    border-top: 2px solid #eef2ef;
    border-bottom: 2px solid #eef2ef;
  }

  /* 3. The Viewport with Edge Gradients */
  .logo-marquee-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
  }

  /* Soft fade-out on edges */
  .logo-marquee-viewport::before,
  .logo-marquee-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  .logo-marquee-viewport::before {
    left: 0;
    background: linear-gradient(to right, #fcfdfc, transparent);
  }
  .logo-marquee-viewport::after {
    right: 0;
    background: linear-gradient(to left, #fcfdfc, transparent);
  }

  /* 4. The Animation Wrapper */
  .marquee-content {
    display: flex;
    width: max-content;
    animation: infiniteScroll 40s linear infinite;
  }

  /* 5. Individual Logo Item */
  .logo-item {
    width: 220px; /* Uniform width for perfect rhythm */
    height: 80px;
    margin: 0 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
  }

  .logo-item img {
    max-width: 85%;
    max-height: 55px;
    width: auto;
    /* High contrast contrast mode: Subtle grayscale */
    filter: grayscale(10%) contrast(1.5);
    opacity: 0.45;
    transition: all 0.5s ease;
  }

  /* 6. Premium Hover Interaction */
  .logo-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #27ae60;
  }

  .logo-item:hover img {
    filter: grayscale(0%) contrast(1.1);
    opacity: 1;
    /* Adds a slight glow that matches the deep green tone */
    drop-shadow: 0 10px 15px rgba(26, 60, 52, 0.1);
  
  }

  /* 7. Keyframes */
  @keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Pause on interaction */
  .logo-marquee-viewport:hover .marquee-content {
    animation-play-state: paused;
  }

  /* Floating WhatsApp */
  /* Container for the buttons */
.floating-contact {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px; 
  z-index: 9999; 
}

/* Base style for buttons */
.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Individual Colors */
.whatsapp {
  background-color: #25D366;
}

/* Hover Effect */
.floating-btn:hover {
  transform: scale(1.1);
}

/* Mobile responsive (optional: make them smaller on phones) */
@media (max-width: 480px) {
  .floating-contact {
    bottom: 30px; /* Push it up higher on mobile */
    right: 15px;  /* Bring it in from the edge slightly */
  }
  
  .floating-btn {
    width: 50px;  /* Larger touch target for thumbs! */
    height: 50px;
    font-size: 22px;
  }
}