
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Nunito",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1b67bd; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #1b7fbd; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1bbd36; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #1b41bd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2a30e1;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
marquee section
--------------------------------------------------------------*/
/* ===== STATIC INFO BAR ===== */
.info-bar {
  background: #020617;
  color: #ffffff;
  padding: 8px 0;
  font-size: 16px;
}

/* FLEX CONTAINER */
.info-bar .d-flex {
  flex-wrap: wrap; /* important for mobile */
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ===== LEFT PHONE & EMAIL ===== */
.info-left .info-item {
  color: #f8fafc;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.info-left .info-item i {
  color: #0d6efd;
  margin-right: 6px;
}

/* Hover effect */
.info-left .info-item:hover {
  color: #0d6efd;
}

/* Divider */
.divider {
  color: #64748b;
  margin: 0 6px;
}

/* ===== SOCIAL ICONS ===== */
.info-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: 0.3s;
}

/* Hover animation */
.info-social a:hover {
  background: #0d6efd;
  transform: translateY(-4px) scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .info-bar .d-flex {
    flex-direction: row; /* maintain row */
    justify-content: space-between; /* text left, icons right */
    flex-wrap: wrap; /* allow wrapping if needed */
  }

  .info-left {
    flex: 1 1 auto; /* text takes available space */
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
  }

  .info-social {
    flex: 0 0 auto; /* stay right side */
  }

  .divider {
    display: none; /* hide divider for clean mobile */
  }

  .info-bar {
    font-size: 14px;
    padding: 8px 10px;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* ===== HEADER ===== */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Header layout */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px; /* 🔥 chhota height */
}

/* Logo */
.logo-img {
  height: 50px; /* 🔥 logo chhota */
  
}

/* ===== NAV DESKTOP ===== */
.navmenu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.navmenu ul {
  display: flex;
  gap: 20px; /* 🔥 gap kam */
  list-style: none;
  margin: 0;
  padding: 0;
}

.navmenu ul li a {
  font-size: 15px; /* 🔥 font chhota */
  font-weight: 600;
  color: #0f2027;
  text-decoration: none;
  padding: 4px 0;
  white-space: nowrap; /* 🔥 break nahi hoga */
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
  color: #0d6efd;
  border-bottom: 2px solid #0d6efd;
}

/* ===== CTA ===== */
.nav-cta {
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 40px;
}

/* ===== MOBILE ===== */
.mobile-nav-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #0d6efd;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

  .mobile-nav-toggle {
    display: block;
  }

  .navmenu {
    position: fixed;
    top: 65px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 65px);
    background: #fff;
    transition: 0.4s;
  }

  .navmenu.active {
    left: 0;
  }

  .navmenu ul {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .navmenu ul li a {
    font-size: 17px;
  }

  .nav-cta {
    display: none;
  }
}




/*--------------------------------------------------------------
# HERO SECTION 
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  width: 100%;
  margin-top: -8px;     /* navbar se chipkane ke liye */
  padding: 0;
}

/* Full width container */
#heroCarousel {
  width: 100%;
  max-width: 1400px;    /* desktop pe bada & premium */
  margin: auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.30);
}

/* Images */
.hero-img {
  width: 100%;
  height: calc(100vh - 90px); /* navbar adjust */
  object-fit: cover;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.30)
  );
  z-index: 1;
}

/* Caption */
.carousel-caption {
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  padding: 0 15px;
}

.carousel-caption h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.carousel-caption h1 span {
  color: #ffcc00;
}

.carousel-caption p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 18px auto 28px;
}

.carousel-caption .btn {
  padding: 13px 36px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Remove arrows */
.carousel-control-prev,
.carousel-control-next {
  display: none;
}

/* Indicators */
.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.6;
  transition: 0.3s;
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.25);
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  #heroCarousel {
    max-width: 100%;
    border-radius: 0;   /* mobile pe full edge-to-edge */
    box-shadow: none;
  }

  .hero-img {
    height: 72vh;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 0.95rem;
  }

  .carousel-caption .btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.about .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.about-advanced {
  padding: 100px 0;
  background: linear-gradient(135deg, #f4f7ff, #ffffff);
}

/* IMAGE */
.about-image-advanced {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  transition: 0.5s ease;
}

.about-image-advanced img {
  width: 100%;
  border-radius: 25px;
  transition: transform 0.8s ease;
}

.about-image-advanced:hover img {
  transform: scale(1.12);
}

/* ===== About Image Advanced ===== */
.about-image-advanced {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

/* Image */
.about-image-advanced img {
  width: 100%;
  height: 420px;          /* FIXED HEIGHT */
  object-fit: cover;     /* IMAGE CUT NAHI HOGI */
  transition: transform 0.6s ease;
  border-radius: 20px;
}

/* Hover Zoom Effect */
.about-image-advanced:hover img {
  transform: scale(1.08);
}

/* Decorative Border Effect */
.about-image-advanced::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 2px dashed rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-image-advanced img {
    height: 280px;
  }
}

/* CONTENT */
.about-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(13,110,253,0.1);
  color: #0d6efd;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
}

.about-heading {
  font-size: 38px;
  font-weight: 800;
  margin: 18px 0;
  color: #1a1a1a;
  line-height: 1.2;
}

.about-heading span {
  color: #0d6efd;
}

.about-para {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* POINTS */
.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.point-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.point-item i {
  font-size: 20px;
  color: #0d6efd;
  margin-right: 10px;
}

.point-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(13,110,253,0.25);
}

/* BUTTONS */
.about-cta .btn {
  padding: 12px 30px;
  border-radius: 30px;
  margin-right: 12px;
  transition: 0.3s;
}

.about-cta .btn-outline-primary:hover {
  background: #0d6efd;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-heading {
    font-size: 28px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }
}

.about-para {
  font-size: 1rem;
  line-height: 1.7;
  color: #343a40;
  text-align: justify; /* Justified text */
}

.about-para i {
  font-size: 1.2rem;
  vertical-align: middle;
}

.about-heading span {
  color: #1a1f71;
}

.btn-primary {
  background-color: #1a1f71;
  border-color: #1a1f71;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #3742fa;
  border-color: #3742fa;
}

.btn-outline-primary {
  border-color: #1a1f71;
  color: #1a1f71;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background-color: #1a1f71;
  color: #fff;
}

/*--------------------------------------------------------------
# contact  Section
--------------------------------------------------------------*/

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
}

/* Section title */
.contact .subtitle {
    color: #0d6efd;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact h2 {
    font-size: 38px;
    color: #0f2027;
    margin-top: 8px;
}

.contact p {
    max-width: 720px;
    margin: 12px auto 0;
    color: #555;
    font-size: 16px;
}

/* ===== CONTACT INFO CARDS ===== */
.contact-card {
    background: #f7f7fc;
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(10, 10, 10, 0.15);
    transition: 0.4s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-12px);
}

.contact-card .icon {
    width: 70px;
    height: 70px;
    margin: auto;
    background: linear-gradient(135deg, #0d6efd, #040d1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.contact-card .icon i {
    font-size: 28px;
    color: #fff;
}

.contact-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f2027;
}

.contact-card p {
    font-size: 15px;
    color: #111010;
    margin: 0;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: #ffffff;
    padding: 55px 45px;
    border-radius: 26px;
    box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}

/* Input group */
.cf-group {
    position: relative;
}

.cf-group i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #164892;
    font-size: 18px;
    pointer-events: none;
}

.cf-input {
    width: 100%;
    padding: 15px 18px 15px 55px;
    border-radius: 14px;
    border: 1.5px solid #ced4da;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
    background: #fff;
}

.cf-textarea i {
    top: 24px;
    transform: none;
}

.cf-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13,110,253,.25);
}

/* Button */
.cf-btn {
    background: linear-gradient(135deg, #0d6efd, #084298);
    color: #fff;
    border: none;
    padding: 14px 45px;
    border-radius: 35px;
    font-size: 16px;
    transition: 0.3s ease;
}

.cf-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(13,110,253,0.45);
}

/* ===== MAP ===== */
.map-container iframe {
    border-radius: 22px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
/* ===== Gallery Section ===== */
.gallery-section {
  padding: 60px 0;
}

.gallery-title {
  font-weight: 700;
}

.gallery-subtitle {
  color: #777;
}

/* Filters */
.gallery-filters {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.gallery-filters li {
  cursor: pointer;
  padding: 6px 15px;
  border-radius: 20px;
  background: #eee;
  font-size: 14px;
}

.gallery-filters li.active {
  background: #0d6efd;
  color: #fff;
}

/* Card */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s;
}

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

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
  color: #fff;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.view-btn {
  background: #0d6efd;
  border: none;
  color: #fff;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 18px;
  margin-bottom: 10px;
}

/* ===== Popup ===== */
.image-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.image-popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

/* ===== Mobile Fix ===== */
@media (max-width: 576px) {
  .gallery-card img {
    height: 200px;
  }

  .gallery-filters {
    gap: 10px;
  }
}


/* ===============================
 Achivement  SECTION
================================ */
/* ===== ACHIEVEMENTS SECTION ===== */
#achievements {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, #e0f2fe, #eef2ff);
  overflow: hidden;
}

/* Soft overlay (not dark) */
#achievements .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(37,99,235,0.15), transparent 60%);
}

/* ===== COUNTER BOX ===== */
.counter-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.45s ease;
  box-shadow: 0 15px 45px rgba(37, 99, 235, 0.15);
}

/* Hover */
.counter-box:hover {
  transform: translateY(-14px);
  box-shadow: 0 32px 75px rgba(37, 99, 235, 0.28);
}

/* ===== ICON ===== */
.counter-box .icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.45s ease;
}

.counter-box .icon i {
  font-size: 40px;
  color: #ffffff;
}

/* Icon animation */
.counter-box:hover .icon {
  transform: scale(1.15) rotate(10deg);
}

/* ===== NUMBER ===== */
.counter-box h3 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f172a;
}

.counter-box p {
  font-size: 1.05rem;
  font-weight: 500;
  color: #334155;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #achievements {
    padding: 70px 0;
  }

  .counter-box h3 {
    font-size: 2rem;
  }
}

/* ===============================
 testimonial  SECTION
================================ */
/* ===== TESTIMONIAL SECTION ===== */
#testimonials {
  padding: 110px 0 90px;          /* extra top padding */
  background: linear-gradient(180deg, #eef2f7, #f8fafc);
}

/* Left content */
.testimonial-about .subtitle {
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-about h2 {
  font-size: 2.6rem;
  color: #0f172a;
}

.testimonial-about p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 45px 35px;
  transition: all 0.45s ease;
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.15);
}

/* Quote icon */
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -25px;
  left: 25px;
  font-size: 5rem;
  color: #2563eb;
  opacity: 0.2;
  font-family: serif;
}

/* Hover */
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(37, 99, 235, 0.28);
}

/* Student image */
.student-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 4px solid #2563eb;
}

/* Message */
.testimonial-card .message {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
}

/* Stars */
.testimonial-card .stars i {
  margin: 0 2px;
}

/* Name */
.testimonial-card h5 {
  color: #0f172a;
}

/* ===== CAROUSEL CONTROLS ===== */
.carousel-control-prev,
.carousel-control-next {
  width: 48px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60%;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #testimonials {
    padding: 90px 0 70px;
  }

  .testimonial-about h2 {
    font-size: 2.1rem;
  }
}



/* ===============================
  Notice SECTION
================================ */
/* ===== Common Section ===== */
.notice-gallery {
  background: #f8f9fa;
}

/* ===== Section Heading ===== */
.section-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-heading i {
  color: #0d6efd;
}

/* ===== NOTICE BOARD ===== */
.notice-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.notice-body {
  flex: 1;
  overflow: hidden;
}

/* Marquee */
.marquee-wrapper {
  height: 230px;
  overflow: hidden;
}

.marquee-content {
  animation: noticeScroll 12s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}
/* ===== NOTICE BOX SIDE LINE ===== */
.notice-box {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Vertical Gradient Line */
.notice-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #0d6efd,   /* Blue */
    #20c997    /* Green */
  );
  border-radius: 6px 0 0 6px;
}


/* Notice List */
.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-list li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 15px;
}

.notice-list li i {
  color: #0d6efd;
  margin-top: 3px;
}

/* Footer */
.notice-footer {
  margin-top: 15px;
  text-align: right;
}

.notice-footer a {
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
}

.notice-footer a:hover {
  text-decoration: underline;
}

/* Animation */
@keyframes noticeScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}


/* ===== GALLERY BOX SIDE LINE ===== */
.gallery-box {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Vertical Gradient Line */
.gallery-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #198754,   /* Green */
    #0d6efd    /* Blue */
  );
  border-radius: 6px 0 0 6px;
}

.gallery-box {
  border-radius: 12px;
}

.gallery-img {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.4s ease;
}

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


/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .gallery-item {
    height: 140px;
  }
  .gallery-item.large {
    height: 180px;
  }
}


/* ===============================
  gallery SECTION
================================ */
.gallery-section {
  background: #f8f9fa;
}

.gallery-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
}

.gallery-subtitle {
  color: #666;
  max-width: 600px;
  margin: auto;
}

/* ===== Filters ===== */
.gallery-filters {
  list-style: none;
  padding: 0;
}

.gallery-filters li {
  display: inline-block;
  padding: 8px 20px;
  margin: 5px;
  border-radius: 30px;
  cursor: pointer;
  background: #e9ecef;
  font-weight: 500;
  transition: all 0.3s ease;
}

.gallery-filters li.active,
.gallery-filters li:hover {
  background: #0d6efd;
  color: #fff;
}

/* ===== Gallery Card ===== */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ===== Overlay FIX ===== */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: all 0.4s ease;
  z-index: 2;
}

/* Show overlay on hover */
.gallery-card:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ===== Overlay Content ===== */
.overlay-content {
  text-align: center;
  color: #fff;
  z-index: 3;
}

.overlay-content h5 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
}

/* ===== View Button FIX ===== */
.view-btn {
  border: none;
  background: #0d6efd;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.view-btn:hover {
  background: #fff;
  color: #0d6efd;
  transform: scale(1.1);
}

/* ===== Popup / Lightbox ===== */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}


/* ===============================
   courses / courses SECTION
================================ */
.rac-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1f71;
}

.rac-section .section-subtitle {
  font-size: 1.1rem;
  color: #495057;
}

.skill-card {
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.skill-card i {
  color: #1a1f71;
}

.btn-primary {
  background-color: #1a1f71;
  border-color: #1a1f71;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #3742fa;
  border-color: #3742fa;
}


/* ===== COURSES TITLE ===== */
.courses-title {
  font-size: 2.6rem;
  font-weight: 700;
}

.courses-title span {
  color: #2563eb; /* Blue accent */
}

.courses-subtitle {
  max-width: 760px;
  margin: auto;
  font-size: 1.05rem;
  color: #475569;
}

/* ===== COURSE CARD ===== */
.course-card {
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  border-radius: 18px;
  padding: 36px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.45s ease;
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.12);
}

/* Top blue bar */
.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

/* Hover */
.course-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 28px 65px rgba(37, 99, 235, 0.25);
}

/* ===== ICON ===== */
.course-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.45s ease;
}

.course-icon i {
  font-size: 44px;
  color: #ffffff;
}

/* Icon animation */
.course-card:hover .course-icon {
  transform: rotateY(180deg) scale(1.12);
}

/* ===== TEXT ===== */
.course-card h3 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #0f172a;
}

.course-card p {
  font-size: 1.06rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* ===== READ MORE ===== */
.course-card .read-more {
  font-size: 1rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: 0.3s ease;
}

.course-card .read-more:hover {
  color: #1e40af;
  letter-spacing: 0.6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .courses-title {
    font-size: 2.1rem;
  }

  .course-card h3 {
    font-size: 1.4rem;
  }
}



/* ===============================
   SERVICES / courses SECTION
================================ */
.services-advanced {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f8ff, #ffffff);
}

/* SECTION TITLE */
.services-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(13,110,253,0.1);
  color: #0d6efd;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.services-title {
  font-size: 38px;
  font-weight: 800;
  margin: 18px 0 10px;
  color: #1a1a1a;
}

.services-title span {
  color: #0d6efd;
}

.services-subtitle {
  max-width: 750px;
  margin: 0 auto;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* SERVICE CARD */
.service-card {
  background: #ffffff;
  padding: 35px 28px;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card * {
  position: relative;
  z-index: 1;
}

/* ICON */
.service-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(13,110,253,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #0d6efd;
  transition: 0.4s;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(13,110,253,0.35);
}

.service-card:hover .icon {
  background: #ffffff;
  color: #0d6efd;
}

.service-card:hover h3,
.service-card:hover p {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-title {
    font-size: 28px;
  }
}

 .blog-filters {
  list-style: none;
  padding: 0;
}

.blog-filters li {
  display: inline-block;
  padding: 10px 22px;
  margin: 5px;
  background: #fff;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.blog-filters li.active,
.blog-filters li:hover {
  background: linear-gradient(45deg, #0d6efd, #6610f2);
  color: #fff;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.4s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 700;
}

.blog-content h4 {
  font-size: 16px;
  color: #0d6efd;
  margin-bottom: 10px;
}

.blog-content p {
  text-align: justify;
  font-size: 15px;
}

.blog-content iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-top: 10px;
}

/* ===============================
   Why Choose Section SECTION
================================ */
/* ===== WHY CHOOSE SECTION ===== */
#why-choose {
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
  padding: 80px 0;
}

/* Section title */
#why-choose .section-title .subtitle {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0f172a;
}

#why-choose .section-title .subtitle span {
  color: #2563eb;
}

#why-choose .section-title p {
  max-width: 760px;
  margin: 15px auto 0;
  font-size: 1.05rem;
  color: #475569;
}

/* ===== FEATURE CARD ===== */
.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.45s ease;
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.12);
}

/* Top highlight line */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

/* Hover */
.feature-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.25);
}

/* ===== ICON ===== */
.icon-box {
  width: 90px;
  height: 90px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.45s ease;
}

.icon-box i {
  font-size: 42px;
  color: #ffffff;
}

/* Icon animation */
.feature-card:hover .icon-box {
  transform: rotateY(180deg) scale(1.12);
}

/* ===== TEXT ===== */
.feature-card h4 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #0f172a;
}

.feature-card p {
  font-size: 1.02rem;
  color: #334155;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #why-choose .section-title .subtitle {
    font-size: 2.1rem;
  }

  .feature-card h4 {
    font-size: 1.3rem;
  }
}



/* Mission & Vision Section */
.mission-vision {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

/* Decorative background shapes */
.mission-vision .bg-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.mission-vision .bg-shape-left {
  top: -50px;
  left: -50px;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
}

.mission-vision .bg-shape-right {
  bottom: -50px;
  right: -50px;
  background: linear-gradient(135deg, #198754, #20c997);
}

/* Card Styling */
.mission-vision .card {
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  overflow: hidden;
  padding: 40px 30px;
}

.mission-vision .card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Card Hover Overlay */
.card-hover-overlay {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13,110,253,0.1), rgba(25,135,84,0.1));
  transition: top 0.5s ease;
  z-index: 0;
}

.mission-vision .card:hover .card-hover-overlay {
  top: 0;
}

/* Icon Boxes */
.mission-vision .icon-box {
  font-size: 28px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-vision .icon-box:hover {
  transform: scale(1.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Titles & Text */
.mission-vision .card-title {
  font-size: 24px;
  z-index: 2;
  position: relative;
}

.mission-vision .card-text {
  font-size: 16px;
  line-height: 1.7;
  z-index: 2;
  position: relative;
}

/* Timeline Section */
.timeline {
  position: relative;
  padding: 2rem 0;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: #0d6efd;
  transform: translateX(-50%);
}

.timeline-wrapper {
  position: relative;
  padding: 50px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0d6efd;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
}

.timeline-circle {
  width: 18px;
  height: 18px;
  background: #0d6efd;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  box-shadow: 0 0 0 4px #e0e0e0;
}

.timeline-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.timeline-content h5 {
  color: #0d6efd;
  font-size: 1.2rem;
}

.timeline-content p {
  color: #495057;
  font-size: 0.95rem;
  margin-top: 5px;
}

.timeline-card img {
  max-width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.timeline-card img:hover {
  transform: scale(1.05);
}
 

/*faq section*/
.faq .accordion-button {
  background: #f8f9fa;
  color: #0d6efd;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  transition: 0.3s;
}

.faq .accordion-button:hover {
  background: #e9ecef;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-body {
  background: #fff;
  font-size: 1rem;
  color: #495057;
  padding: 1rem 1.5rem;
}

.faq .accordion-item {
  border: none;
}

.faq .bi-question-circle {
  font-size: 1.25rem;
}

/*courses*/
/* Gradient background */
.bg-gradient-light {
  background: linear-gradient(135deg, #f0f4ff 0%, #e0f7ff 100%);
}

/* Card hover effect */
.card-hover {
  transition: transform 0.3s, box-shadow 0.3s;
}
.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

/* Icon hover effect */
.subject-card i {
  transition: transform 0.3s, color 0.3s;
}
.subject-card:hover i {
  transform: scale(1.3);
  color: #007bff; /* Icon highlight on hover */
}
.semester-card {
  transition: all 0.4s ease;
}
.semester-card:hover {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  transform: translateY(-8px);
}
.semester-card:hover i {
  color: #fff !important;
}
.semester-card ul li {
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.semester-card ul li i {
  font-size: 1rem;
}
.semester-card h4 {
  transition: all 0.3s ease;
}
.semester-card:hover h4 {
  color: #fff;
}

.faq-section {
  background: #f8f9fa;
}
.accordion-button {
  background: #fff;
}
.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #2575fc, #6a11cb);
  color: #fff;
}
.accordion-button:not(.collapsed) i {
  color: #fff !important;
}
.accordion-item {
  border: none;
}

/*fitter course*/
.about-us-section {
  background: #f8f9fa;
}

.about-image {
  overflow: hidden;
  border-radius: 20px;
}

.about-image img {
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.08);
}

.about-content h6 {
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-content p {
  color: #555;
  text-align: justify;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

.about-list i {
  color: #0d6efd;
  margin-right: 8px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
}

.btn-read-more i {
  transition: transform 0.4s ease;
}

.btn-read-more:hover {
  background: linear-gradient(135deg, #6610f2, #0d6efd);
  box-shadow: 0 10px 25px rgba(13,110,253,0.4);
}

.btn-read-more:hover i {
  transform: translateX(6px);
}

.benefits-section {
  background: #ffffff;
}

.benefit-card {
  background: #f9f9f9;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card * {
  position: relative;
  z-index: 1;
}

.icon-box {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.icon-box i {
  font-size: 34px;
  color: #fff;
}

.benefit-card:hover .icon-box {
  transform: rotate(360deg) scale(1.1);
}

.benefit-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #555;
}

.benefit-card:hover h5,
.benefit-card:hover p {
  color: #fff;
}


.trade-subjects {
  background: #f8f9fa;
}

.semester-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.semester-card:hover {
  transform: translateY(-6px);
}

.semester-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: #0d6efd;
  display: flex;
  align-items: center;
  gap: 10px;
}

.subject-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff, #f1f4ff);
  transition: 0.4s;
}

.subject-card:hover {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: #fff;
}

.subject-card i {
  font-size: 32px;
  color: #0d6efd;
  transition: 0.4s;
}

.subject-card:hover i {
  color: #fff;
  transform: scale(1.2);
}

.subject-card h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.subject-card p {
  margin: 0;
  font-size: 14px;
}

/*--------------------------------------------------------------
# facilities  section
--------------------------------------------------------------*/
/* Facilities Section */
.facilities-section {
  background: #f5f8ff; /* Light background */
  padding: 60px 0;
}

.facilities-title {
  font-size: 36px;
  font-weight: 700;
  color: #000; /* Black main text */
  margin-bottom: 2rem;
}

.facilities-title span {
  color: #0d3b91; /* Blue accent */
}

/* Facilities scrolling track */
.facilities-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.facilities-track {
  display: flex;
  gap: 2rem;
  animation: scroll 20s linear infinite;
}

.facility-item {
  flex: 0 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.facility-item i {
  font-size: 36px;
  color: #0d3b91; /* Blue icons */
  margin-bottom: 10px;
  display: block;
}

.facility-item span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* Hover effect */
.facility-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Scroll animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media(max-width: 991px){
  .facilities-track {
    gap: 1rem;
  }
  .facility-item i {
    font-size: 28px;
  }
  .facility-item span {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
/* ===== FOOTER BASE ===== */
.footer {
  background: #0b0f19; /* deep dark */
  color: #ffffff;
  font-size: 16px;
}

/* Paragraph */
.footer p {
  color: white;
  font-size: 16px;
  line-height: 1.7;
}

/* Headings */
.footer h5 {
  font-size: 20px;
  color: #ffffff;
  position: relative;
  padding-bottom: 8px;
}

/* Heading underline */
.footer h5::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #0d6efd;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 5px;
}

/* ===== FOOTER LINKS ===== */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #f9fafb;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect on links */
.footer-links a::before {
  content: "›";
  color: #0d6efd;
  margin-right: 6px;
  opacity: 0;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #0d6efd;
  padding-left: 6px;
}

.footer-links a:hover::before {
  opacity: 1;
}

/* ===== SOCIAL ICONS ===== */
.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

/* Hover animation */
.social-links a:hover {
  background: #0d6efd;
  transform: translateY(-5px) scale(1.1);
}

.social-links i {
  color: #ffffff;
}

/* ===== CONTACT BOX ===== */
.footer .bg-secondary {
  background: rgba(255,255,255,0.05) !important;
}

.footer .bi {
  font-size: 18px;
}

/* Contact text */
.footer .col-lg-3 p {
  font-size: 16px;
  color: #f1f5f9;
}

/* Apply button */
.footer .btn-primary {
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 25px;
  transition: 0.3s;
}

.footer .btn-primary:hover {
  transform: scale(1.05);
}

/* ===== BOTTOM BAR ===== */
.footer .border-top {
  background: #020617;
}

.footer .border-top p {
  color: #cbd5f5;
  font-size: 15px;
}

.footer .border-top a {
  text-decoration: none;
  font-weight: 600;
}

.footer .border-top a:hover {
  text-decoration: underline;
}



/* Floating Left Icons - Vertically Centered */
.floating-contact-left {
    position: fixed;
    top: 50%;             /* Screen ke middle me */
    left: 10px;           /* Left se thoda gap */
    transform: translateY(-50%); /* Vertical center perfectly */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-contact-left .float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    transition: 0.3s ease;
}

/* WhatsApp */
.floating-contact-left .whatsapp {
    background: #25D366;
}

.floating-contact-left .whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Call */
.floating-contact-left .call {
    background: #0d6efd;
}

.floating-contact-left .call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.4);
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title-banner {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(135deg, #0d6efd, #8067a9); /* Gradient color */
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  color: #fff;
  overflow: hidden;
  backdrop-filter: blur(4px); /* Glass effect */
  animation: fadeInUp 1s ease forwards;
}

/* Page Title */
.page-title-banner .page-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
}

/* Breadcrumbs */
.page-title-banner .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
}

.page-title-banner .breadcrumb-item a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: 0.3s;
}

.page-title-banner .breadcrumb-item a:hover {
  color: #fff;
  text-decoration: underline;
}

.page-title-banner .breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ADMISSION SECTION ===== */
.admission-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #eef2ff, #f8fafc);
}

/* Wrapper */
.admission-wrapper {
  display: flex;
  gap: 30px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(37,99,235,0.25);
}

/* LEFT INFO */
.admission-info {
  width: 35%;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  padding: 45px 35px;
}

.admission-info h3 {
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.admission-info ul {
  padding-left: 0;
  list-style: none;
}

.admission-info ul li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.note-box {
  margin-top: 30px;
  background: rgba(255,255,255,0.15);
  padding: 15px;
  border-radius: 12px;
}

/* RIGHT FORM */
.admission-form-box {
  width: 65%;
  padding: 45px 40px;
}

.admission-form-box h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0f172a;
}

.admission-form-box p {
  color: #475569;
  margin-bottom: 30px;
}

/* Inputs */
.admission-form-box label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.admission-form-box input,
.admission-form-box select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c7d2fe;
  margin-bottom: 20px;
}

.admission-form-box input:focus,
.admission-form-box select:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* Button */
.admission-form-box button {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.admission-form-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.45);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .admission-wrapper {
    flex-direction: column;
  }

  .admission-info,
  .admission-form-box {
    width: 100%;
  }
}