@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap');

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

h1, h2, h3, h4, h5 {
    font-family: "Oswald", sans-serif; 
    line-height: 1.2em;
}

p, span, a, li, td, th, label, select, radio, input, button, textarea, option, .bank-details {
   font-family: "Inter", sans-serif;  
   line-height: 1.5em;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    background-color: #ffffff;
    scroll-behavior: smooth;
}

/* Header */
.site-header {
    background-color: #ffffff;
    width: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); 
    position: relative;
    z-index: 1000;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    display: block;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}
.main-nav a {
    text-decoration: none;
    color: #333333; 
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.main-nav a:hover {
    color: #313494; 
}
.menu-toggle {
    display: none;
}
.hamburger-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}
.hamburger-icon span {
    width: 30px;
    height: 3px;
    background-color: #313494;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/*Hero Section*/
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 80px;
}
.hero-content {
    max-width: 750px;
    width: 100%;
    color: #ffffff;
    z-index: 1;
}
.hero-content h1 {
    font-size: 60px;
    margin-bottom: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-content p {
    font-size: 22px;
    margin-bottom: 45px;
    color: #f5f5f5;
}
.hero-buttons {
    display: flex;
    gap: 25px;
}
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}
.btn-primary {
    background-color: #313494;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(52, 55, 148, 0.4);
}
.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(52, 55, 148, 0.6);
}
.btn-secondary {
    background-color: #ffffff;
    color: #333333; 
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.4);
}

/*About Brief*/
.about-brief-section {
    background-color: #ffffff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}
.about-brief-container {
    display: flex;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    gap: 50px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(51, 51, 51, 0.1); 
    border-left: 8px solid #313494; 
    transition: transform 0.3s ease-in-out;
}
.about-brief-container:hover {
    transform: translateY(-5px);
}
.about-icon-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(52, 55, 148, 0.4); 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.about-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.about-text-content {
    flex-grow: 1;
}
.about-text-content h2 {
    color: #313494; 
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: bold;
}
.about-text-content p {
    color: #333333;
    font-size: 17px;
}

/*Title*/
.title h2 {
    color: #313494; 
    font-size: 32px;
    margin-top: 0px;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
    padding: 20px;    
}

/*Values*/
.values-section {
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}
.values-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    width: 100%;
    gap: 30px;
}
.value-card {
    background-color: #ffffff;
    flex: 1;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(51, 51, 51, 0.08);
    border-bottom: 6px solid #313494; 
    transition: all 0.4s ease-in-out;
}
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(49, 52, 148, 0.3);
}
.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px auto;
    overflow: hidden;
    transition: transform 0.4s ease;
}
.value-card:hover .value-icon {
    transform: scale(1.1); 
}
.value-icon img {
    object-fit: cover;
}
.value-card h3 {
    color: #000;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    transition: color 0.4s ease-in-out;
}
.value-card p {
    color: #333333;
    font-size: 17px;
    line-height: 1.6;
    transition: color 0.4s ease-in-out;
}

/* Mission & Vision */
.mission-vision-section {
    background-color: #f7f7f7;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mission-vision-container {
    display: flex;
    max-width: 1100px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(51, 51, 51, 0.15);
    border-radius: 20px;
    overflow: hidden; 
}
.mv-column {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color 0.4s ease;
}
.mv-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: bold;
}
.mission-col {
    background-color: #ffffff;
}
.mission-col .mv-label {
    color: #313494;
}
.mission-col h2 {
    color: #313494;
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: bold;
}
.mission-col p {
    color: #333333;
    font-size: 17px;
}
.vision-col {
    background-color: #313494;
}
.vision-col .mv-label {
    color: #cccccc; 
}
.vision-col h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: bold;
}
.vision-col p {
    color: #f0f0f0;
    font-size: 17px;
}

/* Featured Pages Section Styles */
.featured-pages-section {
    background-color: #ffffff;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}
.featured-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 100px; 
}
.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
}
.feature-row.reverse-desktop {
    flex-direction: row-reverse;
}
.feature-text {
    flex: 1;
}
.feature-text h2 {
    color: #313494;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}
.feature-text p {
    color: #333333;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px; 
}
.feature-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    z-index: 1;
}
.feature-image::after {
    content: "";
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: #313494;
    border-radius: 15px;
    z-index: -1;
    opacity: 0.15;
    transition: all 0.3s ease;
}
.feature-row.reverse-desktop .feature-image::after {
    left: 20px; 
}
.feature-image img {
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(51, 51, 51, 0.1);
    transition: transform 0.4s ease;
}
.feature-row:hover .feature-image img {
    transform: translateY(-5px);
}
.feature-row:hover .feature-image::after {
    top: 25px;
    opacity: 0.25;
}

/* Donation */
.donation-section {
    background-color: #313494; 
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    text-align: center;
}
.donation-container {
    max-width: 700px; 
    width: 100%;
}
.donation-container h2 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: bold;
}
.donation-container p {
    color: #e0e0e0;
    font-size: 17px;
    margin-bottom: 45px;
}
.donation-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}
.donation-card:hover {
    transform: translateY(-5px);
}
.donation-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px auto;
    overflow: hidden;
}
.donation-icon-wrapper img {
    object-fit: cover;
    display: block;
}
.detail-label {
    display: block;
    font-size: 13px;
    color: #888888; 
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;
    font-weight: bold;
}
.detail-value {
    font-size: 20px;
    color: #333333; 
    font-weight: bold;
    margin-top: 8px;
}
.account-number-box {
    background-color: #f7f7fa; 
    color: #313494;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 20px;
    margin: 15px auto 0 auto;
    border: 2px dashed #313494;
    border-radius: 10px;
    max-width: 450px;
}

/* Footer */
.site-footer {
    background-color: #ffffff;
    width: 100%;
    padding: 30px 20px;
    border-top: 1px solid #e0e0e0; 
}
.footer-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright {
    color: #333333; 
    font-size: 14px;
}
.footer-links a {
    color: #313494; 
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #333333;
    text-decoration: underline;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .hamburger-icon {
        display: flex;
    }
    .main-nav {
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    .main-nav li {
        border-top: 1px solid #f5f5f5;
    }
    .main-nav a {
        display: block;
        padding: 20px;
        text-align: center;
    }
    .menu-toggle:checked ~ .main-nav {
        display: block;
    }    
    .menu-toggle:checked ~ .hamburger-icon span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle:checked ~ .hamburger-icon span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked ~ .hamburger-icon span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }    
    .hero-section {
        padding: 0 20px;
    }
    .hero-content h1 {
        font-size: 40px;
        text-align: center;
    }
    .hero-content p {
        font-size: 17px;
        text-align: center;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .btn {
        width: 100%;
    }
    .about-brief-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        border-left: none;
        border-top: 8px solid #313494; 
    }    
    .about-text-content h2 {
        font-size: 28px;
    }   
    .values-container {
        flex-direction: column; 
        align-items: center;
        gap: 25px;
    }
    .value-card {
        width: 100%;
        max-width: 450px;
    } 
    .mission-vision-section {
        padding: 60px 20px;
    }
    .mission-vision-container {
        flex-direction: column; 
    }
    .mv-column {
        padding: 40px 30px;
    }    
    .mv-column h2 {
        font-size: 28px;
    }        
    .featured-pages-section {
        padding: 60px 20px;
    }
    .featured-container {
        gap: 70px;
    }
    .feature-row, .feature-row.reverse-desktop {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    .feature-image::after, .feature-row.reverse-desktop .feature-image::after {
        top: 15px;
        left: 15px; 
    }
    .feature-text h2 {
        font-size: 30px;
    } 
    .donation-section {
        padding: 60px 20px;
    }
    .donation-container h2 {
        font-size: 30px;
    }
    .donation-card {
        padding: 40px 20px;
    }
    .account-number-box {
        font-size: 20px;
        letter-spacing: 2px;
        padding: 15px;
    }    
    .detail-value {
        font-size: 15px;
    }   
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }    
}