/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body, html {
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    background-color: #000;
    color: white;
  }
  
 
  /* Hero Section */
  .hero {
    height: 100vh;
    background: url('images/building3.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 48px;
    max-width: 800px;
    margin-bottom: 20px;
    font-size: clamp(1.5rem, 5vw, 3rem); /* responsive font size */

  }
  .hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
  }
  .btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid white;
    text-decoration: none;
    color: white;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .btn:hover {
    background: white;
    color: black;
    transform: scale(1.05);
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 15px;
    background:white;
    font-size: 14px;
    color: black;
  }
  
  /* Animations */
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards;
  }
  .delay-1 {
    animation-delay: 0.5s;
  }
  .delay-2 {
    animation-delay: 1s;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    
    .hero-content h1 {
      font-size: 32px;
      padding: 0 20px;
    }
    .hero-content p {
      font-size: 16px;
      padding: 0 20px;
    }
  }
  





  .enroll-section {
    background-color: #ffffff;
    padding: 80px 20px;
  }
  
  .enroll-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .enroll-heading h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    color: #111;
  }
  
  .enroll-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0; /* Remove space between boxes */
    border-collapse: collapse;
  }
  
  .enroll-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
  }
  
  /* Central vertical border */
  .enroll-grid > .enroll-item:nth-child(1),
  .enroll-grid > .enroll-item:nth-child(3) {
    border-right: 1px solid black;
  }
  
  .enroll-grid > .enroll-item:nth-child(1),
  .enroll-grid > .enroll-item:nth-child(2) {
    border-bottom: 1px solid black;
  }
  
  
  @media (max-width: 768px) {
    .enroll-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .enroll-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .enroll-item .icon-box {
    width: 30px;
    height: 30px;
    border: 2px solid #000;
  }
  
  .icon-box.purple {
    background-color: #9376e0;
  }
  
  .icon-box.half {
    background: linear-gradient(to bottom, #fff 50%, #9376e0 50%);
  }
  
  .icon-box.border-only {
    border: 2px solid #000;
    background: transparent;
  }
  
  .enroll-item h3 {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    margin: 0;
  }
  
  .enroll-item p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
  }
  



  .about-fixed-section {
    background-size: cover; /* Ensures the background image covers the entire section */
    background-position: center center; /* Centers the background image */
    background-attachment: fixed; /* Keeps the background fixed when scrolling */
    height: 100vh; /* Full viewport height */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .overlay {
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    width: 100%;
    height: 100%;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  .content-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
  }
  
  .left {
    flex: 1 1 50%;
    min-width: 280px;
  }
  
  .left h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .subtitle {
    font-size: 18px;
    color: #f0f0f0;
  }
  
  .right {
    flex: 1 1 45%;
    min-width: 280px;
    background: rgba(0, 0, 0, 0.03);
    padding-left: 40px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  .right p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .read-more-btn:hover {
    background: white;
    color: black;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .content-wrapper {
      flex-direction: column;
      text-align: center;
    }
  
    .right {
      border-left: none;
      padding-left: 0;
      margin-top: 30px;
    }
  
    .left h1 {
      font-size: 32px;
    }
  }
  




/* Our Academis */
.academics-section {
    color: #fff;
  }
  
  .academics-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
  }
  
  .academics-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .academics-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
  }
  
  .academics-grid {
    display: grid;
    grid-template-columns: 1fr; /* default: mobile = 1 card per row */
    gap: 40px;
  }
  
  @media (min-width: 600px) {
    .academics-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 992px) {
    .academics-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .academics-card {
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Light border for mobile */
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  /* Remove border on tablets and laptops */
  @media (min-width: 600px) {
    .academics-card {
      border: none;
      background: none;
    }
  }
  
  .academics-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .view-btn {
    display: inline-block;
    background: linear-gradient(90deg, #7e55f3, #9376e0);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  
  .view-btn:hover {
    background: linear-gradient(90deg, #9376e0, #7e55f3);
  }
  




  .quote-section {
    /* background: url('images/your-image.png') center center / cover no-repeat; */
    background-color: rgb(35, 34, 34);
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .quote-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .quote-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
  }
  
  .quote-text {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  
  .quote-author {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
  }
  


/*REGISTER Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1004;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    position: relative;
  }
  
  .modal-content h2 {
    margin-bottom: 1rem;
    color: #e92063;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }
  
  .registration-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .registration-form input,
  /* .registration-form select, */
  .registration-form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  .registration-form select {
    width: 100%;  
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }
  
  /* 📱 Reduce width on small screens */
  @media (max-width: 576px) {
    .registration-form select {
      max-width: 100%; /* or any desired value like 80% */
      margin: 0 auto; /* center the select box */
      display: block;
    }
  }
  
  .register-btn {
    padding: 15px 25px;
    background-color: #e92063;
    color: #fff;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .register-btn:hover {
    background-color: #c71854;
  }
  
  
  