
:root {
    --blue-dark: #0d2833;
    --blue-text: #2d2e29;
    --white-bg: #f6f5f1;
    --grey-1: #838b8e;
    --grey-2: #999894;
    --font-main: 'Inter', 'Segoe UI', sans-serif; /* You can change this to a Google Font */
}

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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--font-main);
    background-color: var(--white-bg);
    color: var(--blue-text);
    line-height: 1.6;
    
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Header & Navigation --- */
header {
    background-color: var(--white-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px; 
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-family: 'Playfair Display';
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue-dark);
  }
  

.logo img {
    height: 50px; 
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: bold;
    color: var(--blue-text);
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--blue-dark);
    border-bottom: 2px solid var(--blue-dark);
}

/* Mobile Menu Button (Hidden on Desktop) */
.menu-toggle { display: none; font-size: 24px; cursor: pointer; }

/* --- Hero Section (Home) --- */
.hero {
    background-color: var(--blue-dark);
    color: #fff;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    /* font-family: 'Playfair Display'; */
}

.hero p {
    font-family: 'Great Vibes', cursive;
    font-size: 2.1rem;
    color: var(--grey-2);
    letter-spacing: 1.2px;
}

/* --- Section Styling --- */
section { 
    padding: 60px 0; 
    flex: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;

}

.section-title h2 {
    font-size: 2rem;
    color: var(--blue-dark);
    margin-bottom: 10px;
    text-transform: uppercase;

}

/* --- About Us Cards --- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.about-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.about-card h3 { margin: 15px 0; color: var(--blue-dark); }
.about-card i { font-size: 40px; color: var(--grey-1); }

/* --- Vision & Mission (Alternating Layout) --- */
.row-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.row-section.reverse { flex-direction: row-reverse; }

.icon-box {
    width: 100%;
    height: 250px; 
    background-color: var(--blue-dark); 
    color: var(--white-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 60px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-3px);
}

.team-img .icon-box {
    height: 100%;
    min-height: 300px;
}
.text-col { flex: 1; }
.img-col { flex: 1; }

.img-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--grey-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

/* --- Teams Page --- */
.page-header {
    background-color: var(--blue-dark);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    font-size: 1.5rem;
    text-transform: uppercase;
}

/* Teams Layout */
.team-block {
    display: flex;
    gap: 40px;
    margin-bottom: 120px;
    align-items: flex-start;
}

.team-img {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-content { flex: 1; }

/* Accordion Styles */
.accordion-item {
    border-bottom: 1px solid var(--grey-2);
    margin-bottom: 10px;
}

.accordion-header {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 15px 0;
    font-size: 1rem;
    font-weight: bold;
    color: var(--blue-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: 10px;
}

.accordion-body p { margin-bottom: 15px; color: var(--blue-text); }
.accordion-body ul { list-style: disc; margin-left: 20px; color: var(--grey-1); }

/* --- Partnerships Page Styling --- */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-content: center;
}

.partner-card {
    background: var(--white-bg);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;  
    width: 100%;     
    margin: 0 auto;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.partner-logo {
    width: 80px; 
    height: 80px;
    object-fit: contain; 
    margin: 0 auto 20px auto;
    border-radius: 50%; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

.partner-info h3 {
    margin-bottom: 10px;
    color: var(--blue-dark);
}

.partner-info p {
    color: var(--grey-1);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.partner-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--white-bg);
    color: var(--blue-dark);
    border: 1px solid var(--blue-dark);
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.partner-link:hover {
    background-color: var(--blue-dark);
    color: #fff;
}


/* --- Contact Page --- */
.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    background: var(--blue-dark);
    color: #fff;
    padding: 40px;
    border-radius: 8px;
}

.contact-form {
    flex: 2;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--grey-2);
    border-radius: 4px;
    background: var(--white-bg);
}

.btn-submit {
    background-color: var(--blue-dark);
    color: #fff;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

.btn-submit:hover { background-color: var(--grey-1); }

/* --- Footer --- */
footer {
    background-color: var(--blue-dark);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-socials {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-socials a {
    color: #fff;
    font-size: 24px;
}

.footer-socials a:hover { color: var(--grey-1); }
