@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'kholic';
    src: url('../fonts/kholic.otf') format('opentype'); /* corrected format */
    font-weight: normal;
    font-style: normal;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Urbanist", sans-serif;
}
body {
    background-image: url('../images/bg.png'); 
    background-size: cover;      
    background-repeat: no-repeat; 
    background-position: top;  
    height: 2838px;      
    position: relative;     
}
body ul {
    padding-left: 0;
    list-style: none;  
    margin-bottom: 0px;
}
body a{
    color: white;
    text-decoration: none;
}

body ul li {
    list-style: none;   
}
.navbar{
    background-color: rgb(34, 104, 87, 0.29);
    border-bottom: 2px solid #247663; 
}
header{
    margin: 0px 120px;
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.logo{
    width: 262px;
    height: 97px;
}
nav ul {
display: flex;
align-items: center;
gap: 30px;
}
nav ul li a{
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s ease;
    letter-spacing: 1%;
}
nav ul li a:hover{
   color: #FFB703;
    text-shadow: 0px 2px 26px #FFB703;
}
.btns{
    display: flex;
    gap: 20px;
}
.btn-1{
    border: 1px solid #fff;
    color: white;
    width: 180px;
    height: 55px;
    background: transparent;
    font-size: 17px;
    font-weight: bold;
    border-radius: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease; /* smooth transition added */
}

.btn-1:hover{
    color: white;
    background: linear-gradient(
        103deg,          
        #996E02 0%, 
        #FFB703 41%, 
        #996E02 96%
    );
    border: none;
}

.btn-2{
    border: none;
    color: white;
    width: 180px;
    height: 55px;
    background: linear-gradient(
        103deg,          
        #996E02 0%, 
        #FFB703 41%, 
        #996E02 96%
    );
    font-size: 17px;
    font-weight: bold;
    border-radius: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease; /* smooth transition added */
}

.btn-2:hover{
    border: 1px solid #fff;
    color: white;
    background: transparent;
}
/* Hamburger */
.menu-toggle {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 99;
}

.menu-toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    left: 0;
    transition: 0.4s ease;
    border-radius: 2px;
}

/* Lines position */
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

/* Animate to X */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.hero{
   margin: 0px 120px;
   display: flex;
   justify-content: space-between;
   align-items: center; 
   padding: 315px 0px;
}
.hero h3{
    font-size: 60px;
     font-family: 'kholic', sans-serif;
     color: white;
     line-height: 70px;
}
.hero h3 span{
    font-size: 103px;
    color: #FBB403;
    font-family: 'kholic', sans-serif;
     line-height: 103px;
}
.hero p{
    font-size: 20px;
    color: white;
    width: 500px;
}
.about{
margin: 0px 120px;
  margin-top: 700px;
  text-align: center;
}
.about h1{
     font-size: 103px;
    color: #FBB403;
    font-family: 'kholic', sans-serif;
     line-height: 103px;
}
.about h3{
    font-size: 42px;
    color: #fff;
    font-weight: 300;
    text-transform: capitalize;
    line-height: 62px;
    margin-bottom: 20px;
}
.about p{
    width: 950px;
    margin: 0 auto;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    line-height: 33px;
    margin-bottom: 40px;
}
.about ul li{
    width: 950px;
    margin: 0 auto;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    line-height: 33px;
    margin-bottom: 5px;
}
.about .btns{
    justify-content: center;
    margin-top: 20px;
}
footer{
    margin-top: 100px ;
    margin-left: 25px;
    margin-right: 25px;
  border-radius: 45px;
border: 0.5px solid #14A395;
padding: 44px 90px;
background: linear-gradient(0deg, rgba(60, 200, 187, 0.00) -4.81%, #24C8B8 170.69%);
}
.footer-con{
display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.footer-con .nav ul{
    display: flex;
align-items: center;
gap: 30px;
}
.footer-con .nav ul li a{
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s ease;
    letter-spacing: 1%;
}
.footer-con .nav ul li a:hover{
   color: #FFB703;
    text-shadow: 0px 2px 26px #FFB703;
}
footer p{
    font-size: 18px;
    font-weight: 300;
    color: white;
    margin: 25px 0px;
}
footer .line{
    width: 100%;
    height: 1px;
    background: #fff;
}
.bottom-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
}
.bottom-row ul li{
    color: #fff;
    font-size: 16px;
    display: flex;
    gap: 20px;
    align-items: center;
    text-transform: lowercase;
}
 .social-icons ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}
 .social-icons ul li {
    list-style: none;
    margin-left: 20px;
}
.social-icons ul li i {
    color: #fff;
    font-size: 24px;
}
.social-icons ul li i:hover {
    color: #FFB703;
    text-shadow: 0px 2px 26px #FFB703;
}
.bottom-txt{
    text-align: center;
    margin-top: 20px;
    text-transform: capitalize;
    font-size: 18px;
    color: #fff;
}
.bottom-txt span{
    color: #FFB703;
}
.about-sec{
    padding-top:100px;
}
.about-sec img{
    border-radius:20px;
}
.about-sec .content{
    display:flex;
    flex-direction:column;
}
.about-sec .content h1{
     font-size: 60px;
     font-family: 'kholic', sans-serif;
     color: white;
     line-height: 70px;
}
.about-sec .content p{
    font-size: 20px;
     color: white;
     line-height: 28px;
}
.courses-sec{
    padding:80px;
}
/* header */
.course-header{
    text-align:center;
    margin-bottom:60px;
}

.course-header h1{
    font-size:70px;
    font-family:'kholic';
    color:#FBB403;
    margin-bottom:20px;
}

.course-header p{
    font-size:20px;
    color:#fff;
    max-width:800px;
    margin:0 auto;
    line-height:32px;
}

/* grid spacing */
.courses-sec .row{
    display:flex;
    flex-wrap:wrap;
}

/* cards */
.courses-sec .content{
    display:flex;
    flex-direction:column;
    border-radius:20px;
    padding:25px;
    background: rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    transition:0.4s;
    height:100%;
}

/* hover effect */
.courses-sec .content:hover{
    transform: translateY(-10px);
    border:1px solid #FFB703;
    box-shadow:0 0 30px rgba(255,183,3,0.2);
}

/* image */
.courses-sec .content img{
    border-radius:15px;
    margin-bottom:15px;
}

/* title */
.courses-sec .content h2{
    font-size:24px;
    font-family:'kholic';
    color:#FBB403;
    margin-bottom:10px;
}

/* text */
.courses-sec .content p{
    font-size:16px;
    color:#fff;
    line-height:26px;
    margin-bottom:20px;
}

/* buttons */
.btn-group{
    display:flex;
    gap:10px;
    margin-top:auto;
}

.btn-group a{
    flex:1;
    text-align:center;
    font-size:14px;
    padding:10px;
    border-radius:30px;
}

.books-sec{
    padding-top:100px;
}
.books-sec .book-img {
    overflow: hidden;
    border-radius: 20px;
}

.books-sec .book-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blogs-sec{
     padding-top:100px;
}
.blogs-sec .content{
    display:flex;
    flex-direction:column;
    border-radius:20px;
    padding:15px;
    border: 2px solid #fff;
    text-align:left;
}
.blogs-sec .content img{
    border-radius:20px;
    margin-bottom:20px;
}
.blogs-sec .content h1{
    font-size: 35px;
     font-family: 'kholic', sans-serif;
     color: white;
     line-height: 70px;
}
.blogs-sec .content p{
    font-size: 20px;
     color: white;
     line-height: 28px;
}
.blogs-sec .content .bot-row{
    display:flex;
    justify-content:space-between;
    align-items: center;
}
.testimonial-sec{
     padding:100px;
}
.testimonial-sec .test-header{
    text-align:center;
    margin-bottom:60px;
}
.testimonial-sec .test-header h1{
    font-size:70px;
    font-family:'kholic';
    color:#FBB403;
    margin-bottom:20px;
}

.testimonial-sec .test-header p{
    font-size:20px;
    color:#fff;
    max-width:800px;
    margin:0 auto;
    line-height:32px;
}
.testimonial-card {
    width: 100%;
    background-color: #f7f8fa; /* light gray */
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
    margin: 20px auto;
}

.quote {
  display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: #1f2937; /* dark gray */
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.user-details .user-name {
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.user-details .user-role {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}
.contact-sec{
    padding-top:100px;
}
.contact-header {
      text-align: center;
      margin-bottom: 40px;
      
    }

    .contact-header h1 {
      font-size: 60px;
      color:#fff;
      font-family: 'kholic', sans-serif;
    }
.contact-header p{
    font-size:20px;
      color:#fff;
}
    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: space-between;
    }

    .contact-form, .contact-info {
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      flex: 1 1 400px;
    }

    .contact-form h2, .contact-info h2 {
      margin-bottom: 20px;
    color: #16a395;
    font-family: 'kholic', sans-serif;
    text-align: center;
    font-size: 40px;
    line-height: 50px;
    }

    .contact-form input, 
    .contact-form textarea {
      width: 100%;
      padding: 15px;
      margin-bottom: 20px;
      border-radius: 10px;
      border: 1px solid #ccc;
      font-size: 16px;
      resize: none;
    }

    .contact-form button {
      background: #16a395;
      color: #fff;
      border: none;
      padding: 15px 30px;
      border-radius: 10px;
      cursor: pointer;
      font-size: 16px;
      transition: 0.3s;
    }

    .contact-form button:hover {
      background: #138274;
    }

    .contact-info p {
      margin-bottom: 15px;
      font-size: 16px;
    }

    .map {
      margin-top: 30px;
      border-radius: 15px;
      overflow: hidden;
      height: 300px;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
      }
    }
    .login-sec{
        padding-top:100px;
    }
     .auth-wrapper {
      background:#fff;
          margin: 0 auto;
    width: 600px;
      border-radius:15px;
      box-shadow:0 10px 25px rgba(0,0,0,0.1);
      overflow:hidden;
    }
    .form-header {
      display:flex;
    }
    .form-header button {
      flex:1;
      padding:15px;
       font-family: 'kholic', sans-serif;
      cursor:pointer;
      border:none;
      background:#f4f4f9;
      font-size:20px;
      font-weight:600;
      transition:0.3s;
    }
    .form-header button.active {
      background:#16a395;
      color:#fff;
    }
    .form-container {
      padding:30px;
    }
    .form-container form {
      display:none;
      flex-direction:column;
    }
    .form-container form.active {
      display:flex;
    }
    .form-container input {
      padding:15px;
      margin-bottom:20px;
      border:1px solid #ccc;
      border-radius:10px;
      font-size:16px;
    }
    .form-container button.submit-btn {
      padding:15px;
      border:none;
      border-radius:10px;
      background:#16a395;
      color:#fff;
      font-size:18px;
      cursor:pointer;
      transition:0.3s;
      font-weight: 600;
    }
    .form-container button.submit-btn:hover {
      background:#138274;
    }
    .form-footer {
          text-align: center;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 600;
    }
    .form-footer a {
      color:#16a395;
      text-decoration:none;
    }
    .form-footer a:hover {
      text-decoration:underline;
    }
    .about-row{
        display: flex;
    align-items: center;
    padding: 60px 0px;
    }
    .about-sec h4{
       font-size:70px;
    font-family:'kholic';
    color:#FBB403; 
    text-align:center;
    }
    .philo-sec{
    text-align: center;
    padding: 80px 20px;
    position: relative;
}



.philo-sec h1{
    font-size:70px;
    font-family:'kholic';
    color:#FBB403;
}

.philo-sec p{
    color:#fff;
    font-size:20px;
    margin:20px 0;
}
.philo-sec .divider{
    color: #FFB703;
    font-size: 22px;
}
.mission-sec{
    text-align:center;
    padding:60px 20px;
    position:relative;
}

/* glow background */

/* heading */
.mission-sec h1{
    font-size:70px;
    font-family:'kholic';
    color:#FBB403;
    margin-bottom:30px;
}

/* main text */
.mission-main{
    font-size:22px;
    color:#fff;
    max-width:800px;
    margin:0 auto 60px;
    line-height:38px;
}

/* points */
.mission-points{
    display:flex;
    justify-content:center;
    gap:50px;
    flex-wrap:wrap;
}

.item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:18px;
}

.item span{
    color:#FFB703;
    font-size:22px;
}
.item p{
    margin-bottom:0px;
}

/* hover glow */
.item:hover{
    color:#FFB703;
    text-shadow:0px 0px 15px rgba(255,183,3,0.7);
    transition:0.3s;
}
.vision-sec{
    text-align:center;
    padding:60px 200px;
}

.vision-sec h1{
    font-size:60px;
    font-family:'kholic';
    color:#FBB403;
}

.vision-sec p{
    font-size:24px;
    color:#fff;
    line-height:40px;
}
.why-sec{
        padding: 60px 120px;
    text-align:center;
}
.why-sec h1{
    font-size:60px;
    font-family:'kholic';
    color:#FBB403;
}

.features{
    display:flex;
    gap:30px;
    margin-top:50px;
}

.box{
    flex:1;
    padding:30px;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    transition:0.3s;
}

.box:hover{
    transform:translateY(-10px);
    background:rgba(255,183,3,0.1);
}

.box h3{
    color:#FBB403;
}
.box p{
    color:#fff;
}
.mobile-btns {
    display: none;
}