/* Reset & General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* Top Banner */
.top-banner {
  background: linear-gradient(90deg, #f5644b, #f5644b);
  color: #ffffff;
  font-size: 16px;
  padding: 16px 0;
}

/* Flex container to separate icons and text */
.top-banner-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact text aligned to the right */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 4px;
}

/* Social icons aligned to the left */
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Hide on small screens */
@media (max-width: 768px) {
  .top-banner {
    display: none;
  }
}




/* Base Hero Section Styles */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
    box-sizing: border-box;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-width: 150px;
    height: auto;
}

.animated-title {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;

}

.subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Button Styles */
.cta-btn {
    background-color: #f5644b;
    color: white;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    min-width: 180px;
}

.cta-btn:hover {
    background-color: #d9534f;
}

.cta-btn:active {
    transform: translateY(1px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 15px;
    }

    .animated-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}




/* Footer Section */
.footer-section {
    background-color: #333;
    color: white;
    padding: 50px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer About Section */
.footer-about {
    flex: 1 1 30%;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer Web Counter */
.footer-web-counter {
    flex: 1 1 30%;
    text-align: center;
}

.web-counter-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.counter {
    font-size: 2rem;
    font-weight: bold;
    color: #f5644b;
}

/* Footer Links Section */
.footer-links, .footer-opportunities, .footer-contact {
    flex: 1 1 30%;
}

.footer-links-title, .footer-opportunities-title, .footer-contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links-list, .footer-opportunities-list, .footer-contact-info {
    list-style-type: none;
    padding: 0;
}

.footer-links-list li, .footer-opportunities-list li, .footer-contact-info li {
    margin-bottom: 10px;
}

.footer-links-list a, .footer-opportunities-list a, .footer-contact-info a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-links-list a:hover, .footer-opportunities-list a:hover, .footer-contact-info a:hover {
    color: #f5644b;
}

/* Footer Bottom Section */
.footer-bottom {
    background-color: #222;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.footer-bottom-left {
    font-size: 1rem;
}

.footer-bottom-right {
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #f5644b;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-about, .footer-web-counter, .footer-links, .footer-opportunities, .footer-contact {
        flex: 1 1 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-left, .footer-bottom-right {
        font-size: 0.9rem;
    }
}


/* Footer Section */
.footer-section {
    background-color: #333;
    color: white;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer About Section */
.footer-about {
    flex: 1 1 100%;
    text-align: center;
}

.footer-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f5644b;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #ddd;
}

/* Footer Links, Opportunities, and Contact Section */
.footer-links, .footer-opportunities, .footer-contact {
    flex: 1 1 30%;
    min-width: 250px;
}

.footer-links-title, .footer-opportunities-title, .footer-contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f5644b;
}

.footer-links-list, .footer-opportunities-list, .footer-contact-info {
    list-style-type: none;
    padding: 0;
}

.footer-links-list li, .footer-opportunities-list li, .footer-contact-info li {
    margin-bottom: 12px;
}

.footer-links-list a, .footer-opportunities-list a, .footer-contact-info a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-links-list a:hover, .footer-opportunities-list a:hover, .footer-contact-info a:hover {
    color: #f5644b;
}

/* Footer Bottom Section */
.footer-bottom {
    background-color: #222;
    color: white;
    padding: 20px;




    .footer-about img {
        margin-bottom: 20px;
    }

    .footer-about div {
        margin-left: 0;
    }
}

