
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --ai-bg: #050b1f;
  --ai-card: #0c163a;
  --ai-primary: #00e5ff;
  --ai-secondary: #7c7cff;
  --ai-text: #e8ecff;
  --ai-muted: #9aa3c7;
}


/* ===== AI HEADER ===== */
.ai-header {
  background: rgba(5, 11, 31, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 1000;
}

/* Navbar */
.ai-navbar {
  padding: 16px 0;
}

/* Logo */
.ai-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
}

.ai-logo span {
  color: var(--ai-primary);
}

/* Links */
.ai-nav-link {
  color: var(--ai-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.ai-nav-link:hover {
  color: var(--ai-primary);
}

/* CTA Button */
.ai-enroll-btn {
  background: linear-gradient(135deg, var(--ai-primary), var(--ai-secondary));
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 22px;
  border: none;
}

/* ===== AI DROPDOWN MENU ===== */
.ai-dropdown {
    background: #0b1440;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 240px;
}

/* Dropdown Items */
.ai-dropdown-item {
    color: #b5baff;
    font-size: 14px;
    padding: 10px 18px;
    transition: all 0.3s ease;
}

.ai-dropdown-item:hover {
    background: rgba(0,229,255,0.1);
    color: #00e5ff;
}

/* Remove Bootstrap default arrow color */
.dropdown-toggle::after {
    margin-left: 6px;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
  color: var(--ai-primary);
}
.nav-link:focus, .nav-link:hover{
  color: var(--ai-primary);
}

/* Toggler */
.ai-toggler {
  border: none;
}

.ai-toggler .navbar-toggler-icon {
  filter: invert(1);
}
.ai-header.scrolled {
  background: rgba(5, 11, 31, 0.98);
}

/* ===== AI HERO ===== */
.ai-hero {
  position: relative;
  background: radial-gradient(circle at top, #0b1c4d, var(--ai-bg));
  overflow: hidden;
  
}

/* Background grid */
.ai-hero-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.03) 0,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 50px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.03) 0,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 50px
    );
  opacity: 0.2;
}

/* Text */
.ai-hero-title {
  font-size: clamp(35px, 6vw, 64px);
  font-weight: 800;
  color: var(--ai-text);
  line-height: 1.2;
}

.ai-hero-title span {
  color: var(--ai-primary);
}

.ai-hero-subtitle {
  font-size: 18px;
  color: var(--ai-muted);
  max-width: 520px;
  margin-top: 16px;
}

/* Buttons */
.ai-btn-primary {
  background: linear-gradient(135deg, var(--ai-primary), var(--ai-secondary));
  color: #000;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 700;
  border: none;
}

.ai-btn-outline {
  border: 2px solid var(--ai-primary);
  color: var(--ai-primary);
  padding: 14px 36px;
  border-radius: 40px;
  background: transparent;
  font-weight: 600;
}

/* Stats */
.ai-hero-stats strong {
  font-size: 22px;
  color: var(--ai-primary);
}

.ai-hero-stats span {
  display: block;
  font-size: 13px;
  color: var(--ai-muted);
}

/* ===== AI VISUAL ===== */
.ai-visual {
  position: relative;
  width: 260px;
  height: 260px;
  margin: auto;
}

.ai-core {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--ai-primary), var(--ai-secondary));
  border-radius: 50%;
  color: #000;
  font-weight: 800;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Rings */
.ai-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0,229,255,0.25);
  inset: 0;
}

.ai-ring.r1 { animation: pulse 6s infinite; }
.ai-ring.r2 { inset: 20px; animation: pulse 8s infinite; }
.ai-ring.r3 { inset: 40px; animation: pulse 10s infinite; }

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 0.6; }
}

/* ===== COURSES SECTION ===== */
.ai-courses {
  background: var(--ai-bg);
  padding: 120px 0;
}

.ai-section-title {
  color: var(--ai-primary);
  font-size: 36px;
  font-weight: 700;
}

.ai-section-subtitle {
  color: var(--ai-muted);
  max-width: 700px;
  margin: 14px auto 0;
  font-size: 16px;
}

/* ===== COURSE CARD ===== */
.ai-course-card {
  background: linear-gradient(180deg, var(--ai-card), #0b1440);
  border-radius: 22px;
  padding: 36px 26px;
  height: 100%;
  color: var(--ai-text);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ai-course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 90px rgba(0,229,255,0.18);
}

/* Highlight middle course */
.ai-course-card.highlight {
  outline: 2px solid var(--ai-primary);
}

/* Age Badge */
.age-badge {
  display: inline-block;
  background: rgba(0,229,255,0.15);
  color: var(--ai-primary);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

/* Text */
.ai-course-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.course-desc {
  font-size: 14px;
  color: var(--ai-muted);
  margin-bottom: 14px;
}

/* Bullet Points */
.course-points {
  padding-left: 18px;
  margin-bottom: 10px;
}

.course-points li {
  font-size: 14px;
  margin-bottom: 6px;
}

/* Button */
.ai-course-card .ai-btn-primary {
  background: linear-gradient(135deg, var(--ai-primary), var(--ai-secondary));
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  padding: 12px;
}
/* ===== WHY CHOOSE SECTION ===== */
.ai-why {
  background: linear-gradient(180deg, var(--ai-bg), #070f2f);
  padding: 80px 0;
}

/* Card */
.ai-why-card {
  background: linear-gradient(180deg, var(--ai-card), #0b1440);
  border-radius: 20px;
  padding: 34px 26px;
  height: 100%;
  color: var(--ai-text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(124,124,255,0.18);
}

/* Icon */
.ai-why-card i {
  font-size: 34px;
  color: var(--ai-primary);
  margin-bottom: 16px;
}

/* Title */
.ai-why-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Text */
.ai-why-card p {
  font-size: 14px;
  color: var(--ai-muted);
}

/* ===== FUTURE SECTION (AI STYLE) ===== */
.ai-future {
  background: linear-gradient(180deg, var(--ai-bg), #070f2f);
  padding: 80px 0;
}

/* Highlight text */
.ai-highlight {
  color: var(--ai-primary);
}

/* Abstract AI Visual */
.ai-future-visual {
  position: relative;
  width: 260px;
  height: 260px;
  margin: auto;
}
.ai-section-text{
    color:var(--ai-muted) ;
}

.ai-node {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--ai-primary);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(0,229,255,0.8);
  animation: aiPulse 3.5s infinite ease-in-out;
}

/* Individual timing for natural feel */
.ai-node.n1 { top: 20%; left: 30%; animation-delay: 0s; }
.ai-node.n2 { top: 60%; left: 20%; animation-delay: 0.8s; }
.ai-node.n3 { top: 40%; right: 25%; animation-delay: 1.4s; }
.ai-node.n4 { bottom: 20%; right: 30%; animation-delay: 2s; }

/* Pulse animation */
@keyframes aiPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

.ai-node {
  animation:
    aiPulse 3.5s infinite ease-in-out,
    aiFloat 8s infinite ease-in-out;
}

@keyframes aiFloat {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.2); }
  100% { transform: translateY(0) scale(1); }
}

/* ===== AI MISSION SECTION ===== */
.ai-mission {
  position: relative;
  background: linear-gradient(180deg, #050b1f, #030815);
  padding: 140px 0;
  overflow: hidden;
}

/* Subtle background overlay */
.ai-mission-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0,229,255,0.08), transparent 60%);
}

/* Title */
.ai-mission-title {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.ai-mission-title span {
  color: var(--ai-primary);
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* Text */
.ai-mission-text {
  font-size: 17px;
  color: var(--ai-muted);
  max-width: 820px;
  margin: auto;
  line-height: 1.7;
}
.ai-signal {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--ai-primary);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0,229,255,0.8);
  animation: aiPulse 3s infinite ease-in-out;
}

.ai-signal.s1 { top: 30%; left: 15%; }
.ai-signal.s2 { bottom: 25%; right: 20%; animation-delay: 1s; }
.ai-signal.s3 { top: 45%; right: 35%; animation-delay: 2s; }

/* ===== WHO CAN JOIN SECTION ===== */
.ai-who-can-join {
  background: linear-gradient(180deg, #050b1f, #070f2f);
  padding: 80px 0;
}

/* Card */
.ai-join-card {
  background: linear-gradient(180deg, var(--ai-card), #0b1440);
  border-radius: 22px;
  padding: 36px 24px;
  height: 100%;
  text-align: center;
  color: var(--ai-text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-join-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,229,255,0.18);
}

/* Icon */
.ai-join-card i {
  font-size: 36px;
  color: var(--ai-primary);
  margin-bottom: 18px;
}

/* Title */
.ai-join-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Text */
.ai-join-card p {
  font-size: 14px;
  color: var(--ai-muted);
  line-height: 1.6;
}
.ai-join-card:hover i {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* ===== LOCATION SECTION ===== */
.ai-locations {
  background: linear-gradient(180deg, #050b1f, #070f2f);
  padding: 80px 0;
}

/* Card */
.ai-location-card {
  background: linear-gradient(180deg, var(--ai-card), #0b1440);
  border-radius: 22px;
  overflow: hidden;
  text-align: center;
  color: var(--ai-text);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ai-location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,229,255,0.18);
}

/* Image */
.location-img {
  height: 260px;
  overflow: hidden;
}

.location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ai-location-card:hover img {
  transform: scale(1.08);
}

/* Text */
.ai-location-card h5 {
  font-size: 20px;
  font-weight: 700;
  margin: 16px 0 6px;
}

.location-status {
  display: inline-block;
  font-size: 13px;
  color: var(--ai-primary);
  margin-bottom: 16px;
}
.ai-location-card:hover {
  outline: 1px solid rgba(0,229,255,0.4);
}


/* Swiper spacing */
/* REQUIRED FOR SWIPER */
.swiper {
  width: 100%;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  height: auto;
}

.locationSwiper {
  padding: 20px 0 60px;
}

.swiper-slide {
  height: auto;
}

/* Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: var(--ai-primary);
}

/* ===== FRANCHISE SECTION ===== */
.ai-franchise {
  background: linear-gradient(180deg, #070f2f, #050b1f);
  padding: 80px 0;
}

/* Badge */
.ai-badge {
  display: inline-block;
  background: rgba(0,229,255,0.15);
  color: var(--ai-primary);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

/* Points */
.ai-franchise-points {
  list-style: none;
  padding: 0;
}

.ai-franchise-points li {
  font-size: 15px;
  color: var(--ai-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-franchise-points i {
  color: var(--ai-primary);
}

/* Visual */
.ai-franchise-visual img {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.ai-franchise-visual img {
  transition: transform 0.6s ease;
}

.ai-franchise-visual img:hover {
  transform: scale(1.03);
}

/* ===== TESTIMONIALS SECTION ===== */
/* ===== TESTIMONIALS (AI THEME) ===== */
.ai-testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, #050b1f, #070f2f);
}

/* Avatar */
.ai-avatar {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.15); /* Surya gold tint */
  color: var(--ai-secondary);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Name */
.ai-name {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

/* Divider */
.ai-divider {
  width: 48px;
  height: 2px;
  background: var(--ai-primary);
  margin: 0 auto 18px;
  border-radius: 2px;
}

/* Quote */
.ai-quote {
  max-width: 420px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #d0d4ff;
}

.ai-quote strong {
  color: #ffffff;
  font-weight: 600;
}

/* ===== AUTH MODAL ===== */
.sv-auth-modal {
  border-radius: 18px;
  border: none;
  padding-top: 10px;
}

/* Title */
.auth-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--charcoal);
}

/* Subtitle */
.auth-subtitle {
  font-size: 14px;
  color: #666;
}

/* Input */
.auth-input {
  height: 48px;
  border-radius: 10px;
  font-size: 15px;
}

/* Primary Button */
.auth-primary-btn {
  background: linear-gradient(135deg, var(--ai-primary), var(--ai-secondary));
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  padding: 12px;
  border: none;
}

.auth-primary-btn:hover {
  opacity: 0.95;
}

/* Divider */
.auth-divider {
  text-align: center;
  position: relative;
}

.auth-divider span {
  background: #fff;
  padding: 0 12px;
  font-size: 13px;
  color: #999;
}

.auth-divider::before {
  content: "";
  height: 1px;
  background: #ddd;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: -1;
}

/* Social Buttons */
.auth-social {
  border-radius: 30px;
  border: 1px solid #ddd;
  font-weight: 600;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.auth-social.google i { color: #DB4437; }
.auth-social.facebook i { color: #1877F2; }
.auth-social.apple i { color: #000; }

/* Terms */
.auth-terms {
  font-size: 12px;
  color: #777;
  text-align: center;
}

.auth-terms a {
  color: var(--blue);
  text-decoration: none;
}


/* ===== FOOTER ===== */
.ai-footer {
  background: linear-gradient(180deg, #030815, #02040f);
  padding: 80px 0 40px;
  color: var(--ai-text);
}

/* Logo */
.footer-logo {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-logo span {
  color: var(--ai-primary);
}

/* Text */
.footer-text {
  font-size: 14px;
  color: var(--ai-muted);
  max-width: 320px;
}

/* Titles */
.footer-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links a {
  color: var(--ai-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ai-primary);
}

/* Social */
.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(0,229,255,0.15);
  color: var(--ai-primary);
  margin-right: 8px;
  transition: background 0.3s ease;
}

.footer-social a:hover {
  background: rgba(0,229,255,0.3);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ai-muted);
}

.footer-legal a {
  margin-left: 16px;
  color: var(--ai-muted);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--ai-primary);
}

/* ===== BREADCRUMB SECTION ===== */
.page-breadcrumb {
  padding: 150px 0 60px;
  background: radial-gradient(circle at top, #0b1c4d, var(--ai-bg));
}

.ai-breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 12px;
}

.ai-breadcrumb .breadcrumb-item a {
  color: #b5baff;
  text-decoration: none;
  font-size: 14px;
}

.ai-breadcrumb .breadcrumb-item a:hover {
  color:var(--ai-primary) ; 
}

.ai-breadcrumb .breadcrumb-item.active {
  color: #ffffff;
  font-size: 14px;
}

/* Divider */
.ai-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--ai-primary);
  padding: 0 8px;
}

/* Page Title */
.page-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--ai-primary);
  margin-top: 10px;
}

/* ===== ABOUT US (AI THEME) ===== */
.about-ai {
  padding: 100px 0;
  background: var(--ai-bg);
}

/* Badge */
.ai-section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--ai-primary), var(--ai-secondary));
  color: #000;
}

/* Title */
.ai-section-title {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.ai-section-title .ai-highlight {
  color: var(--ai-primary);
}

/* Text */
.ai-section-text {
  font-size: 17px;
  line-height: 1.8;
  color: #b5baff;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BLOG SECTION ===== */
.ai-blogs {
  padding: 120px 0;
  background: linear-gradient(180deg, #070f2f 0%, #050b1f 100%);
}

/* Subtext */
.ai-section-subtext {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  color: #b5baff;
}

/* Blog Card */
.ai-blog-card {
  background: #0b1440;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.15);
}

/* Image */
.ai-blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.ai-blog-content {
  padding: 24px;
}

.ai-blog-meta {
  display: inline-block;
  font-size: 12px;
  color: #00e5ff;
  margin-bottom: 8px;
}

.ai-blog-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.ai-blog-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #b5baff;
  margin-bottom: 16px;
}

/* Link */
.ai-blog-link {
  font-size: 14px;
  color: #00e5ff;
  text-decoration: none;
  font-weight: 500;
}

.ai-blog-link:hover {
  text-decoration: underline;
}

/* ===== CONTACT HERO ===== */
.ai-contact-hero {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, #050b1f 0%, #070f2f 100%);
}

/* ===== CONTACT SECTION ===== */
.ai-contact {
  padding: 100px 0;
  background: linear-gradient(180deg, #070f2f 0%, #050b1f 100%);
}

/* Card */
.ai-contact-card {
  background: #0b1440;
  border-radius: 20px;
  padding: 40px;
}

/* Inputs */
.ai-input {
  background: #050b1f;
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  padding: 12px 14px;
}

.ai-input::placeholder {
  color: #b5baff;
}

.ai-input:focus {
  border-color: #00e5ff;
  box-shadow: none;
  background: #050b1f;
  color: #ffffff;
}

/* Info Box */
.ai-contact-info {
  background: #0b1440;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}

.ai-contact-info h4 {
  margin-bottom: 20px;
  color: #ffffff;
}

.ai-contact-info ul {
  list-style: none;
  padding: 0;
}

.ai-contact-info ul li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  color: #b5baff;
  margin-bottom: 14px;
}

.ai-contact-info i {
  color: #00e5ff;
}

/* Note */
.ai-contact-note {
  font-size: 14px;
  color: #b5baff;
}

/* Map */
.ai-map {
  padding: 60px 0 100px;
  background: #050b1f;
}

/* ===== BLOG HERO ===== */
.ai-blog-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #050b1f 0%, #070f2f 100%);
}

/* ===== BLOG LIST ===== */
.ai-blog-list {
  padding: 100px 0;
  background: linear-gradient(180deg, #070f2f 0%, #050b1f 100%);
}

/* Blog Card */
.ai-blog-card {
  background: #0b1440;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.15);
}

/* Image */
.ai-blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.ai-blog-content {
  padding: 24px;
}

.ai-blog-meta {
  font-size: 12px;
  color: #00e5ff;
  margin-bottom: 6px;
  display: inline-block;
}

.ai-blog-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.ai-blog-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #b5baff;
  margin-bottom: 16px;
}

/* Link */
.ai-blog-link {
  font-size: 14px;
  color: #00e5ff;
  font-weight: 500;
  text-decoration: none;
}

.ai-blog-link:hover {
  text-decoration: underline;
}

/* ===== PAGINATION ===== */
.ai-pagination {
  padding: 40px 0 100px;
  background: #050b1f;
}

.ai-pagination .page-link {
  background: #0b1440;
  border: none;
  color: #ffffff;
  margin: 0 4px;
}

.ai-pagination .page-item.active .page-link {
  background: #00e5ff;
  color: #000;
}

.ai-pagination .page-link:hover {
  background: #00e5ff;
  color: #000;
}

/* ===== BLOG HEADER ===== */
.ai-blog-header {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, #050b1f, #070f2f);
}

.ai-blog-category {
  font-size: 13px;
  color: #00e5ff;
  margin-bottom: 10px;
  display: inline-block;
}

.ai-blog-title {
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.ai-blog-meta {
  margin-top: 16px;
  font-size: 14px;
  color: #b5baff;
}

/* Featured Image */
.ai-blog-featured {
  padding: 40px 0;
  background: #050b1f;
}

.ai-blog-featured-img {
  border-radius: 20px;
}

/* Content */
.ai-blog-content {
  padding: 30px 10px;
  background: #0b1440;
}

.ai-blog-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #b5baff;
  margin-bottom: 22px;
}

.ai-blog-content h3 {
  color: #ffffff;
  margin: 40px 0 16px;
}

.ai-blog-content blockquote {
  margin: 40px 0;
  padding-left: 20px;
  border-left: 3px solid #00e5ff;
  color: #ffffff;
  font-style: italic;
}

/* Author */
.ai-blog-author {
  padding: 60px 0;
  background: #070f2f;
}

.ai-author-box {
  display: flex;
  gap: 16px;
  background: #0b1440;
  padding: 24px;
  border-radius: 16px;
}

.ai-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #00e5ff;
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-author-box h6 {
  color: #ffffff;
  margin-bottom: 6px;
}

.ai-author-box p {
  font-size: 14px;
  color: #b5baff;
}

/* Related */
.ai-related-blogs {
  padding: 100px 0;
  background: linear-gradient(180deg, #070f2f, #050b1f);
}

.ai-course-hero{
  padding: 100px 0 60px;
  background: linear-gradient(180deg, #050b1f 0%, #070f2f 100%);
}
.ai-detail-card {
  background: #0b1440;
  padding: 24px;
  border-radius: 16px;
  height: 100%;
  transition: 0.3s ease;
}

.ai-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,229,255,0.15);
}

.ai-detail-card h6 {
  color: #ffffff;
  margin-bottom: 8px;
}

.ai-detail-card p {
  color: #b5baff;
  font-size: 14px;
}

.ai-course-detail{
  background: linear-gradient(180deg, var(--ai-bg), #070f2f);
  padding: 80px 0;
}

.ai-blog-list a{
  text-decoration: none;
}

/* ===== BREADCRUMB ===== */
.ai-breadcrumb-section {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #050b1f, #070f2f);
}

.ai-page-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
}

/* ===== POLICY ===== */
.ai-policy {
    padding: 100px 0;
    background: linear-gradient(180deg, #070f2f, #050b1f);
}

/* Content */
.ai-policy-content {
    max-width: 900px;
    margin: auto;
    color: #b5baff;
    font-size: 15px;
    line-height: 1.8;
}

/* Headings */
.ai-policy h3 {
    color: #00e5ff;
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
}

.ai-policy h4 {
    color: #ffffff;
    font-size: 18px;
    margin-top: 20px;
}

/* Paragraph */
.ai-policy p {
    margin-bottom: 14px;
}

/* List */
.ai-policy ul {
    padding-left: 18px;
}

.ai-policy ul li {
    margin-bottom: 6px;
}

/* Divider */
.ai-policy hr {
    margin: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}




/* Mobile Menu */
@media (max-width: 991px) {
  .ai-navbar {
    padding: 12px 0;
  }

  .ai-nav-link {
    padding: 10px 0;
  }
  
  .ai-hero{
      padding:100px 10px;
  }
  .ai-section-title{
      font-size:35px;
  }
  .page-breadcrumb{
      padding: 100px 0 20px;
  }
  
  .about-ai {
        padding: 40px 0;
    }
    
    .ai-courses {
        padding: 40px 0;
    }
    
    .ai-contact-hero {
        padding: 40px 0 20px;
    }
}
