:root {
  --primary: #054ca3;
  --primary-dark: #033a7d;
  --primary-light: #e6f0ff;
  --secondary: #00bcd4;
  --accent: #ff9800;
  --text-main: #2c3e50;
  --text-muted: #6c757d;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.85);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo-text {
  font-family: "Outfit", sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }
}

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

/* Top Bar */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.top-info span {
  margin-right: 1.5rem;
}

.top-info i {
  margin-right: 0.5rem;
  color: var(--secondary);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-customer {
  background: var(--white);
  color: var(--primary-dark);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  transition: var(--transition);
}

.btn-customer:hover {
  background: var(--secondary);
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--secondary);
  transform: translateY(-2px);
}

/* Header & Nav */
.main-header {
  background: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header .container {
  max-width: 1350px;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--primary);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.5rem;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -1px;
  min-width: 120px;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

/* Navbar Layout */
.navbar > ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
}

.navbar > ul > li.has-mega {
  position: static !important;
}

.navbar a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 1.2rem 0.4rem;
  display: block;
  transition: var(--transition);
}

.navbar a:hover,
.navbar a.active {
  color: var(--primary);
}

/* Dropdown & Mega Menu Styles */
.has-mega {
  position: static;
  /* Important for full-width mega menu */
}

.mega-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  width: 100% !important;
  background: var(--white) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15) !important;
  display: none;
  z-index: 2000 !important;
  border-top: 1px solid #f1f5f9;
  animation: megaFade 0.3s ease;
  white-space: normal;
  margin-top: -8px;
}

@keyframes megaFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.has-mega:hover .mega-menu {
  display: block;
}

.mega-grid {
  display: grid !important;
  grid-template-columns: 380px 1fr;
  max-width: 1350px;
  margin: 0 auto;
  background: var(--white);
  align-items: normal !important;
}

.mega-info {
  background: #f8fafc;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-right: 1px solid #e2e8f0;
}

.mega-info-content {
  width: 100%;
}

.mega-info-content h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin: 0.5rem 0 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.mega-info-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 100%;
  overflow-wrap: break-word;
}

.mega-image {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: auto;
}

.mega-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mega-info:hover img {
  transform: scale(1.05);
}

.mega-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 3rem;
}

.mega-col h4 {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.mega-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mega-col li a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0;
  color: var(--text-main) !important;
}

.mega-col li a i {
  width: 25px;
  color: var(--primary);
  font-size: 0.8rem;
}

.mega-col li a:hover {
  color: var(--primary) !important;
  transform: translateX(5px);
}

/* Regular Dropdown (for non-mega items) */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  padding: 1rem 0;
  border-radius: 0 0 8px 8px;
  z-index: 1000;
}

.dropdown:hover .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  padding: 0.7rem 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-main);
  border-bottom: 1px solid #f8fafc;
}

.nav-dropdown-menu a:hover {
  background: #f0f7ff;
  color: var(--primary);
}

.fa-chevron-down {
  font-size: 0.65rem;
  margin-left: 0.4rem;
  transition: 0.3s;
}

.dropdown:hover .fa-chevron-down,
.has-mega:hover .fa-chevron-down {
  transform: rotate(180deg);
}

/* Hero Section Updates */
.hero {
  background:
    linear-gradient(
      to right,
      rgba(15, 32, 39, 0.9) 0%,
      rgba(15, 32, 39, 0.7) 45%,
      rgba(44, 83, 100, 0.1) 100%
    ),
    url("https://www.insdag.com/uploads/banner/1651130859B.png");
  background-size: cover;
  background-position: center 30%;
  padding: 16rem 0 6rem;
  color: var(--white);
  min-height: 80vh;
}

.btn-orange {
  background: #f39c12;
  border: none;
}

.btn-orange:hover {
  background: #e67e22;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: end;
}

.mega-menu .badge,
.badge {
  background: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.sub-headline {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.main-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.main-title span {
  color: var(--secondary);
}

.hero-promo {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-dark);
}

/* Widgets */
.widget-card {
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(10px);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.primary-theme {
  background: var(--primary);
  color: var(--white);
}

.widget-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.widget-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
}

.bulletin-list,
.focus-list {
  list-style: none;
}

.bulletin-list li {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 0.8rem;
}

.bulletin-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.focus-list li {
  margin-bottom: 0.8rem;
}

.focus-list a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  transition: var(--transition);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.focus-list li:last-child a {
  border-bottom: none;
}

.focus-list a i {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--secondary);
}

.focus-list a:hover {
  padding-left: 8px;
  color: var(--secondary);
}

/* Section Components */
section {
  padding: 6rem 0;
}

.section-badge {
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Feature Cards */
.feature-cards {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.feature-card:hover {
  transform: translateX(10px);
  border-left-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.card-content h4 {
  margin-bottom: 0.3rem;
  color: var(--primary-dark);
}

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

/* About Image */
.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.image-wrapper img {
  width: 100%;
  display: block;
  transition: var(--transition);
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.established-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, var(--primary));
  padding: 3rem 2rem 2rem;
  color: var(--white);
}

.established-overlay h3 {
  font-size: 2rem;
  margin: 0;
}

/* Mission Section */
.mission-section {
  background: #f1f5f9;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.mission-icon-graphic {
  display: flex;
  justify-content: center;
}

.target-icon {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed var(--primary);
  animation: rotate 20s linear infinite;
}

.circle.outer {
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.circle.middle {
  width: 75%;
  height: 75%;
  opacity: 0.5;
  animation-direction: reverse;
}

.circle.inner {
  width: 50%;
  height: 50%;
  background: var(--primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(5, 76, 163, 0.3);
  color: var(--white);
  font-size: 3rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.mission-desc {
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.mission-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mission-point {
  display: flex;
  gap: 1.5rem;
}

.point-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  font-family: "Outfit", sans-serif;
}

.point-text h4 {
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

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

/* Why Choose Section */
.centered-header {
  text-align: center;
  margin-bottom: 4rem;
}

.underline {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 1rem auto;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.choose-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.choose-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.choose-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.choose-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 1.5rem;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .img-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.main-footer {
  background: #054ca3;
  color: var(--white);
  padding: 4rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.visitor-stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.visitor-stats li:last-child {
  border-bottom: none;
}

.visitor-stats .count-val {
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-col p {
  color: #cbd5e1;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-col p i {
  margin-right: 0.8rem;
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
}

/* Connect Section */
.connect-section {
  background: #fdfdfd;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: -0.5rem;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.connect-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  border: 1px solid #f1f5f9;
}

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

.connect-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.connect-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.know-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.know-more:hover {
  color: var(--secondary);
  padding-left: 5px;
}

/* Core Capabilities */
.capabilities-section {
  background: var(--white);
}

.section-header-left {
  margin-bottom: 3rem;
}

.underline-left {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin-top: 1rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.cap-item h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 1rem;
}

.cap-item h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: #e2e8f0;
}

.cap-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Membership CTA */
.membership-cta {
  background: #f8fafc;
  padding: 5rem 0;
}

.centered-text {
  text-align: center;
}

.membership-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.membership-cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.btn-outline-dark {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border: 2px solid #1e293b;
  color: #1e293b;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-dark:hover {
  background: #1e293b;
  color: var(--white);
}

/* Updates & Events */
.updates-section {
  background: var(--white);
  border-top: 1px solid #f1f5f9;
}

.updates-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
}

.thin-title {
  font-weight: 500;
  font-size: 2rem;
}

.update-list {
  list-style: none;
  margin-top: 2.5rem;
}

.update-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 30px;
  background: #f1f5f9;
  color: #475569;
}

.tag-new {
  background: #fee2e2;
  color: #ef4444;
}

.tag-important {
  background: #fef3c7;
  color: #d97706;
}

.tag-training {
  background: #dcfce7;
  color: #16a34a;
}

.update-list p {
  font-size: 0.95rem;
  color: #334155;
}

.event-items {
  margin-top: 2.5rem;
}

.event-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.event-date {
  width: 65px;
  height: 65px;
  border: 2px solid #1e293b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-date .day {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.75rem;
  font-weight: 600;
}

.event-info h4 {
  margin-bottom: 0.3rem;
  color: var(--primary-dark);
}

.event-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Testimonials Carousel */
.testimonials-carousel-container {
  position: relative;
  padding: 0 4rem;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding: 2rem 0;
  scrollbar-width: none;
  /* Firefox */
}

.carousel-track::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.35rem);
  scroll-snap-align: start;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 10px;
}

.avatar {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.testimonial-header p {
  font-style: italic;
  color: #475569;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
}

.testimonial-footer strong {
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.testimonial-footer span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Mobile Responsive Overrides */
@media (max-width: 1100px) {
  .navbar > ul {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 10001;
    gap: 0;
    overflow-y: auto;
  }

  .navbar.active > ul {
    display: flex;
  }

  .menu-toggle {
    display: block;
    z-index: 10002;
    font-size: 1.8rem;
  }

  .navbar li {
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
  }

  .navbar a {
    padding: 1.2rem 0;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mega-menu,
  .nav-dropdown-menu {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    display: none !important;
    background: #f8fafc !important;
    padding: 0 1rem !important;
    border: none !important;
  }

  .navbar li.active .mega-menu,
  .navbar li.active .nav-dropdown-menu {
    display: block !important;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem 0;
  }

  .mega-info {
    display: none;
  }

  .mega-links-grid {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 1.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .main-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .section-grid,
  .mission-grid,
  .footer-grid,
  .connect-grid,
  .capabilities-grid,
  .updates-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .top-bar {
    display: none;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonials-carousel-container {
    padding: 0;
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.8rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-btns {
    flex-direction: column;
  }
}

/* Connect Section Update */
.connect-section {
  background: #f8fafc;
}

/* Supported By Section */
.leaders-section {
  background: var(--white);
  padding: 6rem 0;
}

.badge-solid {
  background: var(--primary);
  color: var(--white);
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 4rem;
}

.logo-item {
  transition: var(--transition);
  cursor: default;
  padding: 1.5rem;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 100px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #e2e8f0;
}

@media (max-width: 640px) {
  .logo-row {
    gap: 1.5rem;
  }
}

.bnr-main-innr-bnr section {
  padding: 0;
}
