  body {
      font-family: 'Segoe UI', sans-serif;
    }
    .card-title {
      font-size: 1.1rem;
    }
    /* Navbar */
  .navbar {
    display: flex;
    justify-content:center;
    align-items: center;
    padding: 15px 40px;
    background-color: white;
    box-shadow: 0 2px 5px #1312121a;
    position: relative;
    z-index: 1000;
  }
  .logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: rgb(241, 171, 17);
}
    /* logo img {
    height: 50px;
        width: auto;
    object-fit: contain;
  } */

  .hamburger {
    font-size: 26px;
    cursor: pointer;
    display: none;
  }

  /* Nav Links */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
  }

  .nav-links li {
    position: relative;
  }

  .nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 600;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: #117A65;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
/* Dropdown menu hidden by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  min-width: 150px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 100;
}

/* Dropdown items */
.dropdown-menu li a {
  padding: 10px 15px;
  color: #333;
  transition: background 0.3s;
}

.dropdown-menu li a:hover {
  background: #f4f4f4;
}

/* Show on hover */
.nav-links li:hover > .dropdown-menu {
  display: block;
}

/* For mobile dropdown */
.dropdown-menu.show {
  display: block;
}

.nav-links.active {
  display: block;
  flex-direction: column;
}
 
    footer {
      font-size: 0.9rem;
    }
    .footer-section h5 {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 1rem;
    position: relative;
  }

  .footer-line {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #00aaff;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    top: -2px;
  }
  .row{
    text-align: left;
  }
 
  .footer-line P{
    text-align: center;
  }
  .footer-section{
  background-color: #234353;
  justify-content: space-evenly;
  }
  .footer-section ul li {
    margin-bottom: 8px;
  }

  .footer-section a:hover {
    text-decoration: underline;
  }

    @media (max-width: 768px) {
    .hamburger {
      display: block;
       order: 2; /* Make sure it's at the end */
    margin-left: auto; /* Push it to the right */

    }

    .nav-links {
      position: absolute;
      top: 80px;
      left: -100%;
      width: 100%;
      flex-direction: column;
      background-color: white;
      transition: 0.3s;
    }

    .nav-links.active {
      left: 0;
    }

    .nav-links li {
      text-align: center;
      padding: 15px 0;
    }

    .nav-right {
      display: none;
    }

  }

  /* about us page css */
  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }



  .container1 {
    
      margin:auto;
      padding: 20px;
      position: relative;
  }

  h1 {
      text-align: center;
      margin-bottom: 20px;
  }

  .intro, .mission {
      text-align:center;
      margin-bottom: 20px;
  }

  .mission1 {
    text-align: justify;
    text-wrap:initial;
      margin-bottom: 20px;
  }

  h2 {
      margin-top: 40px;
      margin-bottom: 15px;
  }
  h4{
      text-align:center;
  }
  .founder-section {
      display: flex;
      text-align: justify;
      gap: 20px;
      align-items: flex-start;
      margin-bottom: 20px;
  }

  .founder-text {
      flex: 1;
  }

  .founder-image img {
      width: 450px;
      height: 530px;
      max-width: 100%;
      border-radius: 8px;
  }

  button {
      background: #007bff;
      color: #fff;
      padding: 8px 15px;
      border: none;
      margin-right: 10px;
      border-radius: 4px;
      cursor: pointer;
  }

  button:hover {
      background: #0056b3;
  }

  .social-icons {
      position: fixed;
      top: 50%;
      left: 10px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .social-icons img {
      width: 30px;
      height: 30px;
  }

  @media (max-width: 768px) {
      .founder-section {
          flex-direction: column;
          align-items: center;
      }

      .social-icons {
          position: static;
          flex-direction: row;
          justify-content: center;
          margin-bottom: 20px;
      }
  }


  .social-icons {
      position: fixed;
      top: 50%;
      left: 10px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .social-icons img {
      width: 30px;
      height: 30px;
  }

  @media (max-width: 768px) {
      .founder-section {
          flex-direction: column;
          align-items: center;
      }

      .social-icons {
          position: static;
          flex-direction: row;
          justify-content: center;
          margin-bottom: 20px;
      }
  }


  /* CMA USA CSS */
  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }



  .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
      text-align: center;
  }

  h1 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
  }

  h2 {
      font-size: 22px;
      font-weight: 600;
      margin: 30px 0 10px;
  }

  h3 {
      font-size: 20px;
      font-weight: 500;
      margin: 20px 0 10px;
  }

  p {
      margin-bottom: 15px;
  }

  ul, ol {
      margin-left: 20px;
      margin-bottom: 20px;
  }

  li {
      margin-bottom: 8px;
  }

  strong {
      font-weight: 600;
  }

  @media (max-width: 768px) {
      h1 {
          font-size: 24px;
      }

      h2 {
          font-size: 20px;
      }

      h3 {
          font-size: 18px;
      }
  }

  /* Blogs Css */


  .container1 {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
  }

  .sidebar {
    flex: 1 1 250px;
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
  }

  .sidebar h3 {
    margin-top: 0;
  }

  .recent-post {
    margin-bottom: 15px;
  }

  .recent-post img {
    width: 100%;
    max-width: 100px;
    float: left;
    margin-right: 10px;
    border-radius: 4px;
  }
  .recent-post img {
    width: 100%;
    max-width: 100px;
    margin-right: 10px;
    border-radius: 4px;
  }
  .recent-post a {
    font-weight: bold;
    color: #0077cc;
    text-decoration: none;
  }

  .recent-post p {
    font-size: 0.9em;
    color: #666;
    margin: 2px 0 0;
  }

  .content {
    flex: 3 1 500px;
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
  }


  .content1 {
    flex: 1 1 100%;
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    margin-left: 365px;
  
  }
  @media (max-width: 768px) {
    .content1 {
      padding: 15px;
      margin: 10px;
    }
  }

  @media (max-width: 480px) {
    .content1 {
      padding: 10px;
      margin: 5px;
    }
  }



  .main-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
  }
  .main-image1 {
    width: 100%;
    height:auto;
    border-radius: 6px;
    margin-bottom: 20px;
  }

  h1 {
    font-size: 1.8rem;
    margin-top: 0;
  }

  .meta {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .content h3 {
    margin-top: 30px;
    color: #004080;
  }

  .content p {
    line-height: 1.6;
    text-align: justify;
  }
  .content1 p {
    line-height: 1.6;
    text-align: justify;
  }
  /* Responsive */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }

    .recent-post img {
      max-width: 80px;
    }
  }
.table-container {
      overflow-x: auto;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      border-radius: 8px;
    }

    table {
      border-collapse: collapse;
      width: 100%;
      min-width: 600px;
    }

    th, td {
      padding: 12px 16px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }

    th {
      background-color: #0d6efd;
      color: white;
    }

    tr:hover {
      background-color: #f1f1f1;
    }

 @media (max-width: 768px) {
  th, td {
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  th, td {
    font-size: 12px;
    padding: 8px;
  }

  table {
    min-width: 100%; /* Ensures the table still scrolls instead of cramming */
  }
    }
  /* contact css */
  .contactus{
      background: url("images/contactpage.png");
      color: white;
      text-align: center;
      padding: 120px 20px;
      margin-top: 20px;
      margin-left: 20px;
      margin-right: 20px;
      overflow:auto;
      object-fit: fill;
      background-size: cover;
      }
.contact-box {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  max-width: 1100px;
  margin: 0 auto;
}

.map-side {
  flex: 1 1 60%;
  min-height: 500px;
}

.info-side {
  flex: 1 1 40%;
  padding: 30px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-side h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1a1a1a;

}

.info-side h4 {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 1rem;
  color: #4a4a4a;
}

.info-side p {
  margin: 0;
  color: #555;
  line-height: 1.5;
  font-size: 1rem;
}

.info-side a {
  color: #007bff;
  text-decoration: none;
}

.info-side a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
  }

  .map-side {
    min-height: 300px;
  }
}

  .info-side {
    flex: 1 1 40%;
    padding: 30px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

@media (min-width: 600px) {
  .info-side h3 {
    font-size: 1.5rem;
  }

  .info-side p {
    font-size: 1.05rem;
  }
}

@media (min-width: 992px) {
  .info-side h3 {
    font-size: 1.75rem;
  }

  .info-side p {
    font-size: 1.1rem;
  }
}

  .info-side h4 {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 1rem;
    text-align: left;
    color: #4a4a4a;
  }

 

  .info-side a {
    color: #007bff;
    text-decoration: none;
  }

  .info-side a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
  }
.contact-location {
  background-color: #f8f8f8;
  padding: 60px 30px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #117a65;
}

  .section {
      padding: 60px 20px;
      max-width: 1000px;
      margin: auto;
      text-align: center;
    }

    .grid {
      column-count: 2;
      column-gap: 20px;
      padding: 60px 20px;
    }
    
    .card {
      display: inline-block;
      width: 100%;
      margin-bottom: 20px;
      background-color: white;
      padding: 25px 15px;
      border-radius: 12px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    }
  .parts{
    padding: 20px;
  }
.contact-card {
  background: white;
  padding: 40px 20px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
}

.profile-pic {
  width: 80px;
  height: 80px;
  background-image: url("images/WHATSAPP.png"); /* ✅ WORKING IMAGE */
  background-size: cover;
  background-position: center;
  border-radius: 60%;
  margin: -60px auto 10px;
  position: relative;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.whatsapp-icon {
  position: absolute;
  bottom: 0;
  right: -5px;
  background: #25D366;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-icon img {
  width: 16px;
  height: 16px;
}

.text-muted {
  color: #666;
  font-size: 14px;
  margin-top: 10px;
}

h2 {
  margin: 10px 0 20px;
  font-size: 20px;
  color: #333;
}

.contact-button {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #20b858;
}

   .container2{
          padding: 15px 40px;
          display:flex;
          min-height: 100vh;
        }

        .left {
          flex: 1;
          background: #fff; /* fallback color */
          position: relative;
        }

        .left img {
          width: 100%;
          height: 100%;
          object-fit:cover;
        }

        .right {
          flex: 1;
          background: linear-gradient(90deg, white, white);
          padding: 60px;
          display: flex;
          flex-direction: column;
          justify-content: center;
        }

        .right h1 {
          font-size: 42px;
          color: black;
          margin-bottom: 20px;
          font-weight: bold;
          line-height: 1.2;
        }
  
        .right h1 span {
          display: block;
        }

        .right p {
          font-size: 18px;
          color: #222;
          line-height: 1.6;
          margin-bottom: 20px;
        }

        .right a {
          color: #b86a2b;
          text-decoration: none;
          font-weight: bold;
          font-size: 16px;
        }

        .right a:hover {
          text-decoration: underline;
        }

        @media (max-width: 768px) {
          .container {
            flex-direction: column;
          }

          .left, .right {
            flex: none;
            width: 100%;
          }

          .right {
            padding: 30px;
          }

          .right h1 {
            font-size: 32px;
          }
      
      }
        .container3 {
          display: flex;
          padding: 40px;
          gap: 40px;
        }

        .left {
          flex: 1;
        }

        .left img {
          width: 100%;
        
          border-radius: 10px;
        }

        .right {
          flex: 1;
        }

        h2 {
          font-size: 28px;
          font-weight: bold;
          margin: 20px 0 15px;
        }

        .detail-item {
          display: flex;
          align-items: flex-start;
          margin-bottom: 15px;
        }

        .detail-item img {
          width: 24px;
          height: 24px;
          margin-right: 10px;
          margin-top: 4px;
        }

        .exam-list {
          padding-left: 30px;
          margin: 5px 0;
        }

        .exam-list li {
          margin-bottom: 6px;
        }

        a.fee-link {
          display: inline-flex;
          align-items: center;
          text-decoration: none;
          color: #222;
          font-weight: bold;
          margin-top: 10px;
          font-size: 16px;
        }

        a.fee-link img {
          width: 20px;
          height: 20px;
          margin-right: 8px;
        }

        @media (max-width: 768px) {
          .container {
            flex-direction: column;
            padding: 20px;
          }
        }
          

        .demo-container {
  display: flex;
  flex-wrap: wrap; /* Allow stacking on smaller screens */
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1rem; /* Responsive padding */
  background: #fff url(""); /* Ensure the background is handled */
  gap: 2rem;
}

.demo-left,
.demo-right {
  flex: 1 1 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .demo-left,
  .demo-right {
    flex: 1;
    max-width: 50%;
  }

  .demo-left {
    padding-right: 30px;
  }
}

.demo-left h2 {
  color: #222;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.demo-left p,
.demo-left ul li {
  line-height: 1.6;
  font-size: 16px;
}

.language-select {
  text-align: right;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
}

.language-select button {
  background: white;
  color: black;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

.video-container {
  position: relative;
  width: 100%;
  border: 3px solid #234353;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.play-btn::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 20px solid #00aaff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-caption {
  position: absolute;
  bottom: 10px;
  left: 20px;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.video-header {
  background: white;
  color: #234353;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

        @media (max-width: 900px) {
          .demo-container {
            flex-direction: column;
          }
          .language-select {
            text-align: left;
            margin-top: 20px;
          }
          .demo-right {
            max-width: 100%;
            margin-top: 20px;
          }
        }
      
    .hero {
  background-image: url("images/cmausa2.jpg");
  background-size: cover;
  background-position: center;
  padding: 2rem;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 90%;
  width: 100%;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.career-box h1 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.career-box p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.career-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.career-tags span {
  display: inline-block;
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 5px;
  white-space: nowrap;
}
    @media (min-width: 768px) {
  .overlay {
    max-width: 700px;
    padding: 2rem;
  }

  .career-box h1 {
    font-size: 2rem;
  }

  .career-box p {
    font-size: 1.125rem;
  }

  .career-tags span {
    font-size: 0.95rem;
  }
}

    .eligibility {
      text-align: center;
      padding: 40px 20px;
      background: #f9f9f9;
    }

    .eligibility h2 {
      color: black;
      font-size: 28px;
      margin-bottom: 10px;
    }

    .eligibility-cards {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .card {
      background-color: white;
      border: 1px solid #ddd;
      padding: 20px;
      width: 100px;
      margin: 10px;
      text-align: left;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .card .icon {
      font-size: 24px;
      margin-bottom: 10px;
      color: #f97316;
    }
    h1{
      text-align: center;
      font-weight: bold;  
    }
    h3{
      text-align: center;
      font-weight: bolder;
    }
.parts {
  padding: 2rem 1rem; 
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.card {
  background: white;
  padding: 1.5rem;
  border: 2px solid #234353;
  flex: 1 1 300px;
  font-weight: bolder;
  min-width: 250px;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
}

.card-text {
  font-weight: bolder;
}

@media (max-width: 480px) {
  .card {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

    @media (max-width: 768px) {
  .container2, .container3 {
    flex-direction: column;
    padding: 20px;
  }

  .right, .left {
    width: 100%;
  }

  .right {
    padding: 30px;
  }
  .card {
  width: 100px;
}
.card {
  width: 300px;
}
}

img {
  max-width: 100%;
  height: auto;
}
table {
  width: 100%;
  overflow-x: auto;
}
