@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  --primary: #2563EB;
  --secondary: #22C55E;
  --accent: #06B6D4;
  --bg: #F8FAFC;
  --dark: #0F172A;
  --card-bg: rgba(255, 255, 255, 0.8);
  --text-main: #1E293B;
  --text-muted: #64748B;
  --radius: 20px;
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
  --shadow-hover: 0 20px 40px rgba(37,99,235,0.1);
  --gradient-main: linear-gradient(135deg, var(--primary), var(--accent));
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(37, 99, 235, 0.05), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.05), transparent 25%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.25;
}

p {
  line-height: 1.85;
  text-align: justify;
  text-justify: inter-word;
  color: #334155;
}

/* Subtitles, heroes, and cards alignment overrides */
.text-center,
.text-center p,
.hero-subtitle,
.hero-text,
.career-roadmap-subtitle,
.students-work-subtitle,
.contact-hero-subtitle,
.success-hero-subtitle,
.cert-hero-text,
.cert-hero-text p,
.page-header-companies p,
.page-header-contact p,
.footer-bottom,
.map-popup-addr {
  text-align: center;
}

.footer-col p {
  text-align: left !important;
}

/* Glassmorphism */
.glass {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.glass:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typography Helpers */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 25px rgba(37, 99, 235, 0.3); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 0 5%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
nav.scrolled {
  height: 62px;
  box-shadow: 0 4px 24px rgba(13,110,253,0.08);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 48px;
  width: auto;
  max-height: 52px;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.logo-img:hover {
  transform: scale(1.03);
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #0D6EFD 50%, #7ab648 50%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(13,110,253,0.25);
}
.logo-p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem; font-weight: 900;
  color: white;
  line-height: 1;
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0D6EFD;
  line-height: 1.2;
}
.logo-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #F7941D;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 0.5rem 0.85rem;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e293b;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: #0D6EFD; background: rgba(13,110,253,0.06); }
.nav-arrow {
  font-size: 0.65rem;
  transition: transform 0.25s;
}
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid rgba(13,110,253,0.1);
  list-style: none;
  padding: 0.5rem 0;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem; font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: all 0.15s;
}
.dropdown li a i {
  width: 16px; color: #0D6EFD; font-size: 0.8rem;
}
.dropdown li a:hover {
  background: rgba(13,110,253,0.06);
  color: #0D6EFD;
  padding-left: 1.5rem;
}

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: rgba(34, 197, 94, 0.08);
  color: #16A34A;
  border: 1.5px solid rgba(34, 197, 94, 0.3);
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-header-phone i {
  font-size: 0.85rem;
  color: #16A34A;
  transition: transform 0.25s ease;
}
.btn-header-phone:hover {
  background: #16A34A;
  color: #FFFFFF;
  border-color: #16A34A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}
.btn-header-phone:hover i {
  color: #FFFFFF;
  transform: rotate(12deg) scale(1.1);
}

.btn-donate {
  padding: 0.45rem 1.4rem;
  background: transparent;
  border: 2px solid #0D6EFD;
  color: #0D6EFD;
  border-radius: 6px;
  font-size: 0.88rem; font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}
.btn-donate:hover {
  background: #0D6EFD;
  color: white;
  box-shadow: 0 4px 12px rgba(13,110,253,0.3);
}

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: #1e293b;
  border-radius: 2px;
  transition: all 0.3s;
}


/* Layout Grid */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* Sections */
section { padding: 6rem 0; position: relative; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.1));
  border-radius: 50% 0 0 50%;
  z-index: -1;
}
.hero-content { max-width: 600px; }
.hero h1 { font-size: 4rem; font-weight: 800; margin-bottom: 1.5rem; line-height: 1.1; }
.hero p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; }
.hero-visual { position: relative; width: 100%; height: 500px; }
.hero-img { width: 100%; height: 100%; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow-hover); }
.floating-card { position: absolute; background: white; padding: 1rem 1.5rem; border-radius: 15px; box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 1rem; animation: float 6s ease-in-out infinite; }
.fc-1 { top: 10%; left: -20px; animation-delay: 0s; }
.fc-2 { bottom: 10%; right: -20px; animation-delay: 2s; }

/* Stats Strip */
.stats-strip { background: var(--dark); padding: 4rem 0; color: white; border-radius: 30px; margin: 0 20px; position: relative; overflow: hidden; }
.stats-strip::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%); }
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-item h3 { font-size: 3rem; color: white; margin-bottom: 0.5rem; font-family: 'Poppins', sans-serif; display: flex; justify-content: center; align-items: center; }
.stat-item p { color: #CBD5E1; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }

/* Cards Common */
.card-icon { width: 60px; height: 60px; border-radius: 15px; background: rgba(37,99,235,0.1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; transition: all 0.3s; }
.glass:hover .card-icon { background: var(--gradient-main); color: white; transform: scale(1.1) rotate(5deg); }

.hover-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}
.hover-card:hover img {
  transform: scale(1.05) !important;
}

/* Courses Preview */
.course-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.course-img { width: 100%; height: 200px; background: #E2E8F0; object-fit: cover; }
.course-content { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }
.course-meta { display: flex; gap: 1rem; margin-bottom: 1rem; font-size: 0.85rem; font-weight: 600; color: var(--primary); }
.course-title { font-size: 1.5rem; margin-bottom: 1rem; }
.course-desc { color: var(--text-muted); margin-bottom: 1.5rem; flex-grow: 1; }

/* Testimonials */
.testimonial-card { padding: 2.5rem; }
.quote-icon { font-size: 2rem; color: rgba(37,99,235,0.2); margin-bottom: 1rem; }
.testimonial-text { font-size: 1.1rem; font-style: italic; margin-bottom: 2rem; color: var(--text-main); }
.student-profile { display: flex; align-items: center; gap: 1rem; }
.student-avatar { width: 50px; height: 50px; border-radius: 50%; background: #E2E8F0; object-fit: cover; }
.student-info h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.student-info p { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ===== PREMIUM FOOTER STYLING ===== */
footer {
  background: linear-gradient(180deg, #0B1329 0%, #050814 100%);
  color: #FFFFFF;
  padding: 4.5rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #22C55E 0%, #0D6EFD 50%, #3B82F6 100%);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
}

.footer-grid {
  margin-bottom: 3.5rem;
  gap: 2.5rem;
}

.footer-col-title {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  position: relative;
  padding-bottom: 0.6rem;
  display: inline-block;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: #22C55E;
  border-radius: 2px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  text-align: left !important;
}

.footer-col p {
  color: #94A3B8;
  margin-bottom: 1.5rem;
  text-align: left !important;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-links a i {
  font-size: 0.75rem;
  color: #22C55E;
  transition: transform 0.25s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-links a:hover i {
  color: #0D6EFD;
  transform: translateX(2px);
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact-info li i {
  color: #22C55E;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-info a {
  color: #CBD5E1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-info a:hover {
  color: #22C55E;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.1rem;
}

.social-icons a.social-wa:hover { background: #25D366; border-color: #25D366; transform: translateY(-4px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); }
.social-icons a.social-ig:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: #e6683c; transform: translateY(-4px); box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4); }
.social-icons a.social-fb:hover { background: #1877F2; border-color: #1877F2; transform: translateY(-4px); box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4); }
.social-icons a.social-yt:hover { background: #FF0000; border-color: #FF0000; transform: translateY(-4px); box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4); }
.social-icons a.social-li:hover { background: #0A66C2; border-color: #0A66C2; transform: translateY(-4px); box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94A3B8;
  font-size: 0.9rem;
}

.footer-bottom-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-trust-badge {
  background: rgba(34, 197, 94, 0.12);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  user-select: none;
  cursor: default;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 991px) {
  .hero { flex-direction: column; text-align: center; padding-top: 120px; }
  .hero::before { width: 100%; height: 50%; border-radius: 0 0 50% 50%; }
  .hero-content { margin-bottom: 3rem; }
  .hero h1 { font-size: 3rem; }
  .hero-btns { justify-content: center; }
  .grid-2 { grid-template-columns: 1fr; }
  .fc-1, .fc-2 { display: none; }
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem 0 1.5rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-10px);
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-item { width: 100%; }
  .nav-link { padding: 0.75rem 1.5rem; border-radius: 0; width: 100%; }
  .dropdown {
    position: static;
    box-shadow: none; border: none;
    border-left: 3px solid #0D6EFD;
    margin-left: 1.5rem;
    opacity: 1; visibility: visible;
    transform: none;
    display: none;
    padding: 0;
  }
  .has-dropdown.open-sub .dropdown { display: block; }
  .mobile-menu-btn { display: flex; }
  .stats-strip { margin: 0; border-radius: 0; padding: 3rem 20px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .logo-text { display: none; }
}

/* ===== POINTER EDUCATIONAL TRUST PAGE REDESIGN ===== */
.trust-hero-section {
  position: relative;
  padding: 140px 0 70px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.trust-hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(6, 182, 212, 0.1) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.trust-hero-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.trust-hero-logo, .team-hero-logo, .donation-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  background: #FFFFFF;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: inline-block;
}

.trust-hero-title {
  color: #FFFFFF;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.trust-hero-subtitle {
  color: var(--secondary);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

.trust-hero-text {
  color: #E2E8F0;
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.trust-section {
  padding: 5rem 0;
}

.trust-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.trust-mv-card {
  padding: 2.5rem;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.trust-mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}

.trust-mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gradient-main);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.trust-mv-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.trust-mv-text {
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Universal Carousel Styling */
.trust-carousel-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

.trust-carousel-track-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.trust-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.trust-carousel-slide {
  min-width: 100%;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.trust-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 20px;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.trust-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(15, 23, 42, 0.75);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.trust-carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.trust-carousel-btn.prev {
  left: 20px;
}

.trust-carousel-btn.next {
  right: 20px;
}

.trust-carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(15, 23, 42, 0.5);
  padding: 6px 14px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
}

.trust-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.trust-carousel-dot.active {
  background: var(--secondary);
  width: 26px;
  border-radius: 10px;
}

.trust-infra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.trust-infra-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  overflow: hidden;
}

.trust-infra-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.trust-infra-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.2rem 0 0.5rem;
  color: var(--dark);
}

.trust-infra-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.trust-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.trust-info-card {
  padding: 2.2rem;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.trust-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.trust-info-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.trust-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.trust-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.trust-info-body {
  color: var(--text-main);
  font-size: 1.02rem;
  line-height: 1.7;
}

.trust-bank-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.trust-bank-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-size: 1.02rem;
}

.trust-bank-list i {
  color: var(--primary);
  margin-top: 4px;
}

@media (max-width: 991px) {
  .trust-mv-grid,
  .trust-infra-grid,
  .trust-info-grid {
    grid-template-columns: 1fr;
  }
  .trust-carousel-container {
    height: 380px;
  }
  .trust-hero-title {
    font-size: 2.2rem;
  }
}

/* =========================================================
   CAREER GROWTH ROADMAP GRAPH STYLES
   ========================================================= */
.career-roadmap-section {
  background: linear-gradient(135deg, #0B1329 0%, #111C38 50%, #050814 100%);
  color: #FFFFFF;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.career-roadmap-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 180%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, rgba(13, 110, 253, 0.08) 45%, transparent 70%);
  pointer-events: none;
}

.career-roadmap-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.career-roadmap-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.12);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.4rem 1.1rem;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.career-roadmap-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.career-roadmap-title span {
  background: linear-gradient(135deg, #22C55E 0%, #00E676 50%, #3B82F6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.career-roadmap-subtitle {
  color: #94A3B8;
  font-size: 1.1rem;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Timeline Layout Track */
.roadmap-container-wrapper {
  position: relative;
  z-index: 2;
  padding: 1rem 0;
}

.roadmap-timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  height: 480px;
  align-items: center;
}

/* Central Horizontal Connector Line */
.roadmap-timeline-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 2%;
  right: 2%;
  height: 4px;
  background: linear-gradient(90deg, #22C55E 0%, #0D6EFD 50%, #3B82F6 100%);
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

/* Individual Roadmap Step Item */
.roadmap-step-item {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Central Node Dot on the Horizontal Line */
.roadmap-node-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0B1329;
  border: 4px solid #22C55E;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: all 0.35s ease;
}

.roadmap-step-item:hover .roadmap-node-dot {
  background: #22C55E;
  border-color: #FFFFFF;
  transform: translate(-50%, -50%) scale(1.4);
  box-shadow: 0 0 25px rgba(34, 197, 94, 1);
}

/* Position Top Cards COMPLETELY ABOVE the center line */
.roadmap-step-item.pos-top .roadmap-card {
  position: absolute;
  bottom: calc(50% + 24px);
  left: 0;
  right: 0;
}

/* Position Bottom Cards COMPLETELY BELOW the center line */
.roadmap-step-item.pos-bottom .roadmap-card {
  position: absolute;
  top: calc(50% + 24px);
  left: 0;
  right: 0;
}

/* Card Content Box */
.roadmap-card {
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.1rem 0.85rem;
  width: 100%;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-step-item:hover .roadmap-card {
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.25);
  background: rgba(26, 38, 66, 0.95);
}

.roadmap-step-item.pos-top:hover .roadmap-card {
  transform: translateY(-6px);
}

.roadmap-step-item.pos-bottom:hover .roadmap-card {
  transform: translateY(6px);
}

/* Level Badge Tag */
.roadmap-level-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #22C55E;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.2rem 0.65rem;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* Avatar / Role Icon Box */
.roadmap-icon-box {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(13, 110, 253, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #38BDF8;
  transition: all 0.35s ease;
}

.roadmap-step-item:hover .roadmap-icon-box {
  background: linear-gradient(135deg, #22C55E 0%, #0D6EFD 100%);
  color: #FFFFFF;
  transform: rotate(6deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

/* Role Title */
.roadmap-role-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #F8FAFC;
  line-height: 1.35;
  margin-bottom: 0.4rem;
  font-family: 'Poppins', sans-serif;
}

/* Sub-Skills Text */
.roadmap-role-desc {
  font-size: 0.78rem;
  color: #94A3B8;
  line-height: 1.4;
  font-weight: 400;
}

/* Responsive Adjustments for Roadmap Graph */
@media (max-width: 1200px) {
  .roadmap-timeline-track {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 3.5rem;
  }
  .roadmap-timeline-track::before {
    display: none;
  }
  .roadmap-step-item.pos-top,
  .roadmap-step-item.pos-bottom {
    margin: 0;
  }
  .roadmap-node-dot {
    display: none;
  }
}

@media (max-width: 768px) {
  .career-roadmap-title {
    font-size: 2.1rem;
  }
  .roadmap-timeline-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .roadmap-timeline-track {
    grid-template-columns: 1fr;
  }
  .career-roadmap-section {
    padding: 4rem 0;
  }
}

/* ==========================================
   NARROWLY-SCOPED RESPONSIVE OVERRIDES
   (Ensures perfect mobile/tablet fitting without altering locked desktop styles)
   ========================================== */

@media (max-width: 1024px) {
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 0 4% !important;
  }
}

@media (max-width: 768px) {
  /* Navbar Actions shrink */
  .btn-header-phone {
    padding: 0.5rem 0.6rem !important;
    font-size: 0 !important;
  }
  .btn-header-phone i {
    font-size: 1rem !important;
    margin: 0 !important;
  }
  .btn-donate {
    padding: 0.45rem 0.8rem !important;
    font-size: 0.8rem !important;
  }

  /* Hero Section responsive sizing overrides */
  .hero {
    min-height: auto !important;
    padding: 120px 0 60px !important;
  }
  .hero h1 {
    font-size: 2.8rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }
  .hero p {
    font-size: 1.1rem !important;
    text-align: center !important;
  }
  .hero-content {
    padding-right: 0 !important;
    text-align: center !important;
  }
  .hero-btns {
    justify-content: center !important;
  }

  /* Circular floating images overlay container on index.html */
  div[style*="height: 350px"] {
    height: 280px !important;
    margin-top: 2rem !important;
  }
  div[style*="height: 350px"] img:nth-child(1) {
    width: 130px !important;
    height: 130px !important;
  }
  div[style*="height: 350px"] img:nth-child(2) {
    width: 180px !important;
    height: 180px !important;
  }
  div[style*="height: 350px"] img:nth-child(3) {
    width: 110px !important;
    height: 110px !important;
  }

  /* Pages Headers text-size overrides */
  div[style*="padding: 150px 0 50px"] {
    padding: 110px 0 30px !important;
  }
  div[style*="padding: 150px 0 50px"] h1 {
    font-size: 2.2rem !important;
  }
  div[style*="padding: 150px 0 50px"] p {
    font-size: 1rem !important;
    padding: 0 15px !important;
  }

  /* Dynamic inline text-size headers scaling down on mobile */
  h2[style*="font-size: 2.8rem"] {
    font-size: 2rem !important;
  }
  h2[style*="font-size: 2.2rem"] {
    font-size: 1.8rem !important;
  }
}

@media (max-width: 480px) {
  /* Navbar spacing adjustments */
  .btn-donate {
    display: none !important; /* Hide donate button on small mobile header to avoid overlap */
  }
  .logo-img {
    height: 36px !important;
  }
  .mobile-menu-btn span {
    width: 20px !important;
  }

  /* Hero Section h1 font-size scaling down */
  .hero h1 {
    font-size: 2.1rem !important;
  }
  .hero-form {
    padding: 1.5rem !important;
  }

  /* Grid layouts columns override */
  .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
  }
}
