* {
    font-family: Poppins;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    font-weight: 400; /* Default to regular weight */
}

/* Heading join statusMessage_on fourth suggestion with Montserrat */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* Extra Bold */
    font-size: 3rem; /* Example size */
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 2.5rem;
    margin-bottom: 0.9rem;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* Semi-Bold */
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 1.75rem;
    margin-bottom: 0.7rem;
}

h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Regular */
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Paragraphs with Poppins */
p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400; /* Regular */
}

/* Additional styles can be added to customize the appearance of the navbar. */

/* Style  footer depart for the carousel select container */

/* Base Carousel Styles */
.hero-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    padding: 0 5%;
    text-align: center;
    color: white;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    margin: 0 auto;
    max-width: 90%;
    line-height: 1.3;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.9s ease 0.3s;
}

.carousel-slide.active .slide-content h1 {
    transform: translateY(0);
    opacity: 1;
}

/* Overlay for better text readability */
.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 1;
}

/* Navigation arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: rgba(255,255,255,0.4);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* Pagination dots statusMessage*/
.carousel-dots {
    position: absolute;
    bottom: 170px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: white;
    transform: scale(1.2);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .prev {
        left: 15px;
    }
    
    .next {
        right: 15px;
    }
    
    .carousel-dots {
        bottom: 15px;
    }
    
    .carousel-dots .dot {
        width: 10px;
        height: 10px;
    }
}


/* Styling for "Read more" links */

.direction_head {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86%;
    background-color: whitesmoke;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 260px;
    gap: 20px;
    box-shadow: 1px 1px 50px black;
    border-radius: 40px;
    z-index: 1003;
}

.direction {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    text-align: center;
    text-wrap: wrap;
    width: 30%;
    padding: 40px;
}


.direction a {

    text-wrap: nowrap;
}

.direction p {
    font-weight: bold;
}

.direct_text {
    color: rgb(123, 123, 205);
}

.missionStatement {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: whitesmoke;
    background-size: cover;
}

.missionStatement a {
    flex-grow: 0;
    width: 200px;
}

/* Add any additional custom styles for the carousel or captions here */
.contact h6 {
    color: orange;
}

/* Style for the smooth scroll header */
.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(-100%);
    transition: all 1.1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
}

.carousel_text_align {
    padding-bottom: 60px;
}

.image-container1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust the color and opacity as needed */
    pointer-events: none;
    /* Allows clicks to pass through the overlay to the image */
}





/* styling for the second page statusMessage*/
.second_page_mission {
    background: whitesmoke;
    position: relative;
    text-align: left;
    padding: 200px 70px 60px 70px;
}

.second_page_mission h2 {
    font-weight: normal;
}


.second_page_mission span {
    font-weight: 200;
}

.second_page_mission p {
    color: rgb(101, 101, 101);
}

.link_position_orange {
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    background: orange;
    padding: 10px 30px;
    position: relative;
    overflow: hidden;
    transition: 1s;
    border-radius: 5px;
}

.link_position_orange:hover {
    background: red;
}



.link_color_orange {
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    background: orange;
    padding: 10px 30px;
    position: relative;
    overflow: hidden;
    transition: color 1s;
}

.link_color_orange:hover {
    color: black;
    outline: 2px solid orange;
  

}

.link_color_orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    width: 0;
    height: 100%;
    background: white;
    transform: skewX(35deg);
    z-index: -1;
    transition: width 1s;

}

.link_color_orange:hover::before {
    width: 150%;
}

.link_color_green {
    background-color: rgb(3, 168, 97);
    border-radius: 10px;
    padding: 5px 20px;
    color: rgba(0, 0, 0, 0.913);
    text-decoration: none;
    transition: 0.5s;
}

.link_color_green:hover {
    background-color: rgb(255, 81, 0);
}

.link_color_red {
    background-color: rgb(255, 0, 64);
    border-radius: 10px;
    padding: 5px 20px;
    color: rgba(0, 0, 0, 0.913);
    text-decoration: none;
}

.link_transparent {
    border: 2px solid rgba(255, 255, 255, 0.669);
    border-radius: 10px;
    padding: 5px 20px;
    color: white;
    text-decoration: none;
    transition: 0.5s;
}

.link_transparent:hover {
    background-color: orange;
}

/* event greeting */


/* the third page gallery-column*/
.third_page {
    background-color: black;
    padding: 8vw 0;
    width: 100%;
}

.upcoming {
    text-align: center;
    color: white;
    padding: 0 0 2vw 0;
    max-width: 100%;

}

.program_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


.third_image img {
    width: 500px;
    height: 500px;
    border-radius: 8%;
}

.third_text {

    width: 400px;
    height: 200px;
    border-radius: 40px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.third_text a{
    display: none;
}

.countBanner{
    position: absolute;
    top: 16px;
    right: 16px;
    rotate: 0deg;
    background-color: red;
    padding: 2px 10px;
    overflow: hidden;
    border-radius: 10px;
    


}

.countBanner span{
    background-color: red;
    color: white;
}


.countText{
    font-size: 20px;
}

.countBox{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    overflow: hidden;

}

.countBox h1 {
    font-size: 100px;
    margin: 0;
}


/* fourth page styling direction_head*/
.fourth_page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 8vw 5vw;
}


.fourth_page h1 {
    text-align: center;

}

.fourth_page h1 span {
    font-weight: 200;
}

.greeting {
    text-wrap: nowrap;
    text-align: center;
    color: rgb(63, 63, 63);
    padding: 2vw;
}



.mission {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-wrap: wrap;
    gap: 30px;
}

.mission_statement{
    text-align: center;
}

.middle_line {
    height: 100px;
    width: 1px;
    border-left: 2px solid rgba(128, 128, 128, 0.44);
}

.mission_statement {
    text-align: center;
    width: 100%;
}


.vision_statement {
    text-align: center;
    width: 100%;
}



.fourth_page h3 {
    color: orange;
}


/* services frame  */
.services {
    background: whitesmoke;
    padding: 10vh 5vh;
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.services h1 {
    text-align: center;
}


.ser_frame {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 60vh;
}

.frame_box1 {
    flex-basis: 30%;
    flex-grow: 0;
    margin: 30px;
    align-items: center;
   
    background-image: url('homeImages/devine.jpg');
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.frame_box2 {
    flex-basis: 30%;
    flex-grow: 0;
    margin: 30px;
    align-items: center;
   
    background-image: url('homeImages/midweek.jpg');
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.frame_box3 {
    flex-basis: 30%;
    flex-grow: 0;
    margin: 30px;
    align-items: center;
   
    background-image: url('homeImages/hour.jpg');
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.frame_textbox {
    display: flex;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.828);
    background-size: cover;
    width: 100%;
    backdrop-filter: blur(2px);
}

.frame_textbox small {
    font-size: smaller;
}

/* sermonHome */
.sermonHome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 10vh 0;
    background: whitesmoke;
}

.sermonHome h1{
    text-align: center;
}

.sermonCard {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-top: 3vw;
    
}

.sermonCardItem{
    background-color: white;
    width: 20vw;
    padding: 40px;
    border: solid 3px orange;

}

.sermonCardItem:hover{
    zoom: 1.02;
}

.sermonCardItem h6{
    font-weight: 700;
}

.sermonListen{
    color: white;
    padding: 8px 10px;
    background-color: orange;
    text-decoration: none;

}

/* styling for the footer */
.footer_body{
    background-color: black;
    border-top: solid 5px orange;
    display: block;
    text-align: center;
    padding: 50px 20px;
    color: white;
}

.footer{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 0 30px 0;
}

.quick_link{
    display: flex;
    flex-direction: column;
}

.logo_text h6{
    font-weight: bold;
}

.logo_text h6 span{
    font-weight: normal;
}

.logo{
    display: flex;
    text-align: left;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.quick_link h6{
    color: orange;
}

.quick_link a{
    color: white;
    text-decoration: none;
}

.footerIcons{
    padding: 20px 0;
}

.footerIcons img{
    width: 35px;
    margin: 0 10px;
}





/* service fifth page styling */
/* Basic styling for the gallery container */
/* Styling greeting for the image container */
.image-container {
    text-align: center;
    cursor: pointer;
}

.image-container img {
    max-width: 100%;
    height: auto;
    transition: transform 0.2s;
}

/* Styling for the modal */

/* Styling for the fifth page */
/* Gallery Page Styling */
.galleryHead{
    text-align: center;
    padding: 60px 0 20px 0;
}

.gallery-page {
    margin: auto;
    padding: 2% 2% 10vw 2%;
    background-color: white;
    max-width: 90%;
}


.gallery-grid {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Modal building Styling alumni*/
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 24px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    max-width: fit-content;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: red;
    font-size: 60px;
    font-weight: normal;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
    
}

.close-modal:hover {
    color: red;
    transform: rotate(90deg);
}

.caption {
    position: absolute;
    bottom: 20px;
    color: white;
    text-align: center;
    width: 100%;
    padding: 10px;
    background: rgba(0,0,0,0.5);
}








/* Styling for missionStatement services mthe sixth page */

.sixth_page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
    margin: 0;
    background-image: url("homeImages/233558619339_status_21e182a9f51440cab7d5ed4602dfde02.jpg");
    background-size: cover;
}

.sixth_page h3{
    font-weight: 700;
}

.container3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: white;
    padding: 40px 50px;
    border-radius: 8px;
    width: 40%;
    box-shadow: 50px 20px 80px black;
}



.container3 form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

form input {

    margin: 8px 0;
    padding: 10px;
    border: 1px solid #bcbcbc;
    border-radius: 6px;
    width: 100%;
}

form button {
    margin-top: 5px;
    width: 100px;
    background-color: darkblue;
    color: white;
    padding: 5px 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: orange;
}






.card{
    color: black;
    margin: 20px;
}



/* agcm abroad */
.agcm_abroad{
    height: 70vh;
    background-image: url('homeImages/agcm_abroad.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    
}


.abroadText{
    flex-basis: 50%;
    text-align: left;
    color: white;
    padding: 5vh;
}

.abroadP{
    margin-bottom: 30px;
}







/* Styling for the sixth page */

.seventh_page_main{
    padding: 8vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(254, 242, 218);
}

.seventh_page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
}

.seventh_page_main h1{
    text-align: center;
}

.depart {
    background: white;
    width: 25%;
    height: 28%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 5;
    margin: 2%;
    cursor: pointer;
    padding: 50px 0 30px 0;
    min-width: 300px;
    transition: 0.5s;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.079);
}

.depart img{
    width: 100%;
    height: 100%;
    flex-basis: 70%;

}

.depart:hover {
    transform: translateY(-10px);
}


.depart_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    background-size: cover;
    color: rgb(23, 15, 15);
    text-align: center;
    margin: 0;
    width: 100%;
    height: fit-content;
    flex-basis: 30%;
}


.seventh_page_main a {
    text-decoration: none;
    color: black;
}

.depart_text h6 {
    font-weight: bold;
    padding: 0;
    margin: 20px 0 0 0;
    color: black;
}


.depart_text p {
    margin: 5px 5px;
    padding: 0;
    text-wrap: wrap;
    color: rgb(54, 53, 53);
}


/* styling for join page*/

.join {
    background-image: url('homeImages/pngtree-blue-and-orange-abstract-background-design-for-banner-business-picture-image_1372556.jpg');
    background-size: cover;
}

.form1 {
    display: flex;
    flex-direction: column;
    width: 80%;
}

.form1 h3 {
}

.form1 img {
    
}

.form_box {
    display: flex;
    flex-direction: column;
    background-color: white;

}

.form_box h1 {
    margin: 4% 0;
}

.form_box form {
}


.select {

}

.options {
}

.options label {
    
}

.options select {
}

.submit_button input {
    margin: 6% 0;
}



/* pastor product styling for events sermon footer pages*/
.upcoming_events {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.upcoming_events img {
    width: 100%;
    height: 400px;
}

.up {
    z-index: 1;
    position: absolute;
    top: 200px;
    color: white;
}

.event {
    width: 90%;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid gray;
    align-items: center;
    padding: 25px 0;
}

.date1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.date1 h1 {
    font-style: italic;
    color: gray;
    padding: 10px;
}

.date2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 2px;

}

.date2 small {
    color: gray;
}

.view input {
    border: none;
}

.theme h2 {
    font-style: italic;
    font-family: 'Playfair Display';
}

.theme p {
    color: gray;
}

/* .sermon_link */

/* styling for event details */

.eventDetailMain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5% 0 10% 0;
}

.eventDetail {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.eventDetail img {
    width: 100%;
    height: 400px;
}


.eventDetail_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    height: auto;
    padding: 7%;
}

.eventDetail_item img {
    width: 100%;
}

.detail_container {
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin: 0 0 5% 0;
    border-top: 1px solid gray;
    padding-top: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid gray;
}

.details {
    line-height: 5px;
}

.details p {
    color: rgb(99, 99, 99);
}

.details h2 {
    padding: 15px 0;
    color: orange;
}

.details h4 {
    padding: 15px 0 0 0;
    color: orange;
}


/*styling sixth for sermon direction page */

.sermonMain {
    background: rgb(225, 224, 224);
}

.sermon {
    flex-wrap: wrap;
    margin: 5%;
    display: flex;
    justify-content: center;
}

.sermon_link {
    min-width: 300px;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    margin: 15px;

}

.sermon_link:hover {
    background: rgba(255, 166, 0, 0.819);
    color: white;
}

.sermon_link:hover .link_sermon {
    color: orange;
    text-decoration: none;
    font-size: smaller;
    background: white;
    padding: 5px 7px;
    margin: 2px 0;
    border-radius: 5px;
}

.sermon_link h2 {
    font-size: 70px;
    font-weight: lighter;
    padding: 0px;
    margin: 20px 0 0 20px;
}

.sermon_link h3 {
    margin: 0px 30px;
    font-weight: normal;
    text-wrap: nowrap;
}

.sermonText {
    line-height: normal;
    padding: 10px 0;
    margin: 5px 30px;
    text-wrap: wrap;
}


.link_sermon {
    color: white;
    text-decoration: none;
    font-size: smaller;
    background: orange;
    padding: 7px 9px;
    margin: 2px 0;
    border-radius: 5px;
}

.sermon_audio {
    width: 80%;
    margin: 5%;
}

audio {
    width: 80%;
    margin: 5%;
}

audio::-webkit-media-controls-play-button {
    color: orange;
}

video {
    width: 100%;
    margin: 20px 0 100px 0;
}

.depart_text a {
    color: rgb(27, 21, 21);
}

.departText {
    background-color: whitesmoke;
    padding: 10% 5%;
}

.depart_gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 5%;
}

.gallery_depart img {
    width: 400px;
    padding: 20px;
}

.gallery_depart {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.members {
    background-color: whitesmoke;
    padding: 5%;
    text-align: center;
}

.members_group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.member {
    margin: 20px;
    border: 2px solid gray;
    text-align: center;
    line-height: 15px;
}

.member img {
    width: 300px;
}


.members_group1 {
    margin: auto;
    padding: 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgb(222, 221, 221);
}

.member3 {
    background-color: white;
    margin: 20px;
    text-align: center;
    line-height: 5px;
}

.member3 img {
    width: 300px;
}

.member3 a {
    text-decoration: none;
    color: orange;
    font-weight: bold;
}

.blog_head {
    background: whitesmoke;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


}



.blog {
    display: flex;
    padding: 20px 40px;
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
}

.blog_item {
    flex-basis: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    padding: 30px;
    min-width: 400px;
}

.blog_item h5{
    font-weight: bold;
}


.blog_item img {
    border-radius: 20px;
    margin: 20px 0;
}




.blog2 {
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
}

.blog2_item {
    flex-basis: 100px;
    background-color: white;
    padding: 30px;
}


.blog2_item img {
    padding: 40px 0 30px 0;
}

.blog2_item p {
    padding: 10px 0;
}




/* Style sermon footer pastor file_form for the direction_head shopping page link_head event seventh_page */

.shopping {
    padding: 50px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: whitesmoke;
    gap: 20px;
    flex-direction: row-reverse;


}

.shopping_item {
    padding: 20px 20px 20px 20px;
    flex-basis: 300px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 500px;



}

/* ===================================
   WELFARE SECTION STYLING - MODERN DESIGN upcoming
   =================================== */

/* WELFARE HERO SECTION - Homepage */



.btn-welfare {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-welfare-primary {
    background-color: #F9C403;
    color: #1e3c72;
}

.btn-welfare-primary:hover {
    background-color: #FFE082;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 196, 3, 0.3);
}

.btn-welfare-secondary {
    background: transparent;
    color: #F9C403;
    border: 2px solid #F9C403;
}

.btn-welfare-secondary:hover {
    background-color: #F9C403;
    color: #1e3c72;
    transform: translateY(-2px);
}

.welfare-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.welfare-placeholder {
    width: 280px;
    height: 280px;
    background: rgba(249, 196, 3, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F9C403;
    font-size: 3rem;
    border: 3px solid #F9C403;
    animation: float 3s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
/* WELFARE PAGE HERO - MODERN DESIGN */
.welfare-page-hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1a2f5a 100%);
    margin-top: 100px;
    overflow: hidden;
    padding: 60px 20px;
}

.welfare-hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #F9C403;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #FFE082;
    bottom: 100px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: white;
    top: 50%;
    right: 10%;
    animation: float 12s ease-in-out infinite;
}

.welfare-hero-modern-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.welfare-hero-left h1 {
    font-size: 3.5rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, #F9C403, #FFE082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(249, 196, 3, 0.2);
    border: 1px solid #F9C403;
    padding: 10px 20px;
    border-radius: 50px;
    color: #F9C403;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.hero-badge .material-icons {
    font-size: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #d0dff5;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item h4 {
    color: #F9C403;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: #d0dff5;
    font-size: 0.95rem;
}

.btn-cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #F9C403, #FFE082);
    color: #1e3c72;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(249, 196, 3, 0.3);
    border: none;
    cursor: pointer;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 196, 3, 0.4);
}

.hero-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
    animation: imageFloat 3s ease-in-out infinite;
}

.image-accent-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(249, 196, 3, 0.15);
    border-radius: 20px;
    top: 20px;
    left: 20px;
    z-index: 1;
    animation: rotate 20s linear infinite;
}

.image-accent-2 {
    position: absolute;
    width: 550px;
    height: 550px;
    border: 2px solid rgba(249, 196, 3, 0.1);
    border-radius: 20px;
    top: -15px;
    left: -15px;
    z-index: 0;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.welfare-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.welfare-scroll-indicator span {
    font-size: 0.9rem;
}

.welfare-scroll-indicator .material-icons {
    animation: slideDown 1.5s ease-in-out infinite;
}

@keyframes slideDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes bounce {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* WELFARE INTRODUCTION - MODERN */
.welfare-intro-modern {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.intro-content-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text-side h2 {
    color: #1e3c72;
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-text-side p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.modern-scripture-block {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.05), rgba(249, 196, 3, 0.05));
    border-left: 4px solid #F9C403;
    padding: 30px;
    border-radius: 12px;
    margin-top: 35px;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #F9C403;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: Georgia, serif;
}

.modern-scripture-block p {
    color: #666;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.modern-scripture-block footer {
    color: #999;
    font-size: 0.95rem;
    font-style: normal;
}

.intro-image-side {
    position: relative;
}

.intro-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(30, 60, 114, 0.15);
    object-fit: cover;
}

/* WELFARE SERVICES - MODERN */
.welfare-services-modern {
    padding: 80px 20px;
    background: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-header h2 {
    color: #1e3c72;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.services-header p {
    color: #999;
    font-size: 1.1rem;
}

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

.welfare-services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.service-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(249, 196, 3, 0.1);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 60, 114, 0.15);
}

.service-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-modern:hover .service-card-image img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.6), rgba(249, 196, 3, 0.4));
    transition: all 0.4s ease;
}

.service-card-content {
    padding: 35px;
}

.service-icon-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F9C403, #FFE082);
    border-radius: 12px;
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-icon-modern .material-icons {
    font-size: 32px;
}

.service-card-modern h3 {
    color: #1e3c72;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-scripture {
    color: #F9C403;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-card-modern > p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
}

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

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.service-list .material-icons {
    color: #F9C403;
    font-size: 20px;
    flex-shrink: 0;
}

/* WELFARE MISSION & VISION - MODERN */
.welfare-mission-modern {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 80px 20px;
    color: white;
}

.mission-vision-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-vision-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 45px;
    border-radius: 16px;
    border: 1px solid rgba(249, 196, 3, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.mv-icon {
    font-size: 3.5rem;
    color: #F9C403;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.mission-vision-card h3 {
    color: #F9C403;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mission-vision-card p {
    color: #e8f0ff;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* WELFARE TESTIMONIALS */
.welfare-testimonial {
    padding: 80px 20px;
    background: #f8f9fa;
}

.welfare-testimonial h2 {
    text-align: center;
    color: #1e3c72;
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    border-left: 4px solid #F9C403;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating .material-icons {
    color: #F9C403;
    font-size: 20px;
}

.testimonial-text {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: #1e3c72;
    font-weight: 600;
    font-size: 0.95rem;
}

/* WELFARE FORM - MODERN */

.welfare-main{
    background-image: url("homeImages/welfare1.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    min-height: 700px;
}



.welfare-main-content{
    margin-left: 10vw;
}

.welfare-main-content h1{
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px black;
}

.welfare-button{
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.btn-welfare1{
    background-color: orange;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-welfare1:hover{
    background-color: darkorange;
    transform: translateY(-2px);
}

.btn-welfare2{
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-welfare2:hover{
    background-color: white;
    color: orange;
    transform: translateY(-2px);
}

/* ===================================
   END WELFARE STYLING - MODERN
   =================================== */

.shopping_item img {
    max-height: 350px;
}

.product_color span {
    color: red;
}

.shopping_item p {
    color: orangered;

}

.checkout_main {
    background-color: gray;
}

.checkout {
    display: flex;
    flex-direction: row;
    padding: 100px;

}

.checkout_item_1 {
    flex-basis: 40%;
    background: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;


}

.checkout_item {
    flex-basis: 60%;
    background: white;
}

.product_color {
    line-height: 2px;
}

.color_choice {
    display: flex;
    flex-direction: row;
}

.choice {
    padding: 10px 30px 10px 0;
    line-height: 2px;
}

.lineout {
    width: 90%;
    border-bottom: 1px solid rgba(128, 128, 128, 0.589);
    text-align: center;
    margin: 20px 0 20px 0;
}

.product_size select {
    padding: 2px 10px;
    margin: 0 10px;
}

.product_color p {
    font-weight: bold;
}

.buy_color_orange {
    width: 50%;
    color: white;
    background-color: orange;
    padding: 10px;
    border: none;
}

.buy_color_orange:hover {
    background-color: rgb(186, 122, 5);
}

.choice label {
    padding: 10px 0;
}


.operationSuccess {
    padding: 12px 15px;
    text-wrap: nowrap;
    color: black;
    border-radius: 5px;
    background-color: white;
    border-left: 10px solid limegreen;
    text-align: center;
    position: relative;
    animation-name: success_animation;
    animation-duration: 100ms;
    animation-iteration-count: 5;
}

@keyframes success_animation {
    0% {
        left: 0px;
        top: 0px;
    }

    50% {
        left: 50px;
        top: 0px;
    }

    100% {
        left: 0px;
        top: 0px;
    }
}

.operationFail {
    padding: 5px 20px;
    border-radius: 5px;
    background-color: red;
    color: white;
    text-align: center;
    position: relative;
    animation-name: fail_animation;
    animation-duration: 100ms;
    animation-iteration-count: 4;
}

@keyframes fail_animation {
    0% {
        left: 0px;
        top: 0px;
    }

    50% {
        left: 50px;
        top: 0px;
    }

    100% {
        left: 0px;
        top: 0px;
    }
}

.statusMessage_on {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: white;
    padding: 10px 2px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(105, 235, 98, 0.39);
    border: solid 2px rgb(8, 169, 13);
    color: rgb(5, 159, 5);
    text-align: center;
    font-size: small;

    animation: toastShake 0.6s ease-in-out 1,
                fadeOut 0.4s ease forwards 3s;

}

    @keyframes toastShake {
        0%   { transform: translate(-50%, -50%) translateX(0); }
        10%  { transform: translate(-50%, -50%) translateX(-6px); }
        20%  { transform: translate(-50%, -50%) translateX(6px); }
        30%  { transform: translate(-50%, -50%) translateX(-6px); }
        40%  { transform: translate(-50%, -50%) translateX(6px); }
        50%  { transform: translate(-50%, -50%) translateX(-4px); }
        60%  { transform: translate(-50%, -50%) translateX(4px); }
        70%  { transform: translate(-50%, -50%) translateX(-2px); }
        80%  { transform: translate(-50%, -50%) translateX(2px); }
        100% { transform: translate(-50%, -50%) translateX(0); }
    }

    @keyframes fadeOut {
        to {
            opacity: 0;
            top: 80px;
        }
    }


.statusMessage_off {
    display: none;
    position: fixed;
    top: 50px;
    left: 45%;
    z-index: 1;

}

.form_box textarea {
    width: 100%;
    height: 100px;
    max-width: 100%;
    min-width: 100%;
    overflow-y: scroll;
    border-radius: 5px;
    border: 1px solid rgb(197, 194, 194);
}

.donateBox {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: whitesmoke;
    padding: 100px 10px;
}

.donateHead {
    position: absolute;
    top: 20%;
    text-align: center;
    color: white;
    z-index: 1;
    width: 100%;
    text-shadow: 2px 2px 10px black;
}

.donate {
    display: flex;
    flex-direction: column;
    width: 500px;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 500px;
    padding: 20px;
    box-shadow: 2px 2px 10px black;
    background-color: white;
    border-radius: 20px;

}

.donate form {
    width: 90%;
}

.donateEach {
    padding: 10px;
}

.donateEach h2 {
    color: orange;
}

.donateImage {
    height: 400px;
}

.blogDetail {
    padding: 100px 0 40px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.blogIntro {
    padding: 30px 0;
    display: flex;
    gap: 20px;

}

.blogIntro p {
    letter-spacing: large;
}

.blogHead {
    width: 65%;
}

.blogHead h1 {
    text-wrap: wrap;
    text-align: center;
    font-weight: bold;
}

.blogImage {
    padding: 20px;
}

.blogImage img {
    width: 100%;
    border-radius: 40px;

}

.blogText {
    width: 70%;
    white-space: pre-line;
}

.blogText p {
    padding: 80px 0;
    line-height: 2.5;
    font-size: larger;
    text-align: justify;

}

.blog3 {
    display: flex;
    padding: 20px 0;
    justify-content: flex-start;
    gap: 15px;
    overflow: auto;
}

.blog_item3 {
    flex-basis: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: white;
    padding: 30px;
    min-width: 150px;
    height: 200px;
    border-radius: 20px;
}


.blog_item3 img {
    border-radius: 20px;
    margin: 5px 0;
}

.otherBlogs {
    width: 100%;
    padding: 40px 0;
    background: whitesmoke;

}

.blog_item3 a {
    text-decoration: underline;
    color: blue;

}

.updateBack {
    background: whitesmoke;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.eventUpdate {
    background: white;
    margin: 5px 0;
    display: flex;
    padding: 20px;
    gap: 20px;


}


.dateUpdate {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;

}

/* footer pastor footer  */
.group1 h3 {
    padding: 10px 20px;
    background: rgb(180, 179, 179);
    color: white;
    border-radius: 5px;
}

.updateBack img {
    height: 300px;
}

.up h1 {
    text-align: center;
    align-items: center;
}

.newUpdateColor {
    background-color: limegreen;
    padding: 2px 8px;
    border-radius: 10px;
    color: white;
    margin: 3px 0;
    text-align: end;

}

.logo .logo_text h4 span {
    color: white;
}

.group1 {
    padding: 8px;
}

.themeUpdate {
    line-height: normal;
}


/* suggestion service sermon design page footer*/
.suggestion {
    background-image: url("homeImages/R.jpg");
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.formSuggest {
    width: 60%;
    background-color: white;
    margin: 40px;
}

.suggestTitle {
    padding: 5vw;
    background-color: #002147;
    color: white;
    border-bottom: solid 8px orange;
}

.suggestTitle h2 {
    font-weight: normal;
    font-size: x-large;
}

.form_box_suggest form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 10vh;

}

.suggestItem {
    display: flex;
    flex-direction: column;
    gap: 12px;

}

.suggestItem textarea {
    width: 100%;
    max-width: 100%;
    height: 70px;
    min-height: 50px;
    border: solid 1.5px rgba(63, 63, 63, 0.628);
}

.submit_button2 {
    width: 30%;
    color: white;
}

.submit_button2 input {
    padding: 15px 30px;
    background-color: #002147;
    transition: 1s;
    color: white;

}

.submit_button2 input:hover {

    background-color: #0650a5;

}

.pastorBackground{
    background: rgb(62, 62, 62);
    display: flex;
    justify-content: center;
    align-items: center;
}

.pastorInfo h5{
    color: orange;
}

.pastorInfo h2 {
    color: white;
}

.pastorContact {
    color: white;
    padding: 0 0 30px 0;
    border-top: solid 2px orange;
    width: fit-content;
}

/* head pastor footer blog profile page design */

.headPastorProfile{
    padding: 10vw 5vw;
    display: flex;
    flex-direction: row;
    gap: 5vw;
}

.pastorProfileHeading{
    display: flex;
    flex-direction: column;
}

.pastorInfoMobile h5{
    display: none;
}



.headPastorProfile p{
    background: white;
    line-height: large;
}

.pastorProfileHeading1{
    background-image: url('homeImages/pastor background.jpg');
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    line-height: 1px;
    padding: 10vw 0;

}

.pastorProfileHeading1 h2{
    font-weight: lighter;
}

.pastorProfileHeading1 h1{
font-weight: bolder;
}

.buildingCover{
    height: 20vw;
    background-image: url('homeImages/buildingc1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.buildingCover h1{
    font-size: 5vw;
    font-weight: bold;
    padding: 5px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.building_gallery{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    margin: 40px;
}

.building_gallery_group{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-shrink: 5;
}

.building_gallery_group img{
    padding: 20px;
    width: 100%;
    
}

.building_link a{
    color: white;
    padding: 1vw;
}



/* testimony gallery footer styling */

.testimonyMain{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.testimonyMain p{
    text-align: center;
}

.testimonyBackground{
    height: 100vh;
    margin: 0;
    background: linear-gradient( to bottom , rgb(71, 202, 200),whitesmoke);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonyHeading{
    width: 70%;
    text-align: center;
    padding: 0 0 2vw 0;
}

.form_box_testimony{
    width: 85%;
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
}

.testimonyHero{
    position: fixed;
    top: 0;
    left: 0;
    font-weight: bolder;
    padding: 20px;
}

.testimonyItem{
    display: flex;
    justify-content: center;
    align-items: right;
    flex-direction: column;
    padding: 1vw 0;
}

.testimonyItem label{
    padding: 8px 0;
    color: rgb(0, 158, 155);
    font-size: large;
    font-weight: bold;

}

.testimonyItem textarea{
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    min-height: 30vh;
    max-height: 50vh;
    border: none;
    border-bottom: solid 3px rgb(0, 158, 155);
}

.testimonyItem textarea:focus{
    border-radius: 5px;
    outline: solid 2px rgb(0, 158, 155);
}

.testimony_button input{
    color: white;
    padding: 8px;
    background-color: rgb(0, 158, 155);
    border: none;
    max-width: 100px;

}

.fourth_page img{
    width: 12%;
}

.buildingAll{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4vw 0
}

.building_gallery h1{
    text-align: center
}

.buildingText{
    display: ;
    width: 80%;
    text-align: center;
}

/* alumni corner */
.alumni_corner{
    background: rgb(252, 248, 241);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5vw 0;
}

.alumniImages{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: scroll;
    scrollbar-width: none;

}



.alumniImages::-webkit-scrollbar {
    display: none;
}

.alumniImages img{
    width: 150px;
    height: 150px;
    margin: 0 20px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.alumniLink{
    padding: 3vw;
}

.link_color_marron{
    padding: 10px 30px;
    color: white;
    background-color: rgb(44, 10, 10);
    text-decoration: none;
    transition: 0.5s ease-in-out;
}

.alumni_corner p{
    max-width: 50vw;
    text-align: center;
}

.link_color_marron:hover{
    background-color: red;
}

/* Executive Section Styling */
.executives-section {
    padding: 80px 0;
    background-color: #f9fafc;
}

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

.container h1{
    padding: 40px 0 40px 0;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.executives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.executive-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

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

.card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.executive-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.executive-card:hover .card-overlay {
    opacity: 0.9;
}

.card-content {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.executive-name {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.executive-position {
    color: #e74c3c;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.executive-contact {
    color: #7f8c8d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.executive-contact::before {
    content: "📞";
    margin-right: 8px;
}

.view-all-container {
    text-align: center;
    margin-top: 30px;
}

.view-all-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
}

.view-all-button:hover {
    background-color: transparent;
    color: #2c3e50;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .executives-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .card-image {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .executives-grid {
        grid-template-columns: 1fr;
    }
}


























@media screen and (max-width:1000px) {
    .direction_head {
        display: none;

    }
}



/* depart update */

/* footer gallery link ser_frame*/







@media screen and (max-width:850px) {

    .welfare-main-content{
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        text-wrap: wrap;
    }

    .welfare-main-text p{
        text-wrap: wrap;
        text-align: center;
    }

    .welfare-main-content h1{
        max-width: 80%;
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 10px black;
        text-wrap: wrap;

    }


    .third_image img {
        max-width: 280px;
        max-height: 280px;
        border-radius: 8%;
    }


    h1{
        font-size: 2.2rem;
    }

    .second_page_mission {

        padding: 50px 70px 60px 50px;
    }

    .carousel_mobile{
        display: block;
    }

    .first_page{
        height: fit-content;
        
    }

    


    .mobileImage{
        text-align: center;
        display: flex;
        height: 100vh;
        width: 100%; 
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        background-image: url("homeImages/_MG_0051.jpg");
        background-size: cover;
        color: white;
       
    }


    .carousel-caption p {
        display: none;
    }


    .carousel_desktop{
        display: none;
    }

    .carousel-caption h1 {
        text-wrap: wrap;
        font-size: large;
    }

    .carousel-caption a {
        padding: 5px 10px;
    }

    .second_page_mission {
        display: block;
        text-align: center;
    }

    .direction_head {
        display: none;
    }

    .third_page {
        display: block;

    }

    .fourth_page{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-wrap: wrap;
    }

    .fourth_page img{
        width: 20%;
    }

    .greeting h1{
        text-wrap: wrap;
    }

    .mission{
        display: flex;
        flex-direction: column;
    }

    .middle_line{
        display: none;
    }

    .link_head_text small {
        display: none;
    }

    .link_head {
        height: 90px;
    }

    .link_head_text h4 {
        font-size: small;
    }

    .program_container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .third_image img {
        width: 500px;
        height: 500px;
        border-radius: 8%;
    }

    .third_text {

        width: 400px;
        height: 200px;
        border-radius: 40px;
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .third_text a{
        display: none;
    }

    .countBanner{
        position: absolute;
        top: 16px;
        right: 16px;
        rotate: 0deg;
        background-color: red;
        padding: 2px 10px;
        overflow: hidden;
        border-radius: 10px;
        


    }

    .countBanner span{
        background-color: red;
        color: white;
    }


    .countText{
        font-size: 20px;
    }

    .countBox{
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin: 0;
        overflow: hidden;

    }

    .countBox h1 {
        font-size: 100px;
        margin: 0;
    }


    .control {
        display: none;
    }

    .mobile_view_text {
        display: none;
    }

    .seventh_page_main {
        display: block;
    }

    .seventh_page {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-wrap: wrap;
        gap: 10px;
        padding: 10%;
    }

    .depart {
        width: auto;
        margin: 10%;

    }

    
    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

 /* styling for sermonHome footer the join page*/

    .sermonHome{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .sermonCard{
        display: block;
    }

    .sermonCardItem{
        width: 60%;
        height: fit-content;
        
    }


    .form1 {
        width: 90%;

    }


    .event {
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-top: 1px solid gray;
        align-items: center;
        line-height: 1px;
        padding: 0 0 50px 0;
    }

    .date1 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }


    .date1 h1 {
        font-size: 70px;
        font-weight: normal;
        font-style: italic;
        color: gray;
    }

    .date2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .date2 small {
        color: gray;
    }

    .view input {
        border: none;
    }

    .theme {
        padding: 0 0 20px 0;

    }

    .theme p {
        display: none;
        color: gray;
    }

    .blog {
        overflow: scroll;
    }

    .blog_item {
        flex-shrink: 0;
    }

    .checkout_main {
        width: 100%;
    }

    .checkout {
        display: flex;
        flex-direction: column;
        padding: 100px;
        min-width: 300px;

    }

    .choice {
        display: flex;
        flex-direction: column;
    }

    .choice label {
        padding: 10px 0;
    }

    .donateBox {
        display: block;
        text-align: center;
    }

    .donateHead {
        top: 50px;
    }

    .donate {
        width: 400px;
        text-align: center;
        align-items: center;
        align-self: center;
    }


    /* missionStatement styling */

        
    .missionStatement {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 20px;
        position: relative;
    }

    .missionStatement h1 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 15px;
    }

    .missionStatement h1 span {
        color: #e74c3c;
        display: block;
        font-size: 1.8rem;
        font-weight: 400;
        margin-top: 5px;
    }

    .mission-content {
        width: 100%;
        position: relative;
    }

    .mission-excerpt {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #555;
        margin-bottom: 0;
    }

    .mission-full {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: left;
    }

    .mission-full p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #555;
        margin-top: 15px;
    }

    .mission-full h4 {
        color: #e74c3c;
        font-size: 1.2rem;
        margin-top: 20px;
        font-weight: 500;
        font-style: italic;
    }

    .read-more-btn {
        background: transparent;
        border: 2px solid #e74c3c;
        color: #e74c3c;
        padding: 10px 25px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 15px;
    }

    .read-more-btn:hover {
        background: #e74c3c;
        color: white;
    }

    .arrow {
        transition: transform 0.3s ease;
        font-size: 1.2rem;
    }

    /* Expanded state */
    .missionStatement.expanded .mission-full {
        max-height: 500px; /* Adjust based on content length */
    }

    .missionStatement.expanded .arrow {
        transform: rotate(180deg);
    }

    .missionStatement.expanded .read-more-btn {
        background: #e74c3c;
        color: white;
    }

    @media (max-width: 768px) {
        .missionStatement {
            padding: 30px 15px;
        }
        
        .missionStatement h1 {
            font-size: 2rem;
        }
        
        .missionStatement h1 span {
            font-size: 1.5rem;
        }
        
        .mission-excerpt, .mission-full p {
            font-size: 1rem;
        }
    }

    .container3 {
        width: 80%;
    }

    .donateBox {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        background-color: whitesmoke;
        width: fit-content;
        gap: 20px;
    }

    .donateImage {
        height: 200px;
    }

    .donateHead {
        top: 100px;
    }

    .detail_container {
        display: block;
        text-align: center;
    }

    .sermon_audio {
        display: block;
        text-align: center;
    }

    .blogHead h1 {
        font-size: 4vh;
    }

    .blogIntro p {
        font-size: x-small;
        letter-spacing: large;
    }

    .blogIntro {
        text-align: center;
        display: block;

    }

    .blogIntro img {
        width: 30px;
        height: 30px;

    }

    .services {
        display: flex;
        flex-direction: column;
        height: auto;
    }
/* 
    link_head */

    .ser_frame {
        display: block;
        height: fit-content;
    }

    .frame_box {
        height: 70vh;
    }

    .frame_box1 {
        height: 90vw;
    }

    .frame_box2 {
        height: 90vw;
    }

    .frame_box3 {
        height: 90vw;
    }

    .suggestion {
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .formSuggest{
        width: 100%;
        height: 100%;
        margin: 0;
    }

    .suggestItem{
        height: 100%;
    }

    .suggestItem textarea{
        height: 20vh;
    }

    .suggestTitle h2{
        font-weight: bold;
    }

    .submit_button2 {
        width: 100%;
    }

    .suggestTitle {
        text-align: center;
    }

    .suggestItem {
        text-align: center;
    }

    .sermonCard {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        width: 100%;
    }

    
    /* pastor building front view page form_box */
    .pastorBackground{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding: 40px;
    }

    .pastorInfoSide{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .pastorInfo{
        text-align: center;
    }

    .pastorInfo h5{
        display: none;
    }

    .pastorInfoMobile h5{
        display: block;
        color: orange;
    }










    .readMore2{
        margin: 20px 0;
        display: block;
    }
        
    .contact_pastor{
        margin-top: 10px;
        color: white;

    }

    .headPastorProfile{
        display: block;
    }

    .headPastorProfile img{
        width: 100%;
    }

    .pastorProfileHeading1 h2{
        font-size: small;
    }

    .pastorProfileHeading1 h1{
        font-size: xx-large;
    }

    .building_gallery{
        display: block;
    }

    .building_gallery_group{
        display: block;
    }

    .testimonyMain{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-height: 100%;
        min-height: fit-content;
        height: 100%;
        padding: 20vw 0;
    }

    .testimony_button{
        text-align: center;
    }

    .footer{
        display: block;
        align-items: center;
    }

    .logo{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .form_box form{
        padding: 0 0 30px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .form_box h2{
        font-weight: bold;
        text-align: center;
        font-size: 30px;
        padding: 20px  0;
    }

    .theme h2 {
        font-style: italic;
        font-family: 'Playfair Display';
    }

        
    .buildingCover{
        padding-top: 30px;
        height: 40vw;
    }



    /* agcm abroad depart*/
    .abroadText1{
        display: none;
    }

    .abroadText{
        padding: 1vw;
        flex-basis: 80%;
    }

    .agcm_abroad{
        align-items: flex-end;
        padding-bottom: 10vw;
    }

    .alumniImages{
        overflow-x: hidden;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .alumni_corner p{
        max-width: 80vw;
        text-align: center;
    }

    .alumni_corner{
        padding: 15vw 0;
    }


/* Welfare Hero Section */
.welfare-hero {
    background-image: url('homeImages/welfare.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


/* WELFARE FORM SECTION building- Join Page Style */
.welfare-form-section {
    background: linear-gradient(135deg, #eae166 0%, #764ba2 100%);
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welfare-form-container {
    width: 100%;
    max-width: 900px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(40px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.form-header-welfare {
    background: linear-gradient(135deg, #002366, #001540);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.logo-badge-welfare {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.logo-badge-welfare .material-icons {
    font-size: 45px;
    color: #FFD700;
}

.form-header-welfare h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.form-header-welfare h1 span {
    color: #FFD700;
}

.form-header-welfare p {
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.form-body-welfare {
    padding: 40px;
}

.welfare-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.input-group-welfare {
    position: relative;
}

.full-width-welfare {
    grid-column: 1 / -1;
}

.input-group-welfare label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-control-welfare {
    width: 100%;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: #1e293b;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-control-welfare:focus {
    outline: none;
    border-color: #002366;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 35, 102, 0.1);
}

.textarea-welfare {
    resize: vertical;
    min-height: 120px;
}

select.form-control-welfare {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23002366%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 10px auto;
    padding-right: 40px;
}

.btn-submit-welfare {
    grid-column: 1 / -1;
    background: linear-gradient(90deg, #002366, #003399);
    color: white;
    border: none;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit-welfare:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 35, 102, 0.3);
    background: linear-gradient(90deg, #003399, #002366);
}

/* Responsive */
@media (max-width: 768px) {
    .welfare-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-body-welfare {
        padding: 25px;
    }

    .form-header-welfare {
        padding: 30px 20px;
    }

    .form-header-welfare h1 {
        font-size: 1.5rem;
    }
}

/* Typewriter Animation */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blinkingCursor {
    0%, 49% {
        border-right: 4px solid white;
    }
    50%, 100% {
        border-right: transparent;
    }
}

.welfare-word {
    overflow: hidden;
    white-space: nowrap;
    max-width: fit-content;
    animation: typewriter 5s steps(50) 1s both, blinkingCursor 0.75s steps(1) infinite 1s;
    border-right: 4px solid white;
    padding-right: 10px;
}

.welfare-word span {
    animation: none;
}





























}