* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gordita", Sans-serif;
  }
  
  body {
    background: #fff;
  }
  a {
    text-decoration: none;
}
  
  /* HERO SECTION */
  .hero {
    position: relative;
    height: 100vh;
    background: url("../images/gen-bg.jpg") center center / cover no-repeat;
    /*overflow: hidden;*/
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical center (header + content) */
  }
  
  /* White overlay */
  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
  }
  
  /* HEADER */
  .header {
    position: relative;
    z-index: 2;
    text-align: center;
    /*padding-top: 40px;*/
  }
  
  .header .goddess {
    width: 120px;
    height: 100px;
    margin-bottom: 10px;
  }
  
  .header h1 {
      font-family: "Gordita", Sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
  }
  
  .header .tamil {
    font-size: 18px;
    font-weight: 600;
  }
  
  /* MAIN CONTENT */
  .content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-left:10%;*/
    padding: 20px 40px;
  }
  
  /* FOUNDER */
  .founder {
    width: 40%;
    text-align: center;
  }
  
  .founder img {
    max-height: 350px;
    width: 250px;
}
  
  .founder-text {
    margin-top: 15px;
    font-size: 19px;
    font-family: "Gordita", Sans-serif;
    color: #000;
  }
  .founder-text {
    display: grid;
}
  /*.founder-text span {
    display: block;
    font-size: 14px;
    font-family: "Gordita", Sans-serif;
  }*/
  
  /* BUTTONS */
  .buttons {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: left;
  }
   .col-sm-5  
  {
      width:50%;
  }
  .btn {
    background: #09188b;
    color: #fff;
    padding: 20px 20px;
    width: 100%;
    /*max-width: 420px;*/
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 650;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
 .linkref
 {
      font-size: 18px;
    font-weight: 600;
    color: #00008b;
 }
  .btn:hover {
    background: #de8e01;
  }
  /* Founder Name */
  .founder-name {
    font-weight: 700;
    font-size: 19px;
    color: #000;
  }
  /* Founder Year */
  .founder-year {
    padding-top: 5px;
    font-size: 14px;
    font-weight: 550;
    color: #000;
  }
  /* ADMISSION */
  .admission {
    width: 15%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: left;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #00008b;
    position: relative;
     
    /* top: 90px;
    left: -40px; */
  }
  .admission span {
    font-family: "Gordita", Sans-serif;
  }
  
  .admission .sun {
    margin-left: 0px;
  }
  
  /*-------------------My Code----------------------------------*/
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  /* RESPONSIVE - TABLET (768px - 1024px) */
  @media (max-width: 1024px) {
    .hero {
      padding: 20px;
    }

    .header {
      gap: 20px;
      margin-bottom: 20px;
    }

    .header .goddess {
      width: 80px;
      height: 70px;
    }

    .header h1 {
      font-size: 28px;
    }

    .header .tamil {
      font-size: 16px;
    }

    .content {
     /* flex-direction: column;*/
      gap: 20px;
      padding: 20px 40px;
    }
  
    .founder
   {
      width: 20%;
      text-align: center;
    }

    .founder img {
      max-height: 300px;
      width: 200px;
    }
.buttons,
    .admission {
      width: 60%;
      text-align: center;
    }

    .buttons {
      gap: 30px;
    }

    .btn {
      width: 100%;
      padding: 16px 30px;
      font-size: 14px;
    }

    .admission {
      order: -1;
      top: 0;
      text-align: center;
      font-size: 16px;
    }

    .admission .sun {
      margin-left: 4px;
    }
  }

  /* RESPONSIVE - MOBILE (< 768px) */
  @media (max-width: 768px) {
    .hero {
      padding: 15px;
      min-height: 100vh;
      height: auto;
    }

    .header {
      flex-direction: column;
      gap: 15px;
      margin-bottom: 30px;
    }

    .header .goddess {
      width: 60px;
      height: 50px;
      margin-bottom: 5px;
    }

    .header h1 {
      font-size: 20px;
      line-height: 1.3;
    }

    .header .tamil {
      font-size: 14px;
    }

  .col-sm-5  
  {
      width:100%;
  }
   .col-sm-6  
  {
      width:100%;
  }
  .col-sm-3  
  {
      width:100%;
  }

    .founder {
      width: 30%;
    }

    .founder img {
      max-height: 250px;
      width: 180px;
    }

    .founder-text {
      margin-top: 10px;
      font-size: 16px;
    }

    .founder-name {
      font-size: 16px;
    }

    .founder-year {
      font-size: 12px;
    }
  .content 
    {
      width:100%;
      flex: 0 0 100%;
     flex-direction: column;
      gap: 30px;
      padding: 10px 10px;
    }
    .buttons {
      width: 100%;
      gap: 20px;
    }

    .btn {
      width: 100%;
      max-width: 100%;
      padding: 14px 25px;
      font-size: 13px;
    }

    .admission {
      width: 60%;
      order: 1;
      top: 0;
      text-align: center;
      font-size: 15px;
      margin-bottom: 10px;
    }

    .admission .sun img {
      width: 20px;
      height: 20px;
    }
  }

  /* RESPONSIVE - SMALL MOBILE (< 480px) */
  @media (max-width: 480px) {
    .hero {
      padding: 10px;
    }

    .header h1 {
      font-size: 18px;
    }

    .header .tamil {
      font-size: 12px;
    }

    .content {
      padding: 10px 15px;
      gap: 25px;
    }

    .founder img {
      max-height: 200px;
      width: 150px;
    }

    .founder-text {
      font-size: 14px;
    }

    .founder-name {
      font-size: 14px;
    }

    .founder-year {
      font-size: 11px;
    }

    .buttons {
      gap: 15px;
    }

    .btn {
      width: 95%;
      padding: 12px 20px;
      font-size: 12px;
    }

    .admission {
      font-size: 14px;
    }
  }
  