/* Body Styling */
body {
    background-color: #f4f4f4;
    text-align: center;
    color: #333;
}

/* Header */
header {
    background: #0056b3;
    color: white;
    padding: 20px;
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
}

/* Hero Section */
#intro {
    background: linear-gradient(to right, #23395d, #1a1f71);
    color: white;
    padding: 1rem 20px;
    text-align: center;
    position: relative;
    top: 1rem;
}

#intro h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: white;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    margin-top: 15px;
    background: #ffd700;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn:hover {
    background: #ffcc00;
}

/* Services Section */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.4rem;
    position: relative;
    top: 3rem;
    /* padding: 6rem; */
}

.service-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-box h2 {
    color: #0056b3;
}
.org-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}
.org-item {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.org-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 5px;
    /* background-color: #ddd; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.org-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.org-name {
    font-weight: bold;
    font-size: 18px;
    color: #0056b3;
}
.org-desc {
    margin: 5px 0 10px;
    color: #333;
    height: 20px;
}
.learn-more {
    display: inline-block;
    padding: 10px 15px;
    background: #ffcc00;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
/* Footer */
footer {
    background: #ffffff;
    color: orange;
    padding: 1rem;
    margin-top: 1rem;
}

@media only screen and (min-width: 1024px) {
    .navbar-nav {
      flex-direction: row;
      justify-content: space-between;
      width: 10rem;
   
      margin-right: 32vw;
      margin-top: 1vw;
      position: absolute;
      right: 0;
    }
  }