/* Fonts */
: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: "Poppins", 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: #2a2c39;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ef6603;
  /* 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: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #ef6603;
  /* 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: #060606;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ef6603;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}



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


/*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
.header {
  --background-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  margin-top: 81px;
  position: absolute;
}

.header .logo {
  line-height: 1;
}

.header .logo img {

  padding: 0;
  position: absolute;
  max-width: 5rem;
  padding: 2px;
  /* background: #ffffff; */
  border-radius: 50%;

}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
  ------------------------------*/
.scrolled .header {
  --background-color: rgba(42, 44, 57, 0.9);
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    margin-left: 5px;
    
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 8px 20px;
    font-size: 14px;
    font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active:focus {
    background-color: #ffc107;
    border-radius: 0px 19px 0px 19px;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);

  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: transparent;
    color: #ffc107;

  }

  .dropdown-menu .dropdown-item {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 17px;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #662e91;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: #ffc107;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: #ffc107;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
.nav-item{
  font-family: math;
  color: #000 !important;
  font-weight: 500;
}

p {
  font-size: 18px;
  text-align: justify;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

/* --------------------header slider--------------------- */
.hero-section {
  /* background: linear-gradient(135deg, #9b00e8, #ff0055); */
  /* background: linear-gradient(135deg, var(--bs-code-color), var(--bs-primary)); */
  background: rgb(2 75 149);
  min-height: 80vh;
  color: #fff;
  padding: 60px 0;
  position: relative;
}
.hero-section, h2{
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}
.slider-img {
  max-height: 500px;
  z-index: 1;
}

.animate-contain {
  height: 50px;
  overflow: hidden;
  /*text-align: center;*/
}
.animated-text {
  transition: 400ms all;
  margin-top: 0;
  animation: slide 3s infinite alternate ease-in-out;
  color: #fff;
  /* font-size: 27px; */
}
.animated-text span {
  display: block;
  font-weight: 800;
  color: var(--bs-yellow);
  font-size: 40px; /* Bigger font size */
}
/* @keyframes slide{
  0%,20%{margin-top:0;}
  40%,60%{margin-top:-60px;}
  80%,100%{margin-top:-120px;}
} */

/* .carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
 
}

.carousel-caption {
  position: absolute;
  left: 7%;
  top: 30%;
  text-align: left;
}

.carousel-caption h1 {
  font-weight: bold;
  text-shadow: 2px 3px 5px #dd8615;
} */

/* --------------------header slider End--------------------- */


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

  .latest {
    display: none;
  }

  .school-title {
    display: none;
  }

  /* .banner{
    height: 25rem;
  } */
  .header {
    margin-top: 74px;
  }
}


/*===================Top Header Slider===========================*/

body {
  margin: 0;
  color: #eee;
  font-size: 12px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
  text-decoration: none;
}

section,
.section {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  /* padding: 35px 0; */
  scroll-margin-top: 77px;
  overflow: clip;
}

h4 {
  color: #000;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

/*===========================latest news style=========================*/
.marqee-section {
   font-size: 20px;
    font-weight: 600;
    /* height: 40px; */
    color: var(--bs-yellow);
    background: rgb(2 75 149);
    font-family: math;
}

.marqee-section .latest {
  width: 100%;
  font-size: 1rem;
  color: #000;
  font-weight: bold;
  /* background: linear-gradient(150deg, #877c7c, #a2bcfb); */
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

::placeholder {
  color: #fff !important;
  opacity: 1;
}

/*-----------------------------------------------*/

.page-headings h1 {
  font-weight: bold;
 color: #000;
  font-family: math;
  font-weight: 800;
}

.page-headings p {
  font-size: 16px;
  text-align: justify;
  color: #110f0f;
  padding: 15px;
  box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
  border: 2px solid rgba(255, 255, 255, 0.18);
  line-height: 31px;
}

.sub-heading-bg h3 {
  background-color: rgb(2 75 149);
  padding: 7px;
  color: #fff;
  /* margin-bottom: 2rem; */
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 25px;
}

.sub-heading-bg p {
  color: #000;
}

.sub-headings h3 {
  color: black;
  margin-bottom: 2rem;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
  font-weight: 700;
}

.sub-headings p {
  color: #000;
}
/* ----------------------popup------------------------- */
.modal {
  background: rgba(0, 0, 0, 0.6);
}

.btn {
  font-family: 'Georgia', serif;
  border-radius: 0.25rem;
  padding: 10px 20px;
}

.btn-warning {
  background-color: #ffc107;
  border: none;
}

.btn-warning:hover {
  background-color: #e0a800;
}

.modal-content {
  border-radius: 10px;
  overflow: hidden;
}

/*--------------------- Footer Start ------------------------*/

.footer-section {
  /* background: #dbe4f6; */
  /* position: relative; */
  /* background-image: url(/assets/img/footer-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  position: relative;
    background: url('../gif/footer3.gif') center center / cover no-repeat;
    /* filter: brightness(70%); */
    
}

/* .footer-cta {
  border-bottom: 1px solid #ffc107;
} */

.single-cta i {
  color: #ffc107;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
  font-family: math;
  color: white;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

.cta-text span {
  color: #fff;
  font-size: 18px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-social-icon {
  text-align: center;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
  margin-bottom: 20px;

}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.facebook-bg {
  background: #3B5998;
}

.twitter-bg {
  background: #55ACEE;
}

.youtube-bg {
  background: #DD4B39;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ffc107;
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: #ffc107;
}

.footer-widget ul li a {
  color: #dfdfdf;
  text-transform: capitalize;
}

.copyright-area {
  /* background: #ffa500; */
  background: rgb(2 75 149);
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.copyright-text p a {
  color: #ffc107;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: #ff5e14;
}

.footer-menu li a {
  font-size: 14px;
  color: #fff;
}

/*==================== Footer End ======================*/


.about-banner-img {
  /* background: url(/assets/img/banner/about.jpg) no-repeat center center; */
  background: url('../img/banner/about.jpg') no-repeat center center;
  background-size: cover;
}
.vision-banner-img{
  background: url('../img/banner/vision-mission.jpg') no-repeat center center;
  background-size: cover;
}
.message-banner-img{
  background: url('../img/banner/message.jpeg') no-repeat center center;
  background-size: cover;
}
.overview-banner-img {
  background: url('../img/banner/overview.jpg') no-repeat center center;
  background-size: cover;
}
.education-banner-img{
  background: url('../img/banner/education.jpeg') no-repeat center center;
  background-size: cover;
}
.sports-banner-img {
  background: url('../img/banner/sports.jpeg') no-repeat center center;
  background-size: cover;
}
.extra-curricular-banner{
   background: url('../img/banner/extra-curricular.jpeg') no-repeat center center;
  background-size: cover;
}
.nutrition-banner-img{
   background: url('../img/banner/nutrition.jpeg') no-repeat center center;
  background-size: cover;
}
.special-courses-banner{
   background: url('../img/banner/special-courses.jpeg') no-repeat center center;
  background-size: cover;
}
.transportation-banner{
   background: url('../img/banner/transport.jpeg') no-repeat center center;
  background-size: cover;
}
.school-facility-banner{
   background: url('../img/banner/school-facility.jpg') no-repeat center center;
  background-size: cover;
}
.gallery-banner-img {
 background: url('../img/banner/gallery-banner.jpg') no-repeat center center;
  background-size: cover;
}
.staff-banner {
 background: url('../img/banner/staff.jpg') no-repeat center center;
  background-size: cover;
}
.contact-banner-img{
  background: url('../img/banner/contact.jpg') no-repeat center center;
  background-size: cover;
}


/* ---------------------nuturing-child----------------------------- */

.nuturing-child {
  background: url('../img/home-bg.jpg') center center / cover no-repeat;
  position: relative;
  min-height: 85vh;
}

.overlay-card {
  background-color: var(--bs-tertiary-color);
  border-radius: 20px;
  color: #fff;
  padding: 1rem;
}

.student-image {
 width: 100%;
    max-width: 280px;
    position: absolute;
    bottom: 0;
    left: 363px;
}

/* @media only screen and (min-width: 1024.98px) and (max-width: 1440.98px){
 .student-imagee {
    max-width: 640px;
  }
  .wrapper {
    flex-direction: column;
    align-items: center;
  }
} */
@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .student-image {
    max-width: 700px;
  }
}

@media only screen and (min-width: 720px) and (max-width: 1280px) {
  .wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1482px) {
  .student-image {
            max-width: 308px;
        left: 116px;
  }

  .wrapper {
    flex-direction: column;
    align-items: center;
  }

}

@media (max-width: 992px) {
  .nuturing-child {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .student-image {
    position: relative;
    display: block;
    margin: 2rem auto 0 auto;
    max-width: 50%;
    /* ensures it doesn’t overflow */
    height: auto;
    left: 0;
  }

  .overlay-card {
    padding: 1rem;
    text-align: center;
  }

  /* .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
  } */
}

@media (max-width: 576px) {
  .student-image{
    max-width: 600px;
  }
     
}

/* --------------Our Impacts----------------------- */
.circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: bold;
    color: #fff;
    /* background-image: url('/assets/img/anual-report.jpg'); */
    background-image: url('../img/anual-report.jpg');
}
.circle-top {
    /* background: var(--bs-tertiary-color); */
    background:#ffa500a3;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circle-bottom {
    background: var(--bs-border-color-translucent);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: math;
}
.shadow-yellow-glow {
  box-shadow: 0 0 30px rgba(255, 193, 7, 1);
}

/* ----------------------------------------Message Section----------------------- */
.message-section {
    position: relative;
    background: url('../gif/message.gif') center center / cover no-repeat;
    min-height: 100vh; /* full height section */
  }

  /* optional dark overlay for readability */
  .message-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.55);  */
  }

  .message-section .container {
    position: relative;
    z-index: 2;
  }

  .overlay-card {
    background: rgba(0, 0, 0, 0.5); 
    border-radius: 12px;
    font-family: 'Font Awesome 5 Pro';
  }
/* ------------------------------------- */

   
