:root{
  --primary: #1B4F72;
  --accent: #E67E22;
  --muted: #2E4053;
  --bg: #F8F9F9;
  --surface: #ffffff;
  --radius-lg: 16px;
  --container: 1200px;
  --gap: 24px;
  --nav-height: 78px;
  --transition: 0.28s ease;
  --shadow-1: 0 6px 20px rgba(16,24,40,0.08);
}

/* Reset */
* { box-sizing: border-box; margin:0; padding:0; }
html,body { height:100%; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--muted);
  background: var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}


/* =========================================================
   GLOBAL ANTI-HORIZONTAL-OVERFLOW PACK (ALL PAGES)
   Paste near the top of style.css (after reset)
========================================================= */

/* 1) Always prevent sideways scroll */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* 2) Consistent sizing everywhere */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 3) Media can never overflow */
img, video, svg, canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 4) Fix the classic mobile “100vw causes overflow” issue */
:root {
  --safe-vw: 100%;
}
.full-bleed,
[class*="vw"],
[style*="100vw"] {
  max-width: 100%;
}

/* If you personally used width:100vw anywhere, convert it to 100% (recommended).
   But this helps protect you even if you miss one. */
body {
  position: relative;
}



.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-wrapper { min-height:100vh; }
/* =========================================================
   GLOBAL NAVBAR — FINAL (COPY/PASTE EVERYTHING)
   - Overlay: NO dark/white filter, NO blur (click-catcher only)
   - Menu opens BELOW navbar (no overlap with hamburger)
   - Links click properly
   - Dropdowns open with .nav-item.open (your JS)
   - Removes external pseudo X
========================================================= */

/* =========================
   NAVBAR (GLOBAL)
========================= */
.navbar{
  width:100%;
  position:sticky;
  top:0;
  height:78px;
  display:flex;
  align-items:center;
  background:linear-gradient(135deg,#071a24 0%,#0d2a3a 100%);
  z-index:4000; /* keep above overlay */
}

.navbar-container{
  max-width:1250px;
  margin:0 auto;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 24px;
}

.navbar-logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:#ffffff;
  font-weight:700;
  text-decoration:none;
  z-index:4500;
}

.navbar-logo-img{ width:32px; height:32px; }

.logo-text{ line-height:1.1; }

.navbar-actions{
  display:flex;
  align-items:center;
  gap:14px;
  z-index:4500;
}

.btn-primary{
  background:#1b4f72;
  color:#fff;
  padding:10px 18px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Hamburger */
.menu-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  flex-direction:column;
  gap:4px;
  padding:8px;
}

.menu-line{
  width:22px;
  height:2px;
  background:#ffffff;
  display:block;
  transition:all 0.3s ease;
}

/* =========================
   OVERLAY (GLOBAL)
   ✅ NO filter / NO blur / NO tint
   ✅ Only used to close on outside click
========================= */
.nav-overlay{
  position:fixed;
  inset:0;
  background:transparent;     /* IMPORTANT: no dark/white overlay */
  opacity:0;
  pointer-events:none;
  transition:opacity 0.2s ease;
  z-index:2000;               /* BELOW menu + below navbar */
}

.nav-overlay.show{
  opacity:1;
  pointer-events:auto;
}

/* =========================
   DESKTOP ONLY
========================= */
@media (min-width:1025px){
  .navbar-menu{
    display:flex;
    gap:32px;
    align-items:center;
  }

  .nav-link{
    color:#cfe4f4;
    font-size:16px;
    text-decoration:none;
    padding:10px 0;
    display:inline-flex;
    align-items:center;
    justify-content:space-between;
  }

  .nav-link:hover{ color:#ffffff; }

  .nav-item{ position:relative; }

  .mega-dropdown{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    width:600px;
    background:rgba(13,42,58,0.96);
    border-radius:12px;
    padding:20px;
    opacity:0;
    visibility:hidden;
    display:flex;
    gap:30px;
    transition:0.3s;
  }

  .nav-item:hover .mega-dropdown{
    opacity:1;
    visibility:visible;
  }

  .mega-col{ flex:1; }

  .mega-col h4{
    color:#9cc7e1;
    font-size:12px;
    margin-bottom:8px;
    text-transform:uppercase;
  }

  .mega-col a{
    color:#e0edf7;
    display:block;
    padding:8px 0;
    text-decoration:none;
    font-size:14px;
  }

  .mega-col a:hover{ color:#fff; }
}

/* =========================
   MOBILE ONLY — MATCH YOUR SERVICES-PRICING
   ✅ Menu sits BELOW navbar (top: 78px)
   ✅ Links clickable
   ✅ Dropdown opens with .nav-item.open
========================= */
@media (max-width:1024px){

  .menu-toggle{ display:flex; }

  /* Make logo + buttons smaller on mobile */
  .logo-text{ font-size:14px; }

  .btn-primary{
    padding:8px 14px;
    font-size:14px;
    border-radius:10px;
  }

  .navbar-actions{ gap:10px; }

  /* MENU PANEL */
  .navbar-menu{
    position:fixed;
    top:78px;                      /* ✅ BELOW NAVBAR */
    right:0;
    width:min(85vw,360px);
    height:calc(100dvh - 78px);    /* ✅ fits remaining screen */
    background:#0b1220;
    overflow-y:auto;

    z-index:3000;                  /* ✅ ABOVE overlay */
    transform:translateX(105%);
    transition:transform 0.25s ease;

    display:flex;
    flex-direction:column;

    padding:0;                     /* no weird offsets */
    pointer-events:auto;           /* ✅ clickable */
  }

  .navbar-menu.open{ transform:translateX(0); }

  /* ✅ REMOVE ANY EXTERNAL X (pseudo close icon) */
  .navbar-menu::before,
  .navbar-menu::after{
    content:none !important;
    display:none !important;
  }

  /* ✅ Close button INSIDE menu (the one you want) */
  .mobile-nav-close{
    display:none;
    position:sticky;
    top:0;
    width:100%;
    text-align:right;

    background:rgba(11,18,32,0.95);
    color:#fff;
    border:none;
    font-size:28px;
    padding:14px 16px;
    cursor:pointer;
    z-index:5;
  }

  .navbar-menu.open .mobile-nav-close{
    display:block;
  }

  /* Give the first link breathing room under the close button */
  .navbar-menu .nav-link:first-of-type{
    margin-top:6px;
  }

  /* LINKS */
  .nav-link{
    width:100%;
    padding:18px 22px;
    font-size:18px;
    font-weight:600;
    color:#ffffff;
    text-decoration:none;
    border-bottom:1px solid rgba(255,255,255,0.12);

    display:flex;
    align-items:center;
    justify-content:space-between;

    transition:padding 0.25s ease;
    pointer-events:auto;           /* ✅ clickable */
  }

  .nav-link:hover{
    padding-left:28px;
  }

  .nav-item{ display:block; }

  /* DROPDOWN PARENT ARROW */
  .nav-parent{ cursor:pointer; }

  .nav-parent::after{
    content:'›';
    font-size:32px;
    font-weight:300;
    line-height:1;
    transition:transform 0.3s ease;
    color:#ffffff;
  }

  .nav-item.open .nav-parent::after{
    transform:rotate(90deg);
  }

  /* ✅ DROPDOWN CONTENT — this is what makes it OPEN */
  .mega-dropdown{
    display:none;
    background:rgba(255,255,255,0.06);
    border-radius:10px;
    padding:0;
    margin:12px 18px 8px;
    border:1px solid rgba(255,255,255,0.10);
    pointer-events:auto;           /* ✅ clickable */
  }

  .nav-item.open .mega-dropdown{
    display:block;
    padding:18px 20px;
  }

  /* Dropdown links */
  .mega-col{ margin-bottom:18px; }

  .mega-col h4{
    color:#ffffff;
    font-size:13px;
    margin:14px 0 10px;
    text-transform:uppercase;
    letter-spacing:0.5px;
    font-weight:700;
    opacity:0.9;
  }

  .mega-col a{
    display:flex;
    align-items:center;
    gap:12px;
    color:#ffffff;
    padding:12px 10px;
    text-decoration:none;
    font-size:16px;
    border-radius:8px;
    transition:all 0.25s ease;
    font-weight:500;
    pointer-events:auto;           /* ✅ clickable */
  }

  .mega-col a:hover{
    background:rgba(255,255,255,0.10);
    padding-left:18px;
  }
}

/* Smaller phones */
@media (max-width:520px){
  .navbar-actions{ gap:8px; }

  .btn-primary{
    padding:8px 10px;
    font-size:12px;
    border-radius:10px;
    white-space:nowrap;
  }

  .logo-text{ font-size:13px; }
}

@media (max-width:380px){
  .btn-primary{
    padding:7px 8px;
    font-size:11px;
  }

  .logo-text{ font-size:12px; }
}

@media (max-width:420px){
  .navbar-menu{
    width:100%;
    max-width:none;
  }

  .navbar-logo-img{
    width:28px;
    height:28px;
  }
}





/* ----------------------------------------------------
   HERO SECTION — FINAL, FULLY CORRECTED VERSION
----------------------------------------------------- */
/* HERO SECTION — softer deep blue */
.hero-section {
  background: linear-gradient(
    135deg,
    #081e2b 0%,   /* softened version of #071a24 */
    #0f3144 100%  /* softened version of #0d2a3a */
  );
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}

/* VISIBLE TEMPLATE GRID */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;

  /* NOTICE THE STRONGER LINES */
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);

  background-size: 160px 160px; /* Bigger grid = more visible */
  opacity: 0.35;                /* Much stronger */
  pointer-events: none;
  z-index: 0;
}

/* CONTENT ABOVE GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ----------------------------------------------------
   LEFT SIDE TEXT AREA
----------------------------------------------------- */
.hero-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4aa3ff;
  margin-bottom: 14px;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 18px;
}

/* HOME PAGE HERO HIGHLIGHT — MATCH ABOUT PAGE */
.hero-title .underline {
  color: #4ba3ff;
  font-weight: inherit;
  position: relative;
  z-index: 1;
}

/* REMOVE UNDERLINE EFFECT */
.hero-title .underline::after {
  content: none;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #d4e6f1;
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 520px;
}

/* BUTTON — UNTOUCHED */
.hero-btn {
  display: inline-block;
  background-color: #1B4F72;
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  width: fit-content;
  margin-bottom: 36px;
}

.hero-btn:hover {
  background-color: #154360;
  transform: translateY(-2px);
}

/* ----------------------------------------------------
   PEOPLE SECTION
----------------------------------------------------- */
.hero-people {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  background: #ddd;
  margin-left: -14px;
}
.avatar:first-child { margin-left: 0; }

.avatar-count {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #1B4F72;
  border: 3px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.hero-people-text {
  font-size: .95rem;
  color: #d4e6f1;
}

/* ----------------------------------------------------
   RIGHT SIDE — IMAGES (STATIC, SLIGHTLY SMALLER)
----------------------------------------------------- */
.hero-image-frame {
  width: 100%;
  max-width: 420px;
  position: relative;
  transform: none !important;
  animation: none !important;
}

/* Main image */
.hero-main-img {
  width: 100%;
  height: 520px;
  border-radius: 20px;
  object-fit: cover;

  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* Sub-image */
.hero-sub-img {
  width: 180px;
  position: absolute;
  bottom: -22px;
  left: 24px;
  border-radius: 14px;
  object-fit: cover;

  transform: none !important;
  animation: none !important;
}

/* ----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-left {
    align-items: center;
  }

  .hero-image-frame {
    margin: 0 auto;
    max-width: 350px;
  }

  .hero-sub-img {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: -24px;
  }
}


/* ---------- IMPACT / OTHER SECTIONS (simple tidy styling) ---------- */
.section-impact, .section-about, .section-dashboard,
.section-features, .section-testimonials, .section-pricing,
.section-blogs {
  padding: 72px 0;
  background: var(--surface);
}

/* ---------- IMPACT SECTION (Clayo-style clean layout) ---------- */
.section-impact {
  background: #eaeff3; /* very light neutral gray-green */
  padding: 80px 0;
  font-family:"Inter", sans-serif;
  color: #111;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.section-impact .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Grid layout: left label + right content */
.impact-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: start;
  gap: 40px;
}

/* Left label */
.impact-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: #0e0e0e;
  padding-top: 4px;
}

.impact-label svg {
  flex-shrink: 0;
}

/* Right content */
.impact-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Heading text */
.impact-heading {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 500;
  color: #0b0b0b;
  margin: 0;
  max-width: 900px;
}

/* Stats container */
.impact-stats {
  display: flex;
  justify-content: space-between;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 28px;
}

/* Each item */
.impact-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 0 24px;
  position: relative;
}

/* Vertical dividers */
.impact-item + .impact-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

/* Value (number) */
.impact-value {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  color: #0b0b0b;
}

/* Description */
.impact-description {
  font-size: 15px;
  color: #444;
  line-height: 1.4;
  margin: 0;
  max-width: 200px;
}

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

  .impact-heading {
    font-size: 34px;
    line-height: 1.25;
  }

  .impact-stats {
    flex-wrap: wrap;
    border-top: none;
    gap: 20px;
    padding-top: 0;
  }

  .impact-item {
    flex: 1 1 calc(50% - 10px);
    padding: 0;
  }

  .impact-item + .impact-item::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .impact-heading {
    font-size: 26px;
  }

  .impact-item {
    flex: 1 1 100%;
  }

  .impact-value {
    font-size: 30px;
  }
}



/* about grid */
.section-about {
  padding: 100px 0;
  background: var(--off-white);
}

.about-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 60px;
}

.about-title {
  flex: 1 1 45%;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-blue, #1B4F72);
  line-height: 1.2;
}

.about-description {
  flex: 1 1 45%;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--slate-gray, #2E4053);
}

/* --- Grid Layout --- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- Card Styles --- */
.about-card {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.about-card h3 {
  font-size: 1.75rem;
  color: var(--deep-blue, #1B4F72);
  margin-bottom: 12px;
}

.about-card p {
  color: var(--slate-gray, #2E4053);
  line-height: 1.6;
}

/* --- Variants --- */
.stat-card {
  background: #eaeff3;
  color: #fff;
}

.highlight-card {
  background: #eaeff3;
  color: #fff;
}

.large-card {
  grid-column: span 2;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}




/* Dashboard / Expertise — centered layout */
.section-dashboard {
  background: #eaeff3;
  padding: 92px 0 80px;
}

/* Head (label + title + subtitle) centered */
.dashboard-head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 48px;
  padding: 0 16px;
}

.label-wrapper.centered {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted, #2E4053);
  font-weight: 600;
  margin-bottom: 18px;
}

.label-wrapper.centered svg { display:block; }
.label-text { font-size: 0.95rem; }

/* Title */
.dashboard-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.04;
  font-weight: 700;
  color: #000;
  margin: 6px 0 12px;
}

/* Subtitle */
.dashboard-subtitle {
  color: var(--muted, #2E4053);
  font-size: 1.02rem;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid: 2x2 cards, centered within container */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 36px auto 36px;
  padding: 0 16px;
}

/* Card styling (soft surface like screenshot) */
.dashboard-card {
  background: var(--surface, #f5f7f6);
  border-radius: 18px;
  padding: 34px 28px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(10,20,30,0.04);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.dashboard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(10,20,30,0.06);
}

.card-inner {
  text-align: center;
  max-width: 280px;
}

.card-media {
  height: 92px;
  width: 92px;
  margin: 0 auto 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
  /* remove or replace with an actual SVG or image later */
}

/* Card text */
.card-title {
  font-size: 1.15rem;
  color: var(--primary, #1B4F72);
  font-weight: 600;
  margin-bottom: 8px;
}

.card-copy {
  color: var(--muted, #2E4053);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* CTA wrapper and centered button */
.dashboard-cta-wrap {
  text-align: center;
  margin-top: 14px;
}

.dashboard-btn {
  display: inline-block;
  background: var(--primary, #1B4F72);
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease;
}
.dashboard-btn:hover {
  background: #154360;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .dashboard-grid { gap: 22px; margin: 30px auto; }
  .dashboard-card { padding: 26px; min-height: 200px; }
  .card-inner { max-width: 340px; }
}

@media (max-width: 700px) {
  .dashboard-grid { grid-template-columns: 1fr; max-width: 720px; padding: 0 12px; }
  .dashboard-title { font-size: 28px; }
  .dashboard-subtitle { padding: 0 6px; }
  .card-media { margin-bottom: 14px; }
}





/* features grid */
/* GENERAL LAYOUT */
.section-features {
  padding: 100px 0;
  background: #fff;
  font-family: "Inter", "Montserrat", sans-serif;
  color: #000;
}

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

/* HEADER AREA */
.features-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.features-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
}

.features-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
  /* max-width: 900px; */
  color: #111;
  max-width: 100%;      /* allow full width use of container */
  width: 100%;
}

/* GRID */
.features-main {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: nowrap; /* ensures they stay on one line */
}


/* LEFT LIST */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-right: 1px solid #eee;
  padding-right: 40px;
}

.feature-item {
  text-align: left;
  background: none;
  border: none;
  font-size: 1.6rem;
  font-weight: 400;
  color: #aaa;
  cursor: pointer;
  padding: 8px 0;
  border-bottom: 1px solid #f4f4f4;
  transition: all 0.3s ease;
}

.feature-item.active {
  color: #000;
  font-weight: 600;
}

.feature-item:hover {
  color: #222;
}

/* RIGHT SIDE CARD */
.feature-card {
  background: #f7f8f8;
  border-radius: 20px;
  padding: 70px 60px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

/* CONTENT ANIMATION */
.feature-content {
  display: none;
  text-align: left;
  max-width: 460px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.feature-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.feature-content h3 {
  font-size: 1.5rem;
  color: #1B4F72;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 1.05rem;
  color: #2E4053;
  line-height: 1.6;
}

.features-list {
  flex: 1;
  max-width: 45%;
}

.feature-card {
  flex: 1;
  max-width: 55%;
}


/* RESPONSIVE */
@media (max-width: 950px) {
  .features-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features-list {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-right: 0;
    padding-bottom: 30px;
  }
  .feature-card {
    padding: 40px 24px;
  }
  .feature-item {
    font-size: 1.3rem;
  }
}


/* ---------- Testimonials ---------- */
.section-testimonials {
  background: #ffff;
  text-align: center;
  padding: 100px 0 80px;
  position: relative;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-item {
  opacity: 0;
  transform: translateX(30px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.6s ease;
}

.testimonial-item.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.testimonial-quote {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #111;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person h3 {
  font-weight: 600;
  margin: 0;
}

.testimonial-person p {
  font-size: 0.9rem;
  color: #555;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  line-height: 1;
}

.nav-btn:hover {
  background: #111;
  color: #fff;
}


/* ---------- Pricing ---------- */
.section-pricing {
  padding: 120px 0;
  background: #fff;
  text-align: center;
}

.pricing-top {
  max-width: 750px;
  margin: 0 auto 60px;
}

.label-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #555;
}

.pricing-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #111;
  margin-top: 12px;
}

.pricing-subtext {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-top: 8px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pricing-card {
  padding: 40px;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
}

.pricing-card.light {
  background: #f8f9f9;
  color: #111;
}

.pricing-card.dark {
  background: #111;
  color: #fff;
}

.pricing-card h1 {
  font-size: 2.5rem;
  margin: 12px 0;
}

.pricing-card span {
  font-size: 1rem;
  color: inherit;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.pricing-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: currentColor;
}

.btn-dark,
.btn-light {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-dark {
  background: #111;
  color: #fff;
}

.btn-light {
  background: #fff;
  color: #111;
}

.btn-dark:hover,
.btn-light:hover {
  opacity: 0.8;
}


/* blog slider */
/* ---------- BLOG SECTION ---------- */
.section-blogs {
  padding: 100px 0;
  background: #eaeff3;
}

.blogs-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.blogs-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #555;
  font-size: 0.9rem;
}

.blogs-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #111;
}

.blogs-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.blog-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.25s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.10);
}

.blog-image {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: #e5e9ee;
}

.blog-content {
  padding: 16px 20px 24px;
}

/* CARD BODY */
.card-body {
  padding: 22px 22px 26px;
}

/* TAGS */
.blog-tags {
  margin-bottom: 12px;
}

.blog-tags span {
  background: #eef4ff;
  color: #1b4f72;
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* TITLE */
.title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* EXCERPT */
.excerpt {
  font-size: 1rem;
  color: #4c5b66;
  line-height: 1.55;
  margin-bottom: 20px;
}


.blog-tags span {
  font-size: 0.8rem;
  background: #f0f0f0;
  padding: 3px 8px;
  border-radius: 20px;
  color: #333;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #111;
}

.blog-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.blog-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.slider-arrow {
  border: none;
  background: linear-gradient(135deg, #071a24 0%, #0d2a3a 100%);
  color: #fff;
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-arrow:hover {
  background: #4ba3ff; /* Guided Tech accent color */
}


/* ---------- FOOTER ---------- */
.gts-footer {
  background: linear-gradient(135deg, #071a24 0%, #0d2a3a 100%);
  background-size: cover;
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.85);
}


.gts-footer-inner {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 60px;
}

/* Headings */
.footer-heading {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #F39C12; /* gold accent */
  margin: 25px 0 12px;
}

/* Description */
.footer-desc {
  max-width: 320px;
  line-height: 1.6;
  font-size: 15px;
  opacity: 0.9;
}

/* Footer Links */
.gts-footer-col a {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  transition: 0.2s;
}

.gts-footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  filter: brightness(0) invert(1); /* ← FORCES WHITE ICON */
}

.footer-social img {
  width: 22px;
  opacity: 0.8;
  transition: 0.2s;
}

.footer-social img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Footer Bottom */
.gts-footer-bottom {
  margin-top: 60px;
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 1100px) {
  .gts-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .gts-footer-inner {
    grid-template-columns: 1fr;
  }
}


/* ---------- ANIMATIONS & FADE-IN ---------- */
.fade-in { opacity:0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity:1; transform: translateY(0); }

/* subtle float for images */
.hero-main-img, .hero-secondary-img {
  animation: floatY 5.5s ease-in-out infinite;
}
@keyframes floatY {
  0% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
  100% { transform: translateY(0) rotate(4deg); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .hero-title { font-size: 38px; }
  .hero-subtitle { font-size: 15px; }
  .hero-wrapper { gap: 24px; }
  .hero-secondary-img { width: 190px; right: -34px; bottom: -30px; }
  .floating-card { left: -22px; bottom: -30px; width: 200px; }
}

  .hero-wrapper {
    flex-direction: column-reverse;
    align-items:center;
    text-align:center;
    gap: 28px;
  }
  .hero-content { max-width: 720px; width:100%; }
  .hero-image-wrapper { width:100%; }
  .hero-secondary-img { display:none; } /* hide overlay on small screens */
  .floating-card { left: 50%; transform: translateX(-50%); bottom: -28px; }
}

/* small phones */
@media (max-width: 420px) {
  .hero-title { font-size: 28px; }
  .hero-main-img { border-radius: 12px; }
  .floating-card { width: 180px; padding:10px; }
}
