:root {
    --primary:#0f4e84;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}



#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}



.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}



.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}



@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

  @media (max-width: 576px) {
    .navbar-brand img {
      max-height: 40px;
    }
  }

  


.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}



.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/img16.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

 .principal-section {
      padding: 60px 0;
    }
    .principal-section h2 {
      font-weight: bold;
      margin-bottom: 40px;
    }
    .principal-image {
      border-radius: 10px;
      width: 100%;
      max-width: 350px;
      box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    }
    .principal-name {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 5px;
    }
    .principal-designation {
      font-size: 0.95rem;
      color: #6c757d;
      margin-bottom: 20px;
    }
    .principal-text {
      text-align: justify;
      line-height: 1.6;
    }

    .outer-box {
      border: 2px solid #1849A9;
      border-radius: 15px;
      padding: 20px;
      background-color: #fff;
    }
    .tab-btn {
      display: block;
      width: 100%;
      background-color: #d1e9ff;
      border: none;
      padding: 12px;
      margin-bottom: 10px;
      text-align: left;
      border-radius: 8px;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    .tab-btn:hover,
    .tab-btn.active {
      background-color: #1849A9;
      color: white;
    }
    .image-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
    }
    .image-wrapper img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.6s ease;
    }
    .image-wrapper:hover img {
      transform: scale(1.05); 
    }
    .image-gradient {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 40%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    }
    .image-text {
      position: absolute;
      bottom: 10px;
      left: 0;
      width: 100%;
      color: white;
      padding: 0 15px;
      text-align: center;
      font-weight: 500;
    }

    



.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}



.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}



.team-item img {
    transition: .5s;
}

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

.title-divider {
        height: 3px;
        width: 80px;
        background: #0f4e84;
        margin: 15px auto 20px;
    }
    
    .title-divider-light {
        height: 3px;
        width: 80px;
        background: #fff;
        margin: 15px auto 20px;
    }
    
    .principal-section {
        position: relative;
    }
    
    .principal-frame {
        position: relative;
        padding: 10px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .principal-image {
        border: 5px solid white;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }
    
    .principal-message {
        position: relative;
    }
    
    .section-tagline {
        color: #0f4e84;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    
    .counter-box {
        background: white;
        transition: all 0.3s;
    }
    
    .counter-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .counter {
        font-size: 2.5rem;
        color: #0f4e84;
        font-weight: 700;
    }
    
    .feature-card {
        background: white;
        border-radius: 8px;
        padding: 30px 20px;
        transition: all 0.3s;
        border: 1px solid rgba(0,0,0,0.05);
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .feature-icon {
        color: #0f4e84;
    }
    
    .gallery-item {
        position: relative;
        overflow: hidden;
        transition: all 0.3s;
    }
    
    .gallery-item:hover {
        transform: translateY(-5px);
    }
    
    .gallery-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(15, 78, 132, 0.8);
        color: white;
        padding: 15px;
        transform: translateY(100%);
        transition: all 0.3s;
    }
    
    .gallery-item:hover .gallery-caption {
        transform: translateY(0);
    }
    
    .school-images {
        position: relative;
    }

    /* Contact Section Styling */
  .contact-info-card {
    background: white;
    border-left: 5px solid #0f4e84;
  }
  
  .contact-form-card {
    background: white;
    border-right: 5px solid #0f4e84;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }
  
  .contact-item h5 {
    color: #0f4e84;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .form-floating label {
    color: #666;
  }
  
  .form-control, .form-select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
  }
  
  .form-control:focus, .form-select:focus {
    border-color: #0f4e84;
    box-shadow: 0 0 0 0.25rem rgba(15, 78, 132, 0.25);
  }
  
  .btn-primary {
    background-color: #0f4e84;
    border-color: #0f4e84;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
  }
  
  .btn-primary:hover {
    background-color: #0c3d6b;
    border-color: #0c3d6b;
    transform: translateY(-2px);
  }
  
  /* Admission Banner Styling */
  .admission-banner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
  }
  
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 78, 132, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .banner-content h3 {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  }
  
  .btn-light {
    background: white;
    color: #0f4e84;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
  }
  
  /* Map Styling */
  .map-container {
    width: 100%;
    position: relative;
  }
  
  @media (max-width: 991px) {
    .contact-form-card {
      border-right: none;
      border-top: 5px solid #0f4e84;
    }
    
    .contact-info-card {
      margin-bottom: 2rem;
    }
    
    .banner-content h3 {
      font-size: 1.5rem;
    }
  }
    
    .main-image {
        width: 100%;
        z-index: 1;
    }
    
    .overlay-image {
        position: absolute;
        width: 40%;
        bottom: -20px;
        right: -20px;
        z-index: 2;
        border: 5px solid white;
    }
    
    .school-features {
        border-top: 1px dashed #ddd;
        border-bottom: 1px dashed #ddd;
        padding: 20px 0;
    }
    
    .feature-item {
        display: flex;
        margin-bottom: 15px;
    }
    
    .feature-item:last-child {
        margin-bottom: 0;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
        background: #0f4e84;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .testimonial-card {
        background: white;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        margin-top: 20px;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        margin-right: 15px;
    }
    
    .rating {
        color: #ffc107;
    }

     .page-header {
        position: relative;
    }
    
    .title-divider {
        height: 3px;
        width: 80px;
        background: #0f4e84;
        margin: 15px auto 20px;
    }
    
    .process-step {
        position: relative;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        background: #0f4e84;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-weight: bold;
    }
    
    .feature-card {
        background: white;
        border-radius: 8px;
        transition: all 0.3s;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        background: rgba(15, 78, 132, 0.1);
        color: #0f4e84;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .testimonial-card {
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .rating {
        color: #ffc107;
    }
    
    table th {
        background: #0f4e84 !important;
        color: white;
    }
    
    #admissionForm {
        background: white;
        padding: 30px;
        border-radius: 8px;
    }
    
    .form-control, .form-select {
        padding: 10px 15px;
        border-radius: 4px;
    }
    
    .btn-primary {
        background-color: #0f4e84;
        border-color: #0f4e84;
    }
    
    .btn-primary:hover {
        background-color: #0c3d6b;
        border-color: #0c3d6b;
    }



.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}



.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}