body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #f5f7fa;
    color: #333;
}
  
/* Navbar Styling */
.navbar {
    background: gray;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height:60px;
}
  
.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
.logo {
    font-size: 1.8rem;
    color: #fff;
    font-weight: bold;
}
  
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
  
.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}
  
.nav-links li a:hover,
.nav-links li a.active {
    color: #fdbb2d;
}
  
.nav-links li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #fdbb2d;
    transition: 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}
  
.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
  }
/*Partners styling*/
.partner-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 50px;
    text-align: center;
}

.partner-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.partner-card:hover {
    transform: scale(1.05);
}

.partner-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.partner-card h3 {
    margin-top: 15px;
    font-size: 1.5em;
    color: #222;
}

.partner-card p {
    color: #555;
}
.filter-buttons {
    text-align: center;
    margin: 20px 0;
}

.filter-buttons button {
    background-color: #ddd;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.filter-buttons button:hover, .filter-buttons button.active {
    background-color: #333;
    color: white;
}

.projects-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 50px;
}

.project-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: left;
}

.project-card:hover {
    transform: scale(1.05);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.project-card h3 {
    margin-top: 15px;
    font-size: 1.5em;
    color: #222;
}

.project-card p {
    color: #555;
}
/* CONTACT PAGE STYLING */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('/images/contact page background.jpg') no-repeat center center/cover;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.contact-form h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.btn {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #0056b3;
}
.contact-info i {
    color: blue; /* Change to any color */
    margin-right: 8px; /* Adds spacing between icon and text */
    font-size: 18px; /* Adjust icon size */
}
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}


/* FOOTER */
.footer {
    background: #002147;
    color: whitesmoke;
    text-align: center;
    padding: 20px;
  }
  .footer .socials {
    margin-top: 10px;
  }
  .footer .socials a {
    color: whitesmoke;
    margin: 0 10px;
    font-size: 1.2em;
  }
  
/* Team Section */
.team-section {
    padding: 60px 20px;
    text-align: left;
    background-color: white;
}

.section-title {
    font-size: 36px;
    color: #333;
    text-align: center;
}

.section-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.team-member h3 {
    margin-top: 15px;
    font-size: 20px;
    color: #333;
}

.team-member p {
    color: #777;
    margin-bottom: 10px;
}

#team-links{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
/* resource page */
#resources {
    padding: 60px 20px;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* Filter Buttons */
.filter-buttons {
    margin-bottom: 40px;
}

.filter-buttons button {
    background-color: #ddd;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.filter-buttons button:hover,
.filter-buttons button.active {
    background-color: #007bff;
    color: white;
}

/* Gallery Section */
.resources-section {
    display: none;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.resource-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.resource-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.caption {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

/* Awards Section */
.awards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    margin: 20px 0;
}

.timeline-image img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 70%;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #333;
}

.timeline-content p {
    font-size: 1rem;
    color: #666;
}

/* Services Section */
.services {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #333;
}

.service-card p {
    font-size: 1rem;
    color: #555;
}
/* Read More Button */
.read-more-btn {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 8px;
}
/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
  
.hero-content {
    max-width: 700px;
}
  
.hero h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
  
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
  
.btn {
    background-color: #fdbb2d;
    color: #000;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
  
.btn:hover {
    background-color: #e5a720;
}
  
/* SECTION */
.section {
    padding: 60px 30px;
}
.section:nth-child(even) {
    background-color: #eef2f5;
}
.section h2 {
    text-align: center;
    margin-bottom: 40px;
}
  
/* PREVIEW CARDS */
.cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 300px;
    text-align: center;
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card h3 {
    margin: 15px 0 5px;
}
.card p {
    padding: 0 10px;
}
.card .btn {
    display: inline-block;
    margin: 15px 0;
    padding: 10px 15px;
    background: #004080;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
  
/* Testimonials Section */
.section.testimonials {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}
  
.section.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #004080;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
  
.section.testimonials h2 i {
    color: #007bff;
    font-size: 1.8rem;
}
  
/* Testimonial slider styles */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
  
.testimonial-card {
    display: none;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}
  
.testimonial-card.active {
    display: block;
}
  
.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
  
.testimonial-card h4 {
    font-weight: bold;
    color: #333;
    margin: 0;
}
  
/* PARTNERS SLIDESHOW */
.partners-section {
    background: #001f3f;
    padding: 2rem 1rem;
    color: #fff;
    text-align: center;
}
  
.partners-section .section-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}
  
.swiper {
    width: 100%;
    padding: 1rem 0;
    border-image-width: auto;
}
  
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}
  
.swiper-slide img {
    max-width: 150px;
    height: auto;
    filter: brightness(0.95);
    transition: transform 0.3s ease;
}
  
.swiper-slide img:hover {
    transform: scale(1.05);
}
/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out;
}
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
/* About Us */
.about-section {
    background: #f4f9ff;
    padding: 2rem 1rem;
}
  
.section-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #002147;
    margin-bottom: 1rem;
}
  
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
  
.about-text {
    flex: 1 1 55%;
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
}
  
.about-icon-cards {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
  
.icon-card {
    background: #fff;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}
  
.icon-card i {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 0.5rem;
}
  
.icon-card h4 {
    margin-bottom: 0.3rem;
    color: #002147;
}
  
.icon-card:hover {
    transform: translateY(-5px);
}
/* Mission Statement*/
.values-section {
    background: #f0f4f8;
    padding: 4rem 1rem;
    text-align: center;
}
  
.values-section .section-title {
    font-size: 2.5rem;
    color: #004080;
    margin-bottom: 3rem;
}
  
.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
  
.value-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
  
.value-card:hover {
    transform: translateY(-5px);
}
  
.value-card i {
    font-size: 2rem;
    color: #0077cc;
    margin-bottom: 1rem;
}
  
.value-card h3 {
    color: #003366;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
  
.value-card p, .value-card ul {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    text-align: left;

}
  
.value-card ul {
    padding: 0;
    list-style: none;
}
  
.value-card ul li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: left;
}
  
.value-card ul li i {
    color: #0077cc;
    margin-right: 0.5rem;
}

.value-cards .value-card:nth-child(3) ul li strong {
    min-width: 90px;      /* slightly smaller label width for better fit */
    white-space: normal;  /* allow wrapping if label is long */
}

.value-cards .value-card:nth-child(3) ul li {
    /* Allow the entire list item to wrap better */
    flex-wrap: wrap;
}

.value-cards .value-card:nth-child(3) ul {
    word-wrap: break-word;   /* break long words inside this card only */
}

.value-cards .value-card:nth-child(3) {
    /* Optional: reduce padding a tiny bit if needed */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Offerings Section */
.offerings-section {
    background-color: #e6f2ff;
    padding: 1rem 1rem;
}
  
.offerings-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #004080;
    margin-bottom: 2rem;
}
  
.offerings-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
  
.offerings-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
}
  
.offerings-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
  
.offerings-list li {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
}
 
.offerings-list li i {
    color: #0077cc;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}
  
/* Why Choose Us Section */
.why-choose-us-section {
    background-color: #f9f9f9;
    padding: 2rem 1rem;
}
  
.why-choose-us-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #004080;
    margin-bottom: 2rem;
}
  
.why-choose-us-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
  
.why-choose-us-content p {
    font-size: 1.1rem;
    color: #333;
}
/*Career*/
.careers-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1600585153435-1c3b39ebdb12?fit=crop&w=1050&q=80') no-repeat center/cover;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}
  
.careers-hero img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    margin-top: 2rem;
    border-radius: 10px;
}
  
/* Info Section */
  .careers-info {
    padding: 3rem 2rem;
    background-color: #fff;
}
  
.careers-info h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #003366;
}
  
.job-card {
    background: #e6f0ff;
    margin: 1.5rem auto;
    padding: 1.5rem;
    max-width: 700px;
    border-left: 5px solid #003366;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
  
.job-card h3 {
    color: #003366;
    margin-bottom: 0.5rem;
}
  
.job-card p {
    margin-bottom: 1rem;
}
  
.apply-btn {
    background: #003366;
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}
  
.apply-btn:hover {
    background: #0055aa;
}
  
/* Culture Section */
.careers-culture {
    background-color: #f2f2f2;
    padding: 3rem 2rem;
    text-align: center;
}
  
.careers-culture h2 {
    color: #003366;
    margin-bottom: 1rem;
}
  
.careers-culture p {
    max-width: 700px;
    margin: 0 auto 2rem auto;
}
  
.careers-culture img {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    object-fit: cover;
}

/* Achievements*/
.achievements-section {
    background: #f0f7ff;
    padding: 40px 20px;
    text-align: center;
  }
  
.achievements-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #002c57;
  }
  
.achievements-section .section-title i {
    margin-right: 10px;
    color: #007BFF;
  }
  
.achievements-section .section-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
  }
  
.achievement-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
.achievement-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    width: 220px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  }
  
.achievement-card i {
    font-size: 2.5rem;
    color: #007BFF;
    margin-bottom: 15px;
  }
  
.achievement-card h3 {
    font-size: 2rem;
    color: #002c57;
    margin: 0;
  }
  
.achievement-card p {
    font-size: 1rem;
    color: #444;
    margin-top: 10px;
}

/* New styles added */

.section,
  .about-us-section,
  .mission-vision-values,
  .testimonials,
  .page-previews,
  .achievements,
  .partner-slideshow,
  .map-section {
    padding-top: 5px;
    padding-bottom: 30px;
  }
  .section h2,
  .section-title {
    margin-top: 5px;
    margin-bottom: 20px;
}

/* Read more dots */
.read-more .more-text {
    display: none;
  }
  
  .read-more.expanded .more-text {
    display: inline;
  }
  
  .read-more.expanded .dots {
    display: none;
  }
  
  .read-more {
    cursor: pointer;
    font-weight: 500;
  }
  .dots {
    color: black; /* Darker color*/
    font-weight: 800; /* Optional: makes the dots stand out more */
  }
  .read-less {
    display: inline;
    margin-left: 5px;
    color: #007bff;
    font-weight: 500;
    text-decoration: underline;
}

/* Hamburger */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  position: absolute;
  top: 18px; 
  right: 20px; 
  z-index: 1100; 
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
  display: none;
} 
/* Media Query For Mobile */

@media (max-width: 768px) {
  .nav-overlay {
    display: block;
    position: fixed;
    top: -40px;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    position: fixed;
    top: -15px;
    right: -300px; 
    width: 250px;
    height: 100%;
    background: #333;
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1.5rem;
    justify-content: flex-start;
    align-items: flex-start;
    transition: right 0.3s ease;
    z-index: 1001;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li a {
    color: #fff;
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    position: relative;
    justify-content: space-between;
  }
}