/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #0D0D0D;
  overflow-x: hidden;
}

/* NAVIGATION BAR */
nav {
  background-color: #403275;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  position: relative;
  z-index: 999;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-left img {
  height: 45px;
}

.nav-left span {
  color: white;
  font-weight: bold;
  font-size: 1.8em;
  line-height: 1.2;
  white-space: nowrap;
}

/* Hamburger toggle */
.menu-toggle {
  display: none;
  font-size: 2em;
  color: white;
  cursor: pointer;
}

/* Nav links */
.nav-right {
  display: flex;
  align-items: center;
}

.nav-right a {
  color: white;
  font-size: 1em;
  text-decoration: none;
  margin-left: 0.4em;
  font-weight: bold;
  position: relative;
  padding: 0.5em 1em;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.nav-right a:hover {
  background-color: #8BBD3A;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  background-color: #435995;
  top: 100%;
  left: 0;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 0;
  box-sizing: border-box;
}

.dropdown-content a {
  display: block;
  color: white;
  padding: 0.75em 0;
  padding-left: 1em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInMenu 0.4s forwards;
  text-align: left;
  white-space: nowrap;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown:hover .dropdown-content a:nth-child(1) { animation-delay: 0.1s; }
.dropdown:hover .dropdown-content a:nth-child(2) { animation-delay: 0.2s; }
.dropdown:hover .dropdown-content a:nth-child(3) { animation-delay: 0.3s; }
.dropdown:hover .dropdown-content a:nth-child(4) { animation-delay: 0.4s; }
.dropdown:hover .dropdown-content a:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInMenu {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ---- FOOTER ---- */

footer {
  background-color: #403275;
  color: white;
  text-align: left;
  padding: 2em;
  font-size: 0.9em;
  margin-top: 2em;
}

.black-footer-box {
	background-color: black;
	color: white;
	text-align: left;
	padding: 2em;
	font-size: 0.9em;
}

.footer-title {
  font-size: 1.1em;
  font-weight: bold;
  display: block;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  margin-top: 1em;
}

.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: white;
  font-size: 0.9em;
}

.footer-contact a {
  color: white;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact .icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.linkedin-icon {
  width: 25px; /* or whatever size you prefer */
  height: 25px;
   margin-left: -3.5px;
}

/* RESPONSIVE: MOBILE MENU */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1em;
  }

  .nav-left {
    width: 100%;
    justify-content: space-between;
  }

  .nav-left span {
    font-size: 1.3em;
  }

  .menu-toggle {
    display: block;
    align-self: flex-end;
    margin-top: 10px;
  }

  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #403275;
  }

  .nav-right.active {
    display: flex;
  }

  .nav-right a,
  .dropdown > a {
    text-align: left;     /* Ensure alignment */
    justify-content: flex-start; /* For flexbox behavior */
    display: block;
  }
  
  .dropdown > a {
    text-align: left !important;
  }

  .dropdown-content {
    display: none; /* hide by default */
    opacity: 1 !important;
    position: static; /* remove absolute */
    transform: none !important;
    pointer-events: auto;
    padding-left: 2em;
    background-color: #403275;
  }

  .dropdown.open .dropdown-content {
	display: block;
  }

  .dropdown-content a {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    padding-left: 1.5em;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.8em;
  }
}


/*    ----   HOME PAGE SECTION   ----   */

.title-home {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin: 2em 0;
  color: #333;
}

.title-home-highlight{
  color: #403275;
  font-weight: black;
}

.tagline {
  font-size: 1.6em;
  line-height: 1.6;
  text-align: center;
  margin: 2em 0;
  color: #333;
}

.tagline .highlight {
  color: black;
  font-weight: bold;
}

.overview-text {
  max-width: 900px;
  margin: 2em auto;
  padding: 0 1em;
  text-align: justify;
  font-size: 1em;
  line-height: 1.8;
  color: #333;
}

/*		----		Image Slider		----		*/

.image-slider {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 522px;
  overflow: hidden;
  position: relative;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 2000px;
  height: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slides img {
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  background-color: black;
  flex-shrink: 0;
  width: 100%;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0 15px;
  cursor: pointer;
  z-index: 1;
}

.nav-btn.left {
  left: 10px;
}

.nav-btn.right {
  right: 10px;
}

.indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: white;
}

@media screen and (max-width: 768px) {
  .image-slider {
    height: 280px;
  }

  .slider-container {
    height: 100%;
  }

  .slides img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .image-slider {
    height: 280px;
  }

  .slider-container {
    height: 100%;
  }

  .slides img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .nav-btn {
    font-size: 1.2rem;
    padding: 0 10px;
  }

  .dot {
    height: 6px;
    width: 6px;
  }
}


/*Banners on every page*/

.banner-image2 {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-height: 260px;
  object-fit: cover;
}

.banner-container {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1
}

.banner-title {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-family: 'Poppins', sans-serif;
  color: white;
  font-size: 3em;
  font-weight: 700;
  text-align: left;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
  z-index: 1;
}



/* ---- TEAM SECTION ---- */

.tabs {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #ccc;
  margin-bottom: 2em;
}

.tab {
  padding: 0.5em 1em;
  cursor: pointer;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.tab.active {
  border-bottom: 3px solid #403275;
  color: #403275;
  text-align: center;
}

.team-section {
  display: none;
  gap: 2em;
  justify-items: center;
  animation: fadeIn 0.5s ease-in-out;
}

.team-section.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.member-card {
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.member-card img {
  width: 150;
  height: 150px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.member-name {
  font-weight: 600;
  margin-top: 0.5em;
}

.member-title {
  font-size: 0.9em;
  color: #555;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 15em; /* Default for larger screens */
  row-gap: 5em;
  justify-content: center;
  align-items: start;
}

@media (max-width: 768px) {
  .directors-grid {
    column-gap: 5em; /* Smaller gap on tablets */
  }
}

@media (max-width: 480px) {
  .directors-grid {
    grid-template-columns: 1fr; /* Stack vertically on small screens */
    row-gap: 3em;
  }
}

.team-grid-wrapper {
  overflow-x: auto;
  width: 100%;
}


/* ---- REGISTRATION SECTION ---- */

.registration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  margin-top: 2em;
  justify-items: center;
}

.registration-grid img {
  width: 100%;
  max-width: 500px;
  height: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  object-fit: contain;
}

.registration-container {
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.map-wrapper {
  display: flex;
  margin: 2em 0;
}

.map-container {
  width: 90%;
  height: 50vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Events Section ---- */
.event-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  align-items: center;
  justify-content: center;
  margin: 3em auto;
  max-width: 1200px;
}

.event-image {
  width: 100%;
  max-width: 450px;
  height: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  object-fit: cover;
}

.event-details {
  max-width: 600px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
}

.event-title {
  font-size: 1.8em;
  font-weight: 700;
  color: #403275;
  margin-bottom: 0.5em;
}

.event2-title {
  font-size: 1.8em;
  font-weight: 700;
  color: #403275;
  margin-bottom: 1em;
}

.event-description {
  font-size: 1em;
  line-height: 1.6;
  color: #333;
}

.event-button {
  display: inline-block;
  padding: 0.8em 1.2em;
  background-color: #403275;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-align: center;
  margin-top: 1em;
  width: 100%;
  max-width: 150px;
  height: 50px;
}

.event-button:hover {
  background-color: #8BBD3A;
}

@media screen and (max-width: 768px) {
  .event-image {
    width: 350px;
    height: 250px;
  }

  .event-details {
    padding-top: 1em;
  }

  .event-button {
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.event-text-content {
	max-width: 900px;
	margin: auto;
	font-family: Arial, sans-serif;
	line-height: 1.6;
}

.event-image-container {
  margin-top: 10px;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}

.event-img {
  width: 100%;
  max-width: 850px;
  height: auto;
  max-height: 650px;
  border-radius: 12px;
  object-fit: cover;
}

.event-image-description {
	font-size: 0.9em;
}
/*
.breadcrumb {
  font-size: 14px;
  margin-bottom: 1.5em;
  background-color: #2c2c6c;
  padding: 0.75em 1.2em;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.breadcrumb a,
.breadcrumb a:visited {
  color: #ffffff; 
  text-decoration: none;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.breadcrumb a:hover {
  background-color: #8BBD3A;
  color: white;
}

.breadcrumb .separator {
  color: #ffffff;
}

.breadcrumb .current {
  color: #ffffff;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    flex-wrap: wrap;
    font-size: 13px;
    padding: 0.8em 1em;
    gap: 0.4em;
  }

  .breadcrumb a {
    padding: 4px 6px;
  }

  .breadcrumb .current {
    font-size: 0.95em;
  }
} */


.breadcrumb {
  font-size: 14px;
  margin-bottom: 1.5em;
  color: #000000;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  display: inline;
  white-space: normal;
}

.breadcrumb a,
.breadcrumb a:visited {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #8BBD3A;
}

.breadcrumb .separator {
  margin: 0 0.3em;
}

.breadcrumb .current {
  color: #000000;
  font-weight: bold;
}



/* ---- Services Section ---- */

.service-title {
	font-size: 3.5em;
	line-height: 1.6;
	text-align: center;
	margin: 50px;
	color: #333;
}

.service-title .highlight {
	color: black;
	font-weight: bold;
}

.service-text {
	max-width: 1500px;
	margin: 2em auto;
	padding: 0 1em;
	text-align: center;
	font-size: 1.5em;
	line-height: 1.8;
	color: #333;
}

.services-overview {
  max-width: 1000px;
  margin: 3em auto;
  padding: 0 1em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.service-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}

.service-box.right-icon {
  flex-direction: row-reverse;
}

.service-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  flex-shrink: 0;
}

.service-content {
  max-width: 700px;
}

.service-title2 {
  font-size: 1.6em;
  font-weight: 700;
  color: #403275;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.3em;
}

.service-description {
  font-size: 1.3em;
  line-height: 1.6;
  color: #333;
  font-family: 'Arial', sans-serif;
}

@media (max-width: 600px) {
  .service-box {
    flex-direction: column;
    text-align: center;
  }

  .service-box.right-icon {
    flex-direction: column;
  }

  .service-icon {
    margin-bottom: 0.5em;
  }
}

.section-divider {
  border: none;
  height: 2px;
  background-color: #ccc;
  margin: 40px auto;
  width: 80%;
}

.service-list-section {
  text-align: center;
  padding: 2em;
  background-color: #f9f9f9;
}

.service-list-section h2 {
  font-size: 1.8em;
  margin-bottom: 1em;
  color: #403275;
}

.service-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.service-list li {
  margin-bottom: 10px;
  padding-left: 1.5em;
  position: relative;
  line-height: 1.6em;
}

.service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #403275;
  font-weight: bold;
}


/* ---- Project Section ---- */

.accordion-projects {
  max-width: 900px;
  margin: 3em auto;
  padding: 0 1em;
  font-family: 'Poppins', sans-serif;
}

.project-image-container {
  margin-top: 10px;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}

.project-image {
  width: 100%;            
  max-width: 400px;       
  height: auto;           
  object-fit: contain;    
  border-radius: 10px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.project-status-text {
	font-size: 1.1em;
	font-weight: bold;
}

.project-image-description {
	font-size: 0.9em;
}


.accordion-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1em;
}

.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 1em;
  background-color: #403275;
  color: white;
  font-weight: bold;
  font-size: 1.1em;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}

.accordion-btn:hover,
.accordion-btn.active {
  background-color: #8BBD3A;
}

.accordion-content {
  display: none;
  padding: 1em 1.5em;
  background-color: #f9f9f9;
  border-left: 4px solid #403275;
  animation: fadeIn 0.3s ease-in-out;
}

.accordion-content ul {
  list-style-type: disc;
  margin-left: 1.5em;
  color: #333;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ---- CONTACT US SECTION ---- */

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
  padding: 2em;
  max-width: 1200px;
  margin: 2em auto;
  font-family: 'Poppins', sans-serif;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: 1.5em;
  font-weight: bold;
  color: #403275;
}

.contact-info .subtitle {
  font-size: 1em;
  margin-bottom: 1em;
  color: #555;
}

.subtitle-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 30px;
  font-weight: 500;
  color: #555; /* or adjust to match your theme */
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin: 0.7em 0;
}

.contact-detail .icon {
  width: 20px;
  height: 20px;
}

.contact-detail a {
  color: #0D0D0D;
  text-decoration: none;
  font-size: 0.95em;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-actions {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
}

.office-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.image-and-buttons {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 1em;
  flex-wrap: wrap;
}


.image-label-group {
  display: flex;
  flex-direction: column;
}

.company2 {
  width: 150px;
  height: auto;
  border-radius: 8px;
}

.image-label {
  font-size: 0.95em;
  font-weight: bold;
  margin-bottom: 0.5em;
  text-align: left;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.form-button {
  display: inline-block;
  padding: 0.8em 1.2em;
  background-color: #403275;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.form-button:hover {
  background-color: #8BBD3A;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-actions {
    width: 100%;
  }
}


/* ---- CAREER SECTION ---- */

.career-section {
  max-width: 900px;
  margin: 3em auto;
  padding: 0 1em;
  font-family: 'Poppins', sans-serif;
}

.career-title {
  font-size: 2.7em;
  font-weight: bold;
  color: #403275;
  margin-bottom: 1.5em;
  text-align: center;
}

.job-listing {
  background-color: #f5f5f5;
  padding: 1.5em;
  border-radius: 10px;
  margin-bottom: 2em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.job-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5em;
}

.job-summary {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1em;
}

.apply-button {
  display: inline-block;
  padding: 0.6em 1.2em;
  background-color: #403275;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.apply-button:hover {
  background-color: #8BBD3A;
}

.apply-button.disabled {
  background-color: #ccc;
  pointer-events: none;
  cursor: default;
}


/* ---- PARTNER SECTION ---- */

.partner-section {
  max-width: 1000px;
  margin: 3em auto;
  padding: 0 1.5em;
  font-family: 'Poppins', sans-serif;
}

.partner-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 2em;
  color: #403275;
}

.partner-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  align-items: flex-start;
  margin-bottom: 2em;
}

.partner-image img {
  width: 300px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.partner-details {
  flex: 1;
}

.partner-name {
  font-size: 1.5em;
  color: #403275;
  margin-bottom: 0.2em;
}

.partner-tagline {
  font-size: 1.2em;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 0.1em;
  color: #8BBD3A;
}

.partner-section-block {
  margin-bottom: 2em;
}

.partner-section-block h4 {
  color: #403275;
  font-size: 1.2em;
  margin-bottom: 0.5em;
}

.partner-section-block ul {
  padding-left: 1.5em;
  list-style-type: disc;
}

.partner-section-block p,
.partner-section-block ul li {
  font-size: 0.95em;
  line-height: 1.6;
  color: #333;
}

/* ---- ORGANIZATION CHART ---- */

.org-chart-section {
  text-align: center;
  padding: 40px 20px;
}

.org-chart-title {
  font-size: 2.7em;
  font-weight: bold;
  color: #403275;
  margin-bottom: 1.5em;
  text-align: center;
}

.org-chart-img {
  max-width: 100%;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
