:root {
    --primary-gradient: linear-gradient(135deg, #1a5f7a 0%, #2c5f2d 100%);
    --secondary-gradient: linear-gradient(135deg, #2c5f2d 0%, #1a5f7a 100%);
    --accent-color: #00a896;
    --text-color: #333333;
    --light-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --transition: all 0.3s ease;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.1;
    z-index: 0;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    background: var(--light-color);
}

.impact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Updates Section */
.updates-section {
    padding: 100px 0;
    background: white;
}

.update-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.update-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.card-content {
    padding: 1.5rem;
}

.date {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--dark-color);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--light-color);
    position: relative;
}

.section-subtitle {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    width: 85%;
    margin-top: 20px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 50%;
}

.team-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    border-radius: 50%;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.team-social {
    display: flex;
    gap: 1rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-3px);
}

.team-info {
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 1rem;
}

.team-info h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 1.4rem;
}

.team-role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/beyond1.png') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--dark-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    text-decoration: none;
}

.footer h5 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-img-wrapper {
        width: 75%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .team-img-wrapper {
        width: 65%;
    }
    
    .team-info {
        padding: 1.5rem 1rem;
    }
    
    .team-info h4 {
        font-size: 1.2rem;
    }
    
    .team-bio {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* Leadership Section */
.leadership-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #4CAF50 0%, #2196F3 100%);
    color: white;
    position: relative;
    text-align: center;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    color: white;
    margin-bottom: 8px;
    font-size: 2.2rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.3rem;
    display: block;
}

.section-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.leadership-section .row.justify-content-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.leadership-section .col-md-3 {
    margin-bottom: 1.5rem;
    padding: 0 15px;
}

.leadership-card {
    background: none;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    height: auto;
    position: static;
    text-align: center;
    padding: 0;
}

.leadership-image {
    position: relative;
    width: 130px;
    height: 130px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 0.4rem auto;
    border: 3px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.leadership-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.leadership-overlay, .leadership-social, .leadership-expertise, .leadership-bio {
    display: none;
}

.leadership-content {
    padding: 0;
    text-align: center;
}

.leadership-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
    color: white;
    font-weight: 500;
    line-height: 1.3;
}

.leadership-role {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: 0;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .leadership-section .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
        padding: 0 20px;
    }
    
    .leadership-image {
        width: 140px;
        height: 140px;
        margin-bottom: 0.6rem;
    }

    .leadership-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.15rem;
    }

    .leadership-role {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .leadership-section .col-sm-6 {
         flex: 0 0 50%;
         max-width: 50%;
         padding: 0 10px;
    }
    .leadership-section .col-md-3 {
        margin-bottom: 1.5rem;
    }
    .leadership-image {
        width: 100px;
        height: 100px;
        margin-bottom: 0.4rem;
    }
    
    .leadership-content h3 {
        font-size: 1rem;
        margin-bottom: 0.1rem;
    }
    
    .leadership-role {
        font-size: 0.8rem;
    }
} 