/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #e55b13;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

main {
    padding: 2rem;
    min-height: calc(100vh - 120px); /* Adjust for header and footer */
}

form {
    max-width: 600px;
    margin: 0 auto;
}

form label {
    display: block;
    margin: 0.5rem 0;
}

form input, form button {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

form button {
    background-color: #e55b13;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 10px 0;
    }
}
/* Hero Section with Background Image */
.hero {
    background-image: url('../uploads/background.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
    z-index: -1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #e55b13;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #2c3e50;
}

/* About Section */
.about {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.about h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    max-width: 1200px;
    margin: 2rem auto;
    text-align: center;
}

.services h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    color: #e55b13;
    margin-bottom: 1rem;
}

.service-item a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: bold;
}

.service-item a:hover {
    text-decoration: underline;
}

/* Welcome Section */
.welcome {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.welcome h2 {
    margin-bottom: 1rem;
}

.welcome p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Hero Section */
.contact-hero {
    background-color: #f9f9f9;
    text-align: center;
    padding: 3rem 2rem;
}

.contact-hero h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-hero p {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info {
    max-width: 1200px;
    margin: 2rem auto;
    text-align: center;
}

.contact-info h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: #e55b13;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-item p a {
    color: #e55b13;
    text-decoration: none;
}

.contact-item p a:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}

.contact-form h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form .success {
    color: #2c3e50;
    font-weight: bold;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* Why Us Hero Section */
.whyus-hero {
    background-color: #f9f9f9;
    text-align: left;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}
h1, h2{
    text-align: center;
    color: #e55b13;
    margin-bottom: 2rem;
}

.whyus-hero h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.whyus-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #333;
}

/* Vision, Mission, Statement of Faith Sections */
.vision, .mission, .statement-of-faith {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision:hover, .mission:hover, .statement-of-faith:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.vision h2, .mission h2, .statement-of-faith h2 {
    color: #e55b13;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.vision h2::after, .mission h2::after, .statement-of-faith h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #2c3e50;
}

.vision p, .mission p, .statement-of-faith p {
    color: #333;
    line-height: 1.8;
}

/* Why Us CTA Section */
.whyus-cta {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.whyus-cta h2 {
    margin-bottom: 1rem;
}

.whyus-cta p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.whyus-cta .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #e55b13;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whyus-cta .cta-button:hover {
    background-color: #e55b13;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .whyus-hero h1 {
        font-size: 1.8rem;
    }

    .whyus-hero p {
        font-size: 1rem;
    }

    .vision, .mission, .statement-of-faith {
        padding: 1.5rem;
    }
}

/* Theology Hero Section */
.theology-hero {
    background-color: #f9f9f9;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.theology-hero h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.theology-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #333;
}

/* Programs Section */
.programs {
    max-width: 1200px;
    margin: 2rem auto;
    text-align: center;
}

.programs h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.programs h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #e55b13;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.program-item h3 {
    color: #e55b13;
    margin-bottom: 1rem;
}

.program-item p {
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.program-item ul {
    list-style: none;
    margin-bottom: 1rem;
    text-align: left;
}

.program-item ul li {
    margin-bottom: 0.5rem;
    color: #333;
}

.program-item .cta-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.program-item .cta-button:hover {
    background-color: #e55b13;
    transform: scale(1.05);
}

/* Theology CTA Section */
.theology-cta {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.theology-cta h2 {
    margin-bottom: 1rem;
}

.theology-cta p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.theology-cta .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #e55b13;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.theology-cta .cta-button:hover {
    background-color: #e55b13;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .theology-hero h1 {
        font-size: 1.8rem;
    }

    .theology-hero p {
        font-size: 1rem;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .program-item ul {
        text-align: center;
    }
}
/* Chaplaincy Hero Section */
.chaplaincy-hero {
    background-color: #f9f9f9;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.chaplaincy-hero h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.chaplaincy-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #333;
}

/* Chaplaincy Services Section */
.chaplaincy-services {
    max-width: 1200px;
    margin: 2rem auto;
    text-align: center;
}

.chaplaincy-services h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.chaplaincy-services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #e55b13;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    color: #e55b13;
    margin-bottom: 1rem;
}

.service-item p {
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-item ul {
    list-style: none;
    margin-bottom: 1rem;
    text-align: left;
}

.service-item ul li {
    margin-bottom: 0.5rem;
    color: #333;
}

.service-item .cta-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-item .cta-button:hover {
    background-color: #e55b13;
    transform: scale(1.05);
}

/* Chaplaincy CTA Section */
.chaplaincy-cta {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.chaplaincy-cta h2 {
    margin-bottom: 1rem;
}

.chaplaincy-cta p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.chaplaincy-cta .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #e55b13;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.chaplaincy-cta .cta-button:hover {
    background-color: #e55b13;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .chaplaincy-hero h1 {
        font-size: 1.8rem;
    }

    .chaplaincy-hero p {
        font-size: 1rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-item ul {
        text-align: center;
    }
}
/* Ministry Hero Section */
.ministry-hero {
    background-color: #f9f9f9;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.ministry-hero h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ministry-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #333;
}

/* Ministry Services Section */
.ministry-services {
    max-width: 1200px;
    margin: 2rem auto;
    text-align: center;
}

.ministry-services h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.ministry-services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #e55b13;
}

.ministry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ministry-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ministry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.ministry-item h3 {
    color: #e55b13;
    margin-bottom: 1rem;
}

.ministry-item p {
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ministry-item ul {
    list-style: none;
    margin-bottom: 1rem;
    text-align: left;
}

.ministry-item ul li {
    margin-bottom: 0.5rem;
    color: #333;
}

.ministry-item .cta-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.ministry-item .cta-button:hover {
    background-color: #e55b13;
    transform: scale(1.05);
}

/* Ministry CTA Section */
.ministry-cta {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.ministry-cta h2 {
    margin-bottom: 1rem;
}

.ministry-cta p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.ministry-cta .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #e55b13;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.ministry-cta .cta-button:hover {
    background-color: #e55b13;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ministry-hero h1 {
        font-size: 1.8rem;
    }

    .ministry-hero p {
        font-size: 1rem;
    }

    .ministry-grid {
        grid-template-columns: 1fr;
    }

    .ministry-item ul {
        text-align: center;
    }
}

/* Psychology Hero Section */
.psychology-hero {
    background-color: #f9f9f9;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.psychology-hero h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.psychology-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
}

/* Psychology Services Section */
.psychology-services {
    max-width: 1200px;
    margin: 2rem auto;
    text-align: center;
}

.psychology-services h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.psychology-services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #e55b13, #f39c12);
}

.psychology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.psychology-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
}

.psychology-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border: 2px solid #e55b13;
}

.psychology-item h3 {
    color: #e55b13;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.psychology-item p {
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.psychology-item ul {
    list-style: none;
    margin-bottom: 1rem;
    text-align: left;
}

.psychology-item ul li {
    margin-bottom: 0.6rem;
    color: #333;
    position: relative;
    padding-left: 1.2rem;
}

.psychology-item ul li::before {
    content: '\f058'; /* Font Awesome check-circle icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #e55b13;
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.psychology-item .cta-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.psychology-item .cta-button:hover {
    background: linear-gradient(to right, #e55b13, #f39c12);
    transform: scale(1.05);
}

/* Psychology CTA Section */
.psychology-cta {
    background: linear-gradient(to bottom, #2c3e50, #34495e);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 0 0 12px 12px;
}

.psychology-cta h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.psychology-cta p {
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.psychology-cta .cta-button {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background: linear-gradient(to right, #e55b13, #f39c12);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.psychology-cta .cta-button:hover {
    background: linear-gradient(to right, #d35400, #e67e22);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .psychology-hero h1 {
        font-size: 1.8rem;
    }

    .psychology-hero p {
        font-size: 1rem;
    }

    .psychology-grid {
        grid-template-columns: 1fr;
    }

    .psychology-item ul {
        text-align: center;
    }

    .psychology-item ul li {
        padding-left: 0;
    }

    .psychology-item ul li::before {
        display: none;
    }
}
/* Committee Hero Section */
.committee-hero {
    background-color: #f9f9f9;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.committee-hero h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.committee-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #333;
}

/* Committee Grid */
/* Committee Grid */
.committee-grid {
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.member-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.member-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 300px; /* Increased height to accommodate full images */
    background: #f5f5f5; /* Light background for empty space */
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures full image is visible without cropping */
    object-position: center;
    transition: transform 0.4s ease;
}

.member-card:hover .member-image img {
    transform: scale(1.1); /* Retains zoom effect on hover */
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.member-card:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h3 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
}

.image-overlay p {
    margin: 0;
    opacity: 0.9;
}

.member-details {
    padding: 1.5rem;
    text-align: center;
}

.member-details h4 {
    color: #2c3e50;
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
}

.role {
    color: #e55b13;
    font-weight: 600;
    margin: 0 0 1rem;
}

.cv-link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(to right, #e55b13, #f39c12);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cv-link:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #d35400, #e67e22);
}


/* Admin Form Styling (for upload_cv.php) */
.admin-form {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.admin-form h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.admin-form label {
    display: block;
    margin: 1rem 0 0.5rem;
    color: #333;
}

.admin-form input, .admin-form button {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.admin-form button {
    background-color: #e55b13;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.admin-form button:hover {
    background-color: #2c3e50;
}

.error {
    color: #e74c3c;
    background: #fdf2f2;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.success {
    color: #27ae60;
    background: #f0fff4;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

/* Committee CTA Section */
.committee-cta {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.committee-cta h2 {
    margin-bottom: 1rem;
}

.committee-cta p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.committee-cta .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #e55b13;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.committee-cta .cta-button:hover {
    background-color: #e55b13;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .committee-hero h1 {
        font-size: 1.8rem;
    }

    .committee-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .member-image {
        height: 200px;
    }

    .admin-form {
        margin: 1rem;
        padding: 1.5rem;
    }
}
/* Activities Hero Section */
.activities-hero {
    background-color: #f9f9f9;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.activities-hero h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.activities-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #333;
}

/* Activities Grid */
.activities-grid {
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.activity-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.activity-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.activity-image {
    position: relative;
    overflow: hidden;
    height: 300px; /* Fixed height for consistency */
    background: #f5f5f5; /* Light background for empty space */
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures full image is visible */
    object-position: center;
    transition: transform 0.4s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.activity-card:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h3 {
    margin: 0;
    font-size: 1.3rem;
}

.activity-details {
    padding: 1.5rem;
    text-align: center;
}

.activity-details h4 {
    color: #2c3e50;
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
}

.activity-details p {
    color: #333;
    line-height: 1.6;
}

/* Activities CTA Section */
.activities-cta {
    background: linear-gradient(to bottom, #2c3e50, #34495e);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.activities-cta h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.activities-cta p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.activities-cta .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #e55b13, #f39c12);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.activities-cta .cta-button:hover {
    background: linear-gradient(to right, #d35400, #e67e22);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .activities-hero h1 {
        font-size: 1.8rem;
    }

    .activities-hero p {
        font-size: 1rem;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .activity-image {
        height: 250px; /* Slightly smaller for mobile */
    }
}
.page1{
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    color: #333;
    text-align: left;
}