:root {
    --primary-orange: #ff0000;
    --dark-overlay: rgba(0, 0, 0, 0.45);
}

body {
    font-family: 'Inter', sans-serif;
  
}


.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
  
   

}

.bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            filter: brightness(.4);

  mask-image: linear-gradient(to bottom, rgb(255, 255, 255) 50%, transparent 100%);
        }
@media (min-width: 768px) {
            
            h1 { font-size: 3.5rem; }
        }

        /* Large Desktops */
        @media (min-width: 1200px) {
            .hero-section {
                height: 90vh;
            }
            h1 { font-size: 4.5rem; }
        }

       

.text-orange {
    
    color: #FFC105!important;
}



.btn-orange:hover {
    background-color: #0000A0;
    color: white;
}

.btnstart {
    z-index: 233;
    background-color: #0000A0;
    color: white;
    font-size: 1.1rem;
    transition: transform 0.2s;
}




.badge-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

.play-icon {
    color: var(--primary-orange);
    margin-right: 8px;
}

.promo-badge {
    background-color: #FFC105;
    color:  #A60512;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    z-index: 223;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 10px;
}

.navbar-nav .nav-link:hover {
    color: white !important;
}


.logo{
    filter: brightness(0) invert();
}





       
        .lang-card {
            background: #fff;
            border: 2px solid transparent;
            border-radius: 24px;
            padding: 20px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        }

        .lang-card:hover {
            border-color:  #0000A0;
        }

        .lang-code {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }

        .lang-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .lang-desc {
            color: #6c757d;
            font-size: 1rem;
            line-hxeight: 1.5;
            margin-bottom: 25px;
        }

        /* Skill Level Badges */
        .level-badge {
            background-color: #f0f0f0;
            color: #444;
            border-radius: 20px;
            padding: 6px 14px;
            font-size: 0.85rem;
            margin-right: 5px;
            margin-bottom: 10px;
            display: inline-block;
            text-decoration: none;
        }
.choose{

    background: #fff;
            border: 2px solid transparent;
            border-radius: 24px;
       
        
            transition: all 0.3s ease;

            animation: fadeInUp 0.6s ease-out forwards;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
@keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



        .bi{
            color:#A60512 ;
        }
 .choose:hover{
            border-color: #A60512;
           
        

        .bi{
            background-color: #A60512;
            color: #ffffff;
            padding-inline: 10px;
            border-radius: 20%;
        }
    }

    .star{
        color: #FFC105;
    }

      
   .grid-container{
    margin-bottom: 0;
        /* width: auto;
        aspect-ratio: 1; */
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 15px;
        
      }
      .pic{
         width:100%;
        aspect-ratio: 1;
        position: relative;
        background-color: aquamarine;
        border-radius: 15px;
        overflow: hidden;
      }
      .pic img{
        height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%)scale(1);
        transition: all .5s ease-in-out;
      }
      .pic img:hover{
transform: translate(-50%, -50%)scale(1.5);
      }
     


.form-control{
  font-size: 15px;
 opacity: 0.5;
  
}

      
.ielts-footer {
  background: #000000;
  color: #fff;
  padding: 60px 0 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-box h4 {
  margin-bottom: 20px;
  font-size: 20px;
  position: relative;
}

.footer-box h4::after {
  content: '';
  width: 40px;
  height: 3px;
  background: #A60512;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer-box p {
  font-size: 14px;
  line-height: 24px;
  color: #ddd;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #A60512;
  padding-left: 6px;
}

/* Contact icons hover */
.footer-box i {
  margin-right: 8px;
  color: #ffb703;
}

/* Newsletter */
.newsletter-form input {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  margin-bottom: 10px;
  border-radius: 4px;
}

.newsletter-form button {
  width: 100%;
  padding: 10px;
  border: none;
  background:#0000A0;
  color: #ffffff;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background:  ;
  transform: translateY(-2px);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: #ffffff;
}

