.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  position: relative; 
}

.main-nav a.active {
    color: #ffffff !important;         
    border-radius: 6px;
}

.main-nav a {
    color: #c6e3df; 
    text-decoration: none;
    padding: 10px 10px; 
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 17px;
}

.main-nav a:hover:not(.active) {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px; 
  margin: 0;
  padding: 0;
  font-weight: 600;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background-color: #f9fafc;
  line-height: 1.6;
  font-size: 17px;
}

header {
  background: #1c252e;
  color: white;
  padding: 30px 10px;
  margin-bottom: 20px;
}

header h1 {
  margin: 0 auto;
  font-size: 1.8rem;
  max-width: 1200px;
}

header strong p {
  background-color: #1c252e;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 6px;
  letter-spacing: 1px;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 10px 0 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.568);
  max-width: 1200px;
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
}

h2 {
  color: #4ca9a6;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

ul {
  margin: 0 0 20px 20px;
}

section {
  margin-bottom: 40px;
}

.image-section {
  text-align: center;
  margin: 0 auto 40px;
  position: relative;
}

.image-section img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  background-color: #f9fafc;
  display: block;
  margin: 0 auto;
}

.image-section::after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  background: #2f7773;
  margin: 10px auto 0;
  border-radius: 2px;
}


.gallery {
  text-align: center;
  padding: 60px 20px;
  background-color: #4ca9a615;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; 
}

.gallery-container img {
  
  width: 100%;
  max-width: 320px;
  height: auto; 
  min-height: 200px;
  object-fit: cover; 
  
 
  image-rendering: -webkit-optimize-contrast;
  
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  
  transform: translateZ(0);
}

.gallery-container img:hover {
  transform: scale(1.05) translateZ(0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.795);
  text-align: center;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.267);
}

.close {
  position: absolute;
  top: 20px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #4ca9a6;
}

#caption {
  margin: 15px auto;
  text-align: center;
  color: #ccc;
  font-size: 1.1rem;
}


form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

form input,
form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

form button {
  background-color: #fff;
  color: #4ca9a6;
  font-size: 1rem;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #e4e4e4;
}

.top-apply {
  text-align: center;
  background-color: #f9f9f9;
  padding: 25px 0;
  margin-bottom: 20px;
}

.apply-text {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 500;
}

.apply-top-btn {
  display: inline-block;
  background-color: #4ca9a6;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.apply-top-btn:hover {
  background-color: #2f7773;
}

footer {
  background-color: #1c242e;
  color: #ccc;
  text-align: center;
  padding: 25px 15px;
  font-size: 0.95rem;
  margin-top: 50px;
}

footer a {
  color: #4ca9a6;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
  color: #fff;
}

.recruit-banner {
  background-color: #2f7773;
  color: #fafffe;
  text-align: center;
  padding: 30px 10px;
  margin-bottom: 20px;
}

.recruit-banner h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  width: 100%;
  box-sizing: border-box;
}

.recruit-banner strong p {
  background-color: #4ca9a6;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 6px;
  letter-spacing: 1px;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 10px 0 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.568);
}

.site-logo {
  height: 50px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background-color: #c6e3df;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1c252e;
    display: none;
    padding: 15px 0;
    z-index: 1000;
  }
  .main-nav.active {
    display: block;
  }
  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.trust-section {
  background-color: #ffffff;
  color: #222;
  padding: 60px 20px;
  text-align: center;
  margin: 40px 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.trust-item {
  padding: 30px;
  background: #f9fafc;
  border-radius: 12px;
  border-top: 4px solid #4ca9a6;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.trust-icon {
  font-size: 2.5rem;
  color: #4ca9a6;
  margin-bottom: 15px;
  display: block;
  font-weight: 700;
}

.trust-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #2f7773;
}

.trust-item p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
}

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #4ca9a6;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #444;
  font-weight: 600;
}

.top-apply {
    padding-left: 15px;
    padding-right: 15px;
  }

   .image-section {
    padding: 0 16px;
    box-sizing: border-box;
  }

  .brevo-iframe{
  display:block;
  width:100%;
  max-width:1100px;
  height:1400px;
  margin:0 auto;
  border:0;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1c252e;
  min-width: 220px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.4);
  z-index: 9999;
  border-radius: 0 0 8px 8px;
  padding: 10px 0 !important;
  list-style: none;
  margin: 0 !important;
  transition: all 0.2s ease;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  padding: 12px 20px !important;
  width: 100%;
  box-sizing: border-box;
  display: block !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #c6e3df !important;
  background: transparent !important;
  border-radius: 0 !important;
  text-align: left;
}

.dropdown-menu li a:hover {
  background-color: #4ca9a6 !important;
  color: #ffffff !important;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}


img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
}


@media (max-width: 768px) {
 
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 0;
  }

 
  .dropdown-menu {
    display: block !important;   
    opacity: 1 !important;        
    visibility: visible !important; 
    position: static !important;   
    box-shadow: none !important;   
    background-color: rgba(255, 255, 255, 0.05) !important; 
    width: 100% !important;
    text-align: center;
    padding: 10px 0 !important;
    margin-top: 5px !important;
  }

 
  .dropdown-menu li a {
    padding: 10px !important;
    font-size: 15px !important;
    color: #c6e3df !important;
  }
}



html, body {
  height: 100%;
  margin: 0;
  padding: 0;
 
  overflow-x: hidden;
  width: 100%;
}

.thankyou-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  background-color: #f9fafc;
}

.thankyou-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
  transition: opacity 1s ease; 
}

.thankyou-container h1 {
  color: #1c252e;
  font-size: 3rem;
  margin-bottom: 10px;
}

.thankyou-container p {
  font-size: 1.2rem;
  color: #555;
}

.back-link {
  margin-top: 20px;
  color: #4ca9a6;
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  color: #2f7773;
}

footer {
  background-color: #1c242e;
  color: #ccc;
  text-align: center;
  padding: 25px 15px;
  width: 100%;
 
  box-sizing: border-box;
}

footer a {
  color: #4ca9a6;
  text-decoration: none;
  }