 @font-face {
    font-family: myFirstFont;
    src: url(../Poppins/Poppins-Regular.ttf);
}
@font-face {
  font-family: bold;
  src: url(../Poppins/Poppins-Bold.ttf);
}
  *{
    /* overflow: hidden; */
    /* border: 1px solid yellow; */
  }
  body{
    background-image: linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)),url(../image/Ghibli/2.png);
    background-position: center;
    background-size: cover;
    position: relative;
    font-family: myFirstFont;
  }

  
    /* Website Scrollerbar */
    body::-webkit-scrollbar {
      width: 5px !important;
      height: 5px !important;
  }
  body::-webkit-scrollbar-track {
      background: #3838387c !important;
  }
  body::-webkit-scrollbar-thumb {
      background-color: #e0120ba4 !important;
      border: 1px solid #ff020279 !important;
      border-radius: 1px !important;
  }

  
  .header{
    min-height: 100vh;
    width: 100%;
    
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
    
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
    
}
.nav-links a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #ff0000;
    display: block;
    margin: auto;
    transition: 0.5s;
    
}
.nav-links ul li:hover::after{
    width: 100%;
}
.icon{
  display:none;
}
.text-box{
  width: 90%;
  color: #fff;
  position:absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%,50%);
  text-align: center;
}
.text-box h1{
  font-size: 62px;
  font-weight: bold;

}
.text-box p{
  margin: 10px 0 40px;
  font-size: 14px;
  color: #fff;
  
}
:root{
--white: #fff;
--text-clr: #000024;
--primary: #3e2093;
--secondary: #000008;
/* --secondary: #c0c1d2; */
--input-bg: #f1f1ff;
--btn-hvr: #1a0065;
--tra: rgba(255, 255, 255, 0.959);
/* --tra: rgba(255, 255, 255, 0.863); */
--bordcolor:rgba(0, 26, 255, 0.082);
/* --bordcolor:rgba(51, 61, 148, 0.521); */
}

*{
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
font-family: myFirstFont;
}

body{
font-size: 14px;
color: var(--text-clr);
}

.wrapper{
width: 100%;
padding: 0 10px;
margin-top: 20px;
display: flex;
justify-content: center;
}

.r_form_wrap{
width: 500px;
max-width: 100%;
}

.r_form_wrap .title{
padding: 25px;
background: var(--white);
border-radius: 3px;
margin-bottom: 20px;

}

.r_form_wrap .title p{
font-size: 25px;
text-align: center;
font-family: bold;
}

.r_form{
padding: 40px;
border-radius: 3px;
background: var(--tra);
}

.r_form .input_wrap{
width: 100%;
margin-bottom: 25px;
}

.r_form .input_wrap label{
display: block;
margin-bottom: 5px;
}

.r_form .input_wrap .input_item{
position: relative;
width: 100%;
}

.r_form .input_wrap .input_item .input{
width: 100%;
border-radius: 3px;
height: 40px;
border: 2px solid var(--input-bg);
background: var(--input-bg);
padding: 10px 20px;
padding-left: 50px;
transition: 0.5s ease;
color: var(--secondary);
border-color: var(--bordcolor);
}

.r_form .input_wrap .input_item .input:focus{
border-color: var(--primary);
}

.r_form .input_wrap .input_item .icon{
position: absolute;
top: 12px;
left: 20px;
color: var(--secondary);
font-size: 16px;
}
#icon{
position: absolute;
top: 12px;
left: 20px;
color: var(--secondary);
font-size: 16px;
}

.r_form .input_wrap .input_radio{
display: flex;
}

.r_form .input_wrap .input_radio .input_radio_item{
background: var(--input-bg);
margin-right: 25px;
padding: 20px;
border-radius: 3px;
position: relative;
width: 100px;
}

.r_form .input_wrap .input_radio .input_radio_item .radio_mark{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: var(--secondary);
border: 2px solid transparent;
border-radius: 3px;
margin: 0;
cursor: pointer;
transition: 0.5s ease;
}

.r_form .input_wrap .input_radio .input_radio_item .radio_mark .i{
margin-right: 5px;
display: inline-block;
}

.r_form .input_wrap .input_radio .input_radio_item .radio{
position: absolute;
top: 0;
left: 0;
opacity: 0;
}

.r_form .input_wrap .input_radio .input_radio_item .radio:checked ~ .radio_mark{
color: var(--primary);
border-color: var(--primary);
}

.button{
width: 100%;
border: 0;
background: var(--primary);
padding: 10px;
border-radius: 3px;
height: 40px;
color: var(--white);
cursor: pointer;
transition: 0.5s ease;
}

.button:hover{
background: var(--btn-hvr);
}

.none_div{
  height: 100px;
}
/* Course */
#course{
  border-color: var(--bordcolor);
}

  #course:focus{
  border-color: var(--primary);
  }

.r_form .input_wrap .input_item{
  position: relative;
  width: 100%;
  }
  
  .r_form .input_wrap .input_item .input{
  width: 100%;
  border-radius: 3px;
  height: 40px;
  border: 2px solid var(--input-bg);
  background: var(--input-bg);
  padding: 10px 20px;
  padding-left: 50px;
  transition: 0.5s ease;
  color: var(--secondary);
  border-color: var(--bordcolor);
  }
  


  .clear_ad{
    margin-top: 10px;
  width: 100%;
  border: 0;
  background: var(--btn-hvr);
  padding: 10px;
  border-radius: 3px;
  height: 40px;
  color: var(--white);
  cursor: pointer;
  transition: 0.5s ease;
  }
  
    .clear_ad:hover{
  background: var(--primary);
  }



/* Media query for responsive */

@media (max-width: 700px) {

  *{
      overflow-x: hidden;
      margin: 0;
      padding: 0;
  
  }

  #logo-img{
      padding: 10px;
  }
  
  .nav-links ul li{
      display: block;
  }
  .nav-links{
      position: absolute;
      background: #f44336;
      height: 100vh;
      width: 200px;
      top: 0%;
      right: -200px;
      text-align: left;
      z-index: 2;
      transition: 1s;
  }
  .icon{
      display: block;
      color: #fff;
      margin: 10px;
      font-size: 25px;
      cursor: pointer;
  }
  .nav-links ul{
      padding: 30px;
  }
    /* Admission form */
  .input_item{
    overflow: hidden;
  }
  
  /* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background: #f9f9f9;
    color: #333;
}

/* Header Section */
.header {
    width: 100%;
    height: 90vh;
    background: url('../image/header-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}
.hero-btn {
    display: inline-block;
    background: #ff5733;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}
.hero-btn:hover {
    background: #d44121;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
}
nav ul {
    list-style: none;
    display: flex;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}
nav ul li a:hover {
    color: #ff5733;
}

/* Mission & Vision */
.mission-vision {
    text-align: center;
    padding: 50px 5%;
    background: white;
}
.mission-vision h1 {
    margin-bottom: 20px;
    font-size: 2rem;
}
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.mission, .vision {
    width: 45%;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 10px;
    margin: 10px;
}

/* Gallery Section */
.gallery {
    text-align: center;
    padding: 50px 5%;
    background: #fff;
}
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.gallery-item img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}
.gallery-item img:hover {
    transform: scale(1.1);
}

/* Footer Section */
.footer {
    background: #222;
    color: white;
    padding: 40px 5%;
    text-align: center;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-about, .footer-links, .footer-contact {
    width: 30%;
    margin-bottom: 20px;
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li a {
    text-decoration: none;
    color: white;
    display: block;
    margin: 5px 0;
    transition: 0.3s;
}
.footer-links ul li a:hover {
    color: #ff5733;
}
.social-links img {
    width: 30px;
    margin: 10px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    .hero-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    .mission, .vision {
        width: 90%;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-about, .footer-links, .footer-contact {
        width: 100%;
    }
}
.review-card .review-img { display: none; }
}
   