/* --- Logo Carousel Styling --- */
.logo-carousel-container {
    overflow: hidden;   /* hides overflow so logos don’t break out */
    width: 100%;
    background: #fff;
    padding: 10px 0;
}

.logo-carousel-track {
    display: flex;
    gap: 40px;  /* spacing between logos */
    animation: scroll-logos 20s linear infinite; /* makes them move */
}

.logo-carousel-track img {
    height: 50px;   /* adjust logo size */
    width: auto;    /* keeps proportions */
    object-fit: contain;
    filter: grayscale(100%);  /* optional: makes them grey for uniform look */
    transition: filter 0.3s;
}

.logo-carousel-track img:hover {
    filter: grayscale(0%); /* show full color on hover */
}

/* Animation for scrolling logos */
@keyframes scroll-logos {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
.main-footer {
    position: relative;
    padding: 20px;
    background-color: #fff; /* or your footer bg */
}

.footer-logo {
    height: 30px;   /* small size */
    width: auto;
    position: absolute;
    bottom: 10px;
    right: 10px;    /* very corner */
}
.corner-logo {
    height: 30px;      /* make it small */
    width: auto;
    position: absolute;
    bottom: 10px;
    right: 10px;       /* bottom-right corner */
}
.main-footer {
    position: relative; /* so absolute positioning works */
}
/* Center the header */
.header-container {
    text-align: center;
    padding: 20px 0;
}

/* Center logo */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.site-logo {
    max-width: 150px; /* adjust smaller/bigger as you want */
    height: auto;
}

/* Center navigation */
.centered-nav {
    display: inline-block;
    margin: 10px 0;
}

.centered-nav a {
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.centered-nav a:hover {
    color: #0073e6;
}

/* Tagline under nav */
.tagline {
    margin-top: 10px;
    font-size: 1.1em;
    font-style: italic;
    color: #555;
}
/* ---- Centered hero content ---- */
.hero-section {
    background-color: #ffffff;   /* keep plain white */
    padding: 60px 20px;          /* spacing around the block */
    margin-bottom: 30px;
}

.hero-content {
    max-width: 900px;     /* controls the width of the centered block */
    margin: 0 auto;       /* centers the container horizontally */
    text-align: center;   /* centers all text inside */
    padding: 10px 20px;
}

/* larger main heading */
.hero-content h1 {
    font-size: 2.4rem;
    margin: 0 0 18px;
    color: #111827; /* dark text */
    line-height: 1.1;
}

/* lead paragraph under the main heading */
.hero-content .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin: 0 auto 24px;
}

/* subsection headings inside the same centered area */
.hero-content h2 {
    font-size: 1.5rem;
    color: #2563eb;   /* accent color */
    margin-top: 28px;
    margin-bottom: 10px;
}

/* regular paragraph text */
.hero-content p {
    font-size: 1rem;
    color: #374151;
    margin: 0 auto 16px;
    max-width: 820px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 1.6rem; }
    .hero-content h2 { font-size: 1.25rem; }
    .hero-content .lead, .hero-content p { font-size: 0.98rem; }
}
/* ---- Initiatives page center content ---- */
.initiatives-section {
    padding: 60px 20px;
    margin: 0 auto;
    text-align: center;       /* centers text inside */
}

.initiatives-content {
    max-width: 900px;         /* keeps text from being too wide */
    margin: 0 auto;
}

.initiatives-content h2 {
    font-size: 1.8rem;
    color: #2563eb;           /* accent color */
    margin-top: 30px;
    margin-bottom: 15px;
}

.initiatives-content p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    margin: 0 auto 25px;
    max-width: 800px;
}

/* Center footer text */
.footer-content-wrapper {
    display: flex;
    flex-direction: column;  /* stack items vertically */
    align-items: center;     /* center horizontally */
    text-align: center;      /* center text */
    padding: 20px;
}

.footer-left p {
    max-width: 700px;
    margin: 10px auto;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
}

/* Center About Us, Our Vision, and other text sections */
.mission-vision {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;  /* center horizontally + add spacing */
}

.mission-vision h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #111827; /* dark gray for readability */
}

.mission-vision p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151; /* softer gray */
}

/* Center About Us, Our Vision, and other text sections */
.mission-vision {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;  /* center horizontally + add spacing */
}

.mission-vision h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #111827; /* dark gray for readability */
}

.mission-vision p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151; /* softer gray */
}
/* Center the Our Strategic Partners section */
.logo-carousel-section {
    text-align: center;   /* centers the heading and logos */
    margin: 50px auto;    /* adds space and keeps it centered */
}

.logo-carousel-section h2 {
    text-align: center;   /* makes sure the heading is centered */
    font-size: 2rem;      /* nice size */
    margin-bottom: 20px;  /* spacing below heading */
    color: #111827;       /* dark color for readability */
}
.team-photo {
    width: 150px;       /* adjust size as needed */
    height: 150px;
    object-fit: cover;  /* keeps image ratio clean */
    border-radius: 50%; /* makes it round */
}
.team-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}
.portfolio-highlight {
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  text-align: center;
}

.portfolio-highlight h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}

.portfolio-highlight p {
  font-size: 1.05rem;
  margin: 10px 0;
  line-height: 1.6;
}

.portfolio-highlight .cta-text {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #facc15; /* golden yellow for emphasis */
}


