@import url("https://fonts.googleapis.com/css2?family=Inria+Serif:wght@400;700&display=swap");
* {
  padding: 0;
  margin: 0;
}








/* Mobile Navigation Styles */
.mobile-nav {
  background-color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #000000;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: all 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  padding: 20px;
  text-align: right;
  /* border-bottom: 1px solid #E6BA20; */
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #000000;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #E6BA20;
}

.mobile-menu-body {
  padding: 20px;
}

.mobile-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-items li {
  margin-bottom: 0;
  border-bottom: 1px solid #E6BA20;
}

.mobile-menu-items a {
  display: block;
  padding: 15px 0;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.mobile-menu-items a:hover {
  color: #EE861E;
  padding-left: 10px;
}

.mobile-menu-contact {
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid #EE861E;
}

.contact-info {
  display: flex;
  align-items: center;
  color: #E6BA20;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info i {
  margin-right: 10px;
  color: #E6BA20;
}

.mobile-book-btn {
  width: 100%;
  padding: 12px 20px;
  background-color: #EE861E;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mobile-book-btn:hover {
  background-color: #EE861E;
  transform: translateY(-2px);
}

.mobile-menu-footer {
  /* margin-top: 30px; */
  padding: 20px 0;
  /* border-top: 1px solid #E6BA20; */
  text-align: center;
}

.mobile-logo-footer {
  margin-bottom: 5px;
}

.mobile-copyright {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.4;
}

.mobile-copyright p {
  margin: 2px 0;
}

.thyo-link {
  color: #EE861E;
  font-weight: 600;
}



.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0rem !important;
}






.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
    color: #000000 !important;
    font-weight: 600;
    background-color: #f2faff;
  border-radius: 10px;
  overflow: hidden;
    transition: color 0.2s;
}

.navbar-nav .nav-link{
    color: #000000 !important;
}





/* for floating  */


.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  background: #25d366;
  color: #fff !important;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 0.7rem 1.5rem 0.7rem 1.2rem;
  border-radius: 2rem 0.8rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.18);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  gap: 0.7rem;
}
.whatsapp-float i {
  font-size: 1.5rem;
}
.whatsapp-float span {
  margin-left: 0.2rem;
  font-family: 'Montserrat', sans-serif;
}
.whatsapp-float:hover {
  box-shadow: 0 8px 32px rgba(37,211,102,0.28);
  transform: translateY(-3px) scale(1.04);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 575px) {
  .whatsapp-float {
    right: 12px;
    bottom: 16px;
    font-size: 1rem;
    padding: 0.6rem 1.1rem 0.6rem 0.9rem;
  }
  .whatsapp-float i {
    font-size: 1.2rem;
  }
}




/* Stats Section Styles */
.stats-section {
    background: #f7f9fb;
}

.stat-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
    padding: 8px 10px;
    min-height: 100px;
    position: relative;
    overflow: hidden;
    border-right: 8px solid #E5B75F;
    transition: box-shadow 0.2s, border-right-width 0.3s cubic-bezier(.4,2,.3,1);
}

.stat-card:hover {
     border-right: 12px solid #E5B75F;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.20);
}

.stat-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2F66B3;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #222;
    font-weight: 500;
    /* letter-spacing: 0.02em; */
    margin-top: 2px;
}

@media (max-width: 991.98px) {
    .stat-card {
        min-height: 100px;
        padding: 14px 14px;
    }
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .stat-card {
        flex-direction: row;
        justify-content: flex-start;
        min-height: 80px;
        padding: 10px 8px;
        border-right: 5px solid #E5B75F;
    }
    .stat-icon {
        width: 32px;
        height: 32px;
    }
    .stat-number {
        font-size: 1.2rem;
    }
    .stat-label {
        font-size: 0.95rem;
    }
}




/* Academic Approach Section */
.academic-approach-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.approach-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    flex-shrink: 0;
}
.approach-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
}
@media (max-width: 991.98px) {
    .academic-approach-section .row {
        flex-direction: column;
    }
    .approach-icon {
        width: 32px;
        height: 32px;
    }
}
@media (max-width: 767.98px) {
    .academic-approach-section {
        padding: 2rem 0 !important;
    }
    .approach-badge {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    .approach-icon {
        width: 28px;
        height: 28px;
    }
}





/* Campus Facilities Card */
.campus-facilities-card {
    box-shadow: 0 8px 32px rgba(44,62,80,0.10);
    border-radius: 32px;
    overflow: hidden;
    /* margin-top: 32px; */
}
/* .campus-facilities-card img {
    border-top-left-radius: 32px;
    border-bottom-left-radius: 32px;
} */
@media (max-width: 991.98px) {
    .campus-facilities-card {
        flex-direction: column !important;
        border-radius: 24px;
    }
    .campus-facilities-card img {
        border-radius: 24px 24px 0 0 !important;
        min-height: 220px;
    }
}
@media (max-width: 575.98px) {
    .campus-facilities-card {
        border-radius: 16px;
    }
    .campus-facilities-card img {
        border-radius: 16px 16px 0 0 !important;
        min-height: 140px;
    }
}




.campus-facilities-card {
    box-shadow: 0 8px 32px rgba(44,62,80,0.10);
    border-radius: 32px;
    overflow: hidden;
    /* margin-top: 32px; */
}
/* .campus-facilities-card img {
    border-top-right-radius: 32px;
    border-bottom-right-radius: 32px;
} */
@media (max-width: 991.98px) {
    .campus-facilities-card {
        flex-direction: column !important;
        border-radius: 24px;
    }
    .campus-facilities-card img {
        border-radius: 0 0 24px 24px !important;
        min-height: 220px;
    }
}
@media (max-width: 575.98px) {
    .campus-facilities-card {
        border-radius: 16px;
    }
    .campus-facilities-card img {
        border-radius: 0 0 16px 16px !important;
        min-height: 140px;
    }
}


.campus-facilities-card21{
border-radius: 24px;
border: 1px solid #FFF;
background: #2F66B3;
box-shadow: 0 0 20px 8px rgba(47, 102, 179, 0.25);
}

.campus-facilities-card22{
  border-radius: 24px;
border: 1px solid #FFF;
background: #5C433C;
box-shadow: 0 0 20px 8px rgba(92, 67, 60, 0.25);
}

.campus-facilities-card21:hover{
border-radius: 24px;
border: 1px solid #FFF;
background: #2F66B3;
box-shadow: 0 0 10px 8px rgba(47, 102, 179, 0.60);
}

.campus-facilities-card22:hover{
  border-radius: 24px;
border: 1px solid #FFF;
background: #5C433C;
box-shadow: 0 0 10px 8px rgba(92, 67, 60, 0.60);
}

/* FAQ Section Styles */
.faq-section {
    background: #E5B75F;
}
.faq-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    padding: 28px 24px;
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
}
.faq-card.active {
    box-shadow: 0 6px 24px rgba(44,62,80,0.13);
}
.faq-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2F66B3;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    line-height: 25px;
    font-weight: 700;
}
.faq-icon-plus::before {
    content: "+";
}
.faq-icon-minus {
    background: #fff;
    color: #2F66B3;
    border: 2px solid #2F66B3;
}
.faq-icon-minus::before {
    content: "−";
}
@media (max-width: 991.98px) {
    .faq-card {
        padding: 18px 12px;
        border-radius: 12px;
    }
    .faq-icon {
        width: 22px;
        height: 22px;
        font-size: 1.1rem;
        line-height: 19px;
    }
}




.footer-section {
    background: #4a3328;
}
.footer-section h5, .footer-section h6 {
    letter-spacing: 0.01em;
}
.footer-section ul {
    padding-left: 0;
}
.footer-section a, .footer-section span, .footer-section li {
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .footer-section .row > div {
        margin-bottom: 0rem;
    }
    .footer-section {
        padding-bottom: 0rem;
    }
}
@media (max-width: 767.98px) {
  .footer-section img {
    max-width: 100% !important;
}
    .footer-section {
        padding-top: 2rem;
        padding-bottom: 0rem;
    }
    .footer-section .row > div {
        margin-bottom: 0rem;
    }
}


/* .blink {
    animation: blink-animation 1s steps(2, start) infinite;
}
@keyframes blink-animation {
    to {
        visibility: hidden;
    }
} */



/* for card */


.course-card {
    transition: box-shadow 0.4s cubic-bezier(.4,2,.3,1), transform 0.4s cubic-bezier(.4,2,.3,1);
    /* box-shadow: 0 2px 16px rgba(44, 102, 179, 0.08); */
    position: relative;
    overflow: hidden;
    border-radius: 12px;
border: 1px solid #F6F8FB;
background: #FFF2DA;
}
.course-card .course-card-actions {
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px);
    transition: opacity 0.35s cubic-bezier(.4,2,.3,1), transform 0.35s cubic-bezier(.4,2,.3,1);
}
.course-card:hover, .course-card:focus-within {
    box-shadow: 0 8px 32px rgba(44, 102, 179, 0.18), 0 1.5px 8px rgba(44, 102, 179, 0.10);
    transform: translateY(-6px) scale(1.025);
    z-index: 2;
}
.course-card:hover .course-card-actions, .course-card:focus-within .course-card-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.course-card .course-card-actions .btn {
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(44, 102, 179, 0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.course-card .course-card-actions .btn-primary:hover {
    background: #174a8b;
}
.course-card .course-card-actions .btn-outline-primary:hover {
    background: #2F66B3;
    color: #fff;
    border-color: #2F66B3;
}
/* Hide seats/semesters info on hover and remove space */
/* .course-card .d-flex.mb-2 {
    transition: opacity 0.25s, max-height 0.25s;
    opacity: 1;
    max-height: 40px;
    overflow: hidden;
}
.course-card:hover .d-flex.mb-2,
.course-card:focus-within .d-flex.mb-2 {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
} */




/* Add this to your CSS */
.approach-list .d-flex.mb-4.align-items-center {
    transition: box-shadow 0.3s, background 0.3s, border-radius 0.3s;
    /* background: #fff; */
    /* border-radius: 16px; */
    cursor: pointer;
    position: relative;
    z-index: 1;
     padding: 10px;
}
.approach-list .d-flex.mb-4.align-items-center:hover,
.approach-list .d-flex.mb-4.align-items-center:focus-within {
    box-shadow: 0 4px 24px rgba(47, 102, 179, 0.13), 0 1.5px 8px rgba(44, 102, 179, 0.10);
    background: #eaf2fb;
    border-radius: 18px;
   
}
.approach-list .d-flex.mb-4.align-items-center:hover .approach-badge,
.approach-list .d-flex.mb-4.align-items-center:focus-within .approach-badge {
    animation: badge-bounce 0.5s;
    background: #174a8b !important;
    color: #fff !important;
}
@keyframes badge-bounce {
    0%   { transform: scale(1);}
    30%  { transform: scale(1.18);}
    60%  { transform: scale(0.92);}
    100% { transform: scale(1);}
}
.approach-list .d-flex.mb-4.align-items-center:hover .fw-bold,
.approach-list .d-flex.mb-4.align-items-center:focus-within .fw-bold {
    color: #2F66B3 !important;
}






/* Add this to your <style> section */
.blink-opacity {
    animation: blink-opacity-animation 1.5s infinite;
}

@keyframes blink-opacity-animation {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}



/* for flash effects */

/* Improved flash light effect for image hover */
.student-img-flash {
  position: relative;
  overflow: hidden;
}

.student-img-flash img {
  transition: filter 0.4s, transform 0.4s;
}
.student-img-flash:hover img {
  /* filter: brightness(1.15) blur(1px); */
  transform: scale(1.05);
}

.student-img-flash::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.0) 100%);
  opacity: 0;
}

.student-img-flash:hover::after {
  opacity: 1;
  animation: flash-light-move 0.7s linear;
}

@keyframes flash-light-move {
  0% {
    left: -60%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  60% {
    left: 100%;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}