
:root {
    --primary-color: #000000; /* Black for main services */
    --secondary-color: #3498db; /* Blue for plus sign */
    --border-blue: #b3d9ff; /* Light blue for separators */
    --white: #ffffff;
}

body {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    color: #333; /* Default text color */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased; /* Smoother font rendering */
    text-rendering: optimizeLegibility;
}
  
  /* Headings & Titles (Avenir Heavy) */
  h1, h2, h3, h4, h5, h6,
  .title, .heading {
    font-family: 'Nunito', sans-serif;
    font-weight: 700; /* Heavy/Bold */
  }
  
  /* Subheadings (Avenir Medium) */
  .subheading, 
  .card-title, 
  .section-subtitle {
    font-family: 'Nunito', sans-serif;
    font-weight: 500; /* Medium */
  }
  
  /* Special cases */
  .hero-title {
    font-weight: 800; /* Extra-bold for emphasis */
  }
  
  /* Button text - often needs Medium weight */
  .button, .btn {
    font-weight: 500;
  }
/* Navigation - Right-aligned Links */
/* Base Navbar Styles */
nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    top: 0;
    z-index: 100;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0rem 3rem;
    position: relative;
}

/* Logo */
.logo img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}


/* Navigation Links */
.nav__links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.nav__links li {
    margin-left: 2.5rem;
    position: relative;
}

.link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    white-space: nowrap;
    padding: 0.5rem 0;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

.link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #393c7f;
    transition: width 0.3s ease;
}

.link:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    font-size: 1.8rem;
    color: #333;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    top: 90px;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
}

.mobile-menu .link {
    padding: 1rem 2rem;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu .link:last-child {
    border-bottom: none;
}

.mobile-menu .link:hover {
    background-color: #f8f8f8;
    color: #393c7f;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nav__links li {
        margin-left: 1.8rem;
    }
    .logo img {
        height: 90px;
        width: auto;
        transition: transform 0.3s ease;
    }
}

@media (max-width: 880px) {
    .nav-container {
        padding: 1rem 2rem;
    }
    
    .nav__links li {
        margin-left: 1.5rem;
    }
    
    .link {
        font-size: 1rem;
    }
    .logo img {
        height: 90px;
        width: auto;
        transition: transform 0.3s ease;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .logo img {
        height: 80px;
        width: auto;
    }
}

/* Hero Section Adjustments */
@media (max-width: 768px) {
    header {
        min-height: 500px;
        padding: 0 2rem;
    }
    
    .header__content h1 {
        font-size: 2rem;
    }
    
    .header__content p {
        font-size: 1rem;
    }
}

/* Hero Section */
header {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('imgs/bannerimg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 0; /* Remove top margin */
    padding-top: 0; /* Remove top padding if needed */
}

.header__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.section__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header__content {
    max-width: 600px;
    color: var(--white);
}

.header__content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.header__content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header__content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    header {
        min-height: 500px;
    }

    .header__content h1 {
        font-size: 32px;
    }

    .header__content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .header__content {
        text-align: center;
    }

    .header__content h1 {
        font-size: 28px;
    }
}
/* About Us Section */
#aboutus {
    padding: 1.5rem 0;
    background-color: #fff;
}

.about-row {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.about-row:last-child {
    margin-bottom: 0;
}
.about-value-list {
    list-style-type: none; /* Removes bullets */
    padding-left: 0;      /* Removes default left padding */
    margin-left: 0;       /* Optional: Adjust as needed */
  }

/* Default layout - text left, image right */
.about-text-col {
    flex: 1;
    width: 50%;
    padding: 0 2rem 0 4rem; /* More left padding */
}

.about-image-col {
    flex: 1;
    width: 50%;
    padding: 0 4rem 0 2rem; /* More right padding */
}

/* Second row - image left, text right */
.about-row:nth-child(even) .about-text-col {
    order: 2; /* Move text to right */
    padding: 0 4rem 0 2rem;
}

.about-row:nth-child(even) .about-image-col {
    order: 1; /* Move image to left */
    padding: 0 2rem 0 4rem;
}

.about-image-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.about-text-col h2 {
    color: #000;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.about-text-col h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: #a0d1eb;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .about-row,
    .about-row:nth-child(even) {
        flex-direction: column;
        margin-bottom: 3rem;
    }
    
    .about-text-col,
    .about-image-col {
        width: 90%; /* Changed from 100% to 90% for side spacing */
        margin: 0 auto; /* Center the columns */
        padding: 1.5rem 0 !important; /* Reduced vertical padding */
    }
    
    .about-text-col {
        text-align: center; /* Maintain centered text */
    }
    
    .about-image-col img {
        width: 100%;
        max-height: 300px;
        object-fit: cover;
    }
    
    /* Maintain centered heading underline */
    .about-text-col h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* List items maintain center alignment */
    .about-value-list {
        padding: 0 1rem; /* Add some side padding to list */
        text-align: left; /* List text left-aligned for readability */
    }
    
    /* Tagline centered */
    .about-tagline {
        text-align: center;
        margin: 1.5rem 0;
    }
}
/*MISIONANDVISION*/
#mandv {
    background-color: #095771;
    color: white;
    padding: 1.5rem 0;
}

.mandv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mandv-columns {
    display: flex;
    gap: 3rem;
}

.mandv-column {
    flex: 1;
}

.mandv-card {
    text-align: center;
    padding: 2rem;
}

.mission-heading, 
.vision-heading {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    /* Completely removed underline styles */
    padding-bottom: 0;
    border-bottom: none !important; /* Ensures no border */
}

/* Guaranteed removal of any potential underline */
.mission-heading::after,
.vision-heading::after {
    content: none !important;
    display: none !important;
}

.mandv-content {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mandv-columns {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mandv-card {
        padding: 1.5rem 1rem;
    }
    
    .mission-heading,
    .vision-heading {
        font-size: 1.6rem;
        /* Double-check mobile underline removal */
        border-bottom: none;
        box-shadow: none;
    }
    
    .mandv-content {
        font-size: 1rem;
    }
}
/*SERVICES*/
#services {
    padding: 80px 40px;
    background-color: var(--white);
    padding-top: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    position: relative; /* Added for underline positioning */
    padding-bottom: 20px; /* Space for underline */
}

.services-header h2 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 600;
    position: relative;
    display: inline-block; /* Makes underline only as wide as text */
}

.services-header h2::after {
    content: '';
    position: absolute;
    width: 80PX;
    height: 3px;
    background-color: #a0d1eb; /* Light blue color */
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.75rem;
}

.services-header p {
    color: #000;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    padding-top: 25px; /* Added space between underline and paragraph */
}

.service {
    background: var(--white);
    padding: 20px;
    margin-bottom: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--primary-color);
    border-bottom: 1px solid #000;
    transition: all 0.3s ease;
}

.service:hover {
    background-color: #f8f8f8;
}

.dropdown {
    display: none;
    background: var(--white);
    padding: 0;
}

.columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    border-top: 1.5px solid var(--border-blue);
}

.column {
    padding: 25px;
    border-right: 1px solid var(--border-blue);
    border-bottom: 1.5px solid var(--border-blue);
}

.column:last-child {
    border-right: none;
}

.column strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
}

.plus {
    font-size: 30px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.service.active .plus {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    #services {
        padding: 60px 20px;
    }
    
    .services-header h2 {
        font-size: 28px;
    }
    
    .services-header p {
        font-size: 16px;
        padding-top: 20px; /* Adjusted for smaller screens */
    }
    
    .columns {
        grid-template-columns: 1fr;
    }
    
    .column {
        border-right: none;
        padding: 20px;
    }
    
    /* Ensures underline remains consistent on mobile */
    .services-header h2::after {
        bottom: -10px;
        height: 2.5px;
    }
}
/*TEAM*/
#ourteam {
    padding: 4rem 0;
    background-color: #f8f9fa;
    padding-top: 1.5rem;
}

.ourteam-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ourteam-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 1rem;
}

.ourteam-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    display: inline-block;
}

.ourteam-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.75rem;
    width: 80px;
    height: 3px;
    background-color: #a0d1eb;
}

.ourteam-header p {
    color: #1b1b1b;
    line-height: 1.6;
    padding-top: 1.5rem;
}

.ourteam-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.ourteam-card {
    width: calc(33.333% - 1.5rem);
    min-width: 280px;
    max-width: 320px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0; /* Changed from 8px to 0 */
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
}

.ourteam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.ourteam-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.ourteam-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.ourteam-card:hover .ourteam-img {
    transform: scale(1.03);
}

.ourteam-info  {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ourteam-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.15rem;
    color: #181818;
    text-align: center;
}

.ourteam-position {
    color: #666;
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    text-align: center;
}

.ourteam-description {
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .ourteam-card {
        width: calc(50% - 1rem);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .ourteam-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .ourteam-card {
        width: 100%;
        max-width: 350px;
    }
    
    .ourteam-img-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .ourteam-img-container {
        height: 200px;
    }
    
    .ourteam-header h2 {
        font-size: 1.75rem;
    }
    
    .ourteam-header p {
        padding: 0 0.5rem;
        padding-top: 1rem;
    }
}
/* Contact Section */
#contact {
    padding: 5rem 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-column {
 
    display: flex;
    flex-direction: column;
}

.contact-left {
    padding-top: 1rem; /* Aligns with right column content */
}

.contact-right {
    padding-left: 3rem;
    border-left: 1px solid #e0e0e0;
}

.contact-logo img {
    width: auto;
    height: 150px;
    margin-bottom: 2.5rem;
}

.contact-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.contact-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.75rem;
    width: 50%; /* Line goes halfway */
    height: 3px;
    background-color: #a0d1eb;
}

.contact-subheading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-subheading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 50%; /* Line goes halfway */
    height: 2px;
    background-color: #a0d1eb;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 500px;
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    color: #0066cc;
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }
    
    .contact-column {
        width: 100%;
        max-width: 500px;
        align-items: center;
        text-align: center;
    }
    
    .contact-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #e0e0e0;
        padding-top: 3rem;
    }
    
    .contact-heading,
    .contact-subheading {
        text-align: center;
    }
    
    .contact-heading::after,
    .contact-subheading::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40%; /* Shorter line on mobile */
    }
    
    .contact-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-info ul {
        align-items: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    .contact-logo img {
        width: auto;
        height: 100px;
        margin-bottom: 2.5rem;
    }
}
/* Footer Styles */
footer {
    background-color: white;
    padding: 30px 5%;
    text-align: center;
    border-top: 1px solid #000;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #contact {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-logo {
        text-align: center;
    }
    
    .contact-logo img {
        max-width: 150px;
    }
}