/* CSS Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Font Families */
    --font-heading: 'Montserrat', 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-body: 'Source Sans Pro', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-accent: 'Montserrat', 'Poppins', 'Segoe UI', Tahoma, Verdana, sans-serif;
    
    /* Colors */
    --primary: #75D24D;/*#2C5530;*/
    --secondary: #4A7C59;
    --accent: #000000;/*#d5f1c9;#E63946;*/
    --light: rgb(255, 255, 255); /*#A4E18b;*/
    --dark: #00294A;
    --text: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    font-weight: 400;
    font-size: 1rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 700;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 10px auto;
    border-radius: 2px;
}

h3 {
    font-size: 1.6rem;
    font-weight: 600;
}

h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
}

.small {
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-accent {
    background: var(--accent);
}

.btn-accent:hover {
    background: #c1121f;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Header & Navigation */
header {
    background: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo i {
    font-size: 2rem;
    color: var(--primary);
    margin-right: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-text span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    /* color: var(--dark); */
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px; 
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a.active {
    color: var(--primary);
}

nav ul li a.active:after {
    width: 100%;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Transparent Header for Homepage */
.transparent-header {
    background: transparent !important;
    box-shadow: none !important;
    /* border: 10px solid green; */
}

.transparent-header .logo-text,
.transparent-header nav ul li a,
.transparent-header .mobile-menu i {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.transparent-header.scrolled{
    background: white !important;
    /* opacity: 20%; */
    box-shadow: var(--shadow) !important;
}

.transparent-header.scrolled .logo-text,
.transparent-header.scrolled nav ul li a,
.transparent-header.scrolled .mobile-menu i {
    color: var(--dark) !important;
    text-shadow: none;
}

/* Hero Carousel */
.hero-carousel-section {
    padding: 0;
    height: 100vh;
    position: relative;
    overflow: hidden;
}


.swiper-wrapper {
  display: flex !important;
}

.swiper-slide {
  flex-shrink: 0 !important;
  width: 100% !important;
}

.swiper {
    width: 100%;
    height: 100%;
    background-image: url('Public/DoubleTap.png');
    background-size: cover;
    background-position: right;
    /* background-repeat: no-repeat; */
}
.frosted-element {
    background-color: rgba(0, 41, 74, 0.29);/*rgba(117, 210, 77, 0.177); /*rgb(21, 113, 7); */
    backdrop-filter: blur(10px) saturate(100%); /* Add saturation */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.swiper-slide {
    /* text-align: center; */
    /* background-size: cover; */
    /* background-position: center; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: relative; */
    }

.swiper-slide.swiper-pagination {
    cursor: default;
    color: var(--text-light);
}
/* .slide-1 {
    background-color: black;
    background-image: url('Public/1.png');
    background-repeat: no-repeat;
    background-size:500px, 500px, 500px, 500px;
    background-position: center;
    background-blend-mode: color;
} */

/* .slide-2 {
    background-color: red;
} */

/* .slide-3 {
    background-color: greenyellow;
} */

/* .slide-4 {
    background-color: yellow;
} */

.slide-content {
    position: relative;
    z-index: 20;
    color: white;
    max-width: 900px;
    padding: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    line-height: 1.1;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    line-height: 1.6;
}

.btn-hero {
    padding: 15px 35px;
    font-size: 1.1rem;
    background: var(--accent);
    border: 2px solid var(--accent);
    font-weight: 700;
}

.btn-hero:hover {
    background: transparent;
    border-color: white;
}

/* Impact Stats Section */
.impact-stats {
    background: var(--light);
    padding: 60px 0;
    text-align: center;
}

.impact-stats h2 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(3);
    /* grid-template-columns: 1fr 1fr; */
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    font-family: var(--font-heading);
}

.about-text h2:after {
    margin: 10px 0;
}

.about-text h3 {
    color: var(--primary);
    margin-top: 2rem;
}

.values {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.values p {
    font-weight: 600;
}
.program-card p{
    font-weight: 600;
    font-size: 5rem;

}
.founders{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.colourAboutIcons{
    filter: invert(76%) sepia(12%) saturate(1999%) hue-rotate(56deg) brightness(96%) contrast(88%);
    width: 75px;
    height: 75px;
    margin-bottom: 15px;
}

.value-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item h4 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 1rem;
    color: var(--text);
}

.founder {
    display: grid;
    grid-template-columns:auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    top: 100px;
    transition: var(--transition);
}
.founder:hover {
    transform: translateY(-5px);
}

.founder-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.founder h3 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 5px;
}

.founder p {
    font-size: 1rem;
    color: var(--text);
}

/* Programs Section */
.programs {
    background: var(--light);
}

.programs h2 {
    font-family: var(--font-heading);
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr 1fr);
    /* grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
    gap: 30px;
}

.program-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-img {
    height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.program-content {
    padding: 25px;
}

.program-content h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 15px;
}

.program-content p {
    font-size: 1rem;
    color: var(--text);
}

.impact {
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: var(--secondary);
    font-weight: 600;
    font-family: var(--font-heading);
}

.impact i {
    margin-right: 8px;
}

/* Work With Us Section */
.involve-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.involve-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.involve-card:hover {
    transform: translateY(-5px);
}

.involve-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.involve-card h3 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 15px;
}

.involve-card p {
    font-size: 1rem;
    margin-bottom: 25px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    color: var(--dark);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 1rem;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(44, 85, 48, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    font-family: var(--font-heading);
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary);
    bottom: -10px;
    left: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-body);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
    font-family: var(--font-body);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 { 
        font-size: 2.5rem; 
    }
    h2 { 
        font-size: 2rem; 
    }
    
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .about-text h2:after {
        margin: 10px auto;
    }
    
    .founder {
        position: static;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1rem;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .program-cards,
    .involve-options {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h1 { 
        font-size: 2rem; 
    }
    h2 { 
        font-size: 1.8rem; 
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-hero {
        padding: 12px 25px;
        font-size: 1rem;
    }
}