* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background-color: #fff;
      color: #000;
      
    }

    .wrapper {
      width: 100%;
      max-width: 75%;
      margin: 0 auto;
      transition: transform 0.3s ease;
    }

    @media (max-width: 768px) {
      .wrapper {
        max-width: 100%;
      }
    }

    .drawer-open .wrapper {
      transform: translateX(260px);
    }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 900;
      display: none;
    }

    .drawer-open .overlay {
      display: block;
    }

    /* Header */
    .responsive-header {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
      color: #fff;
      padding: 1.1em;
      position: relative;
      text-align: center;
    }

    .header-left h1 {
      font-size: 1.8rem;
      color: #f9f9f9;
      text-align: center;
    }

    .header-left p {
      font-size: 0.95rem;
      color: #aaa;
      text-align: center;
    }

.desktop-nav {
      display: flex;
    gap: 0;
    justify-content: space-around;
    width: 100%;
    background-color: #000;
    border-top: 1px solid #444;
}
.desktop-nav a {
    padding: 5px 15px;
    text-decoration: none;
    color: #fff;
    border-right: 1px solid #444;
    width: 100%;
    text-align: center;
}

.desktop-nav a:last-child {
  border-right: none; /* Remove border after last item */
}


    .desktop-nav a:hover {
      background-color: #f00;
      color: #fff;
    }

    /* Mobile Menu Button */
    .mobile-menu-toggle {
      font-size: 1.8rem;
      color: #fff;
      background: none;
      border: none;
      display: none;
      cursor: pointer;
      position: absolute;
      right: 20px;
    }

    /* Mobile Drawer */
    .mobile-drawer {
      position: fixed;
      top: 0;
      left: -260px;
      width: 260px;
      height: 100%;
      background-color: #111;
      color: #fff;
      box-shadow: 2px 0 8px rgba(0, 0, 0, 0.4);
      transition: left 0.3s ease;
      z-index: 1000;
      padding: 20px;
    }

    .mobile-drawer.open {
      left: 0;
    }

    .close-drawer {
      background: none;
      border: none;
      color: #fff;
      font-size: 1.5rem;
      float: right;
      cursor: pointer;
      margin-bottom: 20px;
    }

    .mobile-nav {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .mobile-nav a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      font-size: 1rem;
    }

    .mobile-nav a:hover {
      color: #f00;
    }

    @media (max-width: 768px) {
      .desktop-nav {
        display: none;
      }

      .mobile-menu-toggle {
        display: block;
      }

      .responsive-header {
        justify-content: flex-start;
      }

      .header-left h1,
      .header-left p {
        text-align: left;
      }

      .header-left h1 {
        font-size: 1.3rem;
      }

      .header-left p {
        font-size: 0.85rem;
        display: none;
      }
    }






 
 

    .section-row {
      display: flex;
      gap: 20px;
      margin: 25px 0;
      flex-wrap: wrap;
    }

    .section {
      flex: 1 1 300px;
      border: 1px solid #ccc;
      padding: 20px;
      background: #f9f9f9;
      min-width: 280px;
      font-size: 1.2rem;
    }
    
    .section p {
  font-size: 16px;             /* readable text size */
  line-height: 1.8;            /* better line spacing */
  color: #444;                 /* soft dark text */
    padding-bottom:30px;        /* spacing below the paragraph */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: justify;         /* clean aligned text */
  letter-spacing: 0.3px;       /* improves readability */
}

   
	.section h2 {
    background-color: #000;
    color: #fff;
    margin: -20px -20px 15px;
    padding: 14px;
    font-size: 1.2rem; /* Increased */
    text-align: center;
}

    .job-box {
      border-bottom: 1px dashed #ccc;
      padding: 10px 0;
    }

    .job-box:last-child {
      border-bottom: none;
    }

    .job-box a {
      font-weight: bold;
          color: #003366;
      text-decoration: none;
      font-size: 1rem; /* Increased */
    }

    .job-box a:hover {
      color: #f00;
    }

    .date {
      display: block;
      font-size: 1rem; /* Increased */
      color: #666;
    }

    .show-more {
      display: block;
      text-align: center;
      margin-top: 15px;
      font-weight: bold;
      color: #f00;
      text-decoration: none;
      transition: color 0.2s ease;
      font-size: 1rem; /* Increased */
    }

    .show-more:hover {
      color: #000;
      text-decoration: underline;
    }

.new-badge {
  background-color: #f00;
  color: #fff;
  font-size: 0.9rem; /* Increased */
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards per row on PC & tablets */
  gap: 1rem;
  margin: 2rem 0.5rem;
  overflow: hidden;
}

.job-card {
  display: block;
  color: #fff;
  padding: 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Hover effect */
.job-card:hover {
  transform: translateY(-4px);
}

/* Mobile: 2 cards per row */
@media (max-width: 768px) {
  .job-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .job-card {
    font-size: 0.95rem;
    padding: 1rem;
  }
  .subheading h1 {
  font-size: 1.2rem; /* Increased */
}
}




.marquee-strip {
    padding: 5px 12px;
    overflow: hidden;
}
marquee a {
    font-weight: bold;
    font-size: 1rem; /* Increased */
    white-space: nowrap;
    color: #003366;
}
marquee a:hover {
    color: #f00;
}


.subheading {
  text-align: center;
  background-color: #fff;
  padding: 20px 10px;
}

.subheading h1 {
  font-size: 1.5rem; /* Increased */
  line-height:1.5
}

.subheading p {
  color: #f00;
  font-size: 1rem; /* Increased */
  font-weight: bold;
  line-height:1.5
}

.not-found {
  text-align: center;
}



/* Mobile: 2 cards per row */
@media (max-width: 768px) {
  .subheading h1 {
  font-size: 1.2rem; /* Increased */
}
}

    
    
    
    .contact-page-section {
 
  margin: 20px 10px;
 

}

.contact-page-title {
  font-size: 28px;
  color: #0073aa;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 25px;
  text-align: center;
}

.contact-page-heading {
  font-size: 20px;
  color: #222;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 10px;
  border-left: 5px solid #0073aa;
  padding-left: 10px;
}

.contact-page-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #333;
}

.contact-page-list {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

.contact-page-list li {
  position: relative;
  font-size: 1rem;
  padding-left: 20px;
  margin-bottom: 10px;
}

.contact-page-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.contact-page-email {
  color: #0073aa;
  text-decoration: none;
  font-weight: 500;
}

.contact-page-thankyou {
  margin-top: 30px;
  font-size: 1rem;
  background: #e9f7ef;
  padding: 15px 20px;
  border-left: 5px solid #28a745;
  border-radius: 5px;
  color: #222;
}




   .footer-alt {
      background: #111;
      color: #ddd;
         padding: 40px 20px 15px 20px;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    }

    .footer-alt-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .footer-alt-box h3 {
      color: #00bcd4;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .footer-alt-box p {
      font-size: 1rem;
      color: #ccc;
      line-height: 1.6;
    }

    .footer-alt-box a {
      display: block;
      color: #aaa;
      text-decoration: none;
      margin: 6px 0;
      font-size: 1rem;
      transition: color 0.2s ease;
    }

    .footer-alt-box a:hover {
      color: #fff;
    }

    .footer-alt-bottom {
      text-align: center;
      padding-top:15px;
      font-size: 0.85rem;
      color: #999;
      border-top: 1px solid #444;
      margin-top: 30px;
    }