/* ===========================
   MaanTech - Main Stylesheet
   =========================== */

:root {
  --primary: #5b6af7;
  --primary-dark: #3a48d5;
  --primary-light: #c5ceff;
  --primary-bg: #eef0ff;
  --accent: #ff6b35;
  --text-dark: #1a1a2e;
  --text-mid: #5d5d69;
  --text-light: #7a7a9a;
  --white: #ffffff;
  --border: #e0e3ff;
  --section-bg: #f0f2ff;
  --font-main: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --shadow: 0 4px 20px rgba(91,106,247,0.15);
  --shadow-lg: 0 8px 40px rgba(91,106,247,0.2);
  --radius: 14px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-sm {
  padding: 8px 20px;
  font-size: 0.82rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
}
.btn-sm:hover { background: var(--primary-dark); }

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(91,106,247,0.1);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-main {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo-sub, .logo-tagline {
  font-size: 0.68rem;
  color: var(--text-light);
}
.logo-sub strong, .logo-tagline strong { color: var(--primary); }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-mid);
  letter-spacing: 0.5px;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 0.82rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; }

/* ========== ENQUIRE SIDEBAR ========== */
.enquire-sidebar {
  position: fixed;
  right: -56px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
  z-index: 999;
  transition: right 0.3s;
}
.enquire-sidebar:hover { right: -48px; }

/* ========== SECTION TITLES ========== */
.section-title {
  font-family: var(--font-main);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 10px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 680px;
  margin: 0 auto 40px;
}
.section-label {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.highlight { color: black; }

/* ========== HERO SECTION ========== */
.hero-section {
  background: var(--primary-bg);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
  margin-top: -50px;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: 0.4;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-text h1 {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.hero-tagline {
  font-size: 1.4rem;
  color: #5b6af7;
  margin-bottom: 6px;
  font-weight: 500;
  font-weight: bold;
}
.hero-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  min-height: 300px;
  object-fit: cover;
  /* background: var(--primary-light); */
}
.stat-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  font-family: var(--font-main);
  display: flex;
  flex-direction: column;
  min-width: 110px;
}
.stat-badge .num {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
}
.stat-badge span:last-child { font-size: 0.7rem; color: var(--text-light); }
.badge-1 { top: 10px; left: -20px; }
.badge-2 { top: 50%; left: -30px; transform: translateY(-50%); }
.badge-3 { bottom: 30px; left: 10px; }
.badge-4 { top: 20px; right: -10px; }

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.logo-img { width: 100%; height: 50px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--primary);
  padding: 20px 0;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.stat-item img { width: 36px; height: 36px; filter: brightness(10); }
.stat-item strong { display: block; font-size: 1.3rem; font-weight: 700; }
.stat-item span { font-size: 0.78rem; opacity: 0.85; }

/* ========== ABOUT SECTION ========== */
.about-section { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}
.tech-meets-badge {
  position: absolute;
  bottom: 20px; left: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  font-family: var(--font-main);
  font-weight: 700;
}
.tech-meets-badge .sub { font-size: 0.75rem; opacity: 0.85; }
.about-content h2 {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.about-content > p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 28px; }
.about-features { display: flex; flex-direction: column; gap: 18px; }
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  width: 42px; height: 42px;
  background: var(--primary-bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-item h4 {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.feature-item p { font-size: 0.85rem; color: var(--text-light); }

/* ========== UNIVERSITIES SECTION ========== */
.universities-section {
  background: var(--section-bg);
  padding: 70px 0;
}
.universities-slider { position: relative; }
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: var(--white);
  border: 2px solid var(--border);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--primary);
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.slider-btn:hover { background: var(--primary); color: var(--white); }
.slider-btn.prev { left: -20px; }
.slider-btn.next { right: -20px; }
.universities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 10px 30px;
}
.university-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(91,106,247,0.08);
  transition: all 0.3s;
}
.university-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.univ-logo { height: 60px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.univ-logo img { max-height: 55px; object-fit: contain; }
.logo-placeholder {
  width: 55px; height: 55px;
  background: var(--primary-bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); font-size: 1.1rem;
}
.university-card p { font-size: 0.78rem; font-weight: 600; color: var(--text-mid); }

/* ========== STEPS SECTION ========== */
.steps-section { padding: 70px 0; }
.steps-circle-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}
.steps-circle-container::before {
  content: '';
  position: absolute;
  top: 50%; left: 10%;
  width: 80%; height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-item {
  text-align: center;
  max-width: 160px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 80px; height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 16px rgba(91,106,247,0.3);
  color: var(--white);
}
.step-icon { font-size: 1.4rem; line-height: 1; }
.step-num { font-size: 0.7rem; font-weight: 700; opacity: 0.85; }
.step-title { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); line-height: 1.4; }

/* ========== B2B SECTION ========== */
.b2b-section {
  background: var(--section-bg);
  padding: 70px 0;
}
.b2b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.b2b-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.b2b-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.b2b-img {
  height: 180px;
  overflow: hidden;
  background: var(--primary-light);
}
.b2b-img img { width: 100%; height: 100%; object-fit: cover; }
.b2b-card h3 {
  font-family: var(--font-main);
  font-size: 1rem;
  padding: 16px 20px 8px;
  color: var(--primary);
}
.b2b-card ul { padding: 0 20px 20px; }
.b2b-card ul li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 8px;
}
.b2b-card ul li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.slider-dots { text-align: center; }
.dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active { background: var(--primary); }

/* ========== TEAM SECTION ========== */
.team-section { padding: 70px 0;
margin-top: -90px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--primary-bg);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}
/* .team-card:hover { background: var(--primary); color: var(--white); transform: translateY(-4px); } */
/* .team-card:hover h4, .team-card:hover p { color: var(--white); } */
.team-icon { font-size: 2.2rem; margin-bottom: 12px; }
.team-card h4 {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.team-card p { font-size: 0.82rem; color: var(--text-mid); }

/* ========== SMART WAY SECTION ========== */
.smartway-section {
  background: var(--section-bg);
  padding: 70px 0;
  margin-top: -90px;
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.journey-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(91,106,247,0.07);
  transition: all 0.3s;
  position: relative;
}
.journey-item::after {
  content: '→';
  position: absolute;
  right: -12px; top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.2rem;
  z-index: 1;
}
.journey-item:last-child::after { display: none; }
.journey-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.journey-icon { font-size: 1.8rem; margin-bottom: 8px; }
.journey-item h5 {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.journey-item p { font-size: 0.72rem; color: var(--text-light); line-height: 1.4; }

/* ========== BLOG SECTION ========== */
.blog-section { padding: 70px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  margin-top: -90px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img {
  height: 160px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--white);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 6px 12px;
  border-radius: 8px;
}
.blog-info { padding: 18px 20px; }
.blog-date, .blog-author, .blog-cat {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-right: 10px;
}
.blog-info h4 {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 10px 0 14px;
  color: var(--text-dark);
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
  background: var(--section-bg);
  padding: 70px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(91,106,247,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ========== PARTNER LOGOS STRIP ========== */
/* Partner Logos Section */
.partner-logos {
  background: var(--white, #ffffff);
  padding: 40px 0;
  border-top: 1px solid var(--border, #e5e7eb);
  border-bottom: 1px solid var(--border, #e5e7eb);
  position: relative;
  overflow: hidden;
  margin-top: -90px;
}

/* Logo Wrapper - Contains navigation buttons and scrollable strip */
.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 100%;
}

/* Navigation Buttons */
.nav-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--white, #ffffff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary, #2563eb);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.nav-btn:hover {
  background: var(--primary, #2563eb);
  color: var(--white, #ffffff);
  border-color: var(--primary, #2563eb);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.nav-btn:active {
  transform: scale(0.98);
}

/* Scrollable Logos Strip */
.logos-strip {
  flex: 1;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 16px 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary, #2563eb) var(--border, #e5e7eb);
}

/* Custom Scrollbar for Webkit Browsers */
.logos-strip::-webkit-scrollbar {
  height: 6px;
}

.logos-strip::-webkit-scrollbar-track {
  background: var(--border, #e5e7eb);
  border-radius: 10px;
}

.logos-strip::-webkit-scrollbar-thumb {
  background: var(--primary, #2563eb);
  border-radius: 10px;
}

.logos-strip::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark, #1d4ed8);
}

/* Individual Logo Cards */
.logo-card {
  flex-shrink: 0;
  width: 180px;
  background: var(--white, #ffffff);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--border, #e5e7eb);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary, #2563eb);
}

.logo-card img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.logo-card:hover img {
  transform: scale(1.05);
}

.logo-card p {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark, #374151);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.logo-card:hover p {
  color: var(--primary, #2563eb);
}

/* Hide scrollbar when not needed */
.logos-strip {
  -ms-overflow-style: none;
  scrollbar-width: thin;
}

/* Hide scrollbar on mobile but keep functionality */
@media (max-width: 768px) {
  .logos-strip::-webkit-scrollbar {
    height: 4px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .partner-logos {
    padding: 32px 0;
  }
  
  .logo-card {
    width: 160px;
    padding: 16px 12px;
  }
  
  .logo-card img {
    height: 70px;
  }
  
  .logo-card p {
    font-size: 0.75rem;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .partner-logos {
    padding: 24px 0;
  }
  
  .logo-wrapper {
    gap: 12px;
  }
  
  .logo-card {
    width: 140px;
    padding: 14px 10px;
  }
  
  .logo-card img {
    height: 60px;
  }
  
  .logo-card p {
    font-size: 0.7rem;
  }
  
  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .logos-strip {
    gap: 16px;
    padding: 12px 4px;
  }
}

@media (max-width: 480px) {
  .partner-logos {
    padding: 20px 0;
  }
  
  .logo-wrapper {
    gap: 8px;
  }
  
  .logo-card {
    width: 120px;
    padding: 12px 8px;
  }
  
  .logo-card img {
    height: 50px;
    margin-bottom: 8px;
  }
  
  .logo-card p {
    font-size: 0.65rem;
  }
  
  .nav-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  
  .logos-strip {
    gap: 12px;
    padding: 8px 2px;
  }
}

/* Optional: Add gradient fade effect on edges for better UX */
.logo-wrapper {
  position: relative;
}

.logo-wrapper::before,
.logo-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  pointer-events: none;
  z-index: 1;
}

.logo-wrapper::before {
  left: 50px;
  background: linear-gradient(to right, var(--white, #ffffff), transparent);
}

.logo-wrapper::after {
  right: 50px;
  background: linear-gradient(to left, var(--white, #ffffff), transparent);
}

/* Disable gradient fade on mobile */
@media (max-width: 768px) {
  .logo-wrapper::before,
  .logo-wrapper::after {
    display: none;
  }
}

/* Animation for new logos */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.logo-card {
  animation: slideIn 0.5s ease forwards;
}

.logo-card:nth-child(1) { animation-delay: 0s; }
.logo-card:nth-child(2) { animation-delay: 0.05s; }
.logo-card:nth-child(3) { animation-delay: 0.1s; }
.logo-card:nth-child(4) { animation-delay: 0.15s; }
.logo-card:nth-child(5) { animation-delay: 0.2s; }
.logo-card:nth-child(6) { animation-delay: 0.25s; }
.logo-card:nth-child(7) { animation-delay: 0.3s; }
.logo-card:nth-child(8) { animation-delay: 0.35s; }
/* ========== FOOTER ========== */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .footer-logo .logo-main {
  color: var(--primary-light);
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 800;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 10px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}
/* Container to give some side spacing so it looks like a floating bar   Stats bar */
.wrapper {
  padding: 40px 2%;
  background-color: #f0f4f8; /* Light background to make the bar pop */
}

.stats-bar {
  /* Using the exact deep blue gradient from your image */
  background: linear-gradient(to right, #2563eb, #1e40af, #1e3a8a);
  padding: 40px 20px;
  border-radius: 40px; /* This gives the rounded "capsule" look */
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  max-width: 1400px; /* Control how wide it stretches */
  margin: 0 auto;
}

.stats-grid {
  display: flex;
  justify-content: space-around; /* Distributes items evenly across the wide bar */
  align-items: center;
  flex-wrap: nowrap; /* Keeps them in one line for large screens */
}

.stat-item {
  color: white;
  text-align: center;
  flex: 1;
}

.stat-icon-wrapper {
  margin-bottom: 10px;
}

/* Specific styling for the circular student icon (the 50+) */
.icon-circle {
  background: white;
  color: #1e40af;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto;
}

.stat-content strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-content span {
  display: block;
  font-size: 1rem;
  opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .stats-bar {
    border-radius: 20px;
    padding: 20px;
  }
  .stats-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
  .stat-item {
    min-width: 45%;
  }
}
/* about us  */


.about-section {
    padding: 80px 5%;
    background-color: #f3f4ff; /* Light bluish background from image */
    font-family: 'Arial', sans-serif;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* --- IMAGE MOSAIC LAYOUT --- */
.image-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
    position: relative;
}

.image-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.img-tall {
    grid-row: 1 / span 2;
}

.img-small-top {
    height: 150px;
}

.img-square-bottom {
    height: 300px;
}

/* Rocket Badge */
.tech-roots-badge {
    position: absolute;
    bottom: -80px;
    left: 0px;
    background: white;
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.rocket-icon {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.tech-roots-badge span {
    font-weight: bold;
    color: #1e3a8a;
    font-size: 1.1rem;
}

/* --- CONTENT STYLING --- */
.main-heading {
    font-size: 2.5rem;
    color: #1e3a8a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.blue-text { color: #2563eb; }

.description {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #1e3a8a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #1e3a8a;
}

.feature-text p {
    margin: 0;
    color: #4b5563;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .main-heading { font-size: 2rem; }
}

.universities-section {
    padding: 60px 0;
    background-color: #f0f4ff;
    text-align: center;
    margin-top: -90px;
}

/* The Blue Pill Title */
.title-wrapper {
    display: inline-block;
    margin-bottom: 40px;
}

.section-title {
    background: #1e40af; /* Deep Blue */
    color: white;
    padding: 15px 50px;
    border-radius: 12px;
    font-size: 1.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 10px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: #cbd5e1;
    margin: 0 auto;
    border-radius: 10px;
}

/* Grid Layout: 5 columns per row as per image */
.universities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 0 40px;
}

/* Card Styling */
.university-card {
    background: white;
    border: 2px solid #2563eb; /* Blue border from image */
    border-radius: 20px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 180px;
    transition: transform 0.3s;
}

.university-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.univ-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.univ-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 15px;
}

/* Slider Buttons */
.universities-slider {
    position: relative;
    display: flex;
    align-items: center;
}

.slider-btn {
    background: white;
    border: 2px solid #2563eb;
    color: #2563eb;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    z-index: 10;
}

/* Pagination Dots */
.slider-pagination {
    margin-top: 30px;
}

.dot {
    height: 6px;
    width: 30px;
    background-color: #cbd5e1;
    display: inline-block;
    margin: 0 5px;
    border-radius: 10px;
}

.dot.active {
    background-color: #2563eb;
    width: 50px;
}

/* Responsive */
@media (max-width: 1024px) {
    .universities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .universities-grid { grid-template-columns: repeat(2, 1fr); }
}


/* Top ugc  */

.steps-section {
    padding: 80px 0;
    background-color: #f3f7ff;
    text-align: center;
    margin-top: -90px;
}

.title-pill h2 {
    background: #1e3a8a;
    color: white;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 12px;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.section-subtitle {
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
    font-size: 14px;
}

.steps-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 100px auto;
    height: 400px;
}

/* The blue wave line */
.step-wave {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 120px;
    transform: translateY(-50%);
    z-index: 1;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    height: 100%;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 18%;
    position: relative;
}

/* Circle Design */
.step-circle {
    width: 90px;
    height: 90px;
    background: white;
    border: 6px solid #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blue-fill { background: #cbd5e1; border-color: #2563eb; }
.blue-gradient { background: linear-gradient(to bottom, #3b82f6, #1e40af); border: none; color: white; }

.submit-text { font-size: 0.7rem; font-weight: bold; color: #1e3a8a; }
.check-icon { font-size: 2rem; font-weight: bold; }

/* Content Alternating (Top/Bottom) */
.step-content {
    background: white;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #2563eb;
    width: 180px;
    font-size: 0.8rem;
    position: absolute;
}

.step-content h4 { margin: 0 0 5px; font-size: 0.9rem; color: #1e3a8a; }
.step-content p { margin: 0; font-size: 0.7rem; color: #666; }

/* Position Logic */
.step-item.bottom { justify-content: flex-start; margin-top: 105px; }
.step-item.bottom .step-content { top: 120px; }

.step-item.top { justify-content: flex-end; margin-bottom: 105px; }
.step-item.top .step-content { bottom: 120px; }

/* Curved Arrows (Using borders as placeholders for the custom PNG arrows) */
.arrow-up, .arrow-down {
    position: absolute;
    width: 30px;
    height: 30px;
    border-left: 2px solid #000;
}
.arrow-up { top: 95px; border-top: 2px solid #000; border-radius: 10px 0 0 0; transform: rotate(-45deg); }
.arrow-down { bottom: 95px; border-bottom: 2px solid #000; border-radius: 0 0 0 10px; transform: rotate(45deg); }

.team-section {
    padding: 80px 0;
    background-color: #f8faff;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Title Styling */
.title-pill-wrapper {
    display: inline-block;
    margin-bottom: 15px;
}
.title-pill h2{
  /* background-color: linear-gradient(90deg, #3b6cf6, #1e3bb3); */
      background: linear-gradient(to right, #3b6cf6, #1e3bb3);

}

.section-title {
    background: linear-gradient(to right, #2563eb, #1e3a8a);
    color: white;
    padding: 12px 45px;
    border-radius: 12px;
    font-size: 2rem;
    margin-bottom: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.title-underline {
    width: 60px;
    height: 4px;
    background: #e2e8f0;
    margin: 0 auto;
    border-radius: 10px;
}

.section-subtitle {
    font-weight: 600;
    max-width: 700px;
    margin: 20px auto 50px;
    color: #1e293b;
    line-height: 1.5;
}

/* Grid Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Card Design */
.team-card {
    background: white;
    border: 1px solid #2563eb;
    border-radius: 20px;
    overflow: hidden; /* Important for the bottom corners */
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Top Image Part */
.card-image-wrapper {
    position: relative;
    height: 180px;
}

.card-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating White Icon Badge */
.floating-icon-badge {
    position: absolute;
    bottom: -15px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Content Part */
.card-body {
    padding: 30px 20px 20px;
}

.card-body h4 {
    margin: 0;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 700;
}

.sub-label {
    display: block;
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 5px 0 15px;
}

.card-body p {
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.6;
}

.card-footer-arrows {
    text-align: right;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; }
}

.smartway-section {
  padding: 60px 20px;
  background: #f4f6fb;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  background: linear-gradient(90deg, #3b6cf6, #1e3bb3);
  color: #fff;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 12px;
}

.section-subtitle {
  margin-top: 10px;
  color: #444;
}

/* STEP FLOW */
.journey-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0;
  gap: 10px;
}

.step {
  background: #2f5bea;
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 14px;
}

.arrow {
  font-size: 20px;
  color: #2f5bea;
}

/* FEATURE GRID */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature-card {
  background: linear-gradient(135deg, #2f5bea, #1e3bb3);
  color: white;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  opacity: 0.9;
}

.icon {
  font-size: 30px;
  background: white;
  color: #2f5bea;
  padding: 10px;
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }

  .journey-steps {
    flex-direction: column;
  }

  .arrow {
    display: none;
  }
}

.blog-section {
  padding: 70px 20px;
  background: #f4f6fb;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* TITLE */
.section-title {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 14px;
  background: linear-gradient(90deg, #3b6cf6, #1e3bb3);
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}

.section-subtitle {
  margin-top: 15px;
  max-width: 700px;
  margin-inline: auto;
  color: #333;
  letter-spacing: 1px;
}

/* GRID */
.blog-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: left;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.blog-img {
  height: 220px;
  overflow: hidden;
  border-bottom: 6px solid #2f5bea;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.blog-content {
  padding: 20px;
  position: relative;
}

/* DATE BADGE */
.blog-date {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #2f5bea;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 13px;
}

/* META */
.meta {
  margin-top: 10px;
  font-size: 14px;
  color: #1e3bb3;
  display: flex;
  gap: 15px;
}

.meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* TITLE */
.blog-content h4 {
  margin: 15px 0;
  font-size: 18px;
  color: #222;
}

/* BUTTON */
.read-btn {
  display: inline-block;
  background: #2f5bea;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.read-btn:hover {
  background: #1e3bb3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-section {
  padding: 80px 20px;
  background: #eef1fb;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  display: inline-block;
  padding: 14px 45px;
  border-radius: 14px;
  background: linear-gradient(90deg, #3b6cf6, #1e3bb3);
  color: #fff;
  font-size: 30px;
}

.section-subtitle {
  max-width: 700px;
  margin: 15px auto 40px;
  color: #222;
}

/* WRAPPER */
.gallery-wrapper {
  position: relative;
}

/* GRID EXACT */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 220px 220px 220px;
  gap: 25px;
}

/* EXACT POSITIONING */
.item1 { grid-column: 1; grid-row: 1; }
.item2 { grid-column: 2; grid-row: 1 / span 2; }
.item3 { grid-column: 3; grid-row: 1 / span 2; }
.item4 { grid-column: 1; grid-row: 2 / span 2; }
.item5 { grid-column: 2; grid-row: 3; }
.item6 { grid-column: 3; grid-row: 3; }

.item {
  border-radius: 25px;
  overflow: hidden;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NAV BUTTONS */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  line-height: 45px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav-btn.left { left: -25px; }
.nav-btn.right { right: -25px; }

/* LOGO SECTION */
.partner-logos {
  margin-top: -40px;
}

.logo-wrapper {
  position: relative;
}

.logos-strip {
  display: flex;
  gap: 20px;
  overflow: hidden;
}

.logo-card {
  min-width: 180px;
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.logo-card img {
  height: 50px;
  margin-bottom: 10px;
}

.logo-card p {
  font-size: 13px;
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .item {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 220px;
  }

  .nav-btn {
    display: none;
  }
}
.b2b-section {
  padding: 80px 20px;
  background: #f4f6fb;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-top: -15%;
}

.b2b-section .section-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.b2b-section .section-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
}

/* GRID FIX */
.b2b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* CARD DESIGN */
.b2b-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px 20px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.b2b-card:hover {
  transform: translateY(-8px);
}

/* IMAGE ALIGN */
.b2b-img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef1ff;
}

.b2b-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TITLE */
.b2b-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #222;
}

/* LIST */
.b2b-card ul {
  padding-left: 18px;
  margin: 0;
}

.b2b-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}

/* DOTS */
.slider-dots {
  margin-top: 30px;
}

.slider-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  background: #c5ceff;
}

.slider-dots .dot.active {
  background: #2f5bea;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .b2b-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .b2b-grid {
    grid-template-columns: 1fr;
  }

  .b2b-card {
    text-align: center;
  }

  .b2b-card ul {
    padding-left: 0;
    list-style: none;
  }
}

.partner-logos {
  padding: 60px 20px;
  background: #f4f6fb;
}

.logo-wrapper {
  position: relative;
}

/* ROW ALIGN */
.logos-strip {
  display: flex;
  flex-wrap: wrap;   /* 👈 row by row */
  justify-content: center;
  gap: 25px;
}

/* CARD */
.logo-card {
  width: 180px;
  background: #fff;
  border-radius: 15px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.logo-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.logo-card img {
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* TEXT */
.logo-card p {
  font-size: 13px;
  margin: 0;
}

/* BUTTONS */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav-btn.left { left: -20px; }
.nav-btn.right { right: -20px; }

/* MOBILE */
@media (max-width: 768px) {
  .logo-card {
    width: 140px;
  }

  .nav-btn {
    display: none;
  }
}