*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
  }
  
  body{
    background:#0f172a;
    color:white;
    overflow-x:hidden;
  }
  
  /* NAV */
  nav{
    position:fixed;
    width:100%;
    top:0;
    display:flex;
    justify-content:space-between;
    padding:15px 50px;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(10px);
    z-index:1000;
  }
  
  nav h2{
    color:#38bdf8;
  }
  
  nav ul{
    display:flex;
    gap:20px;
    list-style:none;
  }

  
  nav ul li{
    cursor:pointer;
  }
  
  nav ul li:hover{
    color:#38bdf8;
  }
  
  .hero{
    height:100vh;
    background:url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
  }
  
  /* Dark overlay for readability */
  .hero::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
    background-image: url(img/maleteach.JPG);
    background-size: 130%;
    background-repeat: no-repeat;
  }
  
  .hero-content{
    position:relative;
    z-index:1;
  }
  
  .hero h1{
    font-size:60px;
  }
  .hero h1 {
        font-size: 2.2rem;
        display:block;
        text-shadow: 0 0 20px #0ff;
      }
      .hero h2{
        display: none;
        font-size:24px;
      }
  .hero p{
    margin-top:10px;
    opacity:0.8;
    font-size:18px;
  }
  
  .btn{
    margin-top:20px;
    padding:12px 25px;
    background:#38bdf8;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
    transition:0.3s;
  }
  
  .btn:hover{
    transform:scale(1.1);
  }
  
  /* SECTIONS */
  .section{
    padding:80px 50px;
  }
  
  .section h2{
    color:#38bdf8;
    margin-bottom:30px;
  }
  
  /* GRID CARDS */
  .grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
  }
  
  .card{
    background:#1e293b;
    border-radius:12px;
    overflow:hidden;
    transition:0.3s;
  }
  
  .card:hover{
    transform:translateY(-8px);
  }
  
  .card img{
    width:100%;
    height:180px;
    object-fit:cover;
  }
  
  .card-content{
    padding:15px;
  }
  
  /* GALLERY */
  .gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:10px;
  }
  
  .gallery img{
    width:100%;
    height:150px;
    object-fit:cover;
    border-radius:10px;
  }
  
  /* FOOTER */
  footer{
    text-align:center;
    padding:20px;
    background:#020617;
  }
  .galla1:hover{
    width: 103%;
  }
  
  
  .nav-links {
        list-style: none;
        display: flex;
        gap: 20px;
      }
  
      .nav-links li a {
        text-decoration: none;
        color: #fff;
        transition: color 0.3s;
      }
  
      .nav-links li a:hover {
        color: #0ff;
      }
  
      /* Hamburger menu */
      #nav {
        display: none;
        flex-direction: column;
        cursor: pointer;
      }
  
      #nav span {
        height: 3px;
        width: 25px;
        background: #fff;
        margin: 4px 0;
        transition: 0.4s;
      }
      .rhs h2{
        display: block;
      }
  
      /* Responsive */
      @media (max-width: 768px) {
        .nav-links {
          display: none;
          flex-direction: column;
          background: #222;
          position: absolute;
          top: 60px;
          right: 0;
          width: 200px;
          padding: 10px;
          border-left: 2px solid #0ff;
          border-bottom: 2px solid #0ff;
        }
  
        .nav-links.active {
          display: flex;
        }
  
        #nav {
          display: flex;
        }
      }
      
      .logos {
    height: 40px;
  }
  
  @media screen and (max-width:600px){
      .hero h1 {
        font-size: 1.3rem;
        display:none;
        text-shadow: 0 0 20px #0ff;
      }
      .hero h2{
          text-shadow: 0 0 20px #0ff;
        display: flex;
        font-size:24px;
      }
      .rhs h2{
          font-size:14px;
      }
  }
      
  @media screen and (max-width:400px){
      .hero h1 {
        font-size: 1.3rem;
        display:none;
        text-shadow: 0 0 20px #0ff;
      }
      .hero h2{
        text-shadow: 0 0 20px #0ff;
        display: flex;
        font-size:18px;
      }}


      