    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    }

    body {
        margin: 0;
        padding: 0;
        font-family: 'Poppins', sans-serif;
        background: #f7f9fc;
        color: #222;
        overflow-x  : hidden;

    }

    
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 999;
      background: white;
      padding: 7px 40px;
      border-bottom: 2px solid #ccc;
    }

    .nav-container {
  display: flex;
  align-items: center;
  font-family: 'Times New Roman';
}

.logo {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50%;
}

.logo img {
  width: auto;
  height: 50px;
}

nav {
  margin-right: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav li {
  position: relative;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  padding: 10px 15px;
  display: block;
  transition: background 0.2s ease;
}

nav a:hover {
  background-color: #f0f0f0;
  border-radius: 4px;
}

/* Dropdown styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  z-index: 999;
  flex-direction: column;
  border-radius: 10px;
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
}

.dropdown-menu li a {
  padding: 2px 8px;
  margin: 0;
  line-height: 1.4;
  font-size: 14px;
  color: black;
  font-weight: 400;
  border-radius: 10px;
  display: block;
  transition: background 0.2s ease;
  text-align: center;
}

.dropdown-menu li a:hover {
  background-color: #e0e0e0;
}


.dropdown-menu li a:hover {
  background-color: #e0e0e0;
}

/* Show dropdown on hover */
nav li:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
}
        .banner {
      background: url("../img/cont_banner.png") no-repeat center center;
      background-size: cover;
      padding: 100px 10px 10px;
      color: #fff;
      height: 530px;
    }

    .left-content {
      padding-left: 80px;
    }

    .banner-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 50px;
      column-gap: 30px;
    }

    .left-content h2 {
      font-size: 40px;
      line-height: 1.4;
    }

    .left-content h3 {
      font-size: 30px;
      line-height: 1.4;
    }

    .left-content .highlight {
      color: #ffce00;
    }

    .left-content p {
      font-size: 18px;
      margin: 15px 0;
    }

    .cta-btn {
      display: inline-block;
      margin-top: 10px;
      padding: 10px 20px;
      background-color: transparent;
      color: white;
      border: 2px solid white;
      border-radius: 20px;
      text-decoration: none;
      font-weight: 600;
    }

    .right-image img {
      width: auto;
      height: 362px;
      transform: translateX(-100px);
    }


    .quality-career-section {
        font-family: Arial, sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f0f8ff;
        padding: 50px;
    }

    .image-container {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .image-container img {
        width: 500px;
        height: auto;
    }

    .content-container {
        flex: 1;
        padding-left: 50px;
    }

    .section-title {
        color: #F37820;
        font-size: 32px;
        margin-bottom: 10px;
        text-align: center;
    }

    .title-underline {
        width: 100%;
        height: 3px;
        background-color: #000000;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-title {
        color: #F37820;
        font-size: 20px;
        margin-bottom: 5px;
    }

    .feature-description {
        color: #000000;
        font-size: 16px;
        margin-bottom: 20px;
    }


    .contact-cards-section {
        display: flex;
        flex-direction: column; /* Changed to column to stack heading and cards */
        align-items: center; /* Center items horizontally */
        padding: 20px;
        background-color: #0d2888;
    }

    .section-heading {
        text-align: center;
        margin-bottom: 30px; /* Space between heading and cards */
        font-size: 32px;
        color: #ffffff;
    }

    .cards-wrapper {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        width: 100%; /* Ensure the wrapper takes full width to distribute cards */
        max-width: 1200px; /* Optional: limit max width of cards container */
    }

    .contact-card {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin: 10px;
        width: auto;
        box-sizing: border-box;
    }

    .card-title {
        color: #333;
        margin-bottom: 20px;
        text-align: center;
    }

    .card-text {
        color: #555;
        text-align: center;
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    .footer-section {
            background-color: #0d1e3d; /* Dark blue background */
            padding: 30px 20px;
            display: flex;
            justify-content: space-around;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            color: #b0c4de; /* Lighter blue for text */
        }

        .footer-column h3 {
            font-size: 1.2em;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
            font-size: 0.95em;
        }

        .footer-column ul li a {
            color: #b0c4de;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #ffffff;
        }

        .footer-logo-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .footer-logo {
            width: 340px; /* Adjust as per image */
            height: auto;
        }

        .timing-item {
            display: flex;
            flex-direction: column;
            margin-bottom: 10px;
        }

        .timing-item span {
            font-size: 0.95em;
            padding: 3px;
        }

        .social-media {
            margin-top: 30px;
            text-align: center;
            width: 100%; /* Take full width of its container */
        }

        .social-media h3 {
            border-bottom: 1px solid #b0c4de;
            padding-bottom: 10px;
            margin-bottom: 20px;
            color: #ffffff;
            font-size: 1.2em;
            font-weight: 600;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-icon {
            width: 30px;
            height: 30px;
           
            transition: filter 0.3s ease;
        }

        .social-icon:hover {
            filter: invert(70%) sepia(30%) saturate(700%) hue-rotate(180deg) brightness(100%) contrast(100%); /* Example hover color */
        }

        .map-container {
            width: 300px; /* Fixed width based on image */
            height: 200px; /* Fixed height based on image */
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            margin-top: 20px; /* Added margin to align with title */
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--dark);
  font-size: 1.5rem;
  cursor: pointer;
}
.menu-icon,
.mobile-menu {
  display: none;
}



/* verify popup */
.modal-overlay {
  display: none;                /* will switch to flex when opened */
  position: fixed;
  inset: 0;                     /* shorthand for top:0; right:0; bottom:0; left:0; */
  background: rgba(0, 0, 0, 0.6);
  z-index: 100000;              /* above header (header has 999) */
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* add the "open" class to show the modal */
.modal-overlay.open {
  display: flex;
}

.modal-box {
  position: relative;
  width: auto;
  max-width: 680px;             /* wider so both links can sit in one row on desktops */
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  animation: fadeIn 220ms ease;
}

/* close button */
.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #666;
}
.modal-close:hover { color: #111; }

/* content */
.modal-content h2 {
  font-size: 22px;
  margin: 6px 0 18px;
  color: #333;
  text-align: center;
}

/* keep heading stacked, but links side-by-side */
.modal-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;              /* allow wrap on small screens */
}

/* link styling */
.modal-links a {
  display: inline-block;
  padding: 10px 16px;
  background: #0073e6;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
  margin: 10px;
}
.modal-links a:hover { background: #005bb5; }

/* small screens: stack links vertically and narrow the modal */
@media (max-width: 480px) {
  .modal-box { max-width: 92%; padding: 14px; }
  .modal-links { flex-direction: column; gap: 10px; }
  .modal-links a { width: 100%; text-align: center; }
}

/* simple fade-in */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}





@media screen and (max-width: 768px) {
 
 nav {
      display: none;
    }
  
    .menu-icon {
      display: block;
      font-size: 26px;
      color: #333;
      cursor: pointer;
      margin-right: 15px;
    }
  
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100%;
      background-color: #fff;
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
      padding: 20px;
      transition: right 0.3s ease;
      z-index: 9999;
    }
  
    .mobile-menu.open {
      right: 0;
    }
  
    .mobile-menu .close-btn {
      font-size: 24px;
      cursor: pointer;
      display: block;
      margin-bottom: 20px;
      text-align: right;
    }
  
    .mobile-menu ul {
      list-style: none;
      padding: 0;
    }
  
    .mobile-menu li {
      margin: 15px 0;
    }
  
    .mobile-menu a,
    .mobile-menu span {
      text-decoration: none;
      color: #333;
      font-size: 18px;
      cursor: pointer;
    }
  
    .mobile-submenu {
      display: none;
      padding-left: 15px;
    }
  
    .mobile-submenu li {
      margin: 10px 0;
    }
  
    .mobile-dropdown.open>.mobile-submenu {
      display: block;
    }
  
    .logo {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  
    .menu-icon {
      display: block;
    }
  
    nav {
      display: none;
      /* hide desktop nav */
    }
  
    .mobile-menu {
      display: block;
}
  
}
/* Mobile Responsive Styles */

@media (max-width: 768px) {
  body {
    font-size: 16px;
    margin: 0;
    padding: 0;
  }
  header {
    padding: 7px 7px 0 10px;
    height: auto;
  }
  .nav-container {
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
    width: 100%;
  }
  .logo img {
    width: auto;
    height: 45px;
  }
  nav {
    display: none !important;
  }
  .menu-icon {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    margin-left: auto;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }
  .mobile-menu.open {
    display: block;
    right: 0;
  }
  .mobile-menu .close-btn {
    font-size: 2rem;
    cursor: pointer;
    float: right;
    margin-bottom: 20px;
  }
  .mobile-menu ul {
    list-style: none;
    padding: 0;
  }
  .mobile-menu li {
    margin: 20px 0;
  }
  .mobile-menu a,
  .mobile-menu span {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
  }
  .mobile-submenu {
    display: none;
    padding-left: 15px;
  }
  .mobile-dropdown.open > .mobile-submenu {
    display: block;
  }
  .banner {
    padding: 80px 10px 10px;
    height: auto;
    min-height: 320px;
  }
  .banner-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .left-content, .right-image {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .left-content h2 {
    margin-top: 10px;
  }

  .right-image img {
    width: 90vw;
    max-width: 300px;
    height: auto;
    margin: 20px auto;
    transform: none;
  }
  .quality-career-section {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  .image-container img {
    width: 90vw;
    max-width: 300px;
    height: auto;
    margin: 0 auto 20px auto;
  }
  .content-container {
    width: 100%;
    padding: 0 10px;
  }
  .footer-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    gap: 0;
  }
  .footer-column {
    width: 100%;
    margin-bottom: 20px;
    align-items: center;
  }
  .footer-logo {
    width: 100px;
    height: auto;
    margin: 0 auto 10px auto;
  }
  .map-container {
    width: 90vw;
    height: 200px;
    margin: 0 auto;
  }
  .map-container iframe {
    width: 100%;
    height: 100%;
  }
  .social-icons {
    justify-content: center;
    gap: 10px;
  }
}


