/* SDS custom styles (sds-style.css) */

/* === Global Layout === */
.sds-container {
  font-family: Arial, sans-serif;
  color: #000000;
  background-color: #ffffff;
  max-width: 80%;
  margin: 0 auto;
  border: 1px solid #ddd;
}

/* === Header === */
.sds-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #d6f7d1;
  padding: 10px 20px;
  height: 200px;
  border-bottom: 3px solid #027683;
}

.sds-logo img, .sds-flag img {
  height: 120px;
}

.sds-title {
  text-align: center;
}

.sds-title h1 {
  font-size: 22px;
  margin: 0;
  color: #000000;
}

.sds-title p {
  font-style: italic;
  margin: 5px 0 0;
}

/* === Navigation === */
.sds-nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  border-bottom: 2px solid #027683;
}

.sds-nav li {
  margin: 0;
}

.sds-nav a {
  display: block;
  padding: 10px 15px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.sds-nav a:hover {
  background-color: #81b87a;
  color: #fff;
}

/* === Body Layout === */
.sds-body {
  display: grid !important;
  grid-template-columns: 200px 1fr 250px;
  gap: 20px;
  padding: 40px;
}

/* === Left Sidebar === */
.sds-sidebar-left ul {
  list-style: none;
  padding: 0;
  display:fix;
}

.sds-sidebar-left li {
  margin-bottom: 6px;
}

.sds-sidebar-left a {
  text-decoration: none;
  color: #000000;
  padding: 6px;
  display: block;
  border-left: 3px solid #027683;
}

.sds-sidebar-left a:hover {
  background-color: #f0f0f0;
}

/* === Main Content === */
.sds-banner img {
  width: 100%;
  border-radius: 4px;
}

.sds-leaders {
  margin-top: 20px;
}

.sds-leader-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.sds-leader {
  text-align: center;
  margin: 10px;
}

.sds-leader img {
  border-radius: 8px;
  width: 150px;
  height: 150px;
}

.sds-news {
  margin-top: 20px;
}

.sds-reports img {
  margin-right: 10px;
  border: 1px solid #ccc;
}

/* === Right Sidebar === */
.sds-sidebar-right .sds-section {
  margin-bottom: 20px;
}

.sds-sidebar-right h3 {
  color: #000000;
  border-bottom: 2px solid #027683;
  padding-bottom: 5px;
}
.sds-media h3 {
  border-bottom: 2px solid #027683; /* blue line */
  padding-bottom: 4px; /* space between text and line */
  display: inline-block; /* makes the underline fit the text width */
}


/* === Responsive === */
@media (max-width: 900px) {
  .sds-body {
    grid-template-columns: 1fr;
  }
  .sds-sidebar-left, .sds-sidebar-right {
    order: 2;
  }
}
 
/*===coloums===*/
.sds-leaders {
  margin-top: 20px;
  text-align: center;
}

.sds-leader-grid {
  display: flex;
  justify-content:center;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: nowrap; /* allows responsiveness */
}

/* Individual leader cards */
.sds-leader {
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 15px;
  width: 25%; /* three columns */
  box-sizing: border-box;
}

.sds-leader img {
  width: 60%;
  height: auto;
  border-radius: 5px;
}

.sds-leader p {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}
 
 
/* === Bottom Footer === */  
.footer-links {
  background-color: #00797b;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 80%;                /* Make it span the full container width */
  max-width: 1200px;          /* Optional: limit width for large screens */
  margin: 0 auto;             /* Center it horizontally */
  padding: 40px 60px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;     /* Ensures padding doesn’t overflow */
}

.footer-column {
  flex: 1 1 220px;
  margin: 10px 20px;
}

.footer-column h3 {
  font-size: 15px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 5px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 6px;
}

.footer-column a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.footer-column a:hover {
  text-decoration: underline;
}

  .footer-column {
    margin: 15px 0;
  }
/* Responsive layout for mobile */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    padding: 30px;
  }

  .footer-column {
    margin: 15px 0;
  }
  
  
   

}
