@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: #11284C;
  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 #F8B81A; */
}

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

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

.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 #F8B81A;
}

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

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

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

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

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

.mobile-book-btn {
  width: 100%;
  padding: 12px 20px;
  background-color: #11284C;
  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: #11284C;
  transform: translateY(-2px);
}

.mobile-menu-footer {
  /* margin-top: 30px; */
  padding: 20px 0;
  /* border-top: 1px solid #F8B81A; */
  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: #11284C;
  font-weight: 600;
}



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


/* Responsive table scroll for mobile */
@media (max-width: 767px) {
   
    .fonts-s-1{
        font-size: 1.6rem !important;
    }
     .fonts-s-3{
        font-size: 2.6rem !important;
    }
    .fonts-s-2{
        font-size: 1rem !important;
    }
     .fonts-s-4{
        font-size: 0.8rem !important;
    }

    .slider {
    padding: 10px 0 !important;
}

.slider-rtl {
    padding: 10px 0 !important;

}
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table {
        min-width: 600px; /* or higher if needed */
    }

    .phone-size2{
     font-size: 0.85rem !important;
    }
}





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

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



.cool-view-all-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #11284C 0%, #0A1A38 100%);
    border: 2px solid #F8B81A;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(248, 184, 26, 0.3);
}

.cool-view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F8B81A 0%, #F2A900 100%);
    transition: left 0.5s ease;
    z-index: 0;
}

.cool-view-all-btn:hover::before {
    left: 0;
}

.cool-view-all-btn .btn-text,
.cool-view-all-btn .btn-icon {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.cool-view-all-btn:hover .btn-text {
    color: #11284C;
}

.cool-view-all-btn:hover .btn-icon {
    color: #11284C;
    transform: translateX(8px);
}

.cool-view-all-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #F8B81A;
    border-radius: 50%;
    color: #11284C;
    font-size: 0.9rem;
}

.cool-view-all-btn:hover {
    box-shadow: 0 6px 25px rgba(248, 184, 26, 0.5);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 767px) {
    .cool-view-all-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
    .cool-view-all-btn .btn-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}


.blink {
    animation: blinkColor 1s steps(2, start) infinite;
}
@keyframes blinkColor {
    0%, 100% { color: #fff; }
    50% { color: #F8B81A; }
}

.btn-enroll {
    background: #11284C;
    border-radius: 8px;
    color: #fff;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(17, 40, 76, 0.08);
}
.btn-enroll:hover, .btn-enroll:focus {
    background: #F8B81A;
    color: #11284C;
    box-shadow: 0 4px 16px rgba(248, 184, 26, 0.18);
    text-decoration: none;
}





.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
}

.dropdown-menu {
    background: linear-gradient(135deg, #11284C 0%, #F8B81A 100%);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(17,40,76,0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.dropdown-item {
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    /* margin: 1px 2px; */
    transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover, .dropdown-item:focus {
    background: #F8B81A;
    color: #11284C;
}




/* for phone dropdawn */


.mobile-dropdown > a {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    /* color: #11284C; */
    font-weight: 600;
    /* padding: 12px 18px; */
    /* background: linear-gradient(90deg, #F8B81A 0%, #fff 100%); */
    border-radius: 10px;
    margin-bottom: 6px;
    transition: background 0.3s;
}

.mobile-submenu {
    display: none;
    list-style: none;
    padding-left: 18px;
    margin: 0;
    background: #f9f9f9;
    border-radius: 0 0 10px 10px;
}
.mobile-submenu.active {
    display: block;
    animation: fadeIn 0.3s;
}
.mobile-submenu li a {
    display: block;
    padding: 10px 0;
    color: #11284C;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: color 0.2s;
}
.mobile-submenu li a:hover {
    color: #F8B81A;
    background: #fffbe6;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px);}
    to { opacity: 1; transform: translateY(0);}
}