@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
.pdf-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  justify-content: center;
  background-color: #f4f4f4;
}
/* Hero Section Styles */
.hero {
    height: 40vh;
    width: 100%;
    background-color: #00A78C;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Adjusting your existing .h class since the title is now in the hero */
.h {
    text-align: center;
    padding: 40px 20px 20px 20px;
    color: #333;
    padding-bottom: 30px;
}

/* Optional: Smooth scroll for the whole page */
html {
    scroll-behavior: smooth;
}
.k{
    padding: 50px;
    background-color: #f4f4f4;
}
.pdf-card {
  flex: 1 1 calc(45% - 20px); /* Adjusts to roughly half width */
  min-width: 300px;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.pdf-card h3 {
  margin-top: 0;
  color: #333;
  font-family: sans-serif;
}

/* Ensure the embed looks good */
embed {
  border: 1px solid #ddd;
  border-radius: 4px;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #00A78C ;
  color: white;
  padding: 1rem 8rem;
  font-family: Arial, sans-serif;
  position: sticky;
  top:0;
  z-index: 1000;
}
.ourPurpose{
  padding-top: 50px;
  padding-bottom: 25px;
  text-align: center;
  color:black;
  font-size: 35px;
}
.ourDirectors{
  padding-top: 50px;
  padding-bottom: 25px;
  text-align: center;
  color:black;
  font-size: 35px;
}
.ourReferences{
  text-align: center;
  color:black;
  font-size: 35px;
}
.navbar img {
      height: 80px;   /* Adjust logo size */
      width: auto; 
      background-color: #fff;   /* Keeps proportions */
    }
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  position: relative; 
  padding-bottom: 5px; 
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #DCE200;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #DCE200;
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #DCE200;
}

.nav-links a.active::after {
  width: 100%;
}
/* Footer container */
.footer {
  background: #00A78C;
  color: #ddd;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 5rem;
  flex-wrap: wrap;
}

/* Sections */
.footer-section {
  flex: 1;
  margin: 0 1rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #fff;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 0.5rem 0;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #DCE200;
}

/* Contact info */
.footer-contact p, 
.footer-contact a {
  margin: 0.3rem 0;
  color: #ddd;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #DCE200;
}



/* Bottom strip */
.footer-bottom {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #00A78C ;
  font-size: 0.9rem;
  background: #00655B;
}
/* Map */
.footer-map iframe {
  width: 100%;
  max-width: 300px; /* set your preferred max */
  height: 120px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  border-radius: 8px;
}
.cont {
      display: flex;
      min-height: 70vh;
      padding-top: 50px;
      background-color: #ddd;
      /*background-color: #9ea09f;*/
      padding-bottom: 50px;
    }

    .map-container {
      flex: 1;
      padding-left: 60px;
      padding-right: 60px;
    }

    .form-container {
      background: #fff;
      display: grid;
      flex-direction: column;
      justify-content: center;
      margin-left: 150px;
      flex:1;
      padding-left: 40px;
      padding-right:40px;
      padding-top: 40px;
      box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }

    h2 {
      margin-bottom: 20px;
      color: #333;
    }

    label {
      margin: 10px 0 5px;
      font-weight: bold;
    }

    input, textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    button {
      background: #007BFF;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
    }

    button:hover {
      background: #0056b3;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }
      .map-container {
        height: 300px;
      }
    }
   h1{
    margin-bottom: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
   }
.contBG {
      width: 100%;
      height: 350px;
      background-size: cover; 
      background-image: url("img/ini.png");
      background-position: center;
      background-repeat: no-repeat; 
      margin-bottom: 20px;
    }
    .gh{
      color: black;
      padding-left: 45px;
      padding-top:150px;
    }
div.content {
	background: #ffffff url(../images/bg-content2.gif) repeat-x bottom center;
	padding-bottom: 50px;
}
div.content div {
	margin: 0 auto;
	width: 960px;
}
div.content div div {
	padding-top: 10px;
	overflow: hidden;
	width: auto;
}
div.content div div#services {
	padding-top: 0;
	position: relative;
	top: -33px;
}
div.content div div div#sidebar {
	float: left;
	padding-top: 0;
	width: 320px;
}
div.content div div div#sidebar h3 {
	color: #9BAF58;
	font-size: 25px;
	font-weight: normal;
	margin: 0;
	text-indent: 20px;
}
div.content div div div#sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
div.content div div div#sidebar ul li {
	height: 205px;
	padding: 15px 55px 0 35px;
}
div.content div div div#sidebar ul li#vision {
	background: url(../images/bg-sidebar-item1.jpg) no-repeat;
}
div.content div div div#sidebar ul li#mission {
	background: url(../images/bg-sidebar-item2.jpg) no-repeat;
}
div.content div div div#sidebar ul li#wecare {
	background: url(../images/bg-sidebar-item3.jpg) no-repeat;
}
div.content div div div#sidebar ul li span {
	color: #FFFFFF;
	display: block;
	font-size: 25px;
	font-style: italic;
}
div.content div div div#sidebar ul li p {
	line-height: 23px;
	margin: 0;
	padding-top: 0;
}
div.content div div div#aside, div.content div div div#contact {
	float: right;
	padding-right: 10px;
	padding-top: 0;
	width: 620px;
}
div.content div div div#aside span {
	color: #fc9500;
	display: block;
	font-size: 20px;
	padding-top: 50px;
}
div.content div div div#aside span.first {
	padding-top: 0;
}
div.content div div div#aside p {
	margin: 0;
	line-height: 23px;
	padding-top: 5px;
	text-align: justify;
}
div.content div div div#aside ul {
	list-style: disc inside;
	margin: 0;
	padding: 0 0 0 25px;
}
div.content div div div#aside ul li {
	padding: 5px 0;
}
div.content div div div#aside b {
	font-weight: normal;
	display: block;
	padding: 5px 0 5px 25px;
}
div.content div div div#aside div {
	height: auto;
	overflow: hidden;
	padding-top: 0;
	width: auto;
}
div.content div div div#aside div ol {
	float: left;
	list-style: none;
	margin: 0;
	padding: 0;
}
div.content div div div#aside div ol li {
	margin-left: 30px;
	padding: 5px 30px 5px 0;
}
div.content div div div#contact {
	color: #7d6e4f;
}
div.content div div div#contact h4 {
	color: #00363db9;
	font-size: 18px;
	font-weight: normal;
	margin-top: 50px;
	padding-left: 30px;
}
div.content div div div#contact h4.first {
	margin: 0 0 20px;
}
div.content div div div#contact p {
	line-height: 23px;
	margin: 0;
	padding-left: 65px;
}
div.content div div div#contact p a {
	color: #ff9100;
}
div.content div div div#contact b {
	display: block;
	font-weight: normal;
	line-height: 23px;
	margin-top: 15px;
	padding-left: 100px;
}
div.content div#blog {
	height: auto;
	margin: 0 auto;
	overflow: hidden;
	padding-right: 10px;
	width: 950px;
}
div.content div#blog div.sidebar {
	float: left;
	margin-left: 35px;
	margin-top: 45px;
	padding-top: 0;
	width: 210px;
}
div.content div#blog div.sidebar h2 {
	color: #9BAF58;
	font-size: 25px;
	font-weight: normal;
	margin: 0 0 5px;
}
div.content div#blog div.sidebar h3 {
	background: url(../images/separator.gif) no-repeat center top;
	font-size: 18px;
	font-weight: normal;
	margin: 0;
	padding: 10px 0 10px 10px;
}
div.content div#blog div.sidebar h3 a {
	background: url(../images/arrow.gif) no-repeat 180px 7px;
	color: #fc9400;
	display: block;
	text-decoration: none;
}
div.content div#blog div.sidebar h3 a:hover, div.content div#blog div.sidebar p a:hover {
	color: #b96914;
}
div.content div#blog div.sidebar h3.first a {
	background: url(../images/arrow.gif) no-repeat 180px -16px;
}
div.content div#blog div.sidebar h3 span {
	color: #b96914;
}
div.content div#blog div.sidebar div {
	background: url(../images/separator.gif) no-repeat center top;
	height: auto;
	padding: 15px 0 15px 15px;
	width: auto;
}
div.content div#blog div.sidebar p {
	color: #785d40;
	line-height: 23px;
	margin: 0;
}
div.content div#blog div.sidebar p a {
	color: #746048;
	text-decoration: none;
}
div.content div#blog div.sidebar p span {
	color: #bc6812;
}
div.content div#blog div.article {
	float: right;
	width: 630px;
}
div.content div#blog div.article ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
div.content div#blog div.article ul li {
	background: url(../images/separator-long.gif) no-repeat center top;
	display: block;
	overflow: hidden;
	padding: 30px 0;
}
div.content div#blog div.article ul li.first {
	background: none;
}
div.content div#blog div.article ul li div {
	float: left;
	padding-top: 0;
	width: 511px;
}
div.content div#blog div.article ul li div h1 {
	font-size: 18px;
	font-weight: normal;
	margin: 0;
}
div.content div#blog div.article ul li div h1 a {
	color: #FC9400;
	display: block;
	text-decoration: none;
}
div.content div#blog div.article ul li div h1 a:hover {
	color: #b96914;
}


div.content div#blog div.article div#paging a.next:hover {
	background: url(../images/bg-button.gif) 0 190px;
}
div.content p a {
	color: #2b2e1d;
}
.sect1 {
      display: flex; 
      justify-content: center; 
      align-items: center; 
      gap: 20px;
      padding-left: 70px;
      padding-right: 70px;
    }

   /* Left Section */
.leftC {
  flex: 1;
  padding-top: 30px;
  padding-left: 20px;
}

/* Right Section */
.rightC {
  flex: 0.7;
  width: 100%;
  height: 250px;
  background-image: url("images/img3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  border-radius: 10px; /* optional for nicer edges */
}
.myText {
  color: black;
  font-size: 20px;
  font-family: "Nunito", sans-serif;
  font-weight: 100;
}
.myTitle{
  padding-top: 120px;
  padding-left: 50px;
  color:white;
  font-size: 35px;
}
#our-why {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

#our-why h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #222;
  font-family: 'Nunito', sans-serif;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 280px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.3em;
  color: #a1b300;
  margin-bottom: 10px;
  font-family: 'Nunito', sans-serif;
}
.card h3:hover{
  color:#9ea09f;
}

.card p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.5;
  font-family: 'Nunito', sans-serif;
}
.abtBg {
      width: 100%;
      height: 250px;
      background-size: cover; 
      background-image: url("images/fine.jpg");
      background-position: center;
      background-repeat: no-repeat; 
      margin-bottom: 20px;
    }
.myText2 {
  color: black;
  font-size: 20px;
  font-family: "Nunito", sans-serif;
  font-weight: 100;
}
.rDiv{
      flex:1;
      padding-top: 30px;
    }
    .lDiv {
      flex: 0.9; 
      width: 100%;
      height: 260px;
      background-size: cover; 
      background-image: url("images/img2.jpg");
      background-position: center;
      background-repeat: no-repeat; 
      margin-bottom: 20px;
    }
.sect2 {
      display: flex; 
      justify-content: center; 
      padding-left: 70px;
      padding-right: 70px;
      align-items: center; 
      gap: 20px;
      padding-bottom: 40px;
    }
   .aboutTitle{
    padding-top: 50px;
    padding-bottom: 25px;
    text-align: center;
    color:black;
    font-size: 35px;
   }
  #core-values {
  margin-bottom: 40px;
  color: #222;
  text-align: center;
  margin-left: 190px;
  margin-right: 190px;
  padding:55px;
  font-family: 'Nunito', sans-serif;
}

#core-values h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 40px;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px; /* Reduced gap between cards */
  justify-items: center;
}

.value-card {
  background: #fff;
  padding: 18px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  width: 180px; /* Slightly smaller for tighter layout */
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  margin-bottom: 10px;
}

.value-card h4 {
  font-size: 1.05em;
  color: #444;
  font-weight: 600;
}

/* Make it responsive */
@media (max-width: 900px) {
  .values-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Slightly larger gap for small screens */
  }
}

@media (max-width: 500px) {
  .values-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
  text-align: center; /* This helps center the slides */
}

.slide {
  display: none;
}

.slide:first-child {
  display: block;
}

.slide img {
  width: 70%; /* Adjust between 50%-75% */
  max-width: 900px; /* Optional: set a maximum width */
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  display: inline-block; /* This allows centering with text-align */
  margin: 0 auto; /* Additional centering */
}

/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: 0.4}
  to {opacity: 1}
}

/* Slideshow controls */
.slideshow-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px 15px;
  border-radius: 25px;
}

.slideshow-controls button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.slideshow-controls button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Dots indicator */
.dots-container {
  text-align: center;
  margin-top: 15px;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.dot.active, .dot:hover {
  background-color: #00A78C;
}

.myTeam{
  padding-top: 50px;
  padding-bottom: 25px;
  text-align: center;
  color:black;
  font-size: 35px;
}
/* Custom Dropdown Styling */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .nav-link {
    padding-right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fa-angle-down {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .fa-angle-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 225px;
    background: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.9rem 1.3rem;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.dropdown-item:hover {
    background-color: #f8f9ff;
    color: #4a6cf7;
    border-left-color: #4a6cf7;
    padding-left: 1.6rem;
}

.dropdown-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

/* Animation for dropdown items */
.dropdown-item {
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-item {
    transform: translateX(0);
    opacity: 1;
}

.nav-item.dropdown:hover .dropdown-item:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-item.dropdown:hover .dropdown-item:nth-child(2) {
    transition-delay: 0.15s;
}

.nav-item.dropdown:hover .dropdown-item:nth-child(3) {
    transition-delay: 0.2s;
}

.nav-item.dropdown:hover .dropdown-item:nth-child(4) {
    transition-delay: 0.25s;
}
/* Add arrow indicator to dropdown toggle */
.nav-item.dropdown .nav-link::after {
    content: '';
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.nav-item.dropdown:hover .nav-link::after {
    transform: rotate(-135deg);
}

/* ===== SMALL SCREEN STYLES (Mobile) ===== */
@media screen and (max-width: 768px) {
  /* Navigation */
  .navbar {
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    width: 100%;
  }
  
  .navbar img {
    height: 60px;
  }
  
  .nav-links a {
    display: block;
    padding: 10px;
    font-size: 16px;
  }
  
  /* About Page Sections */
  .sect1, .sect2 {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    gap: 0;
  }
  
  /* For sect1 - Image first, then text */
  .sect1 .rightC {
    order: -1;
    flex: none;
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
  }
  
  .sect1 .leftC {
    flex: none;
    width: 100%;
    padding-top: 0;
    padding-left: 0;
  }
  
  /* For sect2 - Image first, then text */
  .sect2 .lDiv {
    order: -1;
    flex: none;
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
  }
  
  .sect2 .rDiv {
    flex: none;
    width: 100%;
    padding-top: 0;
  }
  
  /* Text adjustments */
  .myText, .myText2 {
    font-size: 18px;
    text-align: center;
  }
  
  /* About title section */
  .abtBg {
    height: 200px;
  }
  
  .myTitle {
    padding-top: 80px;
    padding-left: 20px;
    font-size: 28px;
    text-align: center;
  }
  
  .aboutTitle {
    font-size: 24px;
    margin: 20px 0;
  }
  
  /* Our Purpose Section */
  .card-container {
    flex-direction: column;
    align-items: center;
  }
  
  .card {
    max-width: 90%;
    margin-bottom: 20px;
  }
  
  /* Slideshow Container */
  .slideshow-container {
    width: 100%;
    padding: 0 10px;
  }
  
  .slide img {
    width: 100%;
    height: 300px;
    max-width: none;
  }
  
  /* Team Section */
  .myTeam {
    font-size: 28px;
    padding: 30px 20px 15px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }
  
  .footer-section {
    margin: 0;
    width: 100%;
  }
  
  .footer-map iframe {
    max-width: 100%;
    height: 200px;
  }
  
  /* Core Values Section */
  #core-values {
    margin-left: 20px;
    margin-right: 20px;
    padding: 30px 10px;
  }
  
  .values-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .value-card {
    width: 100%;
    max-width: 280px;
  }
  
  /* Contact Form */
  .cont {
    flex-direction: column;
  }
  
  .map-container {
    height: 300px;
    padding: 0 20px;
  }
  
  .form-container {
    margin-left: 0;
    padding: 20px;
  }
}

/* ===== EXTRA SMALL SCREENS ===== */
@media screen and (max-width: 480px) {
  .navbar {
    padding: 1rem;
  }
  
  .nav-links {
    gap: 0.8rem;
  }
  
  .nav-links a {
    font-size: 0.9rem;
  }
  
  .abtBg {
    height: 180px;
  }
  
  .myTitle {
    font-size: 24px;
    padding-top: 70px;
  }
  
  .myText, .myText2 {
    font-size: 16px;
  }
  
  .slide img {
    height: 250px;
  }
  
  .card {
    max-width: 95%;
    padding: 15px;
  }
  
  /* Image sections height adjustment */
  .sect1 .rightC,
  .sect2 .lDiv {
    height: 200px;
  }
  
  /* Footer adjustments */
  .footer-content {
    padding: 1.5rem;
  }
  
  .footer-contact p {
    font-size: 14px;
  }
}

/* ===== TABLET STYLES ===== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .navbar {
    padding: 1rem 4rem;
  }
  
  .sect1, .sect2 {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .slide img {
    width: 85%;
    height: 400px;
  }
  
  .card-container {
    gap: 20px;
  }
  
  .card {
    max-width: 250px;
  }
  
  .footer-content {
    padding: 2rem 3rem;
  }
}

/* ===== ENSURE LANDSCAPE IMAGES DISPLAY PROPERLY ===== */
.sect1 .rightC,
.sect2 .lDiv,
.slide img,
.card img {
  background-size: cover;
  background-position: center;
  object-fit: cover;
}

/* ===== FIX IMAGE ASPECT RATIOS FOR MOBILE ===== */
@media screen and (max-width: 768px) {
  .sect1 .rightC,
  .sect2 .lDiv {
    aspect-ratio: 16/9;
    height: auto;
    min-height: 200px;
  }
  
  .slide img {
    aspect-ratio: 16/9;
    height: auto;
    max-height: 300px;
  }
}
/* Mobile Navigation Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}
/* Update existing mobile styles */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background: #00A78C;
        flex-direction: column;
        text-align: center;
        gap: 0;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        z-index: 999;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        transition: background-color 0.3s;
    }

    .nav-links a:hover {
        background-color: rgba(255,255,255,0.1);
    }
}

/* Extra small screen adjustments */
@media screen and (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        top: 80px;
    }
}

/* Directors Section */
.directors-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    font-size: 1.1rem;
    color: black;
    max-width: 600px;
    margin: 0 auto;
}

/* Directors Container */
.directors-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Director Card */
.director-card {
    width: 100%;
    max-width: 350px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Image Holder */
.image-holder {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.image-holder img {
    width: 100%;
    height: calc(100% + 150px);
    object-fit: cover;
    transition: transform 0.5s ease;
}

.director-card:hover .image-holder img {
    transform: scale(1.05);
}

/* Director Info */
.director-info {
    padding: 25px;
    text-align: center;
}

.director-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #a1b300;
    margin-bottom: 8px;
}

.director-title {
    font-size: 1.1rem;
    color:  #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
}
/* Responsive Design */
@media (max-width: 1100px) {
    .director-card {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .directors-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .director-card {
        max-width: 100%;
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}