:root {
  --primary-blue: #142c54;
  --primary-orange: #e67e22;
  --secondary-blue: #2980b9;
  --primary-white: #ffffff;
  --light-bg: #f5f7fa;
  --dark-text: #2c3e50;
}

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

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}


@media (min-width: 768px) {
    .col-md-22 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Top Bar */
.top-bar {
      position: absolute;
      background: transparent;
      padding: 15px 0;
      font-size: 13px;
      top: 0;
      width: 100%;
}

.top-bar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Navbar */
.navbar {
  background: rgba(0,0,0,0) !important;
  padding: 15px 0;
  position: absolute;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
      margin-top: 75px;
}

.navbar.scrolled {
  background: rgba(26, 95, 158, 0.95) !important;
  position: fixed;
  top: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    margin-top: 0px;
}

.nav-link {
  color: white !important;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  background: var(--primary-orange);
  padding: 8px 15px !important;
  border-radius: 4px;
}

/* Hero Section */
.hero {
  background: url('hero-bg.jpg') center/cover no-repeat;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
}

.hero-badge {
  display: inline-block;
  animation: pulse 2s infinite;
}

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

/* Enquiry Section */
.enquiry-section {
  background: var(--primary-blue);
  padding: 30px 0 0 0;
}
.whitebg{  background: var(--primary-white); padding: 60px 0px;}
.enquiry-title {
  color: white;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.enquiry-form {
  max-width: 600px;
  margin: 0 auto;
}

.enquiry-form .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  color: #767272  !important;
  padding: 12px 0;
  margin-bottom: 15px;
}

.enquiry-form .form-control::placeholder {
  color: #767272 ;
}


.enquiry-form .form-control:focus {
  background: transparent;
  border-color: var(--primary-orange);
  box-shadow: none;
  color: #000;
}

.submitbutton{background: #e67e22;
    color: #fff;
    padding: 7px 28px;
    border: white;}

/* Welcome Section */
.welcome-section {

}

.welcome-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: white;
  border-radius: 100% 100% 0 0;
}

.welcome-title {
  font-family: 'Dancing Script', cursive;
  font-size: 56px;
  color: var(--primary-orange);
  margin-bottom: 5px;
}

.welcome-subtitle {
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.welcome-student {
  position: absolute;
  right: 10%;
  bottom: 0;
  max-height: 350px;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: white;
}

.about-text {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

/* Awards Section - Enhanced */
.awards-section {
  padding: 0px 0 50px 0;
position: relative;
  background: linear-gradient(0deg,rgba(251, 251, 251, 1) 0%, rgba(255, 255, 255, 1) 100%);

}

.awards-section::after {
  content: "";
  position: absolute;
  bottom: -40px;       /* height of triangle */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 40px solid #FBFBFB; /* same as section bg */
}

.awards-title {
  text-align: center;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.awards-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.awards-divider .line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.awards-divider i {
  color: var(--primary-orange);
  font-size: 20px;
}

.award-item {
  text-align: center;
  padding: 20px 10px;
}

.award-badge {
  width: 130px;
  height: 130px;
  margin: 0 auto 15px;
  position: relative;
}

.award-wreath {
  width: 100%;
  height: 100%;
  position: relative;
}

.award-wreath::before,
.award-wreath::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  border: 3px solid var(--primary-orange);
  border-radius: 50% 50% 0 0;
  border-bottom: none;
}

.award-wreath::before {
  left: 0;
  transform: rotate(-15deg);
  transform-origin: right bottom;
}

.award-wreath::after {
  right: 0;
  transform: rotate(15deg);
  transform-origin: left bottom;
}

.award-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.award-inner i {
  font-size: 32px;
  color: white;
}

.award-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.award-item:hover .award-wreath::before,
.award-item:hover .award-wreath::after {
  border-color: var(--primary-blue);
}

.award-item:hover .award-inner {
  background: linear-gradient(135deg, var(--primary-blue), #2980b9);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Reasons Section */
.reasons-section {
  padding: 60px 0;
  background: white;
}

.polaroid-img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.reasons-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
}

.reasons-text {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.reason-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.reason-icon i {
  color: white;
  font-size: 12px;
}

.reason-text {
  color: #555;
  font-size: 14px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: url('images/TESTIMONIALS-bg.webp') center/cover no-repeat;
  position: relative;
}

.section-badge {
  background: var(--primary-blue);
  color: white;
  padding: 10px 40px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 40px;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
}



		.carousel-testimonial .item {
			padding: 30px 10px;
		}

		.carousel-testimonial .owl-nav {
			text-align: center;
		}
		.carousel-testimonial .owl-nav button.owl-next,
		.carousel-testimonial .owl-nav button.owl-prev {
		    padding: 0 12px !important;
		}
		.carousel-testimonial .owl-nav button {
			outline: none;
			padding: 0;
		}
		.carousel-testimonial .owl-nav button.owl-next span,
		.carousel-testimonial .owl-nav button.owl-prev span {
			display: block;
		    font-size: 40px;
		    width: 25px;
		    height: 25px;
		    vertical-align: 0px;
		    line-height: 16px;
		}
		.carousel-testimonial .owl-nav button.owl-next.disabled,
		.carousel-testimonial .owl-nav button.owl-prev.disabled {
			opacity: 0.5;
		}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 30px;
}

.testimonial-img {
  width: 150px !important;
  height: 150px !important;
  border-radius: 15px;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
}

.quote-icon {
  font-size: 40px;
  color: var(--primary-orange);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-text {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 16px;
}

.testimonial-role {
  color: #888;
  font-size: 13px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-nav button {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-blue);
  background: transparent;
  border-radius: 50%;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.testimonial-nav button:hover {
  background: var(--primary-blue);
  color: white;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testimonial-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots span.active {
  background: var(--primary-blue);
  width: 25px;
  border-radius: 5px;
}

/* Programs Section */
.programs-section {
  padding: 80px 0;
  background: url('images/banner-2.webp') no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.programs-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: white;
  border-radius: 0 0 100% 100%;
}

.programs-title {
  color: #142c54;
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.program-img-wrapper {

  margin: 0 auto 20px;

}



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

.program-name {
  color: white;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-desc {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  margin-top: 5px;
}

/* Gallery Section with LightGallery */




		.gallery .item {
			padding: 30px 10px;
		}

		.gallery .owl-nav {
			text-align: center;
		}
		.gallery .owl-nav button.owl-next,
		.gallery .owl-nav button.owl-prev {
		    padding: 0 12px !important;
		}
		.gallery .owl-nav button {
			outline: none;
			padding: 0;
		}
		.gallery .owl-nav button.owl-next span,
		.gallery .owl-nav button.owl-prev span {
			display: block;
		    font-size: 40px;
		    width: 25px;
		    height: 25px;
		    vertical-align: 0px;
		    line-height: 16px;
		}
		.gallery .owl-nav button.owl-next.disabled,
		.gallery .owl-nav button.owl-prev.disabled {
			opacity: 0.5;
		}






























.gallery-section {
  padding: 80px 0;
  background: white;
}

.gallery-title {
  text-align: center;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

#lightgallery {
  display: flex;
  flex-wrap: wrap;
}

#lightgallery .gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  display: block;
}

#lightgallery .gallery-item img {
  width: 100%;

  object-fit: cover;
  transition: transform 0.5s ease;
}

#lightgallery .gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 95, 158, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

#lightgallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 30px;
}

/* LightGallery Customization */
.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.9);
}

.lg-toolbar .lg-icon {
  color: white;
}

.lg-sub-html {
  background: rgba(26, 95, 158, 0.9);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-title {
  text-align: center;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.accordion-button {
  padding: 20px 25px;
  font-weight: 600;
  color: var(--dark-text);
  background: white;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-blue);
  color: white;
}

.accordion-button::after {
  filter: none;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  padding: 20px 25px;
  background: white;
  color: #666;
  line-height: 1.8;
}

/* Footer */
.footer {
  background: url('images/bny-footer_232_bg.png') center/cover no-repeat;
  padding: 60px 0 30px;
  color: #aaa;
}

.footer-logo {
  max-width: 80px;
  margin-bottom: 20px;
}

.footer h5 {
  color: white;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer p, .footer a {
  color: #aaa;
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-orange);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

/* Decorative Elements */
.origami-birds {
  position: absolute;
  left: 5%;
  top: 20%;
  max-width: 100px;
  opacity: 0.8;
}

.paper-boat {
  position: absolute;
  right: 5%;
  bottom: 10%;
  max-width: 120px;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background: var(--primary-blue);
}

/* Responsive */
@media (max-width: 768px) {
  .welcome-title {
    font-size: 36px;
  }

  .welcome-student {
    display: none;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .program-img-wrapper {
    width: 140px;
    height: 140px;
  }

  .gallery-title, .faq-title {
    font-size: 28px;
  }

  .award-badge {
    width: 100px;
    height: 100px;
  }

  .award-inner {
    width: 60px;
    height: 60px;
  }

  .award-inner i {
    font-size: 24px;
  }
}





		.awards .item {
			padding: 30px 10px;
		}

		.awards .owl-nav {
			text-align: center;
		}
		.awards .owl-nav button.owl-next,
		.awards .owl-nav button.owl-prev {
		    padding: 0 12px !important;
		}
		.awards .owl-nav button {
			outline: none;
			padding: 0;
		}
		.awards .owl-nav button.owl-next span,
		.awards .owl-nav button.owl-prev span {
			display: block;
		    font-size: 40px;
		    width: 25px;
		    height: 25px;
		    vertical-align: 0px;
		    line-height: 16px;
		}
		.awards .owl-nav button.owl-next.disabled,
		.awards .owl-nav button.owl-prev.disabled {
			opacity: 0.5;
		}
