* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
}



.top-bar {
  background-color: #f8f4df;
  padding: 0.95rem 2.8rem; 
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.auth-links {
  display: flex;
  align-items: center;
}

.auth-links a {
  text-decoration: none;
  color: #000;
  font-size: 1rem; 
  margin: 0 0.375rem; 
}

.auth-links span {
  color: #666;
}

@media (max-width: 1024px) {
  .top-bar {
    padding: 0.95rem 1.9rem;
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 0.65rem 1rem;
  }

  .auth-links a {
    font-size: 0.8rem;
    margin: 0 0.25rem;
  }
}


.navbar {
  background-color: #fcfbf3;
  padding: 0.6rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-bottom: 2px solid #1f8ac0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.logo {
  height: 4.7rem; 
  width: auto;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
}
.close-menu {
  display: none;
}
.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 0.4rem;
}

.nav-links a.active {
  background-color: #ffc72c;
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle {
  position: relative;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffc72c;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle.active .icon-hamburger {
  display: none;
}

.menu-toggle.active .icon-close {
  display: inline;
}

@media (max-width: 768px) {

  .navbar {
    padding: 0.6rem 1.2rem;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    color: #ffc72c;
  }

  .nav-links {
    position: absolute;          
    top: 100%;                 
    left: 0;
    width: 100%;
    background-color: #fcfbf3;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    padding: 1rem 1.5rem;
    gap: 1rem;

    border-bottom: 2px solid #1f8ac0;

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;

    z-index: 1000;
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-nav-top .logo {
    height: 3.2rem;
  }

  .close-menu {
    display: block;            
    font-size: 2rem;
    background: none;
    border: none;
    color: #ffc72c;
    cursor: pointer;
  }

  .mobile-divider {
    width: 100%;
    height: 3px;
    background-color: #ffc72c;
    margin: 0.8rem 0;
  }

  .nav-links a {
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    padding: 0.2rem 0;
    text-align: center;
  }

  .nav-links a.active {
    background: none;
    color: #ffc72c;
    font-weight: 600;
  }
}




.hero {
  background: linear-gradient(135deg, #0077b6 0%, #0096c7 50%, #00b4d8 100%) url("images/bg-1.png") no-repeat center;
  background-size: cover;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.85) 0%, rgba(0, 150, 199, 0.75) 50%, rgba(0, 180, 216, 0.65) 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #fff;
}

.hero-content {
  flex: 1 1 55%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 210, 63, 0.2);
  color: #ffd23f;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 2px solid #ffd23f;
  animation: pulse 2s infinite;
}

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

.hero-description {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 1.5rem 0;
  max-width: 90%;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.cta-primary {
  background: #ffd23f;
  color: #000;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 210, 63, 0.4);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 210, 63, 0.6);
}

.cta-secondary {
  background: transparent;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: #fff;
  color: #0796c8;
  transform: translateY(-3px);
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.95rem;
}

.feature-icon {
  background: #ffd23f;
  color: #0796c8;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

.hero-content h1 {
  font-family: "Baloo 2", cursive;
  font-size: 4.6rem; 
  color: #ffd23f;
  line-height: 1;
  font-weight: 800;
}

.subtitle {
  font-family: "Allura";
  font-size: 3rem; 
  margin: 1.25rem 0 1.6rem;
  color: #ffd23f;
}

.cta-btn {
  display: inline-block;
  background: #ffd23f;
  color: #000;
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
}

.hero-image {
  flex: 1 1 35%;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 1.5rem;
}

.sketch-border {
  position: absolute;
  inset: -12px;
  border-radius: 2rem;
}

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3.8rem;
  }

  .subtitle {
    font-size: 3.2rem;
  }

  .hero-inner {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content,
  .hero-image {
    flex: 1 1 100%;
  }

  .hero-image {
    max-width: 80%;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .subtitle {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-image {
    max-width: 95%;
  }

  .cta-btn {
    padding: 0.75rem 1.6rem;
  }
}



.why-choose {
  position: relative;
  background: #ffffff;
  padding: 6rem 0; 
  overflow: hidden;
}

.why-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/bg-section.png") no-repeat center;
  background-size: cover;
  opacity: 0.8;
  pointer-events: none;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.why-subtitle {
  font-size: 1rem; 
  margin-bottom: 0.6rem;
}

.why-title {
  font-family: 'Baloo Thambi', Arial, sans-serif;
  font-size: 2.75rem; 
  font-weight: normal;
  margin-bottom: 1rem;
}

.why-desc {
  max-width: 38rem;
  margin: 0 auto 3.75rem;
  font-size: 0.95rem;
  color: #444;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.feature h3 {
  font-family: 'Baloo Thambi', Arial, sans-serif;
  font-size: 1.35rem; 
  font-weight: normal;
  margin-top: 1.25rem;
}

.feature p {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: #555;
}
.img-wrap {
  width: 11.25rem; 
  height: 11.25rem;
  margin: 0 auto;
  border-radius: 50%;
  padding: 0.4rem;
}

.img-wrap img {
  width: 135%;
  height: 135%;
  border-radius: 50%;
  object-fit: contain;
}
.why-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}

.footer-text {
  text-align: left;
}

.footer-text h3 {
  font-family: 'Baloo Thambi', Arial, sans-serif;
  font-size: 1.55rem; 
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.footer-text p {
  color: #444;
}
@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .why-inner {
    padding: 0 2rem;
  }

  .why-choose::before {
    background-size: 120% auto;
  }
}
@media (max-width: 768px) {
  .why-choose {
    padding: 4rem 0;
  }

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

  .features {
    grid-template-columns: 1fr;
  }

  .why-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-text {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .img-wrap {
    width: 11.5rem;
    height: 11.5rem;
  }

  .why-desc {
    font-size: 0.9rem;
  }
}



.stats {
  background: #F7F4DF;
}

.stats-grid {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  background: #ffffff;
  border-top: 1px solid #d8d2c2;
  border-left: 1px solid #d8d2c2;
}

.stat-box,
.stat-image {
  border-right: 1px solid #D5D1C1;
  border-bottom: 1px solid #D5D1C1;
}

.stat-box {
  background: #F7F4DF;
  text-align: center;
  padding: 70px 30px 60px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 30px;
  border-radius: 50%;
  border: 2px solid #ffc72c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.stat-box h3 {

  font-family: 'Baloo Thambi', arial;
    font-size: 44px;
    font-weight: normal;
    text-transform: none;
  margin-bottom: 14px;
}

.stat-box p {
  font-size: 16px;
  line-height: 1.6;
}

.stat-image {
  background: #fff;
}

.stat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .stat-image {
    grid-column: span 2;
    min-height: 320px;
  }
}

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

  .stat-image {
    grid-column: span 1;
    min-height: 260px;
  }
}


.programs {
  background: #ffd248 url("images/bg-sec-3.png");
  padding: 6rem 0; 
  position: relative;
  overflow: hidden;
}

.programs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  text-align: center;
}

.programs-title {
  font-size: 2.25rem; 
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.programs-subtitle {
  max-width: 38rem;
  margin: 0 auto 3.75rem;
  font-size: 1rem;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.9rem; 
  margin-bottom: 5rem;
  align-items: stretch;
}

.program-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.program-img {
  width: 11.25rem;  
  height: 11.25rem;
  border-radius: 50%;
  padding: 0.5rem;
  margin-bottom: -2.5rem;
  z-index: 2;
}

.program-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.program-box {
  background: #fff;
  padding: 3.75rem 1.25rem 1.9rem;
  border-radius: 1rem;
  flex: 1;                
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.program-box h3 {
  font-size: 1.35rem; 
  margin-bottom: 0.6rem;
}

.program-box p {
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .program-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}
@media (max-width: 768px) {
  .programs {
    padding: 4.5rem 0;
  }

  .programs-title {
    font-size: 1.9rem;
  }

  .programs-subtitle {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .program-cards {
    grid-template-columns: 1fr;
  }

  .program-img {
    width: 9.5rem;
    height: 9.5rem;
  }
}
.testimonial {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
}

.testimonial-item {
  display: none;
}

.testimonial-item.active {
  display: block;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.9rem;
}

.testimonial-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.testimonial-author {
  font-size: 0.9rem;
}

.testimonial-dots {
  margin-top: 1.25rem;
}

.dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #000;
  opacity: 0.3;
  margin: 0 0.25rem;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
}


.passion {
  background: #ffffff url("images/bg-section.png");
  padding: 120px 0;
}

.passion-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  text-align: center;
}

.passion-title {
    font-family: 'Baloo Thambi', arial;
    font-size: 44px;
    font-weight: normal;
    text-transform: none;
  margin-bottom: 8px;
}

.passion-subtitle {
  font-size: 16px;
  margin-bottom: 60px;
}

.passion-image img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: auto;
}



.footer {
  background: #F7F4DF;
  padding: 5rem 0 2.5rem; 
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem; 
  border-bottom: 1px solid #ddd8c7;
  padding-bottom: 2.5rem;
}

.footer-col h3 {
  font-family: "Baloo Thambi", Arial, sans-serif;
  font-size: 1.9rem; 
}

.footer-col p {
  font-size: 0.95rem; 
  line-height: 1.8;
  margin-bottom: 0.6rem;
}

.footer-col a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #d59a00;
  text-decoration: none;
  font-size: 0.95rem;
}
.subscribe-form input {
  width: 100%;
  padding: 0.9rem;
  font-size: 0.9rem;
  border: 1px solid #ddd;
  margin-bottom: 0.9rem;
}

.subscribe-form button {
  width: 100%;
  padding: 0.9rem;
  background: #ffd23f;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

/* Form */
.form-container {
  max-width: 600px;
  margin: auto;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form button {
  background: #d81b60;
  color: white;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

/* WhatsApp */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Location */
.map-container {
  max-width: 900px;
  margin: auto;
}


@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-col {
    max-width: 420px;
    margin: 0 auto;
  }

  .subscribe-form input,
  .subscribe-form button {
    text-align: center;
  }
}

.footer-bottom {
  text-align: center;
  margin-top: 1.9rem;
  font-size: 0.9rem;
}



.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  will-change: opacity, transform;
}

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

.reveal-slow {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.6s ease, transform 1.6s ease;
}

.reveal-slow.show {
  opacity: 1;
  transform: translateY(0);
}

.pop {
  transform: translateY(60px);
}

.pop.animate {
  animation: smoothBounce 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes smoothBounce {
  0% {
    transform: translateY(60px);
  }

  35% {
    transform: translateY(-20px);
  }

  52% {
    transform: translateY(8px);
  }

  68% {
    transform: translateY(-10px);
  }

  80% {
    transform: translateY(4px);
  }

  90% {
    transform: translateY(-3px);
  }

  100% {
    transform: translateY(0);
  }
}

.reveal-from-top {
  opacity: 0;
  transform: translateY(-60px);
  transition:
    transform 1.2s cubic-bezier(0.25, 1, 0.35, 1),
    opacity 1.2s ease;
  will-change: transform, opacity;
}

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

/* NTT Page Styles */
.ntt-hero {
  background: linear-gradient(135deg, #0796c8 0%, #0F5E3A 100%);
  padding: 4rem 0;
  color: #fff;
}

.ntt-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.ntt-hero-content {
  flex: 1 1 55%;
}

.ntt-hero-content h1 {
  font-family: "Baloo 2", cursive;
  font-size: 3.5rem;
  color: #ffd23f;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ntt-subtitle {
  font-family: "Allura";
  font-size: 2.5rem;
  color: #ffd23f;
  margin-bottom: 1rem;
}

.ntt-tagline {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #fff;
}

.ntt-hero-image {
  flex: 1 1 35%;
}

.ntt-hero-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.ntt-why-choose,
.ntt-course-details,
.ntt-curriculum,
.ntt-careers,
.ntt-testimonials,
.ntt-admission,
.ntt-enquiry,
.ntt-faq {
  padding: 5rem 0;
}

.ntt-why-choose {
  background: #ffffff url("images/bg-section.png");
  background-size: cover;
}

.ntt-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  text-align: center;
}

.section-title {
  font-family: 'Baloo Thambi', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: normal;
  margin-bottom: 1rem;
  color: #333;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

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

.ntt-feature {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.ntt-feature:hover {
  transform: translateY(-10px);
}

.ntt-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.ntt-feature h3 {
  font-family: 'Baloo Thambi', Arial, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #0796c8;
}

.ntt-feature p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.ntt-course-details {
  background: #F7F4DF;
}

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

.course-info-card {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.course-info-card h3 {
  font-family: 'Baloo Thambi', Arial, sans-serif;
  font-size: 1.8rem;
  color: #0796c8;
  margin-bottom: 0.5rem;
}

.course-info-card p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.info-detail {
  font-size: 0.9rem;
  color: #666;
}

.ntt-curriculum {
  background: #fff;
}

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

.module-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 1rem;
  border-left: 5px solid #0796c8;
  text-align: left;
}

.module-number {
  display: inline-block;
  background: #0796c8;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.module-card h3 {
  font-family: 'Baloo Thambi', Arial, sans-serif;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

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

.module-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.module-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0796c8;
  font-weight: bold;
}

.ntt-careers {
  background: #ffd248;
}

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

.career-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-10px);
}

.career-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.career-card h3 {
  font-family: 'Baloo Thambi', Arial, sans-serif;
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 0.8rem;
}

.career-card p {
  font-size: 0.95rem;
  color: #666;
}

.ntt-testimonials {
  background: #fff url("images/bg-section.png");
  background-size: cover;
}

.ntt-admission {
  background: #F7F4DF;
}

.admission-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.step-card {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
  display: inline-block;
  background: #0796c8;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.8rem;
}

.step-card p {
  font-size: 0.9rem;
  color: #666;
}

.documents-required {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 600px;
  margin: 3rem auto 0;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.documents-required h3 {
  font-family: 'Baloo Thambi', Arial, sans-serif;
  font-size: 1.5rem;
  color: #0796c8;
  margin-bottom: 1rem;
  text-align: center;
}

.documents-required ul {
  list-style: none;
  padding: 0;
}

.documents-required ul li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: #555;
  border-bottom: 1px solid #eee;
}

.documents-required ul li:before {
  content: "📄";
  position: absolute;
  left: 0;
}

.ntt-enquiry {
  background: linear-gradient(135deg, #0796c8 0%, #0F5E3A 100%);
  color: #fff;
}

.ntt-enquiry .section-title,
.ntt-enquiry .section-desc {
  color: #fff;
}

.enquiry-form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.ntt-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ntt-form input,
.ntt-form select,
.ntt-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-family: "Rubik", sans-serif;
}

.ntt-form textarea {
  grid-column: 1 / -1;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: #ffd23f;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #ffb700;
}

.contact-info {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.contact-info h3 {
  font-family: 'Baloo Thambi', Arial, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ffd23f;
}

.contact-info p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quick-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.whatsapp-btn,
.call-btn {
  display: block;
  padding: 0.8rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 600;
  transition: background 0.3s ease;
}

.call-btn {
  background: #ffd23f;
  color: #333;
}

.whatsapp-btn:hover {
  background: #1da851;
}

.call-btn:hover {
  background: #ffb700;
}

.ntt-faq {
  background: #fff;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: left;
}

.faq-item {
  background: #f9f9f9;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  color: #0796c8;
  cursor: pointer;
  position: relative;
  padding-right: 3rem;
}

.faq-question:after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

/* Responsive Styles for NTT Page */
@media (max-width: 1024px) {
  .ntt-features,
  .career-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .course-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admission-steps {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  .ntt-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .ntt-hero-content h1 {
    font-size: 2.5rem;
  }

  .ntt-subtitle {
    font-size: 2rem;
  }

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

  .ntt-features,
  .curriculum-modules,
  .career-options {
    grid-template-columns: 1fr;
  }

  .course-info-grid {
    grid-template-columns: 1fr;
  }

  .admission-steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .ntt-hero,
  .ntt-why-choose,
  .ntt-course-details,
  .ntt-curriculum,
  .ntt-careers,
  .ntt-testimonials,
  .ntt-admission,
  .ntt-enquiry,
  .ntt-faq {
    padding: 3rem 0;
  }

  .ntt-inner {
    padding: 0 1.5rem;
  }

  .ntt-hero-content h1 {
    font-size: 2rem;
  }

  .ntt-subtitle {
    font-size: 1.5rem;
  }

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

/* Facilities Section */
.facilities {
  background: #f8f9fa;
  padding: 5rem 0;
}

.facilities-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  text-align: center;
}

.section-title {
  font-family: 'Baloo Thambi', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: normal;
  margin-bottom: 1rem;
  color: #333;
}

.section-desc {
  max-width: 38rem;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  color: #666;
}

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

.facility-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.facility-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.facility-card h3 {
  font-family: 'Baloo Thambi', Arial, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #0796c8;
}

.facility-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Enhanced Program Cards */
.program-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.program-card:hover {
  transform: translateY(-10px);
}

.program-card:hover .program-img img {
  transform: scale(1.1);
}

.program-img {
  overflow: hidden;
  border-radius: 1rem;
}

.program-img img {
  transition: transform 0.3s ease;
}

.program-box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.program-card:hover .program-box {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

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

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .cta-primary, .cta-secondary {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
  }

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

  .hero-feature-item {
    justify-content: center;
  }

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

  .section-desc {
    font-size: 0.95rem;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .facility-card {
    padding: 2rem 1.5rem;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.8rem;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

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

  .facilities-inner {
    padding: 0 1.5rem;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

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

.reveal-slow.show {
  opacity: 1;
  transform: translateY(0);
}

.pop {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease;
}

.pop.animate {
  opacity: 1;
  transform: scale(1);
}

.reveal-from-top {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease;
}

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

/* Improved Stats Section */
.stats {
  background: linear-gradient(135deg, #0796c8 0%, #1f8ac0 100%);
  padding: 4rem 0;
}

.stat-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Enhanced Footer */
.footer {
  background: #0F5E3A;
  color: #fff;
}

.footer a {
  color: #ffd23f;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #fff;
}

.subscribe-form input,
.subscribe-form button {
  transition: all 0.3s ease;
}

.subscribe-form input:focus {
  outline: none;
  border-color: #ffd23f;
  box-shadow: 0 0 10px rgba(255, 210, 63, 0.3);
}

.subscribe-form button:hover {
  background: #ffd23f;
  color: #0F5E3A;
  transform: translateY(-2px);
}

/* Admission Process Section */
.admission-process {
  background: linear-gradient(135deg, #0796c8 0%, #1f8ac0 100%);
  padding: 5rem 0;
  color: #fff;
}

.admission-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  text-align: center;
}

.admission-process .section-title {
  color: #fff;
}

.admission-process .section-desc {
  color: rgba(255, 255, 255, 0.9);
}

.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.process-step {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  flex: 1 1 0;
  min-width: 220px;
  max-width: 220px;
  height: 280px;
  position: relative;
  color: #333;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd23f;
  color: #0796c8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.step-icon {
  font-size: 3rem;
  margin: 1rem 0;
}

.process-step h3 {
  font-family: 'Baloo Thambi', Arial, sans-serif;
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem;
  color: #0796c8;
}

.process-step p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.process-arrow {
  font-size: 2rem;
  color: #ffd23f;
  font-weight: bold;
}

.admission-cta {
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .process-arrow {
    display: none;
  }
  
  .process-steps {
    flex-direction: column;
    align-items: stretch;
  }
  
  .process-step {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .admission-process {
    padding: 3rem 0;
  }
  
  .admission-inner {
    padding: 0 1.5rem;
  }
  
  .process-step {
    padding: 2rem 1.5rem;
  }
}
