:root {
    --font-primary: 'Work Sans';
    --font-secondary: 'Libre Franklin';
    --font-poppins: 'Poppins';
    --color-text-primary: black;
    --color-background: white;
    --color-main: #18587A;
    --button-primary: #FF0004
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 0; /* Optional, for clarity */
}

/* Mobile/Tablet View */
@media (min-width: 800px) {
  * {
    scroll-padding-top: 70px;
  }
}
html,
body {
    height: 100%;
    width: 100%;
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text-primary);
}

.menu-icon  {
    display: none;
    
}
.navbar-mobile{
    display: none;
}

.logo-mobile img {
    max-width: 100%;
    height: auto;
}
.nav-links-mobile {
    list-style: none;
    padding: 0;
}

.nav-links-mobile > li {
    margin: 10px 0;
}

.nav-links-mobile a {
    text-decoration: none;
    color:white;
    font-weight: 600;
    display: block;
    font-size: 14px;
    padding: 10px;
    transition: background 0.3s;
    position: relative;
    text-transform: uppercase;
}

.nav-links-mobile a:hover {
    background-color: #f0f0f0;
    color: black;
}

.arrow-mobile {
    float: right;
}.show-dropdown-mobile {
    display: block;
}
/* Outside of media query - default state */
.menu-icon {
    display: none;
  }
  
  /* Inside media query */
  @media (max-width: 719px) {
    .nav .menu {
      display: none !important;
    }
    .active {
        left: 0 !important;
      }
    .nav {
      justify-content: space-between !important;
      padding: 0px 20px !important;
    }
  
    .nav .menu-icon {
      display: block !important; /* <-- FIXED */
      font-size: 24px;
      cursor: pointer;
      color: var(--color-text-primary);
    }
  
    .navbar-mobile {
        display: block;
      position: fixed; /* <-- REQUIRED */
      height: 100%;
      width: 300px;
      top: 0;
      left: -100%;
      background-color: white;
      box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
      transition: left 0.3s ease;
      z-index: 1000;
      padding: 20px;
      overflow: auto;
    }
    .navbar-mobile ul li a{
        color: black;
    }
  
}
  

.nav {
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 5px;
    height: 70px;
    background-color: white;
    z-index: 111;
    align-items: center;
    justify-content: space-around;
    

}

.nav .imgFit {
    width: 140px;
    height: 60px;
}

.nav .imgFit img {
    width: 140px;
    height: 60px;
    object-fit: cover;
}

.nav .menu {
    padding-top: 4px;
    list-style: none;
    display: flex;
    font-size: 14px;
    gap: 20px;
    align-items: center;
    font-family: var(--font-poppins);
}

.nav .menu a {
    text-decoration: none;
    color: var(--color-text-primary);
    transition: transform 0.3s ease-in-out;
}

.nav .menu a:hover {
    transform: translateY(-4px);
    cursor: pointer;
}

.nav button  {
    border-radius: 59.7px;
    width: 100px;
    height: 30px;
    padding: 5px;
    border: 0px transparent;
    background-color: #45c1e4;
    color: white;
}
#form-message {
  margin-top: 12px;
  font-size: 14px;
}


/* page 1 style */
.page1 {
    width: 100%;
    height: 100%;
    color: var(--color-main);
    font-family: var(--font-primary);
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
}

.page1 .left-content {
    display: flex;
    flex-direction: column;
    gap: 30px;

}

.page1 .left-content h1 {
    color: var(--color-main);
    font-size: 40px;

}

.page1 .left-content p {
    width: 40ch;
    font-weight: 400;
    color: var(--color-main);
    line-height: 28px;
    font-size: 18px;
}

.page1 .left-content button {
    width: 140px;
    height: 40px;
    font-weight: 300;
    font-size: 16px;
    background-color: var(--button-primary);
    color: var(--color-text-primary);
    border-radius: 25px;
}

.page1 .left-content div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.page1 .left-content div h1 {
    font-weight: 700;
    letter-spacing: 1.6px;
    font-size: 50px;
    text-transform: uppercase;
}

.page1 .right-content {
    position: relative;
}

.page1 .right-content .vr-asset {
    width: 500px;
    position: relative;
}

.page1 .right-content .vr-asset img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.page1 .left-content button {
    border: 0px transparent;
    background-color: #67BAD0;
}

.page1 .left-content button a {
    text-decoration: none;
    color: white;

}

.socials {
    margin-top: 100px;
    display: flex;
    justify-content: start;
}

.socials ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.socials ul li a {
    color: black;
    font-size: 22px;
}

.socials ul li a:hover {
    transform: translateY(-5px);
    color: #67BAD0;
}

.overview {
    display: flex;
    justify-content: center;
    color: var(--color-main);
}

.cards {
    display: flex;
    margin-top: 10px;
    justify-content: center;
    width: 100%;
    gap: 20px;
    margin-top: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cards .first {
    background: #265982;
    display: flex;
    border-radius: 24px;
    flex-direction: column;
    justify-content: space-around;
    color: white;
    height: 340px;
    padding: 15px 40px 8px 40px;
    width: 330px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards .first .box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.cards .first .box .image {
    width: 100px;
}

.cards .first .box .image img {
    width: 100px;
    object-fit: cover;
    transition: 2s ease-in-out;
}

.cards .first:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.switch {
    display: flex;
    justify-content: center;
    gap: 200px;
    margin-top: 30px;
    color: #18587A;
    align-items: center;
}

.switch .left p {
    margin-top: 10px;
}

.switch .imgspan {
    width: 300px;
}

.switch .imgspan img {
    width: 300px;
    object-fit: cover;
}

.evolve {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 100px;
    color: #18587A;
    align-items: center;
}

.switch .left p {
    width: 40ch;
}

@media (max-width:1080px) {
    .page1{
        flex-direction: column-reverse;
    }
    .overview{
        margin-top: 50px;
    }
    
}

@media (max-width:545px) {
    .page1{
        align-items: center;
    }
    .overview{
        margin-top: 10px;
    }
    .page1 .left-content h1 {
        font-size: 25px !important;
    
    }
    
    .page1 .right-content .vr-asset {
        width: 280px;
        position: relative;
    }
    .page1 .left-content {
        align-items: center;
        gap: 13px;
    
    }
    .page1 .left-content p {
        text-align: center;
        width:25ch;
    
    }
    .page1 .right-content .vr-asset img {
        width: 100%;
        object-fit: cover;
        display: block;
    }
    .conet{
        display:flex;
        align-items: center;
        flex-direction: column;
    }
}
@media (max-width:845px) {
    .switch {
        gap: 10px;
    }
}

@media (max-width:731px) {
    .switch {
        flex-direction: column-reverse;
        align-items: center;
        
    }
    .switch2{
        flex-direction: column !important;
    }
    .switch .left{
        display:flex;
        flex-direction:column;
        justify-content: center;
        align-items: center;

    }
    .switch .left p {
        width: 25ch;
        align-items: center;
    }
}
@media (max-width:440px) {
   .evolve h1{
    font-size: 28px;
   }
   
.switch .imgspan {
    width: 270px;
}

.switch .imgspan img {
    width: 270px;
    object-fit: cover;
}
}
@media (max-width:340px) {
    .cards .first {
        width:280px;
    }
   
}
.contact-container {
    display: flex;
    justify-content: space-between;
    padding: 50px 150px;
    flex-wrap:wrap;
  }
  
  .left-info {
    flex: 1;
    color: #1d3b5c;
  }
  
  .left-info h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .left-info p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .join-text {
    margin-top: 30px;
    font-weight: 500;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 16px;
    font-weight: 600;
  }
  
  .contact-item .icon {
    font-size: 20px;
    margin-right: 10px;
  }
  
  .right-form {
    flex: 1;
    /* background-color: #f8fcfd; */
  }
  @media (max-width: 1000px) {
    .contact-container {
        padding: 50px;
    }    
  }
  form {
    display: flex;
    flex-direction: column;
  }
  
  input, textarea {
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .input-row {
    display: flex;
    gap: 15px;
  }
  
  .checkbox-row {
    display: flex;
    align-items: flex-start;
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .checkbox-row input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
  }
  
  button {
    background-color: #104f6e;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 3px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0d3c55;
  }
  @media (max-width:700px) {
    .left-info{
        text-align: center;
    }
    .contact-container {
       display: flex;
       flex-direction: column;
    }
   
}

.footer {
    margin: 0px 80px 0 80px;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #cbcaca;

  }

  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo {
    width: 40%;
    height: 100%;
  }

  .footer-logo img {
    width: 100%;
    height: 100%;
  }

  .footer-address-left .footer-location,
  .footer-phone {
    color: black;
  }

  .footer .fa-solid {
    margin-right: 15px;
  }

  .footer-address-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-icons a,
  .footer-title,
  .footer-address-right .footer-email {
    color: black;
  }

  .footer-right-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .footer-social-media {
    display: flex;
    justify-content: space-between;
  }

  .footer-icons a {
    text-decoration: none;
    color: black;
    font-size: 20px;

  }

  .footer-icons {
    display: flex;
    gap: 20px;
    width: 60%;
  }

  .footer-address {
    display: flex;
    justify-content: space-between;
  }

  .footer-address-right {
    width: 60%;
  }

  @media (max-width: 768px) {
    .footer {
      padding: 20px;
    }

    .footer-content {
      flex-direction: column;
      align-items: center;
    }

    .footer-logo {
      width: 100%;
      text-align: center;
    }

    .footer-right-content {
      width: 100%;
      align-items: center;
    }

    .footer-address {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .footer-address-left,
    .footer-address-right {
      width: 100%;
      text-align: center;
    }

    .footer-title {
      width: 150px;
    }

  }

   .copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 150px;
    color: #333;
    font-size: 14px;
  }
  
  .copyright .left {
    display: flex;
    gap: 30px;
  }
  
  .copyright .left div {
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
    color: #1a3b6e;
  }
  
  .copyright .left div:hover {
    text-decoration: underline;
  }
  
  .copyright .right {
    font-size: 12px;
    color: #666;
  }
  
  @media (max-width:400px) {
    .navbar-mobile {
      width: 200px;
  }
  .navbar-mobile{
    margin-top: 30px;
  }
}
@media (max-width:985px) {
    .copyright{
        flex-direction: column;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .copyright {
        padding: 20px 50px;
        font-size: 12px;
    }
} 

/* body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
} */

.overview-section {
  padding: 30px 20px;
  max-width: 900px;
  margin: auto;
}
.background{
  background-image: url('../assets/background.png'); height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 28px;
  font-weight: bold;

}

h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #1f2937;
  font-size: 28px;
}

.program-block {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.program-block h3 {
  color: #16a34a;
  font-size: 20px;
  margin-bottom: 10px;
}

.program-block p {
  margin: 6px 0;
  font-size: 15px;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px 15px;
  text-align: left;
  font-size: 14px;
}

th {
  background-color: #e5e7eb;
  color: #111827;
  font-weight: 600;
}

@media (max-width: 600px) {
  h2 {
    font-size: 22px;
  }

  .program-block h3 {
    font-size: 18px;
  }

  th, td {
    font-size: 13px;
    padding: 8px 10px;
  }
}
@media (max-width: 700px) {
  .overview-section{
   padding: 0;
  
}
}