@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --primary-color: #274082;
  --primary-color-dark:#3b6aba;
  --secondary-color: #131516;
  --text-dark: #333333;
  --text-light: rgb(56, 54, 54);
  --extra-light: #f8f8f8;
  --white: #ffffff;
  --max-width: 1200px;
}
p {
  font-size: 1rem;
  color: rgb(56, 54, 54);
  line-height: 1.6;
  margin-bottom: 20px;
}


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  padding: 5rem 1rem;
  margin: auto;
}

.section__header {
  margin-bottom: 2px;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20%;
}

.section__subheader {
  color: var(--text-light);
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  outline: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn__primary {
  color: var(--text-dark);
  border: 2px solid var(--text-light);
  background-color: transparent;
}

.btn__secondary {
  color: var(--white);
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
}

.btn__primary:hover {
  background-color: var(--extra-light);
}

.btn__secondary:hover {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
}

img {
  width: 100%;
  display: flex;
  height: 40%;
}

a {
  text-decoration: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
}
/************NAV BAR*****************/
.nav__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
}

.nav__logo img {
  height: 100px;
  padding-top: 10px;
  margin-left: 30%;
}

.nav__links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links .link {
  margin: 0 10px;
}

.nav__links .link a {
  text-decoration: none;
  color: black;
  transition: color 0.3s;
}

.nav__links .link a:hover {
  color: var(--primary-color-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color:var(--primary-color-dark);
  margin: 4px 0px;
}

.nav__links {
  display: flex;
}

/* For screens smaller than 850px */
@media (max-width: 1040px) {
  .nav__logo img {
    margin-left: 20%;
  }

  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    right: 0;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(79, 185, 227, 0.813);
    z-index: 1000;
  }

  .nav__links.active {
    display: flex;
  }

  .nav__links .link {
    margin: 10px 0;
  }

  .hamburger {
    display: flex;
  }
}


/* For screens smaller than 480px */
@media (max-width: 480px) {
  .nav__logo img {
    height: 80px;
    margin-left: 5%;
  }

  .nav__links {
    top: 80px;
  }
}

/* For screens smaller than 302px */
@media (max-width: 302px) {
  .nav__logo img {
    height: 60px;
    margin-left: 2%;
  }

  .nav__links {
    top: 60px;
  }
}
/* Media query for max-width of 768px 
@media (max-width: 768px) {
  .nav__bar {
    flex-direction: column;
    align-items: center;
  }
  .nav__logo {
    margin-bottom: 1rem;
  }
  .nav__logo img{
    width: 100%;
    height: 50%;
  }
  .nav__links {
    flex-direction: row;
    overflow-x: auto;
    margin-left: 0;
  }
  .link a {
    font-size: 14px;
  }
  .nav__btns {
    margin-top: 1rem;
  }
}
*/
/* Media query for max-width of 480px 
@media (max-width: 480px) {
  .nav__bar {
    flex-direction: column;
    align-items: center;
  }
  .nav__logo {
    margin-bottom: 1rem;
  }
  .nav__logo img{
    width: 80%;
    height: 40%;
  }
  .nav__links {
    flex-direction: row;
    overflow-x: auto;
    margin-left: 0;
  }
  .link a {
    font-size: 12px;
  }
  .nav__btns {
    margin-top: 1rem;
  }
}
*/
/* Media query for max-width of 320px 
@media (max-width: 320px) {
  .nav__bar {
    flex-direction: column;
    align-items: center;
  }
  .nav__logo {
    margin-bottom: 1rem;
  }
  .nav__logo img{
    width: 60%;
    height: 30%;
  }
  .nav__links {
    flex-direction: row;
    overflow-x: auto;
    margin-left: 0;
  }
  .link a {
    font-size: 10px;
  }
  .nav__btns {
    margin-top: 1rem;
  }
}
  */
/********************ABOUT US/ OUR STORY**********************************/
.header {
  background-color: var(--extra-light);
  padding: 0; /* Remove default padding */
}

.header__container {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, calc(var(--max-width) / 2))
    minmax(0, calc(var(--max-width) / 2))
    minmax(0, 1fr);
  margin: 0;
  padding: 0; /* Remove default padding */
  background-color: #ffffff;
}

.header__content {
  padding: 2rem 1rem; /* Reduce top padding */
  grid-column: 1/3;
  margin-left: 5%;
}

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 600;
  line-height: 5rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.header__content p {
  margin-bottom: 2rem;
  color: var(--text-light);
}


.header__image {
  grid-column: 3/5;
  padding: 2rem 1rem; /* Add padding to image container */
}

.header__image img {
  height: 100%;
  object-fit: scale-down;
}

/* Media Queries */
@media (max-width: 900px) {
  .header__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0%;
  }

  .header__content {
    grid-column: 1/2;
    padding: 1.5rem 1rem;
    text-align: center;
    margin: 0%;
  }

  .header__content h1 {
    font-size: 3rem;
    line-height: 4rem;
    text-align: center;
    margin: 0%;
  }

  .header__image {
    grid-column: 1/2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
  }

  .nav__links .link a {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .header__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .header__content {
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .header__image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
  }

  .header__image img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .header__content h1 {
    font-size: 2.5rem;
    line-height: 3.5rem;
    text-align: center;
  }

  .header__content {
    padding: 1rem 0.5rem;
  }

  .header__image img {
    width: 100%;
    height: auto;
  }

  .header__btns {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 320px) {
  .header__content h1 {
    font-size: 2rem;
    line-height: 3rem;
    text-align: center;
  }

  .header__content p {
    font-size: 0.9rem;
    text-align: center;
  }

  .header__image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
  }

  .header__btns {
    flex-direction: column;
    gap: 0.5rem;
  }
}
/*********************************IDENTITY***************************/
.our-identity {
  padding: 50px 0;
  background-color: var(--primary-color-dark);
  background-image: url('image.jpg');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.our-identity .container {
  max-width: 1200px;
  margin: 0 auto;
}

.our-identity .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.our-identity .col-md-12 {
  flex-basis: 100%;
  padding: 20px;
  text-align: center;
}

.our-identity h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #ffffff;
}

.our-identity p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
}
/* Media Queries */


.our-identity {
  padding: 50px 0;
  background-color: var(--primary-color-dark);
  background-image: url('image.jpg');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.our-identity .container {
  max-width: 1200px;
  margin: 0 auto;
}

.our-identity .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.our-identity .col-md-12 {
  flex-basis: 100%;
  padding: 20px;
  text-align: center;
}

.our-identity h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #ffffff;
}

.our-identity p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Media Queries */
@media (max-width: 780px) {
  .our-identity {
    padding: 30px 0;
    height: auto;
    flex-direction: column;
    text-align: center;
  }

  .our-identity h2 {
    font-size: 28px;
  }

  .our-identity p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .our-identity h2 {
    font-size: 24px;
  }

  .our-identity p {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .our-identity h2 {
    font-size: 20px;
  }

  .our-identity p {
    font-size: 12px;
  }
}
/*******************************************WHAT WE DO**********************/
/* Base Styles */
.container {
  max-width: 1200px; /* Adjust as necessary */
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col-md-6 {
  flex: 0 0 50%; /* Each column takes up half of the row */
  padding: 15px; /* Add padding for spacing */
}

.section-title {
  font-size: 24px; /* Example styling */
  margin-bottom: 20px;
}

h4 {
  margin-top: 20px; /* Space above headings */
}

ul {
  margin-top: 10px; /* Space above list */
}

/* Media Query for screens up to 768px (Tablets) */
@media (max-width: 768px) {
  .col-md-6 {
      flex: 0 0 100%; /* Columns stack vertically */
      padding: 10px; /* Reduce padding for smaller screens */
  }

  .section-title {
      font-size: 22px; /* Slightly smaller title font size */
      text-align: center; /* Center-align title */
  }

  h4 {
      font-size: 18px; /* Adjust heading size for readability */
      text-align: center; /* Center-align headings */
  }

  p, ul li {
      text-align: center; /* Center-align paragraph and list item text */
  }

  ul {
      padding-left: 0; /* Remove left padding to keep alignment consistent */
      list-style-position: inside; /* Move list markers inside for better alignment */
  }
}

/* Media Query for screens up to 480px (Small Phones) */
@media (max-width: 480px) {
  .col-md-6 {
      flex: 0 0 100%; /* Columns stack vertically */
      padding: 8px; /* Further reduce padding for small screens */
  }

  .section-title {
      font-size: 20px; /* Smaller title font size for small phones */
      text-align: center; /* Center-align title */
  }

  h4 {
      font-size: 16px; /* Smaller headings for readability */
      margin-top: 15px;
      text-align: center; /* Center-align headings */
  }

  p, ul li {
      font-size: 14px; /* Smaller paragraph and list item text size */
      line-height: 1.5; /* Improve readability on small screens */
      text-align: center; /* Center-align paragraph and list item text */
  }
}

/* Media Query for screens up to 320px (Extra Small Phones) */
@media (max-width: 320px) {
  .col-md-6 {
      flex: 0 0 100%; /* Columns stack vertically */
      padding: 5px; /* Minimal padding for very small screens */
  }

  .section-title {
      font-size: 18px; /* Adjust title size further for extra small screens */
      text-align: center; /* Center-align title */
      margin-bottom: 15px;
  }

  h4 {
      font-size: 14px; /* Adjust heading size further down */
      margin-top: 10px;
      text-align: center; /* Center-align headings */
  }

  p, ul li {
      font-size: 12px; /* Reduce text size to fit content comfortably */
      line-height: 1.4;
      text-align: center; /* Center-align paragraph and list item text */
  }

  ul {
      padding-left: 0; /* Remove left padding to keep alignment consistent */
      list-style-position: inside; /* Move list markers inside for better alignment */
  }
}

/********************MISSION AND VISION********************/
.mission-vision {
  padding: 50px 0;
  background-color: #f5f5f5; /* Fallback color in case the image doesn't load */
  position: relative; /* Ensure positioning context for absolute elements if needed */
}
.mission-vision .background-pic {
  background-image: url(assets/mission1.jpg); /* Path to your background image */
  background-size: cover; /* Cover the entire section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  height: 100%; /* Ensure it takes full height of the section */
}
.mission-vision .container {
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 0 5px #69a2cd;
}

.mission-vision .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.mission-vision .col-md-6 {
  flex-basis: 62%;
  padding: 20px;
}

.mission-vision .col-md-6 + .col-md-6 {
  border-left: 2px solid #69a2cd;
}

.mission-vision h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.mission-vision p {
  font-size: 18px;
  color: #666;
}
/* Media Queries */

 /* Media Queries */
 @media (max-width: 780px) {
  .mission-vision .row {
    flex-direction:row;
  }
  .mission-vision .container{
    border-radius: 10px;
  box-shadow: 0 4px 8px #69a2cd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .mission-vision .col-md-6 {
    flex-basis: 100%;
    text-align: center;
    padding: 20px;
  }

  .mission-vision .col-md-6 + .col-md-6 {
    border-left: none;
    border-top: 2px solid #69a2cd;
  }
}

@media (max-width: 480px) {
  .mission-vision h2 {
    font-size: 20px;
    align-items: center;
  }
  .mission-vision .container{
    border-radius: 10px;
  box-shadow: 0 4px 8px #3b6aba;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .mission-vision p {
    font-size: 16px;
    align-items: center;
  }
}

@media (max-width: 320px) {
  .mission-vision h2 {
    font-size: 18px;
  }
  .mission-vision .container{
    border-radius: 10px;
  box-shadow: 0 4px 8px #3b6aba;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .mission-vision p {
    font-size: 14px;
  }
}
/**********************************OUR VALUES*******************************************/
/* Values Section Styles */
.values-section {
  background-color: #f9f9f9; /* Light background for contrast */
  padding: 60px 20px;
  text-align: center;
}

.values-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.values-section h2 {
  font-size: 2.5rem;
  color: black; /* Navy Blue */
  margin-bottom: 20px;
}

.values-section .intro-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns for 5 boxes */
  gap: 20px; /* Space between boxes */
}

.value-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px #3b6aba;
}

.value-item h3 {
  font-size: 1.5rem;
  color: black; /* Navy Blue */
  margin-bottom: 15px;
}

.value-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 1200px) {
  .values-grid {
      grid-template-columns: repeat(3, 1fr); /* 3 columns for medium screens */
  }
}

@media (max-width: 768px) {
  .values-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
  }
}

@media (max-width: 480px) {
  .values-grid {
      grid-template-columns: 1fr; /* 1 column for mobile */
  }
}
/***********************************WHY CHOOSE US*******************************/
/* Why Choose Us Section Styles */
.why-choose-us {
  background-color: #f9f9f9; /* Light background for contrast */
  padding: 60px 20px;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-us .content-wrapper {
  display: flex;
  align-items: flex-start; /* Align items to the top */
  gap: 40px; /* Space between text and image */
  
}

.why-choose-us .text-content {
  flex: 1; /* Takes up remaining space */
}

.why-choose-us .image-content {
  flex: 0 0 40%; /* Fixed width for the image */
}

.why-choose-us .image-content img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* Optional: Rounded corners for the image */
}

.why-choose-us h2 {
  font-size: 2.5rem;
  color: black; /* Navy Blue */
  margin-bottom: 10px;
}

.why-choose-us .intro-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.why-choose-us .reasons-list {
  list-style: none; /* Remove default bullet points */
  padding: 0;
}

.why-choose-us .reasons-list li {
  margin-bottom: 10px; /* Space between list items */
}

.why-choose-us .reasons-list h3 {
  font-size: 1.5rem;
  color: black; 
  margin-bottom: 5px;
}

.why-choose-us .reasons-list p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design for Smaller Screens */
/* Media Queries */

/* Media Queries */
@media (max-width: 780px) {
  .why-choose-us .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: center; /* Center-align items */
  }

  .why-choose-us h2 {
    font-size: 2rem;
    text-align: center; /* Center-align heading */
  }

  .why-choose-us .intro-text {
    font-size: 1rem;
    text-align: center; /* Center-align text */
  }

  .why-choose-us .reasons-list h3 {
    font-size: 1.3rem;
    text-align: center; /* Center-align subheadings */
  }

  .why-choose-us .reasons-list p {
    font-size: 0.9rem;
    text-align: center; /* Center-align reasons */
  }
}

@media (max-width: 480px) {
  .why-choose-us h2 {
    font-size: 1.8rem;
  }

  .why-choose-us .intro-text {
    font-size: 0.9rem;
  }

  .why-choose-us .reasons-list h3 {
    font-size: 1.2rem;
  }

  .why-choose-us .reasons-list p {
    font-size: 0.85rem;
  }
}

@media (max-width: 320px) {
  .why-choose-us h2 {
    font-size: 1.5rem;
  }

  .why-choose-us .intro-text {
    font-size: 0.8rem;
  }

  .why-choose-us .reasons-list h3 {
    font-size: 1rem;
  }

  .why-choose-us .reasons-list p {
    font-size: 0.75rem;
  }
}
/*************************GLOBAL REACH**************************************/
/* Global Reach Section Styles */
.global-reach {
  background-color: #fff; /* White background */
  padding: 60px 20px;
  text-align: center;
  background-color: var(--primary-color-dark);
}

.global-reach .container {
  max-width: 800px; /* Narrower container for better readability */
  margin: 0 auto;
}

.global-reach h2 {
  font-size: 2.5rem;
  color: white; /* Navy Blue */
  margin-bottom: 20px;
}

.global-reach p {
  font-size: 1.1rem;
  color: white;
  line-height: 1.8;
  margin-bottom: 20px;
}
/* Media Queries */

/* Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
  .global-reach {
    padding: 20px 10px;
  }

  .global-reach .container {
    max-width: 100%;
    margin: 0 auto;
  }

  .global-reach h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .global-reach p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .global-reach {
    padding: 30px 15px;
  }

  .global-reach .container {
    max-width: 100%;
    margin: 0 auto;
  }

  .global-reach h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .global-reach p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
  }
}

/* Smaller Phones (max-width: 320px) */
@media (max-width: 320px) {
  .global-reach {
    padding: 10px 5px;
  }

  .global-reach .container {
    max-width: 100%;
    margin: 0 auto;
  }

  .global-reach h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }

  .global-reach p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 5px;
  }
}
/***********************************LEADERSHIP*******************************/
.our-leadership {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.our-leadership .container {
  max-width: 1200px;
  margin: 0 auto;
}

.our-leadership .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.our-leadership .col-md-12 {
  flex-basis: 100%;
  padding: 20px;
}

.our-leadership h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color:black;
}

.our-leadership p {
  font-size: 18px;
  margin-bottom: 20px;
}

.leadership-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
}

.card {
  flex-basis: 20%;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}
.card h4{
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.card h5 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}
.card p {
  font-size: 16px;
  margin-bottom: 5px;
  color: rgb(56, 54, 54);
  text-align: center;
}
.card h6{
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
  color: rgb(56, 54, 54);
  text-align: center;
}
/* Media Queries for Mobile Responsiveness */

/* For max-width 780px */
@media screen and (max-width: 800px) {
  .leadership-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card {
    flex-basis: 90%;
    margin: 10px 0;
    text-align: center; /* Center text in the column layout */
  }

  .card img {
    height: 250px;
    object-fit: contain; /* Ensure the image is contained within the card */
  }

  .our-leadership h2 {
    font-size: 28px;
    text-align: center; /* Center the heading */
  }

  .our-leadership p {
    font-size: 16px;
    text-align: center; /* Center the paragraph text */
  }
}

/* For max-width 480px */
@media screen and (max-width: 480px) {
  .leadership-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card {
    flex-basis: 100%;
    margin: 10px 0;
    text-align: center; /* Center text in the column layout */
  }

  .card img {
    height: 200px;
    object-fit: contain; /* Ensure the image is contained within the card */
  }

  .our-leadership h2 {
    font-size: 24px;
    text-align: center; /* Center the heading */
  }

  .our-leadership p {
    font-size: 14px;
    text-align: center; /* Center the paragraph text */
  }

  .card h3 {
    font-size: 16px;
  }

  .card h4 {
    font-size: 14px;
  }

  .card h5 {
    font-size: 14px;
  }

  .card p {
    font-size: 14px;
  }
}

/* For max-width 320px */
@media screen and (max-width: 320px) {
  .leadership-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card {
    flex-basis: 100%;
    margin: 5px 0;
    text-align: center; /* Center text in the column layout */
  }

  .card img {
    height: 180px;
    object-fit: contain; /* Ensure the image is contained within the card */
  }

  .our-leadership h2 {
    font-size: 20px;
    text-align: center; /* Center the heading */
  }

  .our-leadership p {
    font-size: 12px;
    text-align: center; /* Center the paragraph text */
  }

  .card h3 {
    font-size: 14px;
  }

  .card h4 {
    font-size: 12px;
  }

  .card h5 {
    font-size: 12px;
  }

  .card p {
    font-size: 12px;
  }
}
/*******************************FOOTER****************************************/

/* Footer General Styling */
.footer {
  background-color: #ffffff; /* Dark background */ 
  padding: 50px 40px;
  font-family: Arial, sans-serif;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly; /* Even spacing between columns */
  max-width: 1200px;
  margin: 0 auto;
}

.footer__col,
.footer__navcontact,
.footer__socials {
  flex: 1 1 22%; /* Space out the columns more evenly */
  margin-bottom: 30px;
  text-align: center;
}

.footer__col img {
  max-width: 600px; /* Adjust size for the logo */
  height: 80px;
}

.footer__navcontact h4,
.footer__socials h4 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  color: black;
}

.footer__navcontact p,
.footer__socials span {
  margin-bottom: 15px;
  font-size: 14px;
  color: black;
}

.footer__navcontact a,
.footer__socials a {
  color: black;
  text-decoration: none;
}

.footer__socials span {
  font-size: 24px;
  margin-right: 20px;
}

.footer__socials span a:hover {
  color: #f39c12; /* Accent color for hover effect */
}

/* Useful Links Styling */
.footer__contact .nav__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns for links */
  gap: 10px;
}

.footer__contact .nav__links h4 {
  grid-column: span 2; /* Full width for the heading */
  margin-bottom: 20px;
  color: black;
}

.footer__contact .nav__links .link a {
  font-size: 14px;
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s;
  color: black;
}

.footer__contact .nav__links .link a:hover {
  color: #f39c12;
}

/* Footer Bar Styling */
.footer__bar {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 10px;
  color: black;
}

/* Responsive Design */

/* For tablets and smaller screens */
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column; /* Stack all elements vertically */
    align-items: center; /* Center-align elements */
  }

  .footer__col,
  .footer__navcontact,
  .footer__socials {
    flex: 1 1 100%; /* Full width for each section */
    text-align: center;
  }
  .footer__col img {
    max-width: 400px; /* Adjust size for the logo */
    text-align: center;
  }
  

}

/* For small phones */
@media (max-width: 480px) {
  .footer {
    padding: 30px 20px; /* Reduce padding for small devices */
  }
  .footer__col img {
    max-width: 400px; /* Adjust size for the logo */
    text-align: center;
  }

  .footer__socials span {
    font-size: 20px; /* Adjust social icons size */
    margin-right: 10px;
  }
}

/* For very small phones */
@media (max-width: 320px) {
  .footer {
    padding: 20px 10px; /* Further reduce padding */
  }
  .footer__col img {
    max-width: 350px; /* Adjust size for the logo */
    text-align: center;
  }

  .footer__socials span {
    font-size: 18px; /* Further adjust social icon size */
  }

  .footer__bar {
    font-size: 12px; /* Smaller font for copyright text */
    color: black;
  }
}
