
  .advisor-section {
  background: radial-gradient(circle at top, #0b0b0b, #000);
  padding: clamp(70px, 10vw, 140px) 20px;
  color: #e5e7eb;
}

.advisor-wrap {
  max-width: 1100px;
  margin: auto;
}

/* Eyebrow */
.advisor-eyebrow {
  color: #bc9c00;
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* Title */
.advisor-title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
}

/* Description */
.advisor-desc {
  font-size: 17px;
  line-height: 1.75;
  color: #cbd5e1;
  margin-bottom: 18px;
  max-width: 900px;
}

/* Highlight line */
.advisor-highlight {
  color: #f8fafc;
  border-left: 3px solid #bc9c00;
  padding-left: 18px;
  margin-top: 26px;
}

/* Stats */
.advisor-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.stat {
  padding: 28px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.stat h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
}

.stat span {
  font-size: 14px;
  color: #9ca3af;
  letter-spacing: 0.4px;
}

/* Gold emphasis */
.stat.gold h3 {
  color: #bc9c00;
  text-shadow: 0 0 20px rgba(188,156,0,0.35);
}

/* Mobile */
@media (max-width: 768px) {
  .advisor-desc {
    font-size: 15px;
  }
}




  /* ===============================
   SUBTLE MOVING WORLD MAP
================================ */
.global-impact {
  position: relative;
   background: linear-gradient(0deg, #1d1d1d, #1d1d1dab, #1d1d1d), url('./mr-gad/old-map.webp') 50% 50% no-repeat;
  animation: mapFloat 30s ease-in-out infinite alternate;
  padding: clamp(90px, 10vw, 140px) 20px;
  color: #fff;
  overflow: hidden;
}

@keyframes mapFloat {
  0% { background-position: center top; }
  100% { background-position: center bottom; }
}

/* Overlay */
.global-overlay {
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(circle at center, rgba(188,156,0,0.08), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.88), rgba(0,0,0,0.94)); */
  z-index: 1;
}
/* Wrapper to center logo */
.gad-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px auto 10px;
  width: 100%;
  z-index: 3;
}

/* Logo image */
.gad-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .gad-logo {
    max-width: 160px;
  }
}
.gad-logo {
  filter: drop-shadow(0 0 25px rgba(188,156,0,0.35));
  transition: transform 0.35s ease;
}

.gad-logo:hover {
  transform: scale(1.05);
}

/* ===============================
   🌍 LOCATION PULSE PINS
================================ */
.map-pins {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #bc9c00;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(188,156,0,0.8);
}

.pin::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(188,156,0,0.5);
  animation: pulse 2.5s infinite ease-out;
}

@keyframes pulse {
  0% { transform: scale(0.4); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Pin Positions */
.pin.india { top: 58%; left: 62%; }
.pin.usa { top: 42%; left: 28%; }
.pin.europe { top: 38%; left: 50%; }
.pin.australia { top: 70%; left: 78%; }

/* ===============================
   CONTENT
================================ */
.global-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Eyebrow */
.global-eyebrow {
  letter-spacing: 4px;
  color: #bc9c00;
  font-size: 13px;
  margin-bottom: 12px;
}

/* Title */
.global-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 60px;
}

.global-title .brand {
  color: #bc9c00;
  text-shadow: 0 0 25px rgba(188,156,0,0.45);
}

/* Stats */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.impact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 34px 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.impact-card h3 {
  font-size: 42px;
  font-weight: 800;
}

.impact-card.gold h3 {
  color: #bc9c00;
  text-shadow: 0 0 22px rgba(188,156,0,0.45);
}

/* CTA */
.impact-btn {
  display: inline-flex;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 40px;
  background: linear-gradient(90deg, #bc9c00, #e6c84f);
  color: #000;
  font-weight: 700;
  text-decoration: none;
}





  .gad-services-white {
  background: #ffffff;
  padding: clamp(80px, 10vw, 130px) 20px;
  color: #111827;
}

.services-container {
  max-width: 1100px;
  margin: auto;
}

/* Heading */
.services-heading {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 80px;
}

/* List */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Row */
.service-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 36px;
  border-bottom: 1px solid #e5e7eb;
}

/* Number */
.service-index {
  font-size: 64px;
  font-weight: 800;
  color: #d1d5db;
  line-height: 1;
}

/* Content */
.service-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #374151;
  max-width: 720px;
}

/* Highlight middle service */
.service-row.highlight .service-index {
  color: #bc9c00;
}

.service-row.highlight h3 {
  color: #bc9c00;
}

/* Mobile */
@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-index {
    font-size: 44px;
  }

  .services-heading {
    margin-bottom: 50px;
  }
}



 
        :root {
            --gold: #bc9c00;
            --gold-light: #fdfaf0;
            --text-muted: #666;
            --bg-light: #fdfdfd;
        }

        .navbar-top {
            height: 60px;
            background-color: #0c0e12;
            width: 100%;
        }

        .gad-section {
            padding: 30px 100px 30px 100px;
            position: relative;
        }

        .header-container {
            margin-bottom: 80px;
        }

        .sub-heading {
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.3em;
            font-size: 14px;
            font-weight: 800;
            /* margin-bottom: 24px; */
            display: block;
        }

        .main-heading-two {
            font-family: 'Playfair Display', serif;
            font-size: 68px!important;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.02em;
            margin: 0;
        }

        .main-heading span {
            color: var(--gold);
            font-style: italic;
        }

        .side-text-container {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .side-text {
            color: #1a1a1a;
            font-size: 22px;
            line-height: 1.4;
            padding-left: 40px;
            border-left: 1px solid #e5e5e5;
            max-width: 450px;
            font-weight: 500;
        }

        .gad-card {
            background: #fcfcfc;
            padding: 30px;
            border-radius: 40px;
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
            height: 100%;
            transition: all 0.3s ease;
        }

        .gad-card:hover {
            background: #fff;
            box-shadow: 0 30px 60px rgba(0,0,0,0.05);
            transform: translateY(-5px);
        }

  .icon-box {
    width: 41px;
    height: 42px;
    background-color: #e5fcee;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 15px;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 900;
    color: #ececec;
    line-height: 1;
}
        .card-title {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 5px;
            letter-spacing: -0.01em;
            color: #000;
        }

        .card-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
            font-weight: 400;
        }

        @media (max-width: 991px) {
            .main-heading { font-size: 52px; }
            .side-text { margin-top: 40px; border-left: none; padding-left: 0; font-size: 20px; }
            .gad-card { padding: 40px; }
            .card-number { top: 40px; right: 40px; }
        }
    
/* ===============================
   RESPONSIVE – TABLET & MOBILE
================================ */

/* Large tablets */
@media (max-width: 1199px) {
    .gad-section {
        padding: 40px 60px;
    }

    .main-heading {
        font-size: 56px;
    }
}

/* Tablets */
@media (max-width: 991px) {

    .gad-section {
        padding: 40px 40px;
    }

    .header-container {
        margin-bottom: 50px;
    }

    .main-heading {
        font-size: 48px;
        line-height: 1.1;
    }

    .side-text-container {
        align-items: flex-start;
    }

    .side-text {
        border-left: none;
        padding-left: 0;
        font-size: 20px;
        margin-top: 20px;
        max-width: 100%;
    }

    .gad-card {
        padding: 30px;
        border-radius: 32px;
    }

    .card-number {
        font-size: 46px;
        top: 35px;
        right: 35px;
    }

    .card-title {
        font-size: 23px;
    }

    .card-desc {
        font-size: 15px;
    }
}

/* Mobile devices */
@media (max-width: 767px) {

    .gad-section {
        padding: 30px 20px;
    }

    .sub-heading {
        font-size: 12px;
        letter-spacing: 0.25em;
    }

    .main-heading {
        font-size: 38px;
    }

    .header-container {
        margin-bottom: 35px;
    }

    .side-text {
        font-size: 18px;
        line-height: 1.5;
    }

    .gad-card {
        padding: 32px;
        border-radius: 26px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        margin-bottom: 30px;
    }

    .card-number {
        font-size: 38px;
        top: 28px;
        right: 28px;
    }

    .card-title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .card-desc {
        font-size: 17px;
    }
}

/* Small phones */
@media (max-width: 480px) {

    .main-heading {
        font-size: 32px;
    }

    .gad-card {
        padding: 26px;
    }

    .icon-box {
        width: 54px;
        height: 54px;
    }

    .card-number {
        font-size: 32px;
    }

    .card-title {
        font-size: 24px;
    }

    .card-desc {
        font-size: 16px;
    }
}

    
:root {
  --gold: #D4AF37;
  --dark: #0a0a0a;
}

.bg-color{
  background-color: var(--dark);
}


/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fx-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}

.fx-delay-1 { animation-delay: 0.2s; }
.fx-delay-2 { animation-delay: 0.4s; }
.fx-delay-3 { animation-delay: 0.6s; }

/* Glass Cards */
.glass-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

.glass-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--gold);
  transform: translateY(-5px);
}

/* Gold Text */
.text-gold-gradient {
  background: linear-gradient(135deg,#BF953F,#FCF6BA,#B38728,#FBF5B7,#AA771C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glow */
.bg-gold-aura {
  background: radial-gradient(circle,rgba(212,175,55,0.1) 0%,rgba(10,10,10,0) 70%);
}

/* Divider */
.divider-gold {
  height: 1px;
  width: 100%;
  margin: 2rem 0;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}


/* -------------------- PROFILE SECTION 1 -------------------- */
.profile-section {
  background: #fff;
  padding: 80px 0;
}
/* REMOVE GAP BETWEEN FOOTER TEXT */
.card-footer p,
.card-footer h4 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

/* LEFT CARD */
.profile-card {
   position: relative;
  aspect-ratio: 3 / 4;           /* keeps proportion */
  min-height: 420px;
  max-height: 560px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
  .profile-card {
    aspect-ratio: 4 / 5;
    min-height: 360px;
  }

  .profile-card .profile-image {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .profile-card {
    aspect-ratio: 1 / 1.25;
    min-height: 320px;
  }
}


/* IMAGE */
.profile-card .profile-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 24px;     */
}

.profile-card .profile-image img {
  width: auto;
  height: 100%;          /* ✅ NO CROPPING */
  object-position: center;
}

/* DARK OVERLAY */
.profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* CONTENT ABOVE IMAGE */
.profile-card * {
  position: relative;
  z-index: 2;
}

/* BADGES */
.profile-card .badge {
  position: absolute;
  background: #fff;
  color: #0f172a;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.badge-left {
  left: -6px;
  bottom: 60px;
  z-index: 10;
}

.badge-right {
  right: -6px;
  top: 90px;
}

.badge small {
  display: block;
  font-weight: 500;
}

/* CARD FOOTER */
.profile-card .card-footer,
.profile-card-gold .card-footer {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  border: none;
  background: transparent;
  text-align: center;
  z-index: 3; /* ABOVE overlay */
}

/* REMOVE DEFAULT SPACING */
.profile-card .card-footer p,
.profile-card .card-footer h4,
.profile-card-gold .card-footer p,
.profile-card-gold .card-footer h4 {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
/* BOTTOM OVERLAY */
.profile-card::after,
.profile-card-gold::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0)
  );
  z-index: 2; /* BELOW footer text */
  pointer-events: none;
}


/* RIGHT CONTENT */
.expert-tag {
  background: #fff3cd;
  color: #9a5302;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 600;
}

.profile-name {
  font-size: 38px;
  font-weight: 700;
}

.profile-role {
  color: #0071fb;
  font-weight: 600;
  margin-bottom: 20px;
}

.profile-text {
  color: #555;
  line-height: 1.7;
}

/* SKILLS */
.skills span {
  display: inline-block;
  background: #f1f5f9;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 14px;
  margin: 6px 6px 0 0;
}

/* EXPERIENCE */
.experience-card {
  background: #f8fafc;
  padding: 16px;
  border-radius: 16px;
  gap: 15px;
}

.experience-card i {
  font-size: 28px;
  color: #fb8500;
}

/* SOCIAL */
.social-icons a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fb8500;
}

/* -------------------- PROFILE SECTION 2 -------------------- */
.leader-profile {
  padding: 80px 0;
  background: radial-gradient(circle at top, #1e293b, #020617);
  color: #fff;
}

/* TAG */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,193,7,0.15);
  color: #facc15;
  padding: 6px 14px;
  border-radius: 40px;
  font-weight: 600;
}

/* TEXT */
.leader-name {
  font-size: 44px;
  font-weight: 700;
}

.leader-role {
  color: #fbbf24;
  font-weight: 600;
  margin-bottom: 20px;
}

.leader-text {
  color: #e5e7eb;
  line-height: 1.7;
}

.leader-text.muted {
  color: #94a3b8;
}

/* SKILLS */
.skill-pills span {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 30px;
  margin: 6px 6px 0 0;
}

/* FOUNDATION */
.foundation-card {
  display: flex;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  padding: 18px;
  border-radius: 18px;
}

/* GOLD CARD */
.profile-card-gold {
  height: 520px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

/* IMAGE */
.profile-card-gold .profile-image {
  position: absolute;
  inset: 0;
}

.profile-card-gold .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GOLD OVERLAY */
.profile-card-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(251,191,36,0.2),
    rgba(217,119,6,0.9)
  );
  z-index: 1;
}

/* CONTENT ABOVE */
.profile-card-gold * {
  position: relative;
  z-index: 2;
}

/* BADGES */
.info-badge {
  position: absolute;
  background: #0f172a;
  padding: 12px 16px;
  border-radius: 14px;
  text-align: center;
}

.top-left {
  top: 40px;
  left: -5px;
}

.bottom-right {
  bottom: 90px;
  right: -5px;
  z-index: 10;
}

/* FOOTER */
.profile-card-gold .card-footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  background: transparent;
  border: none;
}



/* ================= SECTION ================= */
.sg-section{
  background: radial-gradient(circle at top, #0f172a, #020617);
  padding: 90px 0;
  color: #ffffff;
}

/* ================= CONTAINER ================= */
.sg-wrapper{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* ================= GRID ================= */
.sg-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}

@media(max-width:992px){
  .sg-grid{
    grid-template-columns:1fr;
  }
}

/* ================= TAG ================= */
.sg-tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:rgba(251,191,36,0.15);
  color:#fbbf24;
  padding:8px 18px;
  border-radius:999px;
  font-size:.85rem;
  font-weight:600;
  margin-bottom:18px;
}

/* ================= TEXT ================= */
.sg-name{
  font-size:44px;
  font-weight:700;
  margin-bottom:10px;
}

.sg-role{
  color:#fbbf24;
  font-weight:600;
  margin-bottom:22px;
}

.sg-quote{
  font-style:italic;
  color:#fbbf24;
  font-size:1.05rem;
  margin-bottom:22px;
}

.sg-text{
  font-size:.95rem;
  line-height:1.75;
  color:#e5e7eb;
  margin-bottom:16px;
}

.sg-text.muted{
  color:#94a3b8;
}

/* ================= SKILLS ================= */
.sg-skills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:26px 0;
}

.sg-skills span{
  background:rgba(255,255,255,0.08);
  padding:8px 16px;
  border-radius:30px;
  font-size:.8rem;
}

/* ================= FOUNDATION ================= */
.sg-highlight{
  display:flex;
  gap:14px;
  background:rgba(255,255,255,0.05);
  padding:18px;
  border-radius:18px;
  margin-top:30px;
}

.sg-highlight i{
  font-size:22px;
  color:#fbbf24;
}

/* ================= SOCIAL ================= */
.sg-social{
  display:flex;
  gap:14px;
  margin-top:30px;
}

.sg-social a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#020617;
  color:#ffffff;
  transition:.3s ease;
}

.sg-social a:hover{
  background:#fbbf24;
  color:#020617;
  transform:translateY(-4px);
}

/* ================= IMAGE CARD ================= */
.sg-image-card{
  position:relative;
  border-radius:28px;
  background:#020617;
  padding:24px;
  box-shadow:0 40px 90px rgba(0,0,0,.5);
  overflow:hidden;
}

/* IMAGE WRAPPER – NO CUT */
.sg-image-wrap{
  position:relative;
  width:100%;
  aspect-ratio:4 / 5;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1;
}

.sg-image-wrap img{
  width:100%;
  height:100%;
  object-fit:contain;   /* 🔥 NO CROPPING */
  object-position:center;
}

/* BOTTOM OVERLAY */
.sg-image-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:35%;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.4),
    rgba(0,0,0,0)
  );
  z-index:1;
  pointer-events:none;
}

/* BADGES */
.sg-badge{
  position:absolute;
  background:rgba(15,23,42,.9);
  color:#fbbf24;
  padding:10px 16px;
  border-radius:14px;
  font-size:.8rem;
  font-weight:600;
  z-index:2;
}

.sg-badge.top{
  top:26px;
  left:18px;
}

.sg-badge.bottom{
  bottom:96px;
  right:18px;
}

/* FOOTER */
.sg-footer{
  position:absolute;
  bottom:12px;
  left:0;
  width:100%;
  text-align:center;
  z-index:2;
}

.sg-footer p,
.sg-footer h4{
  margin:0;
  line-height:1.2;
}

.sg-footer p{
  font-size:12px;
  letter-spacing:1px;
  color:#fbbf24;
}

.sg-footer h4{
  font-size:20px;
  font-weight:600;
  color:#ffffff;
}

/* MOBILE TEXT */
@media(max-width:992px){
  .sg-name{font-size:32px;}
}


       .category-section {
  padding: 10px 20px;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.category-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1F2937;
}

.category-header h2 span {
  color: #2273bf;
}

.category-header p {
  margin-top: 10px;
  color: #6B7280;
}

.category-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 20px 22px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card .icon {
  font-size: 22px;
  color: #6B7280;
}

.category-card span {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: #1F2937;
}

.category-card .arrow {
  font-size: 18px;
  color: #2273bf;
  opacity: 0;
  transition: 0.3s;
}

.category-card:hover,
.category-card.active {
  border-color: #2273bf;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.category-card:hover .arrow,
.category-card.active .arrow {
  opacity: 1;
}

/* GAD Vision Section */
.gad-vision {
  background: #ffffff;
  padding: 100px 20px;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.content-box {
  max-width: 850px;
}

.headline {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  color: #111111;
  margin-bottom: 32px;
}

.description {
  font-size: 18px;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 20px;
}

.description strong {
  color: #000000;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .headline {
    font-size: 36px;
  }

  .description {
    font-size: 16px;
  }
}


 .learn-slider {
  background: #ffffff;
  padding: 90px 80px;
  color: #111;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.learn-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.learn-header h2 {
  font-size: 46px;
  font-weight: 800;
}

.learn-header p {
  max-width: 520px;
  margin-top: 12px;
  line-height: 1.6;
  color: #666;
}

.slider-arrows button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  color: #111;
  font-size: 24px;
  cursor: pointer;
  margin-left: 12px;
}

.slider-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.slider-wrapper::-webkit-scrollbar {
  display: none;
}

/* CARDS */
.learn-card {
  min-width: 300px;
  background: #ffffff;
  color: #111;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.learn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.learn-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.learn-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.learn-card img {
  width: 100%;
  height: 200px;
  margin-top: 18px;
  border-radius: 16px;
  object-fit: cover;
}
/* Tablet */
@media (max-width: 1024px) {
  .learn-slider {
    padding: 70px 40px;
  }

  .learn-header h2 {
    font-size: 36px;
  }

  .slider-wrapper {
    gap: 20px;
  }

  .learn-card {
    min-width: 280px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .learn-slider {
    padding: 60px 20px;
  }

  .learn-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .slider-arrows {
    align-self: flex-end;
  }

  .learn-header h2 {
    font-size: 30px;
  }

  .learn-header p {
    font-size: 14px;
  }

  .learn-card {
    min-width: 260px;
    padding: 22px;
  }

  .learn-card img {
    height: 180px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .learn-card {
    min-width: 240px;
  }

  .learn-card h3 {
    font-size: 20px;
  }

  .learn-card p {
    font-size: 13px;
  }
}

