/* imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Freehand&display=swap');

@font-face {
    font-family: 'ragTime'; /* Choose a name for the font */
    src: url('../fonts/waltharringon_sh.TTF') format('truetype'); /* Path to your .ttf file */
    font-weight: normal; /* You can specify bold or normal here */
    font-style: normal; /* You can also specify italic here */
}


/* global Styling  */
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
}
html{
    font-size: 10px;
}
:root {
    --primary-color: #ff0000;
    --secondary-color: #ffca00;
    --text-color: #696969af;
    --border-color: rgb(233, 233, 233);
    --hover-color: rgb(255, 174, 0);
    --field-background: #006a4e13;
}
body{
    background-color: white;
    scrollbar-width: auto;
    scrollbar-color: var(--primary-color) transparent;
}
::-webkit-scrollbar {
    width: 13px;  /* Width of the scrollbar */
    height: 12px; /* Height of the scrollbar */
}
::-webkit-scrollbar-track {
    background-color: #f0f0f0; /* Background color of the track */
    border-radius: 10px; /* Rounded corners for the track */
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); /* Inner shadow */
}
::-webkit-scrollbar-thumb {
    background-color: var(--primary-color); /* Primary color for the thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
    border: 0.1px solid var(--border-color);
}


/* Header Styling */
header{
    position: sticky;
    top: 0;
    z-index: 300;
    background-color: white;
}
.preHeader{
    width: 100%;
    height: 4rem;
    background: var(--primary-color);
}
.innerPre{
    height: 100%;
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.preHeader .preLeft{
    height: 100%;
    display: flex;
    align-items: center;
}
.preHeader .preLeft h3, .navigation2 h3{
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
}
.logo{
    height: 7.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    margin-left: 1rem;
    display: flex;
    align-items: center;
}
.logo img{
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
}
.logo h1{
    display: inline-block;
    font-weight: 700;
    margin-left: 1rem;
    color: var(--primary-color);
    font-size: 4.5rem;
}
.preRight2{
    display: none;
}
#men{
    font-size: 3.5rem;
    color: white;
    cursor: pointer;
}
nav{
    width: 100%;
    padding: 0rem 1rem;
    background-color: var(--field-background);
    height: fit-content;
}
.navigation{
    display: flex;
    align-items: center;
    height: 5rem;
}
.navigation ul{
    list-style: none;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}
.navigation ul a{
    text-decoration: none;
    padding: 0rem 0.5rem;
    font-size: 1.8rem;
    font-weight: 500;
    color: inherit;
    text-align: center;
}
.navigation ul li{
    text-align: center;
    height: 100%;
    color: black;
    display: flex;
    align-items: center;
}
.navigation ul li:hover{
    color: var(--hover-color) !important;
    cursor: pointer;
}
.preRight h4{
    display: inline-block;font-size: 1.6rem; color: white;
}
.navigation2{
    display: none;
    justify-content: space-between;
}
.navigation2 i{
    display: block;
    color: black;
    height: 100%;
    width: auto;
    font-size: 2rem;
    cursor: pointer;
}

/* Drop Down Classes Styling  */
.dropp {
    width: 33rem;
    border-radius: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 17.7rem;
    backdrop-filter: blur(10px);
    z-index: 200;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out, padding 0.3s ease-in-out !important;
}
.dropp.animate {
    height: 20rem;
    padding: 1rem 2rem;
}
.aboutusDrop.dropp.animate{
    height: 26rem !important;
}
.dropp .head{
    color: var(--hover-color);
    font-size: 2rem;
}
.dropp ul{
    list-style: none;
}
.dropp ul li{
    margin: 0.7rem 0rem;
    color: white;
}
.dropp ul li a{
    text-decoration: none;
    color: inherit;
    font-size: 1.4rem;
    font-weight: 500;
    transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}
.dropp ul li a:hover{
    color: var(--hover-color);
    font-weight: 600;
}
.policiesDrop{
    transform: translateX(-68%);
}

/* phone header styling  */
.phoneHeader{
    position: fixed;
    z-index: 500;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    transition: right 0.5s ease-in-out, left 0.5s ease-in-out;
}
.phoneHeader.show {
    right: 0 !important;
}

.phoneHeader.hide {
    right: -100% !important;
}
.phoneHeader .innerPH{
    width: 85%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    right: 0;
}
.phoneHeader .innerPH .topHeader{
    width: 100%;
    height: fit-content;
    padding: 3rem 2rem;
    background-color: white;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    display: flex;
    align-items: center;
}
.phoneHeader .innerPH .topHeader img{
    max-width: 8rem;
    max-height: 8rem;
    width: auto;
    height: auto;
    margin-right: 1.5rem;
}
.phoneHeader .innerPH .topHeader .thDetail h3{
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-color);
}
.phoneHeader .innerPH .topHeader .thDetail p{
    font-size: 1.6rem;
    margin-top: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}
#close{
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 3.5rem;
    color: white;
    cursor: pointer;
}
.bottomMenu{
    width: 100%;
    padding: 1rem 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-height: 80%;
    overflow-y: auto;
}
.dropDownMenu {
    background-color: transparent;
    height: 3.1rem;
    overflow: hidden;
    transition: height 0.5s ease, background-color 0.5s ease;
    border-radius: 1rem;
    max-height: 22.5rem;
    margin: 1.5rem 0rem;
}
.abt{
    max-height: 30rem !important;
}
.subHead {
    cursor: pointer;
}
.submenu {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.dropDownMenu.expanded .submenu {
    opacity: 1;
}
.subHead, .submenu{
    margin-bottom: 0.5rem !important;
}
.submenu{
    margin-left: 3rem !important;
}
.bottomMenu .menuItem{
    height: 3rem;
    font-size: 2rem;
    padding: 1rem 2rem;
    font-weight: 700;
    cursor: pointer;
    color: white;
}
.bottomMenu .fa{
    color: var(--secondary-color);
}
.bottomMenu .fa-caret-down{
    color: white !important;
}
.freehand{
    font-family: Freehand, system-ui;
}
.red{
    color: var(--primary-color);
}

/* Footer styling  */
footer{
    width: 100%;
    height: 35rem;
    border-top: 1px solid var(--border-color);
}
footer .footerup{
    height: 85%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .footerup .section{
    height: 100%;
    width: 21%;
    padding: 0.5rem;
}
footer .footerup .break{
    height: 50%;
    width: 1px;
    background: var(--border-color);
    transform: translateY(-20%);
}
footer .footerup .footermain{
    text-align: center;
}
footer .footerup .footermain img{
    max-width: 30%;
    max-height: 30%;
    width: auto;
    height: auto;
    margin: auto;
}
footer .footerup .footermain h3{
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-top: 1.5rem;
}
footer .footerup .secti{
    padding: 1rem;
}
footer .footerup .secti h3{
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}
footer .footerup .secti ul{
    list-style: none;
    margin-top: 2rem;
}
footer .footerup .secti ul li{
    margin: 0.85rem 0rem;
}
footer .footerup .secti ul li a{
    text-decoration: none;
    font-size: 1.6rem;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}
footer .footerup .secti ul li a:hover{
    color: var(--secondary-color);
    font-weight: 700;
}
.fFindUs{
    width: 100%;
    height: 4.5rem;
    margin-top: 1rem;
    display: flex;
}
.fFindUs .FindIcon{
    height: 100%;
    padding: 0.5rem;
    width: 4.5rem;
    display: flex;
    align-items: center;
}
.fFindUs .FindDetails{
    height: 100%;
    width: calc(100% - 4.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fFindUs .FindDetails h4{
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-color);
}
.fFindUs .FindDetails p{
    font-size: 1.1rem;
    color: var(--text-color);
}
.fIcon{
    font-size: 2.9rem;
}
.LocationIcon{
    background: linear-gradient(45deg, #ff6b6b, #f06595, #a29bfe, #74b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.EmailIcon{
    background: linear-gradient(45deg, #D93025, #EA4335, #4285F4, #34A853);    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.CallIcon{
    background: linear-gradient(45deg, #34A853, #0F9D58);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer .footerBottom{
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .footerBottom p{
    font-size: 1.2rem;
}
footer .footerBottom #CompLink{
    transition: color 0.3s ease-in-out;
    cursor: pointer;
}
footer .footerBottom #CompLink:hover{
    color: var(--primary-color) !important;
}
.socialIcons{
    margin-top: 3rem;
}
.facebook {
    color: #1877F2; /* Facebook color */
}
.instagram {
    background: -webkit-linear-gradient(#f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background: linear-gradient(#f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.whatsapp {
    color: #25D366; /* WhatsApp color */
}
.icon{
    font-size: 3rem;
    margin: 0rem 0.6rem;
}

.homeBanner{
    min-height: 440px;
}
/* Fade Up Animation */
@keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-up {
    animation: fadeUp 1s ease-in-out forwards; /* Adjust duration and easing as needed */
  }

  
  /* Fade Down Animation */
  @keyframes fadeDown {
    0% {
      opacity: 0;
      transform: translateY(-40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-down {
    animation: fadeDown 1s ease-in-out forwards; /* Adjust duration and easing as needed */
  }
  
  /* Fade Right Animation */
  @keyframes fadeRight {
    0% {
      opacity: 0;
      transform: translateX(-40px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .fade {
    animation: fade 0.5s ease-in-out forwards; /* Adjust duration and easing as needed */
  }
  
  /* Fade Right Animation */
  @keyframes fade {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .fadeOut {
    animation: fadeOut 0.5s ease-in-out forwards; /* Adjust duration and easing as needed */
  }
  
  /* Fade Right Animation */
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  .fade-right {
    animation: fadeRight 1s ease-in-out forwards; /* Adjust duration and easing as needed */
  }
  
  /* Fade Left Animation */
  @keyframes fadeLeft {
    0% {
      opacity: 0;
      transform: translateX(40px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .fade-left {
    animation: fadeLeft 1s ease-in-out forwards; /* Adjust duration and easing as needed */
  }
  


  /* .................... */
  /* Fade Down Animation */
.fade-down {
    animation: fadeDown 1s forwards; /* Duration changed to 1s */
  }
  
  @keyframes fadeDown {
    0% {
      opacity: 1; /* Fully visible */
      transform: translateY(0); /* Original position */
    }
    100% {
      opacity: 0; /* Fully transparent */
      transform: translateY(40px); /* Move down by 20px */
    }
  }

  .fade-down-show {
    animation: fadeDownShow 1s forwards; /* Duration changed to 1s */
  }
  @keyframes fadeDownShow {
    0% {
      opacity: 0; /* Fully visible */
      transform: translateY(-40px); /* Original position */
    }
    100% {
      opacity: 1; /* Fully transparent */
      transform: translateY(0px); /* Move down by 20px */
    }
  }

  .fade-up-hide {
    animation: fadeUpHide 1s forwards; /* Duration changed to 1s */
  }
  @keyframes fadeUpHide {
    0% {
      opacity: 1; /* Fully visible */
      transform: translateY(0px); /* Original position */
    }
    100% {
      opacity: 0; /* Fully transparent */
      transform: translateY(-40px); /* Move down by 20px */
    }
  }
  
  /* Fade Left Animation */
  .fade-left-hide {
    animation: fadeLeftHide 1s forwards; /* Duration changed to 1s */
  }
  
  @keyframes fadeLeftHide {
    0% {
      opacity: 1; /* Fully visible */
      transform: translateX(0); /* Original position */
    }
    100% {
      opacity: 0; /* Fully transparent */
      transform: translateX(-40px); /* Move left by 20px */
    }
  }
  
  /* Fade Right Animation */
  .fade-right-hide {
    animation: fadeRightHide 1s forwards; /* Duration changed to 1s */
  }
  
  @keyframes fadeRightHide {
    0% {
      opacity: 1; /* Fully visible */
      transform: translateX(0); /* Original position */
    }
    100% {
      opacity: 0; /* Fully transparent */
      transform: translateX(40px); /* Move right by 20px */
    }
  }
  .widthCustom{
    width: 35rem;
  }
  

  /* Contact us section styling  */
.contactus{
    width: 95%;
    margin: 3rem auto;
}
.contactus .CUSendMessage{
    width: 100%;
    height: 40rem;
    display: flex;
    justify-content: space-between;
}
.contactus .CUSendMessage .cmLeft{
    width: 39.7%;
    background-color: rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    border-radius: 1rem;
    justify-content: center;
    align-items: center;
}
.contactus .CUSendMessage .cmLeft h3{
    font-size: 2.5rem;
    padding: 0rem 1rem;
    margin-bottom: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}
.contactus .CUSendMessage .cmLeft .cmLeftInner{
    text-align: center;
}
.contactus .CUSendMessage .cmRight{
    width: 59.7%;
    height: 100%;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contactus .CUSendMessage .cmRight h3{
    font-size: 2.4rem;
    color: var(--primary-color);
}
.contactus .CUSendMessage .cmRight .twoInputs{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.contactus .CUSendMessage .cmRight .twoInputs input, .contactus .CUSendMessage .cmRight input{
    width: 49.5%;
    height: auto;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    outline: none;
    border: 1px solid transparent;
    border-radius: 4000rem;
    background-color: rgba(0, 0, 0, 0.05);
}
.contactus .CUSendMessage .cmRight .input{
    width: 100% !important;
}
.contactus .CUSendMessage .cmRight textarea{
    padding: 1rem 2rem;
    font-size: 1.4rem;
    outline: none;
    border: 1px solid transparent;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
    background-color: rgba(0, 0, 0, 0.05);
}
#sendMessage{
    padding: 0.5rem 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    outline: none;
    border: 1px solid transparent;
    border-radius: 400rem;
    width: fit-content;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 1rem;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
#sendMessage:hover{
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--secondary-color);
}
.contactus .CUMap{
    width: 100%;
    height: 40rem;
    margin: 5rem 0rem;
}
.contactus .CUMap iframe{
    outline: none;
    border: 2px solid var(--primary-color);
    width: 100%;
    height: 100%;
    border-radius: 1.2rem;
}
.contactus .CUSendMessage .cmRight .input:focus, .contactus .CUSendMessage .cmRight .twoInputs input:focus{
    border: 1px solid var(--text-color);
}
  


.ourRatings{
    min-height: fit-content;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../images/reviewBG.jpg');
    object-fit: cover;
    background-position: center;
}
.rating{
    width: 350px;
    border-radius: 1.5rem;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.08);
}
.rating i{
    margin: auto 2px;
}
.mdMessage{
    background: linear-gradient(rgba(0, 0, 0, 0.75),rgba(0, 0, 0, 0.75)), url('../images/review.jpg');
    object-fit: cover;
    background-position: center;
}

.schoolname{
    font-family: 'ragTime', sans-serif;
}


.shade2{
    background: linear-gradient(rgba(0, 0, 0, 0),rgb(255, 0, 0));
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
}

/* Facilities Page Styling  */
.facilities{
    width: 100%;
    background-color: var(--border-color);
}
.fClass{
    width: 95%;
    margin: 0rem auto;
    padding: 3rem 1rem;
}
.facSelfMain{
    padding: 1rem 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.facility{
    background-color: white;
    width: 49.5%;
    height: 200px;
    margin: 1rem 0rem;
    padding: 2.5rem;
    border-radius: 1rem;
}
.fcHeadingIcon{
    font-size: 3.5rem;
    color: var(--primary-color);
}
.facility h3{
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}
.facility p{
    font-size: 1.6rem;
    color: var(--text-color);
    margin-top: 0.75rem;
}
