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

:root {
  --bg-dark: #000000;
  --bg-darker: #0a0a0a;
  --bg-card: rgba(25, 25, 25, 0.6);
  --text-main: #f0f0f5;
  --text-muted: #a0a0b0;
  
  --primary: #fabc3f;
  --primary-glow: rgba(250, 188, 63, 0.4);
  --secondary: #f0af13;
  --secondary-glow: rgba(240, 175, 19, 0.4);
  --accent: #dc143c;
  
  --nav-height: 80px;
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Glassmorphism Navbar */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  gap: 1rem;
  z-index: 1000;
}

.nav-brand img {
  max-width: 200px;
  width: auto;
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links li a:hover::after, .nav-links li a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px var(--primary-glow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 188, 63, 0.6);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-darker);
  min-width: 200px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0.5rem 1.5rem;
}

.dropdown-menu li a {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.dropdown-menu li a:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: #000;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(250, 188, 63, 0.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--bg-dark);
}

.course-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--secondary);
  background: transparent;
  color: #fff;
  font-weight: 600;
  cursor: default;
  transition: all 0.3s ease;
}

.course-chip:hover {
  background: var(--secondary);
  color: var(--bg-dark);
}

.course-chip i,
.syllabus-list li i {
  width: 1.2rem;
  min-width: 1.2rem;
  text-align: center;
}

.fee-value {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-main);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.contact-section {
  background: radial-gradient(circle at top left, rgba(250, 188, 63, 0.08), transparent 35%), var(--bg-darker);
}

.contact-card {
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  border-radius: 2rem;
  padding: 2.5rem;
.}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.fee-value i {
  color: var(--primary);
  font-size: 1rem;
}

.contact-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.contact-content p {
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-note {
  margin-top: 1.5rem;
  color: var(--text-main);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid var(--glass-border);
  background: var(--bg-darker);
  color: var(--text-main);
  font-size: 1rem;
}

.form-group select {
  appearance: none;
}

.contact-form button {
  width: fit-content;
  padding: 1rem 2.5rem;
}

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Footer */
footer {
  background: var(--bg-darker);
  padding: 4rem 5% 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer .nav-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}

footer .nav-brand img {
  max-height: 110px;
  width: auto;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col p {
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.7;
}

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

.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  min-width: 0;
  word-break: break-word;
}

.footer-col ul li i {
  color: var(--secondary);
  min-width: 20px;
  margin-top: 0.15rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(250, 188, 63, 0.12);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: #000;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #00b894 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.26);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.whatsapp-float i {
  font-size: 1.15rem;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(37, 211, 102, 0.32);
  opacity: 0.98;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 2rem 2rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* Hero Section */
.hero {
  min-height: calc(100vh - var(--nav-height));
  margin-top: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.85));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.highlight {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

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

.hero-label {
  display: inline-block;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-copy {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-nav {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  z-index: 3;
  gap: 1rem;
}

.hero-slide-indicators {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-slide-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-slide-indicators button.active {
  background: var(--primary);
  transform: scale(1.2);
  box-shadow: 0 0 18px rgba(250, 188, 63, 0.35);
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero-arrow i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .hero-nav {
    bottom: 1.2rem;
    padding: 0 1rem;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }
}

/* Services / Courses Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 0 0 2rem 0;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px var(--primary-glow);
  border-color: var(--primary);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--glass-border);
}

.card-content {
  padding: 1.5rem 2rem 0;
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.card-link {
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  color: var(--secondary);
}

/* Why Us Section */
.why-us {
  background: var(--bg-darker);
  position: relative;
}

.why-us-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.why-us h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.why-us p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.features li {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.features li:hover {
  transform: translateX(10px);
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.features li i {
  color: var(--secondary);
  font-size: 1.5rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stats Section */
.stats-section {
  background: var(--bg-darker);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Marquee Section */
.recruiters-marquee-section {
  overflow: hidden;
  background: var(--bg-dark);
  padding: 4rem 0;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin-bottom: 1.5rem;
}

.marquee-container:last-child {
  margin-bottom: 0;
}

.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
}

.marquee-content.reverse {
  animation-direction: reverse;
}

.nav-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -1px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 55px; /* Adjust height based on actual logo aspect ratio */
  width: auto;
  transition: transform 0.3s ease;
}

.nav-brand:hover .brand-logo {
  transform: scale(1.1);
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 1rem 3rem;
  margin: 0 1rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  transition: color 0.3s, border-color 0.3s;
}

.marquee-content span:hover {
  color: var(--primary);
  border-color: var(--primary);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Testimonials */
.testimonials {
  background: radial-gradient(circle at top right, rgba(250, 188, 63, 0.1) 0%, var(--bg-darker) 60%);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px var(--primary-glow);
  border-color: var(--primary);
}

.stars {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.student-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
}

.avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  border: 2px solid var(--primary);
}

.student-info h4 {
  margin-bottom: 0.2rem;
}

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

/* Bottom CTA */
.bottom-cta {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+CjxwYXRoIGQ9Ik0wIDBoNDB2NDBIMHoiIGZpbGw9Im5vbmUiLz4KPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIi8+Cjwvc3ZnPg==');
  text-align: center;
  border-top: 1px solid var(--primary-glow);
  border-bottom: 1px solid var(--primary-glow);
  position: relative;
}

.bottom-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(250, 188, 63, 0.15), transparent);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.bottom-cta h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

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

/* Mobile Menu */
.hamburger {
  display: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.5rem;
}

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

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: min(320px, 100%);
    height: calc(100vh - var(--nav-height));
    background: rgba(10, 10, 15, 0.95);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
    transition: right 0.3s ease;
    border-left: 1px solid var(--glass-border);
    overflow-y: auto;
    z-index: 1050;
  }
  
  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 0.7rem 0;
    font-size: 1rem;
  }

  .nav-links .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .nav-links .dropdown-menu li {
    padding: 0.5rem 0;
  }

  .nav-links .dropdown > a {
    width: 100%;
  }
  
  .hamburger {
    display: block;
    z-index: 1100;
  }
  
  .nav-cta {
    display: none; /* Hide on mobile to save space */
  }
}
