@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0ea5e9;
  --primary-light: #06b6d4;
  --dark-bg: #0f172a;
  --darker-bg: #020617;
  --card-bg: #1e293b;
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #334155;
  --hover-glow: rgba(14, 165, 233, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Baloo Bhai 2", sans-serif;
  font-weight: 400;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.nav-brand img{
  cursor: pointer;
  height: 40px;
}



.nav-menu {
  display: flex;
  gap: 8px;
  align-items: center;
}
a:link {
  color:#ffffff;
  text-decoration: none;
}
a:visited{
  color:#ffffff;
  text-decoration: none;
}
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(14, 165, 233, 0.1);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  min-width: 200px;
  margin-top: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
}

/* Bridge the gap between button and dropdown to maintain hover */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  z-index: 1000;
}

.announcement-bar {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: rgba(14, 165, 233, 0.12);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.3);
  overflow: hidden;
  z-index: 999;
}

.announcement-track {
  display: flex;
  gap: 60px;
  padding: 10px 0;
  white-space: nowrap;
  animation: marquee-scroll 25s linear infinite;
}

.announcement-track span {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 10px rgba(14, 165, 233, 0.3);
}


.announcement-bar:hover .announcement-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .announcement-track span {
    font-size: 13px;
    color: #fff;
  }
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(52, 65, 85, 0.3);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: rgba(14, 165, 233, 0.1);
  color: var(--text-primary);
  padding-left: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background: rgba(30, 41, 59, 0.8);
    margin: 0;
    border: none;
    border-top: 1px solid var(--border-color);
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding-left: 32px;
    border: none;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  z-index: -2;
}

.partner-icon img{
  height: 66px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.3;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(14, 165, 233, 0.2);
  top: 10%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.glow-2 {
  width: 600px;
  height: 600px;
  background: rgba(6, 182, 212, 0.2);
  bottom: 10%;
  right: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 30px;
  font-size: 14px;
  color: #0ea5e9;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.gradient-text {
  display: block;
  background: linear-gradient(90deg, #0ea5e9 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}

.btn-secondary:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: #0ea5e9;
    color: #fff;
}


.btn-secondary {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(52, 65, 85, 0.5);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #0ea5e9;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Admission Categories Section */
.admission-categories {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.category-card {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(52, 65, 85, 0.5);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-card {
  cursor: pointer;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.category-card:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
  transform: translateY(-4px);
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon img{
  height: 28px;
  width: 28px;
}

.category-icon {
  width: 56px;
  height: 56px;
  background: rgba(14, 165, 233, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #0ea5e9;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background: rgba(14, 165, 233, 0.3);
  transform: scale(1.1);
}

.category-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.category-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.category-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(52, 65, 85, 0.3);
}

.programs-count {
  font-size: 13px;
  color: #0ea5e9;
  font-weight: 600;
}

.explore-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.explore-link:hover {
  color: #0ea5e9;
}

/* Admission Process Section */
.admission-process {
  padding: 80px 0;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-card {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(52, 65, 85, 0.5);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
}

.process-card:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
}

.step-number {
  position: absolute;
  top: -12px;
  right: 24px;
  font-size: 24px;
  font-weight: 700;
  color: #0ea5e9;
  background: var(--darker-bg);
  padding: 0 8px;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.process-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.process-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Partner Universities Section */
.partner-universities {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.partner-card {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(52, 65, 85, 0.5);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.partner-card:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(14, 165, 233, 0.5);
  transform: translateY(-4px);
}

.partner-icon {
  width: 85px;
  height: 85px;
  background: rgba(14, 165, 233, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #0ea5e9;
  transition: all 0.3s ease;
}

.partner-card:hover .partner-icon {
  transform: scale(1.15);
}

.partner-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.partner-type {
  font-size: 12px;
  color: var(--text-muted);
}

.view-all-center {
  text-align: center;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 40px 0;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.highlight-card {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(52, 65, 85, 0.5);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.highlight-card:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
  transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}

.highlight-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.highlight-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}


.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* Testimonials Section */

.testimonial-card:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
  transform: translateY(-4px);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
} 

.testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
}


.testimonials-track {
  display: flex;
  gap: 24px;
  animation: testimonial-marquee 30s linear infinite;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 30%;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(52, 65, 85, 0.5);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
}

@keyframes testimonial-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); } /* only scroll half, because we duplicate */
}

/* Marquee animation */
@keyframes testimonial-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Mobile: 1 card visible, horizontal scroll */
@media (max-width: 768px) {
  .testimonials-track {
    flex-wrap: nowrap;
    animation: testimonial-marquee 7s linear infinite;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}


.star {
  color: #fbbf24;
  font-size: 18px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(52, 65, 85, 0.3);
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(14, 165, 233, 0.3);
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.testimonial-author p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
  border-top: 1px solid rgba(52, 65, 85, 0.3);
}

.footer-content {
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-col a:hover {
  color: #0ea5e9;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(14, 165, 233, 0.2);
  border-color: #0ea5e9;
  color: #0ea5e9;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item a {
  display: block;
}

.contact-item p {
  font-size: 14px;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(52, 65, 85, 0.3);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
}
.social-icon img{
  height: 25px;
}
/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid,
  .process-grid,
  .highlights-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 14px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .dropdown-menu {
    min-width: 160px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }