:root {
  --primary-dark: #7A1C1C;
  --primary: #F97316;
  --secondary: #FFD700;
  --accent: #FFC107;

  --bg-dark: #000000;
  --bg-light: #FFF5E6;
  --bg-gradient: linear-gradient(135deg, #F97316, #FFD700);

  --text-dark: #222222;
  --text-light: #FFFFFF;

  --border-color: #F5C542;
  --hover-color: #E85D04;
  --section-padding: 50px 0px
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

/* loader */
.preloader {
  background: var(--primary);
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 12999;
  display: flex;
  justify-content: center;
  align-items: center;
}


.logo-loader img {
  width: 180px;
  animation: logoBlink 1.8s ease-in-out infinite;
}


@keyframes logoBlink {

  0% {
    opacity: 0.3;
    transform: scale(0.9);
    filter: drop-shadow(0 0 0px #fff);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px #fff);
  }

  100% {
    opacity: 0.3;
    transform: scale(0.9);
    filter: drop-shadow(0 0 0px #fff);
  }

}

.preloader h2 {
  color: var(--text-light);
  font-size: 50px;
}

.preloader span {
  color: var(--primary-dark);
}


/* loader end */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all .3s ease;
}


.bottom-mobile-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 2500;
  display: none;
}

.bottom-mobile-menu a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.bottom-admission {
  background: #ffc107;
  color: #000;
}

.bottom-whatsapp {
  background: #25D366;
  color: #fff;
}

.bottom-mobile-menu i {
  font-size: 18px;
}

.responsive-header {
  padding: 6px 0px;
  display: none;

}



.offcanvas-body,
.offcanvas-header {
  background-color: var(--bg-light);
}

.res-menu i {
  font-size: 22px;
}

.res-menu .btn {
  border: none;
  box-shadow: none;
  outline: none;
}

.res-menu .btn:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

.btn-close {
  box-shadow: none;
  outline: none;
}

.btn-close:focus {
  box-shadow: none;
  outline: none;
}

.responsive-header-flex {
  display: flex !important;
  align-items: center;
  justify-content: space-between !important;
}

.offcanvas-header .btn-close {
  opacity: 1;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  transition: all .3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary);
}

.navbar-nav .nav-link.active {
  color: var(--hover-color);
  font-weight: 600;
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--bg-gradient);
  position: absolute;
  bottom: -5px;
  left: 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: var(--bg-gradient);
  transition: width .4s ease;
  border-radius: 20px;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-brand img {
  width: 80px;
  object-fit: cover;
}

.header-button a {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.header-button a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  color: var(--accent);
}

.top-ber-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-ber {
  background-color: var(--text-dark);
  padding: 10px 0px;
}

.top-ber p {
  color: var(--text-light);
}

.nav-item {
  margin-right: 20px;
}

.social-icon {
  display: flex;
  gap: 6px;
  align-items: center;
}

.social-icon i {
  color: var(--text-light);
  font-size: 26px;
}

/* whatsap */
.whatsapp-admission-btn-flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.addmission-btn-body .header-button a {
  writing-mode: vertical-rl;
  /* text vertical */
  text-orientation: mixed;
  background: var(--primary);
  color: #fff;
  padding: 15px 10px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  display: none;
}

/* Button */

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.whatsapp-btn a {
  color: var(--text-light);
}

/* Pulse Animation */

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* banner */

.carousel-indicators [data-bs-target] {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.carousel-control-prev-icon {
  background-image: none;
}

.carousel-control-next-icon {
  background-image: none;
}

.carousel-item {
  position: relative;
  height: 85vh;

}

.carousel-item .banner-content {
  position: absolute;
  top: 32%;
  z-index: 50;


}

.banner-content h4 {
  color: var(--text-light);
  letter-spacing: 1px;
}

.banner-content span {
  color: var(--secondary);
}

.banner-content h1 {
  color: var(--secondary);
  letter-spacing: 1px;
  padding: 12px 0px;
  font-size: 55px;
}

.banner-content p {
  color: var(--text-light);
}

.banner-content .para {
  max-width: 600px;
}

.ph-bg {
  display: none;
}

.banner-button-flex {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 25px 0px;
}

.contat-btn a {
  background: var(--secondary);
  color: var(--text-dark);
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.contat-btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 201, 7, 0.714);

}

.addmission-btn a {
  background: var(--bg-light) !important;
  color: var(--text-dark);
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.addmission-btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(254, 223, 201, 0.894) !important;

}

.para {
  padding: 0px 2px;
}

/* about us */
.about-abacus {
  padding: var(--section-padding);
  background: var(--text-light);
  position: relative;
  overflow: visible;
}

.about-abacus .about-cornner-image {
  position: absolute;
  bottom: -20px;
  left: 20px;
  z-index: 50;
}

.about-cornner-image img {
  width: 250px;
  max-width: 100%;
  height: 100%;
}

/* Image */

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  transition: 0.6s;
}

.about-image:hover img {
  transform: scale(1.05);
}


/* Content */

.about-tag {
  display: inline-block;
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-content h2 span {
  color: var(--primary);
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}


/* Highlights */

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: 0.3s;
}

.highlight i {
  color: var(--primary);
  font-size: 18px;
}

.highlight span {
  font-weight: 500;
}

.highlight:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-4px);
}

.highlight:hover i {
  color: #fff;
}

/* gallery */

.gallery-section {
  padding: var(--section-padding);
  background: #f8fafc;
  position: relative;
  /* z-index: 50; */
}

.gallery-section .gallery-cornner-image {
  position: absolute;
  top: -35px;
  right: 20px;
}

.gallery-section .gallery-cornner-image img {
  width: 250px;
}

.gallery-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-section .section-title span {
  color: var(--primary);
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
  font-size: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* .gallery-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
} */

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

/* overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.542),
      rgba(0, 0, 0, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

/* text */
.gallery-overlay h5 {
  color: #ffcc00;
  font-size: 20px;
  font-weight: 600;
  transform: translateY(20px);
  transition: 0.4s;
}

/* hover effect */
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay h5 {
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* join our courses */
.join-course {
  padding: var(--section-padding);
  background: #f8fbff;
}

.course-img img {
  width: 100%;
  border-radius: 15px;
  /* box-shadow:0 10px 25px rgba(0,0,0,0.1); */
  transition: 0.4s;
}

.course-img img:hover {
  transform: scale(1.05);
}

.course-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.course-content span {
  color: var(--primary);
}

.course-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.btn-admission {
  display: inline-block;
  padding: 12px 30px;
  background: #ff6b00;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-admission:hover {
  background: var(--hover-color);
  transform: translateY(-3px);
}

/* testimonial */
.testimonial-section {
  padding: 80px 0;
  background: #f8fafc;
  text-align: center;
}

.testimonial-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonial-section .section-title span {
  color: var(--primary);
}

.testimonial-section .section-title p {
  color: #666;
  margin-bottom: 50px;
}

.testimonial-section .testimonial-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: .4s;
  height: 100%;

}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 15px;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 18px;
  margin: 0;
}

.testimonial-card span {
  font-size: 14px;
  color: var(--primary);
}

.testimonial-section .retting {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.retting i {
  color: var(--primary-dark);
}

.retting {
  padding-bottom: 8px;
}

/* shape */
.shape-design {
  position: relative;
  margin-top: 6%;

}

.shape-design .custom-shape-divider-bottom-1772777258 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.shape-design .custom-shape-divider-bottom-1772777258 svg {
  position: relative;
  display: block;
  width: calc(131% + 1.3px);
  height: 100px;
  transform: rotateY(180deg);
}

.shape-design .custom-shape-divider-bottom-1772777258 .shape-fill {
  fill: var(--text-dark);
}

/* about-banner */
.about-banner {
  background-image: url(../images/about.webp);
  background-position: center;
  background-size: cover;
  height: 60vh;
  display: flex;
  align-items: center;
}

.about-content-heading {
  text-align: center;
}

.about-content-heading h2 {
  font-size: 70px;
  color: var(--text-light);
  padding: 15px 0px;
}

.about-para {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.about-para p {
  color: var(--text-light);
}

/* =========================================
   ADMISSION PAGE STYLES
   ========================================= */

.admission-hero {
  background-image: url(../images/addmission.webp);
  background-position: center;
  background-size: cover;
  height: 60vh;
  color: var(--text-light);
  text-align: center;
  display: flex;
  align-items: center;
  animation: fadeUp 1s ease;
}

.admission-hero h2 {
  font-size: 72px;
  margin-bottom: 20px;
}

.admission-hero p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
}

.benefits {
  padding: 80px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: .3s;
  border: 1px solid var(--border-color);
  height: 100%;
}

.benefit-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.admission-form-section {
  padding: 80px 0;
  background: #fdfdfd;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(122, 28, 28, 0.05) 0%, transparent 20%);
}

.form-box {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(245, 197, 66, 0.3);
}

.form-box h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
}

.form-title {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  margin: 40px 0 25px 0;
  display: flex;
  align-items: center;
}

.form-label-custom {
  font-weight: 600;
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  display: block;
}

.form-control-custom {
  height: 50px;
  border: 1.5px solid #eee;
  padding: 10px 18px;
  font-size: 15px;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
  outline: none;
}

.photo-upload-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.upload-box {
  width: 150px;
  height: 180px;
  border: 2px dashed #ddd;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  background: #fafafa;
  overflow: hidden;
  position: relative;
}

.upload-box:hover {
  border-color: var(--primary);
  background: #fff;
}

.upload-box i {
  font-size: 30px;
  color: #bbb;
  margin-bottom: 10px;
}

.upload-box span {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

.upload-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
  background: white;
}

.signature-box {
  width: 100%;
  max-width: 300px;
  height: 120px;
}

.required-star {
  color: #ff0000;
  margin-left: 3px;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  border: none;
  padding: 15px 45px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 0 10px 25px rgba(122, 28, 28, 0.2);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 197, 58, 0.3);
  border: none;
  color: #000;
  background: #ffc107;
}

/* Fix for badge overflow */
.badge.text-dark {
  white-space: normal !important;
  max-width: 100%;
  text-align: center;
}

/* contact page */
.contact-hero {
  background-image: url(../images/contact.webp);
  background-position: center;
  background-size: cover;
  height: 60vh;
  color: var(--text-light);
  text-align: center;
  display: flex;
  align-items: center;

  animation: fadeUp 1s ease;
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 100px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.03);
  transform: rotate(25deg);
}

.contact-hero h2 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.contact-hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

.contact-form-section {
  padding: 100px 0;
  background: #f8f9fa;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.contact-container-custom {
  background: white;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.contact-form-side {
  flex: 1.5;
  padding: 60px;
  min-width: 350px;
}

.contact-info-side {
  flex: 1;
  background: var(--primary-dark);
  padding: 60px;
  color: white;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-form-side h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.contact-form-side p {
  color: #666;
  margin-bottom: 40px;
}

.contact-info-side h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--secondary);
  flex-shrink: 0;
}

.contact-method-text h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-method-text p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

.whatsapp-card {
  background: rgba(37, 211, 102, 0.1);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(37, 211, 102, 0.2);
  margin-top: 40px;
}

.whatsapp-card h6 {
  color: #25D366;
  font-weight: 700;
  margin-bottom: 10px;
}

.btn-whatsapp-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 15px;
}

.btn-whatsapp-custom:hover {
  background: #1eb954;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
  color: white;
}

.form-group-custom {
  margin-bottom: 25px;
}

.label-custom {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.input-custom {
  width: 100%;
  height: 55px;
  background: #f9f9f9;
  border: 1.5px solid #eee;
  border-radius: 12px;
  padding: 0 20px;
  font-size: 15px;
  transition: all 0.3s;
}

.input-custom:focus {
  background: white;
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.05);
}

.textarea-custom {
  height: 150px;
  padding: 20px;
  resize: none;
}

.btn-contact-submit {
  width: 100%;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(122, 28, 28, 0.2);
}

.btn-contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(122, 28, 28, 0.3);
}

.map-section {
  height: 450px;
  width: 100%;
  filter: grayscale(10%) contrast(110%);
}



@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* course */

.course-banner {

  background-image: url(../images/courses.webp);
  background-position: center;
  background-size: cover;
  height: 60vh;
  color: var(--text-light);
  text-align: center;
  display: flex;
  align-items: center;

  animation: fadeUp 1s ease;

}

.course-banner-content h2 {


  font-size: 72px;

  font-weight: 700;

  margin-bottom: 20px;

}

.course-banner-content p {

  max-width: 650px;

  margin: auto;

  font-size: 17px;

  line-height: 1.7;

  margin-bottom: 30px;

  color: #ddd;

}



.banner-buttons {

  display: flex;

  justify-content: center;

  gap: 15px;

  flex-wrap: wrap;

}

.banner-btn {

  background: linear-gradient(45deg, #ffb400, #ff7a00);

  padding: 12px 30px;

  border-radius: 30px;

  color: #fff;

  font-weight: 600;

  text-decoration: none;

  transition: 0.4s;

}

.banner-btn:hover {

  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

}







.course-area {
  padding: 100px 0;
  background: linear-gradient(120deg, #f7f8fc, #eef1f6);
}

.course-box {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 100px;
  position: relative;
}

.reverse {
  flex-direction: row-reverse;
}


.course-image {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.course-image img {
  width: 100%;
  border-radius: 20px;
  transition: 0.6s;
}

.course-image:hover img {
  transform: scale(1.1) rotate(2deg);
}



.course-details {
  flex: 1;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.course-details:hover {
  transform: translateY(-10px);
}



.course-tag {
  background: linear-gradient(45deg, #ffb400, #ff7a00);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 10px;
}



.course-details h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}



.course-details p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}



.course-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.course-details ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}

.course-details ul li::before {
  content: "✔";
  color: #ffb400;
  margin-right: 8px;
}



.course-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, #ffb400, #ff7a00);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.4s;
}

.course-btn:hover {
  transform: scale(1.05);
  background: var(--primary-dark) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* gallery */
.gallery-banner {

  background: url("../images/gallery.webp");
  background-position: center;
  background-size: cover;
  height: 60vh;
  color: var(--text-light);
  text-align: center;
  display: flex;
  align-items: center;
  animation: fadeUp 1s ease;

}



.gallery-banner h2 {

  font-size: 72px;

  margin-bottom: 15px;

  animation: fadeDown 1s ease;

}

.gallery-banner p {

  max-width: 650px;

  margin: auto;

  margin-bottom: 25px;

  line-height: 1.6;

  animation: fadeUp 1s ease;

}

.gallery-banne .gallery-btn {

  background: var(--secondary);

  color: var(--bg-dark);

  padding: 12px 28px;

  border-radius: 30px;

  text-decoration: none;

  font-weight: 600;

  transition: .3s;

}

.gallery-banne .gallery-btn:hover {

  background: var(--primary);

  color: white;

}

/* animation */

@keyframes fadeDown {

  from {

    opacity: 0;

    transform: translateY(-40px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}

@keyframes fadeUp {

  from {

    opacity: 0;

    transform: translateY(40px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}

/* responsive */

@media(max-width:768px) {

  .gallery-banner h1 {

    font-size: 32px;

  }

  .gallery-banner {

    height: 320px;

  }

}

/* examination */
.examination-banner {

  background-image: url(../images/examination-bg.webp);
  background-position: center;
  background-size: cover;
  height: 60vh;
  color: var(--text-light);
  text-align: center;
  display: flex;
  align-items: center;

  animation: fadeUp 1s ease;

}

.examination-banner h2 {


  font-size: 72px;
  line-height: 76px;

  font-weight: 700;

  margin-bottom: 20px;

}

.examination-banner p {

  max-width: 650px;

  margin: auto;

  font-size: 17px;

  line-height: 1.7;

  margin-bottom: 30px;

  color: #ddd;

}

.examination-form-section {
  padding: 70px 0;
  background: var(--bg-light);
}

.examination-form-section input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
}

.examination-form-section textarea {
  margin-top: 20px;
  height: 120px;
}

.examination-form-section input:focus {
  box-shadow: none !important;
}

.examination-form-section span {
  color: var(--primary);
}

.examination-form-section .form-box {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.examination-form-section .form-control {
  height: 45px;
  box-shadow: none;
  border: 1px solid var(--border-color);
}

.examination-form-section .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

/* Unified Professional Theme Button */
.btn-theme-submit {
  background: var(--bg-gradient);
  color: #fff !important;
  border: none;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 15px;
  cursor: pointer;
}

.btn-theme-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(122, 28, 28, 0.3);
  color: #fff !important;
}

.btn-theme-submit:active {
  transform: translateY(-1px);
}

.btn-theme-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.photo-box {
  width: 140px;
  height: 170px;
  border: 2px dashed var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: auto;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.photo-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.photo-box img.show-preview {
  display: block;
}

/* exam conformation */
.student-confirmation {
  padding: 80px 0;
  background: #fff5e6;
}

.confirm-img img {
  width: 78%;
  border-radius: 12px;
}

.confirm-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.confirm-content h2 span {
  color: var(--primary);
}

.confirm-content p {
  margin-bottom: 25px;
  color: #555;
}

.confirm-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.confirm-form input {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.confirm-form input:focus {
  border-color: var(--primary);
  outline: none;
}

.confirm-form button {
  background: var(--bg-gradient);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.confirm-form button:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
}

/* footer */
.footer {
  background: var(--text-dark);
  color: #fff;
  position: relative;
}

.footer-wave {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('https://svgshare.com/i/13yC.svg');
  background-size: cover;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 20px;
  position: relative;
  letter-spacing: 1px;
}

.footer-col h3::after {
  content: '';
  width: 40px;
  height: 3px;
  background: #f59e0b;
  display: block;
  margin-top: 6px;
  transform: translate(-50%, );
}

.footer-logo {
  font-size: 26px;
  font-weight: bold;
  color: #f59e0b;
  margin-bottom: 10px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #d1d5db;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 10px 0;
}

.footer-col ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

.footer-col ul li a::before {
  content: "";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f59e0b;
  padding-left: 10px;
}

.social {
  margin-top: 15px;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #334155;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.social a:hover {
  background: #f59e0b;
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #020617;
  font-size: 14px;
  color: #cbd5f5;

}

.footer-bottom a {
  color: var(--text-light);
}

.footer-bottom span {
  color: var(--secondary);
}

/* ==============================================================
   FANCYBOX 5 PROFESSIONAL THEME CUSTOMIZATION
   ============================================================== */
:root {
  /* Core Variables provided by Fancybox UI */
  --f-spinner-color-solid: var(--primary);
  --f-button-color: var(--text-light);
  --f-button-hover-color: var(--secondary);
  --f-button-bg: rgba(0, 0, 0, 0.4);
  --f-button-hover-bg: rgba(0, 0, 0, 0.8);
  --f-button-border-radius: 50%;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;

  /* Custom Main Background */
  --fancybox-bg: rgba(10, 10, 10, 0.85);
}

/* Fix Stacking Context & Backdrop Blur Effect */
.fancybox__container {
  z-index: 99999 !important;
  /* Ensure it stays above the sticky header */
}

.fancybox__backdrop {
  background: var(--fancybox-bg) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Toolbar Styling */
.fancybox__toolbar {
  padding: 15px 20px !important;
  background: transparent !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.fancybox__toolbar .f-button {
  margin: 0 4px;
}

/* Navigation Arrows (Prev/Next) */
.fancybox__nav .f-button {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  margin: 0 20px;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.5);
  transition: all 0.3s ease;
}

.fancybox__nav .f-button:hover {
  background: var(--hover-color) !important;
  transform: scale(1.1);
}

/* Overriding default nav positioning */
.fancybox__nav {
  --f-button-width: 90px;
  --f-button-height: 90px;
}

/* Image Captions */
.fancybox__caption {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem !important;
  letter-spacing: 0.5px;
  color: var(--secondary) !important;
  font-weight: 600;
  text-align: center;
  background: transparent !important;
  padding: 20px !important;
}

/* Thumbnails Footer */
.fancybox__thumb {
  border-radius: 8px;
  overflow: hidden;
}

.carousel__slide.is-nav-selected .fancybox__thumb::after {
  border-color: var(--primary) !important;
  border-width: 3px !important;
}

/* ==============================================================
   STUDENT EXAMINATION VERIFICATION STYLES
   ============================================================== */
.verify-page-body {
  background-color: var(--bg-light) !important;
}

.verification-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.verification-img-container img {
  max-height: 500px;
  border: 5px solid #fff;
}

.verification-card {
  border-top: 5px solid var(--primary) !important;
}

.verification-title {
  color: black;
}

.verification-title span {
  color: var(--primary);
}

.verification-label {
  color: var(--primary-dark);
  opacity: 0.8;
}

.verification-input-group {
  border-color: var(--border-color) !important;
}

.verification-input-group i {
  color: var(--primary);
}

.verification-input-group input {
  background: transparent !important;
}

.verification-text-highlight {
  color: var(--primary);
}

.verification-btn {
  background: var(--bg-gradient) !important;
  color: #fff !important;
  border: none !important;
  transition: 0.3s !important;
}

.verification-btn:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(122, 28, 28, 0.3) !important;
}