/* TEMP debug — forces AOS elements visible */
[data-aos], .aos-init {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}


/*====================================================*/
/* =============== 👉  HEADER SECTION ================*/
/*====================================================*/

.top-header {
  color: #fff;
  animation: fadeInDown 0.6s ease;
  padding: 10px 0;
}
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.header-contact-info{
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-links{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
}
.social-links a {
    color: #fff;
    background-color: rgb(98 99 179 / 45%);
    color: var(--white);
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    transition: transform 0.3s, color 0.3s;
}
.social-links a:hover {
  transform: scale(1.2);
  background-color: var(--blue);
}

/* === MAIN HEADER (previous) === */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgb(255 255 255);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  z-index: 1000;
  transition: all 0.4s ease;
}
.logo {
    width: 90px;
}
.logo img {
    width: 100%;
    animation: floatLogo 3s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.menu {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.menu li a{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--black);
}
.menu li a:hover {
    color: var(--blue);
}

/* Dropdown Base */
.menu .sub-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.menu .sub-menu li {
  display: block;
}

.menu .sub-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  font-size: 0.95rem;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.menu .sub-menu a:hover {
  background: linear-gradient(90deg, rgba(0,119,255,0.1), rgba(0,201,125,0.1));
  color: #0077ff;
  border-left: 3px solid #00c97d;
}

/* Dropdown Hover Animation */
.menu li.has-dropdown:hover > .dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Optional Arrow Styling */
.menu .has-dropdown > a i {
  font-size: 0.75rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.menu .has-dropdown:hover > a i {
  transform: rotate(180deg);
}
.enroll-btn {
  padding: 10px 20px;
  border-radius: 25px;
  background: linear-gradient(90deg, #0077ff, #00c97d);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(0,255,100,0.3);
  transition: all 0.3s ease;
}
.enroll-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(0,255,100,0.5);
}

.menu-toggle{
    display: none;
}
.menu-close {
    display: none;
}
.mobile-title, .mobile-bar{
    display: none;
}

/* =========================
        HERO SECTION
========================= */

.rev-hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.rev-hero-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ===========================
   EACH SLIDE
=========================== */
.rev-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  opacity: 0;
  transform: translateX(50px);
  transition: all 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.rev-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 5;
}

/* ===========================
   LEFT SECTION
=========================== */
.rev-left {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 8%;
  padding-right: 4%;
  color: #fff;
}

.rev-content {
  transform: translateY(20px);
  animation: fadeUp 1.2s ease forwards;
}

.rev-content .tagline {
  display: inline-block;
  color: #00ffcc;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.rev-btns {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

/* ===========================
   RIGHT SECTION
=========================== */
.rev-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rev-stack {
  position: relative;
  width: 420px;
  height: 520px;
  perspective: 1200px;
}

/* ===========================
   CARD STACK LAYERS
=========================== */
.stack-card {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: -1px 7px 5px 3px rgb(0 0 0 / 16%);
  transform-style: preserve-3d;
  transition: transform 1.2s ease;
}

/* Main slide image */
.stack-card.layer-1 {
  z-index: 3;
  transform: translateZ(80px);
}

/* Decorative depth layers */
.stack-card.layer-2 {
  background: #122430;
  transform: translateZ(40px) scale(0.94) translateY(20px);
  z-index: 2;
}

.stack-card.layer-3 {
  background: #09131a;
  transform: translateZ(0) scale(0.88) translateY(40px);
  z-index: 1;
}

/* Parallax effect on active slide */
.rev-slide.active .stack-card.layer-1 {
  animation: heroPop 1.2s ease forwards;
}

/* ===========================
   NAVIGATION ARROWS
=========================== */
.rev-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 10;
}

.rev-nav:hover {
  background: #00e6b8;
  color: #0b1520;
}

.rev-nav.prev { left: 30px; }
.rev-nav.next { right: 30px; }

/* ===========================
   PAGINATION DOTS
=========================== */
.rev-dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 8;
}

.rev-dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.rev-dots button.active {
  background: #00ffd5;
  transform: scale(1.4);
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroPop {
  0%   { transform: translateZ(20px) scale(0.92) rotateX(8deg); }
  60%  { transform: translateZ(90px) scale(1.02) rotateX(0deg); }
  100% { transform: translateZ(80px) scale(1); }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 992px) {
  .rev-slide {
    flex-direction: column;
    padding: 40px 0;
  }

  .rev-left {
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
  }

  .rev-stack {
    margin-top: 20px;
    width: 330px;
    height: 420px;
  }
}

@media (max-width: 576px) {
  .rev-hero { height: auto; padding-bottom: 60px; }
  .rev-slide { position: relative; }

  .rev-stack {
    width: 280px; height: 360px;
  }

  .rev-nav { display: none; }
}

/* =========================
    FEATURES SECTION
========================= */

.featured-section {
  position: relative;
  overflow: hidden;
}
.feature-card{
    height: 100%;
    background-color: rgb(255, 255, 255);
    box-shadow: rgb(255 255 255 / 24%) 0px 3px 8px;
    border-radius: 15px;
    transition: all 2s;
    z-index: 9999;
}
.feature-card i{
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--white);
    border-radius: 100%;
    transition: all 0.5s;
}
.feature-content{
    z-index: 100;
    padding: 100px 20px 20px 20px;
}
.circle{
    position: absolute;
    margin: auto;
    margin-top: 20px;
    margin-left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, #0078d7, #001fa6);
    border-radius: 50%;
    transition: all 0.5s;
    
}
.feature-card:hover .circle{
    margin-top: 0px;
    margin-left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: all 0.5s;
    z-index: -1;
}
.feature-card:hover .feature-content, .feature-card:hover .mid-heading{
    color: var(--white);
}
.feature-card:hover i{
    margin: 20px 0 0 20px;
    color: var(--blue);
    background-color: var(--white);
}
/* Floating Shapes for Background */
.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatShape 8s ease-in-out infinite;
}

.shape1 { width: 120px; height: 120px; background: #00a676; top: 10%; left: 5%; }

@keyframes floatShape {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/*=====================================================*/
/*================== 👉  NOTICE =====================*/
/*=====================================================*/

.notice-panel {
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 25px;
    max-width: 850px;
    margin: auto;
    border-left: 5px solid #00b894;
    animation: fadeUp 0.6s ease-out;
}
.notice-item {
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #e7e7e7;
    transition: 0.3s ease;
}
.notice-item:last-child {
    border-bottom: none;
}
.notice-item:hover {
    transform: translateX(4px);
}
.notice-date {
    font-size: 11px;
    display: inline-block;
    background: linear-gradient(90deg, #0078d7, #001fa6);
    color: var(--white);
    border-radius: 8px;
    text-align: center;
    padding: 6px 10px;
    line-height: 1.2;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.notice-item p{
    color: var(--white);
}


/* =========================
        ABOUT SECTION
========================= */

.about-section {
  position: relative;
  padding: 80px 0;
  z-index: 1;
}
.about-content {
  padding: 0 20px;
}
.about-features {
  padding: 0;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.about-features li i {
  color: var(--white);
  background-color: var(--blue);
  font-size: 12px;
    font-size: 10px;
    width: 24px;
    height: 24px;
    line-height: 24px;
  text-align: center;
  border-radius: 50px;
  transition: transform 0.3s ease;
}
.about-features li:hover i {
  transform: scale(1.2);
  color: var(--blue);
  background-color: var(--white);
}
.about-image {
  position: relative;
  text-align: center;
}
.about-image img {
  border-radius: 15px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  animation: floatImg 6s ease-in-out infinite;
}
.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(90deg, #0078d7, #001fa6);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.about-badge i {
  font-size: 1.2rem;
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =========================
     STATS SECTION
========================= */
.stats-strip {
  color: #fff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute;
  top: 0; left: -50px;
  width: 150%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(-3deg);
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.stat-item:hover .stat-number {
  transform: scale(1.1);
}

/* =========================
        ADMISSION
========================= */

.admission-process {
  position: relative;
  overflow: hidden;
}
.process-flow {
  position: relative;
  padding: 20px 0;
  height: 100%;
}

.process-line {
  position: absolute;
  top: 65px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, #0078d7, #001fa6);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  background: #fff;
  border-radius: 15px;
  text-align: center;
  height: 100%;
    padding: 40px 20px 20px 20px;
  position: relative;
  box-shadow: 0 6px 15px rgba(0,0,0,0.07);
  z-index: 2;
  transition: all 0.4s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 166, 118, 0.2);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  border: 2px solid var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  position: relative;
  transition: all 0.4s ease;
}

.process-step:hover .icon-circle {
    color: #fff;
  background: linear-gradient(90deg, #0078d7, #001fa6);
  transform: scale(1.1);
}

.cta-enroll {
  text-align: center;
  margin-top: 80px;
  background: linear-gradient(90deg, #0078d7, #001fa6);
  padding: 50px 20px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cta-enroll h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.form-radio-inline{
    display: flex;
    gap: 10px;
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dce8e2;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    background-color: var(--white);
}
.radio-wrap {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    font-size: 16px;
    color: #777777;
}
.radio-wrap input[type="radio"] {
    display: none;
}
.radio-square {
    width: 18px;
    height: 18px;
    border: 2px solid #777777;;
    border-radius: 4px;
    display: inline-block;
    position: relative;
}
.radio-wrap input[type="radio"]:checked + .radio-square::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #777777;;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
}
.dynamic-image-upload {
    max-width: 300px;
    position: relative;
}

.upload-area {
    border: 2px dashed #4a8dff;
    padding: 25px;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 12px;
    background: #f5faff;
    transition: 0.3s ease;
    text-align: center;
}
.upload-area.signature{
    height: 100px;
}

.upload-area:hover {
    background: #e9f2ff;
}

.upload-area input {
    display: none;
}

.upload-text {
    font-size: 15px;
    color: #0057c2;
    font-weight: 600;
}

.preview-area {
    display: none;
    margin-top: 15px;
    position: relative;
}

.preview-area img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.remove-image {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4b4b;
    border: none;
    color: #fff;
    font-size: 18px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: 0.3s;
    z-index: 10;
}

.remove-image:hover {
    background: #d90000;
}
.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    user-select: none;
    margin: 20px 0;
}

.terms-checkbox a {
    color: #006cff;
    text-decoration: underline;
    transition: 0.3s ease;
}

.terms-checkbox a:hover {
    color: #004bbd;
}

.terms-checkbox input {
    display: none;
}

/* Square Checkmark Box */
.checkmark {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 2px solid #007bff;
    border-radius: 4px;
    position: relative;
    transition: 0.3s ease;
}

/* Hover effect */
.terms-checkbox:hover .checkmark {
    border-color: #005fcc;
}

/* Tick animation */
.checkmark::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 12px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    top: 1px;
    left: 5px;
    transform: rotate(45deg) scale(0);
    transition: 0.25s ease;
    opacity: 0;
}

/* Checked State */
.terms-checkbox input:checked + .checkmark {
    background: #007bff;
    border-color: #006be6;
}

.terms-checkbox input:checked + .checkmark::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}




/* =========================
         FACILITY 
========================= */

.facility-section {
  position: relative;
  overflow: hidden;
}

.facility-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  background: #fff;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 166, 118, 0.3);
}

/* Image */
.facility-card-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.facility-card:hover .facility-card-image img {
  transform: scale(1.1);
}
.facility-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgb(0 120 215 / 86%) 0%, rgb(0 31 166 / 86%) 100%);
  color: #fff;
  padding: 25px 20px;
  text-align: center;
  transition: height 0.5s ease, padding 0.5s ease;
  height: 70px;
  overflow: hidden;
}
.facility-card-overlay .mini-heading {
  transition: transform 0.4s ease;
}
.facility-card-overlay .paragraph,
.facility-card-overlay .outline-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  margin-top: 10px;
}
.facility-card:hover .facility-card-overlay {
  height: 100%;
  padding: 50px 20px;
}

.facility-card:hover .facility-card-overlay .paragraph,
.facility-card:hover .facility-card-overlay .outline-btn {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
      STAFF / TEACHER
========================= */

.teacher-section {
}
.teacher-card {
    background: var(--white);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    text-align: center;
    padding: 25px 20px 20px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.35s ease;
    position: relative;
}
.teacher-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.teacher-image {
    position: relative;
    display: inline-block;
}
.teacher-image img {
    width: 120px;
    height: 120px;
    border-radius: 999px;
    object-fit: cover;
    border: 4px solid #00b894;
    padding: 3px;
}
.staff-tabs { display:flex; gap:10px; margin-bottom:20px; }
.staff-tab { padding:8px 20px; background: var(--white); border-radius:6px; cursor:pointer; }
.staff-tab.active { background: var(--green); color: var(--white); }

/* =========================
           EVENTS
========================= */
.event-section{
}
.event-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 166, 118, 0.3);
}

/* Image Section */
.event-image {
  position: relative;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.1);
}

/* Date Tag */
.event-date {
  font-size: 12px;
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(90deg, #0078d7, #001fa6);
  color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 6px 10px;
  line-height: 1.2;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.event-date .day {
  display: block;
  font-size: 1.2rem;
}

.event-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* Content */
.event-content {
  padding: 20px;
  text-align: center;
}

.event-title {
  font-size: 1.1rem;
  color: #003c6c;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.event-card:hover .event-title {
  color: #00a676;
}

.event-desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Button */
.event-btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(90deg, #0078d7, #001fa6);
  color: #fff;
  transition: all 0.3s ease;
}

.event-btn:hover {
  background: linear-gradient(135deg, #003c6c, #00a676);
  transform: translateY(-2px);
}

/*=====================================================*/
/*=================== 👉  GALLERY ==================== */
/*=====================================================*/

.gallery-section{
}
/*.gallery-thumbnail {*/
/*    width: 100%;*/
/*    object-fit: cover;*/
/*    height: 200px;*/
/*    overflow: hidden;*/
/*    border-radius: 8px;*/
/*    transition: all 0.4s ease;*/
/*}*/

/* Hover effect */
/*.gallery-thumbnail:hover {*/
/*    transform: scale(1.08);*/
/*    filter: brightness(1.15) contrast(1.05);*/
/*    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);*/
/*    border-radius: 8px;*/
/*    cursor: pointer;*/
/*    transform: scale(1);*/
/*}*/
/*@keyframes fadeInZoom {*/
/*  0% {*/
/*    opacity: 0;*/
/*    transform: scale(1.05);*/
/*  }*/
/*  100% {*/
/*    opacity: 1;*/
/*    transform: scale(1);*/
/*  }*/
/*}*/







/* =========================
          CONTACT
========================= */
.contact-section {
}
.contact-info {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 120, 215, 0.1);
}
.contact-info i {
  color: #00a676;
  margin-right: 10px;
}
.contact-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 120, 215, 0.1);
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input, .contact-form textarea, .admission-form input, .admission-form textarea, .bsp-form input, .bsp-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #dce8e2;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}
.contact-form input:focus, .contact-form textarea:focus, .admission-form input:focus, .admission-form textarea:focus, .bsp-form input:focus, .bsp-form textarea:focus {
  border-color: #00a676;
  outline: none;
  box-shadow: 0 0 8px rgba(0, 166, 118, 0.2);
}
.contact-map {
  margin-top: 60px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 120, 215, 0.1);
  border: solid 2px var(--blue);
}



/* =========================
FOOTER
========================= */
footer {
  position: relative;
  color: #e2e8f0;
  padding-top: 5rem;
  overflow: hidden;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  position: relative;
  z-index: 2;
}

.footer-about h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-about p {
  color: #cdd5f3;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 0.5rem 0;
}

.footer-links a {
  color: #aaccff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-contact p, .footer-contact a {
  margin: 0.3rem 0;
  color: #cdd5f3;
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.4s ease;
}

.social-icons a:hover {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0, 114, 255, 0.4);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #aaccff;
  font-size: 0.9rem;
}

/* =========================
ANIMATIONS
========================= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}



/*=====================================================*/

/* 👉  RESPONSIVE */

/*=====================================================*/


@media (max-width: 768px) {
.hero-dots, .desktop-title, .header-contact, .slide-info, .about-badge, .process-step, .top-header{
    display: none;
}  
.academy-title {
    font-size: 30px;
}
.hero-left {
    width: 100%;
}
.big-heading {
    font-size: 28px;
    line-height: 30px;
}
.hero-slider, .hero-slide{
    height: 400px;
}
.feature-card {
    height: auto;
    margin-bottom: 10px;
}
.feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
}
.contact-box {
    width: 100%;
}

/*===================================================*/


.min-mg {
    margin-top: 10px !important;
}  
.mid-mg {
    margin-top: 20px !important;
}
.section, .footer-section {
    padding: 40px 0 !important;
}
.mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header {
    backdrop-filter: none;
}
.site-nav {
    position: fixed;
    top: 0;
    right: -350px;
    height: 100%;
    width: 350px;
    background: #fff;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.menu {
    flex-direction: column;
}
.menu li a {
    font-size: 20px;
}
.menu-toggle {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: none;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.menu-close {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    margin-left: auto;
}
.site-nav.active {
    right: 0;
}
.logo {
    width: 50px;
    margin-top: 0;
    padding: 5px;
    z-index: 9;
    position: relative;
}
.mobile-title{
    color: var(--blue);
    font-weight: 600;
    font-size: 15px;
    font-style: italic;
    display: flex;
    align-items: center;
    margin: 0 0 0 0px;
}
.heading {
    font-size: 25px;
    line-height: 30px;
    width: 100%;
}
.mini-heading{
    font-size: 15px;
    line-height: 20px;
    width: 100%;
}
.page-banner {
    height: 170px;
}
.sub-heading {
    font-size: 25px;
    line-height: 30px;
} 
.mid-heading{
    font-size: 18px;
}
.product-card, .feature-card, .facility-card, .event-card {
    margin-bottom: 15px !important;
    height: auto !important;
}
.facility-card-image img {
    height: 300px;
}
.footer-nav{
    margin-top: 15px;
}
.footer-bottom {
    height: auto !important; 
}
.footer-bottom .container {
    flex-direction: column;
    text-align: center;
    padding: 10px;
    justify-content: center !important;
    height: auto !important;
}
.contact-section{
    background-size: cover !important;
    background-position: bottom !important;
}
.contact-form-wrap{
    margin-top: 20px;
}
.contact-form .section-head{
    margin-top: 15px;
}
.whatsapp-btn {
    font-size: 32px;
    width: 48px;
    height: 48px;
}
.about-image img{
    display: none;
}
.logo-box{
    margin-bottom: 20px;
}
.contact-section{
    background: var(--white);
}
.facility-card:has(.facility-page), .event-card:has(.event-page), .event-card:has(.teacher-page){
    margin-bottom: 0px;
}

}


