/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

#mainNav {
  margin-top: 1rem;
  background-color: #EABE6C;
}

.dropdown-menu :hover{
  background-color:#0A3981;
  color: white;

}

#mainNav .navbar-toggler {
  
  font-size: 0.75rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  text-transform: uppercase;
  font-weight: 700;
}

#mainNav .navbar-toggler .img {
  width: 3rem;
}

#mainNav .navbar-nav .nav-item .nav-link {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  color: #000000;
  letter-spacing: 0.0625em;
}

#mainNav .navbar-nav .nav-item .nav-link.active,
#mainNav .navbar-nav .nav-item .nav-link:hover {
  color: #0A3981;
}
.Partners {
  color: #0A3981;
}


@media (min-width: 992px) {
  #mainNav {
    margin-top: 1rem;
    padding-top: 0.5rem;
    border: none;
    transition: padding-top 0.3s ease-in-out;
  }

  #mainNav .navbar-brand {
    font-size: 1.5em;
    transition: font-size 0.3s ease-in-out;
  }

  #mainNav .navbar-brand img {
    height: 2rem;
    transition: height 0.3s ease-in-out;
  }

  #mainNav.navbar-shrink {
    padding-top: 1rem;
    background-color: #212529;
  }

  #mainNav.navbar-shrink .navbar-brand {
    font-size: 1.25em;
  }

  #mainNav.navbar-shrink .navbar-brand svg,
  #mainNav.navbar-shrink .navbar-brand img {
    height: 1.5rem;
  }

  #mainNav .navbar-nav .nav-item {
    margin-right: 1rem;
  }

  #mainNav .navbar-nav .nav-item:last-child {
    margin-right: 0;
  }
}

/* Team Cards Container */
.team-cards-container {
  background: #0A3981;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

/* Individual Team Card */
.team-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  width: calc(33.333% - 20px); /* Responsive width */
  min-width: 200px;
  max-width: 450px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin-bottom: 15px;
  object-fit: cover;
}

.team-card h3 {
  font-size: 25px;
  color: #333;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Hover Animation */
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-card {
    width: calc(50% - 20px); /* Two cards per row */
  }
}

@media (max-width: 480px) {
  .team-card {
    width: 100%; /* One card per row */
  }
}


.team-expertise-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #f5f7fa;
}

.team-expertise-section h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.expertise-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.icon {
  font-size: 40px;
  color: #4CAF50;
  margin-bottom: 15px;
}

.expertise-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.expertise-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-expertise-section h2 {
    font-size: 24px;
  }

  .expertise-item h3 {
    font-size: 18px;
  }

  .expertise-item p {
    font-size: 13px;
  }
}


/* Footer Styles */
footer {
  background-color: #EABE6C;
  color: #000000;
  margin-top: 2rem;
  padding: 2rem 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 1.5rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #000000;
  font-size: larger;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #575757; /* Change this to your brand color */
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
}




.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 11px;
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.call-button {
  width: 10rem;
  background-color: #D4EBF8; /* WhatsApp blue */
}

.call-button:hover {
  background-color: #2d68ff; /* blue */
}

.whatsapp-button {
  width: 10rem;
  background-color: #D4EBF8; /* WhatsApp green color */
  
}

.whatsapp-button:hover {
  background-color: #128c7e; /* Darker green */

}

.button i {
  margin-right: 10px;
}

.footer-map a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #f39c12;
  color: #222;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.footer-map a:hover {
  background-color: #d87d0e; /* Darker shade on hover */
  color: #fff;
}


