/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary: #06102bd7;
    --secondary: #c0262c;
    --cac-primary: #06102bd7;
    --cac-bg: #f6f3ee;
    --cac-white: #ffffff;
    --cac-text-dark: #292929;
    --cac-text-light: rgba(15, 30, 88, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: #f6f3ee;
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    top: 0;
    left: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.right-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 140px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    text-decoration: none;
    color: #191919;
    position: relative;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary);
    bottom: -5px;
    left: 0;
    transition: .3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color:var(--secondary);
}

.dropdown {
    position: relative;
}

.submenu {
    display: none;
    list-style: none;
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: 170px;
    padding: 8px 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.submenu li {
    padding: 8px 18px;
}

.submenu a {
    font-size: 14px;
    white-space: nowrap;
}

.submenu a::after {
    display: none;
}

.dropdown:hover .submenu {
    display: block;
}

.dropdown:hover i {
    transform: rotate(180deg);
    transition: 0.3s ease-in-out;
}

.dropdown i {
    transition: 0.3s;
    font-size: 10px;
    margin-left: 4px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 9999;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #111;
    transition: 0.4s;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.newhere-btn {
    background: var(--secondary);
    color: #fff;
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s;
    font-weight: 600;
    white-space: nowrap;
}

.newhere-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ================= HERO ================= */
.hero {
    height: 100vh;
    position: relative;
    margin-top: 10;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 3px solid  #c0262c;
}



.hero-content {
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
    /* color: #fff; */
    max-width: 600px;
    /* z-index: 2; */
}

.hero-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-top .line {
    width: 40px;
    height: 3px;
    background: var(--secondary);
}


.bttn {
    padding: 10px 24px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    transition: .3s;
    font-size: 13px;
    font-weight: 500;
    margin-right: 12px;
    margin-top: 20px;
}

.primari {
    background: #c0262c;
    color: #111;
    border: 1px solid #fff;
}

.primari:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.secondari {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.secondari:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

/* ================= CARDS ================= */
.cards {
    margin-top: -40px !important;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.cards .row {
    display: flex;
    flex-wrap: wrap;
}

.cards .col-md-4 {
    display: flex;
    margin-bottom: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card img {
    max-width: 100%;
    border-radius: 12px;
    width: 80%;
    height: auto;
}

.card-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-text p {
    font-size: 14px;
    color: #3c3c3c;
    font-weight: 500;
    margin-bottom: 12px;
}

.card-link {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link i {
    font-size: 12px;
    transition: .3s;
}

.card-link:hover {
    color: var(--secondary);
}

.card-link:hover i {
    transform: translateX(6px);
}



/* ==============================================HERO SLIDER ==================================================================*/
.hero-main-slide {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* SLIDES */
.hero-slide {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
}




.hero-top h5 {
    font-size: 14px;
    letter-spacing: 3px;
    margin: 0px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 10px;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.bttn {
    padding: 15px 35px;
    text-decoration: none;
    border: 2px solid #fff;
    color: #fff;
    transition: 0.4s;
    font-weight: 600;
}

.primari {
    background: #fff;
    color: #000;
}

.primari:hover {
    background: #c0262c;
    color: #fff;
}

.secondari:hover {
    background: #fff;
    color: #000;
}

/* DOTS */
.hero-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.hero-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.4s;
    border: 2px solid #c0262c;
}

.hero-dot.active {
    opacity: 1;
    background: #721c24;
    transform: scale(1.2);
}

/* RESPONSIVE */
@media(max-width:768px) {

    .hero-content {
        left: 5%;
        width: 90%;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 160px;
    }

}
/* ================= FOOTER ================= */
/* ==========================
   CHURCH FOOTER
========================== */
/* ==========================
   FOOTER MAIN
========================== */

.church-footer {
    background: #08132d;
    color: #fff;
    position: relative;
    padding: 80px 0 0;
    overflow: hidden;
}

/* TOP BORDER */

.church-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--secondary),
            #dc3545);
}

/* ==========================
   FOOTER GRID
========================== */

.footer-wrapper {
    display: grid;

    grid-template-columns:
        minmax(280px, 2fr) minmax(200px, 1.2fr) minmax(170px, 1fr) minmax(170px, 1fr) minmax(170px, 1fr);

    gap: 40px;
    padding-bottom: 55px;
    align-items: flex-start;
}

/* ==========================
   COLUMN FIX
========================== */

.footer-column {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

/* ABOUT */

.footer-about {
    max-width: 420px;
}

/* ==========================
   LOGO
========================== */

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #fff;
}

.footer-about-text {
    color: rgba(255, 255, 255, .75);
    line-height: 28px;
    font-size: 15px;
    margin-bottom: 28px;

    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ==========================
   TITLES
========================== */

.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: var(--secondary);
    border-radius: 50px;
}

/* ==========================
   MENU
========================== */

.footer-menu,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li,
.footer-links li {
    margin-bottom: 16px;
}

/* MENU LINKS */

.footer-menu a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: .3s ease;
    display: inline-block;
    position: relative;
    font-size: 15px;

    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: .3s ease;
}

.footer-menu a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-menu a:hover::after {
    width: 100%;
}

/* ==========================
   CONTACT LINKS
========================== */

.footer-links li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
}

/* ICON */

.footer-links i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
    font-size: 16px;

    flex-shrink: 0;
}

.footer-links li:hover i {
    background: var(--secondary);
    color: #fff;
    transform: scale(1.08);
}

/* TEXT */

.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    line-height: 1.8;
    font-size: 15px;
    transition: .3s ease;

    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.footer-links a:hover {
    color: #fff;
}

/* ==========================
   SOCIAL ICONS
========================== */

.footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
}

.footer-social-icons a i {
    font-size: 18px;
}

.footer-social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* ==========================
   FOOTER BOTTOM
========================== */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    padding: 25px 15px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    line-height: 1.8;
}

/* ==========================
   LARGE LAPTOP
========================== */

@media (max-width: 1199px) {

    .footer-wrapper {
        grid-template-columns:
            repeat(3, 1fr);

        gap: 35px;
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {

    .church-footer {
        padding-top: 70px;
    }

    .footer-wrapper {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-logo {
        font-size: 28px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {

    .church-footer {
        padding-top: 60px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-logo {
        font-size: 26px;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .footer-about-text {
        font-size: 14px;
        line-height: 26px;
    }

    .footer-social-icons {
        justify-content: flex-start;
    }

    .footer-social-icons a {
        width: 46px;
        height: 46px;
    }

    .footer-links i {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}
/* ================= CONTAINER & UTILITY ================= */


/* ================= REUSABLE CSS ================= */
.txt-p {
    font-style: normal;
    font-weight: 500;
    color: rgba(15, 30, 88, 0.7);
    font-size: 16px;
    line-height: 24px;
}

/* ================= WELCOME SECTION ================= */
.cac-welcome-section {
    background-color: var(--cac-bg);
    padding: 80px 0;
}

.cac-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.cac-col-left {
    flex: 1;
    min-width: 280px;
}

.cac-col-right {
    flex: 1;
    min-width: 280px;
}

.cac-welcome-content {
    max-width: 550px;
}

.cac-welcome-subtitle {
    color: var(--cac-primary);
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.cac-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--cac-primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.cac-service-times {
    background: var(--cac-white);
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 25px 0;
    /* border-left: 4px solid var(--secondary); */
}

.cac-service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--cac-primary);
    margin-bottom: 15px;
}

.cac-service-item {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333232;
    display: flex;
    align-items: center;
}

.cac-service-item i {
    width: 24px;
    color: var(--secondary);
    margin-right: 8px;
}

.cac-service-age {
    font-size: 12px;
    color: #888;
    margin-left: 5px;
}

.cac-buttons-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cac-images-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.cac-image-top {
    width: 100%;
    margin-bottom: 20px;
}

.cac-image-top img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
}

.cac-image-bottom-left {
    width: 50%;
    margin-top: -185px;
    margin-left: -130px;
    position: relative;
    z-index: 2;
}

.cac-image-bottom-left img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    display: block;
}

/*=========================== bg-image section css start================================= */
.bg-img-section {
    position: relative;
    background-image: url("../images/bg-image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    overflow: hidden;
}

/* WHITE OVERLAY */
.bg-img-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to bottom,
            rgb(255, 255, 255) 0%,
            rgba(255, 255, 255, 0.905) 35%,
            rgba(255, 255, 255, 0.67) 70%,
            rgba(255, 255, 255, 0.637) 100%);

    z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.bg-img-section>* {
    position: relative;
    z-index: 2;
}
/*=========================== bg-image section css start================================= */
/* ================= MINISTRY SECTION ================= */


/* HEADER */
.ca-ministry-header-wrapper {
    text-align: center;
}

.ca-ministry-header-content {
    max-width: 1000px;
    margin: 0 auto;
}


.ca-ministry-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    /* center alignment */
    gap: 15px;
}

.ca-ministry-header-subtitle {
    color: var(--primary);
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.ca-ministry-header-line {
    width: 40px;
    height: 3px;
    background: var(--secondary);
    display: inline-block;
}



.cac-main-title {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
}

.ca-ministry-header-text {
    color: var(--primary);
    font-size: 16px;
    line-height: 26px;
}

/* GRID */
.ca-ministry-grid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
}

.ca-ministry-grid-col {
    flex: 1;
    min-width: 280px;
    max-width: calc(33.333% - 20px);
}

/* CARD */
.ca-ministry-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.ca-ministry-card {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.ca-ministry-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* IMAGE */
.ca-ministry-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .6s ease;
}

/* ZOOM */
.ca-ministry-card:hover .ca-ministry-image {
    transform: scale(1.1);
}

/* DEFAULT BLACK OVERLAY */
.ca-ministry-image-box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.788),
            transparent);
    z-index: 1;
    transition: .5s ease;
}

/* HOVER FULL OVERLAY */
/* .ca-ministry-card:hover .ca-ministry-image-box::before {
    height: 100%;
    background: rgba(0, 0, 0, 0.152);
} */

/* CONTENT */
.ca-ministry-overlay-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    z-index: 2;
}

/* TITLE DEFAULT SHOW */
.ca-ministry-overlay-title {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* HIDE DESCRIPTION + BTN */
.ca-ministry-overlay-desc,
.ca-ministry-overlay-btn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .4s ease;
}

/* SHOW ON HOVER */
.ca-ministry-card:hover .ca-ministry-overlay-desc,
.ca-ministry-card:hover .ca-ministry-overlay-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ca-ministry-overlay-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 12px 0;
}

.ca-ministry-overlay-btn {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ca-ministry-overlay-btn i {
    transition: .3s;
}

.ca-ministry-overlay-btn:hover i {
    transform: translateX(5px);
}

/* RESPONSIVE */
@media(max-width:768px) {
    .ca-ministry-grid-col {
        max-width: 100%;
    }

    .ca-ministry-image {
        height: 280px;
    }
}

/* ================= RECENT MESSAGES / WELCOME AREA ================= */


.ca-welcome-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.ca-welcome-left {
    flex: 1;
    min-width: 280px;
}

.ca-welcome-right {
    flex: 1.2;
    min-width: 320px;
}

.ca-welcome-text-box {
    max-width: 550px;
}

.ca-welcome-heading-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ca-welcome-heading-line {
    width: 40px;
    height: 3px;
    background: #c0262c;
}

.ca-welcome-heading-subtitle {
    color: var(--cac-primary);
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}



.ca-welcome-paragraph {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: rgba(15, 30, 88, 0.7);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
}

.ca-video-card {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ca-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 55px rgba(0, 0, 0, 0.2);
}

.ca-video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 24px;
}

.ca-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.news-btn {
    background: var(--secondary);
    color: #fff;
    padding: 9px 18px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s;
    font-weight: 600;
    white-space: nowrap;
}

.news-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ================= ABOUT page start css ================= */
.abt-main-sec {
    background: #f6f3ee;
    overflow: hidden;
}

.abt-left-sticky {
    position: sticky;
    top: 60px;
}

.abt-small-title {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--primary);
    margin: 0;
    font-weight: 600;
}

.abt-main-heading {
    font-size: 72px;
    line-height: 1;
    font-weight: 700;
    color: #071a63;
    margin-bottom: 25px;
}

.abt-main-image {
    overflow: hidden;
    border-radius: 20px;
}

.abt-main-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 20px;
    transition: .5s;
}

.abt-main-image:hover img {
    transform: scale(1.05);
}

.abt-col-box {
    background: transparent;
    padding: 10px 15px;
    transition: .4s;
    border-radius: 14px;
}

.abt-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.abt-icon-box i {
    font-size: 28px;
    color: #c0262c;
}

.abt-col-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--cac-primary);
    margin-bottom: 18px;
}



/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content {
        left: 8%;
        right: 8%;
        max-width: 90%;
    }

    .cac-welcome-content {
        max-width: 100%;
    }

    .cac-main-title {
        font-size: 34px;
    }

    .cac-image-bottom-left {
        width: 60%;
        margin-top: -40px;
    }

    .ca-ministry-grid-col {
        min-width: 280px;
        max-width: calc(50% - 15px);
    }

    .ca-ministry-header-title {
        font-size: 34px;
    }

    .ca-ministry-image {
        height: 260px;
    }


    .ca-welcome-right {
        flex: 1;
    }

    .abt-left-sticky {
        position: relative;
        top: 0;
    }

    .abt-main-heading {
        font-size: 55px;
    }

    .abt-main-image img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background: #fff;
        flex-direction: column;
        padding-top: 90px;
        padding-left: 30px;
        padding-right: 20px;
        gap: 20px;
        transition: 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 16px;
    }

    .submenu {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 20px;
        background: #f8f8f8;
        margin-top: 8px;
        border-radius: 12px;
    }

    .dropdown.active .submenu {
        display: block;
    }

    .dropdown>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hero-content {
        left: 5%;
        right: 5%;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .bttn {
        padding: 8px 18px;
        font-size: 12px;
        margin-right: 10px;
    }

    .cards {
        margin-top: -50px;
        padding: 18px !important;
    }

    .card {
        padding: 18px !important;
    }

    .card img {
        max-width: 100%;
        border-radius: 12px;
        width: 100%;
        height: auto;
    }

    .card-text h3 {
        font-size: 16px;
    }

    .card-text p {
        font-size: 12px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cac-welcome-section {
        padding: 50px 0;
    }

    .cac-row {
        flex-direction: column;
        gap: 30px;
    }

    .cac-main-title {
        font-size: 28px;
    }

    .cac-images-wrapper {
        min-height: auto;
        margin-top: 20px;
    }

    .cac-image-bottom-left {
        width: 100% !important;
        margin-top: 10px !important;
        margin-left: 0px !important;
        position: relative;
        z-index: 2;
    }

    .cac-buttons-wrapper {
        gap: 12px;
    }

    .ca-ministry-section {
        padding: 50px 0;
    }

    .ca-ministry-grid-col {
        min-width: 100%;
        max-width: 100%;
    }

    .ca-ministry-grid-row {
        gap: 25px;
        margin-top: 40px;
    }

    .ca-ministry-header-title {
        font-size: 28px;
    }

    .ca-ministry-header-text {
        font-size: 14px;
    }

    .ca-ministry-image {
        height: 250px;
    }

    .ca-ministry-overlay-title {
        font-size: 20px;
    }

    .ca-ministry-overlay-content {
        padding: 20px;
    }

    .ca-welcome-flex {
        flex-direction: column;
        gap: 40px;
    }

    .ca-welcome-text-box {
        max-width: 100%;
    }


    .ca-welcome-paragraph {
        font-size: 14px;
        line-height: 24px;
    }

    .ca-video-card {
        border-radius: 20px;
    }

    .ca-video-frame {
        border-radius: 20px;
    }

    .abt-main-sec {
        padding: 60px 0;
    }

    .abt-main-heading {
        font-size: 42px;
    }

    .abt-col-title {
        font-size: 18px;
    }

    .abt-main-image img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .logo img {
        max-width: 100px;
    }

    .newhere-btn {
        padding: 5px 12px;
        font-size: 11px;
    }

    .right-nav {
        gap: 12px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-top h5 {
        font-size: 10px;
    }

    .hero-top .line {
        width: 30px;
    }

    .bttn {
        padding: 7px 16px;
        font-size: 11px;
        margin-top: 15px;
    }

    .cards .col-md-4 {
        padding: 0 12px;
    }

    .cac-container {
        padding: 0 16px;
    }

    .cac-main-title {
        font-size: 24px;
    }

    .cac-txt-p {
        font-size: 14px;
        line-height: 22px;
    }

    .cac-image-bottom-left {
        width: 70%;
        margin-top: -20px;
        margin-right: 0px;
    }

    .cac-service-times {
        padding: 15px 20px;
    }

    .cac-service-item {
        font-size: 13px;
    }

    .cac-btn {
        padding: 8px 18px;
        font-size: 11px;
    }

    .ca-ministry-container {
        padding: 0 16px;
    }

    .ca-ministry-image {
        height: 220px;
    }

    .ca-ministry-overlay-title {
        font-size: 18px;
    }

    .ca-ministry-overlay-desc {
        font-size: 13px;
    }

    .ca-welcome-container {
        padding: 0 16px;
    }


    .ca-welcome-right {
        min-width: 100%;
    }

    .abt-main-heading {
        font-size: 34px;
    }

    .abt-left-para {
        font-size: 14px;
        line-height: 26px;
    }

    .abt-col-box {
        padding: 0;
    }

    .abt-col-title {
        font-size: 18px;
    }

    .abt-icon-box {
        width: 60px;
        height: 60px;
    }

    .abt-icon-box i {
        font-size: 22px;
    }

    .abt-main-image img {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

        .hero-buttons {
            flex-direction: column;
            width: 120px;
        }
    .bttn {
        margin-right: 0;
    }
}


/* ================================children page css start ========================================================= */
/* ================= CHILD SECTION ================= */

.child-sect-main {
    background: #f6f3ee;
    overflow: hidden;
}

/* TOP */
.child-sect-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.child-sect-line {
    width: 45px;
    height: 3px;
    background: #c0262c;
}

.child-sect-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: #06102bd7;
    margin: 0;
    font-weight: 600;
}

/* TITLE */
.child-sect-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #06102bd7;
    margin-bottom: 22px;
}

/* TEXT */
.child-sect-text {
    font-size: 16px;
    line-height: 30px;
    color: rgba(15, 30, 88, 0.72);
    margin-bottom: 18px;
    font-weight: 400;
}

/* ================= WHITE CARDS ================= */



/* CARD TITLE */
.child-sect-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #06102bd7;
    margin-bottom: 22px;
}



.child-sect-list i {
    color: #c0262c;
    font-size: 14px;
    margin-top: 7px;
    min-width: 16px;
}

/* VERSE */
.child-sect-verse {
    margin-top: 18px;
    font-size: 15px;
    line-height: 28px;
    color: #06102bd7;
    font-style: italic;
}

.child-sect-reference {
    display: inline-block;
    margin-top: 8px;
    color: #c0262c;
    font-size: 14px;
    font-weight: 600;
}

/* LINKS */
.child-sect-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
}

.child-sect-links a {
    text-decoration: none;
    color: #06102bd7;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.child-sect-links a i {
    margin-left: 6px;
    font-size: 12px;
    transition: .3s;
}

.child-sect-links a:hover {
    color: #c0262c;
}

.child-sect-links a:hover i {
    transform: translateX(5px);
}

/* CONTACT */
.child-sect-contact {
    margin-top: 28px;
}

.child-sect-contact p {
    font-size: 15px;
    color: #374151;
    margin-bottom: 10px;
}

.child-sect-contact i {
    color: #c0262c;
    margin-right: 10px;
}

/* ================= IMAGES ================= */

.child-sect-images {
    position: relative;
}

.child-sect-img-top img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);
}

/* SMALL IMAGE */
.child-sect-img-bottom {
    width: 58%;
    margin-top: -120px;
    margin-left: -70px;
    position: relative;
    z-index: 2;
}

.child-sect-img-bottom img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;

    /* border: 8px solid #f6f3ee; */

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px) {

    .child-sect-title {
        font-size: 40px;
    }

    .child-sect-img-bottom {
        width: 70%;
        margin-left: 0;
    }
}

@media(max-width:768px) {

    .child-sect-main {
        padding-top: 40px;
    }

    .child-sect-title {
        font-size: 32px;
    }

    .child-sect-text {
        font-size: 14px;
        line-height: 26px;
    }

    .child-sect-card {
        padding: 24px;
    }

    .child-sect-card-title {
        font-size: 22px;
    }

    .child-sect-img-bottom {
        width: 85%;
        margin-top: 15px;
        margin-left: 0;
    }
}

@media(max-width:576px) {

    .child-sect-title {
        font-size: 28px;
    }

    .child-sect-text {
        font-size: 13px;
        line-height: 24px;
    }

    .child-sect-list p {
        font-size: 13px;
        line-height: 24px;
    }

    .child-sect-links {
        flex-direction: column;
        gap: 10px;
    }

    .child-sect-card {
        padding: 20px;
        border-radius: 18px;
    }

    .child-sect-img-top img {
        border-radius: 18px;
    }

    .child-sect-img-bottom {
        width: 100%;
    }

    .child-sect-img-bottom img {
        border-radius: 18px;
    }
}







/* ================= CONTACT PAGE -  CSS START ================= */

/* Main Section */
.ca-contact-main {
    /* background: linear-gradient(135deg, #f6f3ee 0%, #fefcf9 100%); */
    padding: 80px 0;
    position: relative;
}

/* Container */
/* .ca-contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
} */


/* Contact Info Row - 4 Cards */
.ca-contact-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 70px;
}

.ca-contact-info-card {
    flex: 1;
    min-width: 210px;
    background: #ffffff;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.ca-contact-info-card:hover {
    border-bottom-color: #c0262c;
    transform: translateY(-8px);
}

.ca-contact-icon-box {
    width: 70px;
    height: 70px;
    background: #06102bd7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: all 0.3s ease;
}

.ca-contact-info-card:hover .ca-contact-icon-box {
    background: #c0262c;
}

.ca-contact-icon-box i {
    font-size: 30px;
    color: #ffffff;
}

.ca-contact-info-title {
    font-size: 20px;
    font-weight: 700;
    color: #06102bd7;
    margin-bottom: 12px;
}

.ca-contact-info-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
}

.ca-contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #c0262c;
    text-decoration: none;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.ca-contact-info-link:hover {
    gap: 12px;
    color: #06102bd7;
}

/* Form and Map Row */
.ca-contact-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.ca-contact-form-col {
    flex: 1;
    min-width: 280px;
}

.ca-contact-map-col {
    flex: 1;
    min-width: 280px;
}

.ca-contact-form-box {
    background: #ffffff;
    padding: 40px;
}

.ca-contact-form-title {
    font-size: 26px;
    font-weight: 700;
    color: #06102bd7;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #c0262c;
    display: inline-block;
}

/* Input with icon */
.ca-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.ca-input-wrapper i {
    position: absolute;
    left: 15px;
    color: #999;
    font-size: 16px;
}

.ca-form-input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    background: #fefefe;
    transition: all 0.3s ease;
}

.ca-form-textarea {
    width: 100%;
    padding: 14px 15px 14px 45px;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    background: #fefefe;
    transition: all 0.3s ease;
    resize: vertical;
}

.ca-form-input:focus,
.ca-form-textarea:focus {
    outline: none;
    border-color: #c0262c;
    background: #ffffff;
}

.ca-textarea-wrapper {
    align-items: flex-start;
}

.ca-textarea-wrapper i {
    top: 15px;
}

/* Alerts */
.ca-alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    padding: 15px 20px;
    margin-bottom: 25px;
    font-size: 14px;
    border-left: 4px solid #28a745;
}

.ca-alert-error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    padding: 15px 20px;
    margin-bottom: 25px;
    font-size: 14px;
    border-left: 4px solid #dc3545;
}

/* Form Groups */
.ca-form-group {
    margin-bottom: 22px;
}

.ca-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #06102bd7;
    margin-bottom: 8px;
}

.ca-required {
    color: #c0262c;
}

.ca-error-msg {
    display: none;
    font-size: 11px;
    color: #c0262c;
    margin-top: 6px;
}

/* Checkbox Group */
.ca-checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ca-form-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #c0262c;
}

.ca-checkbox-label {
    font-size: 13px;
    color: #555;
    cursor: pointer;
}

/* Submit Button */
.ca-submit-btn {
    background: #c0262c;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.ca-submit-btn:hover {
    background: #06102bd7;
    gap: 16px;
    padding: 14px 36px;
}

/* Map Box */
.ca-map-box {
    width: 100%;
    height: 100%;
    min-height: 480px;
    /* overflow: hidden; */
    background: #f0f0f0;
}

.ca-map-box iframe {
    transition: all 0.5s ease;
}

.ca-map-box:hover iframe {
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 992px) {
    .ca-contact-header-title {
        font-size: 38px;
    }

    .ca-map-box {
        min-height: 380px;
    }

    .ca-contact-form-box {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .ca-contact-main {
        padding: 50px 0;
    }

    .ca-contact-info-row {
        gap: 20px;
        margin-bottom: 50px;
    }

    .ca-contact-info-card {
        min-width: calc(50% - 20px);
        padding: 25px 15px;
    }

    .ca-contact-form-row {
        flex-direction: column;
        gap: 30px;
    }

    .ca-contact-header-title {
        font-size: 32px;
    }

    .ca-contact-form-title {
        font-size: 22px;
    }

    .ca-map-box {
        min-height: 0px;
    }
}

@media (max-width: 576px) {
    .ca-contact-container {
        padding: 0 16px;
    }

    .ca-contact-info-card {
        min-width: 100%;
    }

    .ca-contact-header-title {
        font-size: 26px;
    }

    .ca-contact-header-text {
        font-size: 14px;
    }

    .ca-contact-form-box {
        padding: 25px;
    }

    .ca-contact-form-title {
        font-size: 20px;
    }

    .ca-submit-btn {
        padding: 12px 28px;
        width: 100%;
        justify-content: center;
    }
}

/* ===================================================
   PREMIUM SERMONS LIVE SECTION
=================================================== */

.semons-live-sect {
    background: #f6f3ee;
    position: relative;
    overflow: hidden;
    /* padding: 140px 0; */
}

/* ================= HEAD ================= */

/* ===================================================
   VIDEO
=================================================== */

.semons-video-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background: #fff;
    border: 1px solid rgba(6, 16, 43, 0.08);
}

.semons-video-frame {
    width: 100%;
    height: 580px;
    border: none;
}

/* LIVE BADGE */

.semons-live-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(192, 38, 44, 0.95);
    color: #fff;
    padding: 7px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.semons-live-badge span {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: semonsLivePulse 1s infinite;
}

@keyframes semonsLivePulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }

}

/* ===================================================
   LATEST SERMON
=================================================== */

.semons-latest-box {
    background: #fff;
    border: 1px solid rgba(6, 16, 43, 0.08);
    border-radius: 3px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.semons-latest-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.semons-pdf-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    background: rgba(192, 38, 44, 0.08);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.semons-pdf-icon i {
    font-size: 24px;
    color: var(--secondary);
}

.semons-latest-tag {
    color: var(--secondary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
    display: inline-block;
}

.semons-latest-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--cac-primary);
    margin-bottom: 4px;
}

.semons-latest-box p {
    margin: 0;
    color: var(--cac-text-light);
    font-size: 13px;
}

/* LINKS */

.semons-language-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.semons-language-links a {
    background: #fff;
    border: 1px solid rgba(6, 16, 43, 0.08);
    color: var(--cac-primary);
    text-decoration: none;
    padding: 7px 13px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    transition: 0.3s;
}

.semons-language-links a:hover {
    background: var(--secondary);
    color: #fff;
}

/* ===================================================
   ACCORDION
=================================================== */

.accordion {
    --bs-accordion-border-width: 0px;
}

/* ITEM */

.semons-accordion-item {
    border: none !important;
    background: transparent !important;
    margin-bottom: 12px;
}

/* BUTTON */

.semons-accordion-btn {
    background: #ffffff !important;
    color: var(--cac-primary) !important;
    border: 1px solid rgba(6, 16, 43, 0.08) !important;
    border-radius: 3px !important;
    padding: 18px 20px !important;
    font-size: 20px;
    font-weight: 700;
    box-shadow: none !important;
}

/* REMOVE ICON BG */

.accordion-button::after {
    filter: brightness(0);
}

/* OPEN STATE */

.semons-accordion-btn:not(.collapsed) {
    background: #ffffff !important;
    color: var(--secondary) !important;
    box-shadow: none !important;
}

/* REMOVE BLUE SHADOW */

.semons-accordion-btn:focus {
    box-shadow: none !important;
}

/* BODY */

.accordion-collapse {
    border: none !important;
}

.accordion-body {
    padding-top: 18px !important;
    padding-bottom: 5px !important;
}

/* ===================================================
   SERMON CARD
=================================================== */

.semons-sermon-card {
    background: #fff;
    border: 1px solid rgba(6, 16, 43, 0.08);
    border-radius: 3px;
    padding: 16px;
    height: 100%;
    transition: 0.3s;
}

.semons-sermon-card:hover {
    border-color: rgba(192, 38, 44, 0.25);
    transform: translateY(-2px);
}

/* TITLE */

.semons-sermon-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--cac-primary);
    line-height: 24px;
    margin-bottom: 8px;
}

/* DATE */

.semons-sermon-card p {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* CARD LINKS */

.semons-card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.semons-card-links a {
    background: #fff;
    border: 1px solid rgba(6, 16, 43, 0.08);
    color: var(--cac-primary);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    transition: 0.3s;
}

.semons-card-links a:hover {
    background: var(--secondary);
    color: #fff;
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media(max-width:991px) {

    .semons-video-frame {
        height: 420px;
    }

    .semons-latest-box {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media(max-width:576px) {

    .semons-live-title {
        font-size: 32px;
    }

    .semons-video-frame {
        height: 240px;
    }

    .semons-accordion-btn {
        font-size: 17px;
        padding: 16px !important;
    }

    .semons-sermon-card h4 {
        font-size: 15px;
        line-height: 22px;
    }

    .semons-latest-box h3 {
        font-size: 18px;
    }

}



/* ===================================================
   VOLUNTEER FORM
=================================================== */

.minis-form-wrapper {
    margin-top: 35px;
    background: var(--cac-white);
    border: 1px solid rgba(6, 16, 43, 0.08);
    padding: 28px;
    border-radius: 4px;
}

.minis-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--cac-primary);
    margin-bottom: 24px;
}

.minis-form-group {
    margin-bottom: 18px;
}

.minis-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cac-primary);
}

.minis-form-input {
    width: 100%;
    height: 52px;
    border: 1px solid rgba(6, 16, 43, 0.12);
    border-radius: 4px;
    padding: 0 16px;
    font-size: 14px;
    color: var(--cac-primary);
    background: #fff;
    transition: 0.3s;
    outline: none;
}

.minis-form-input:focus {
    border-color: var(--secondary);
}

.minis-form-input::placeholder {
    color: var(--cac-text-light);
}

.minis-form-textarea {
    height: auto;
    padding-top: 14px;
    resize: none;
}

.minis-form-btn {
    width: 100%;
    height: 52px;
    border: none;
    background: var(--secondary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.minis-form-btn:hover {
    background: var(--cac-primary);
}

/* ================= RESPONSIVE ================= */

@media(max-width:576px) {

    .minis-form-wrapper {
        padding: 20px;
    }

    .minis-form-title {
        font-size: 20px;
    }

}

/* staff image */

.staff-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.staff-image-box {
    width: 320px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: 0.4s ease;
}

.staff-image-box:hover {
    transform: translateY(-5px);
}

.staff-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #721c24;
}

.staff-title {
    font-size: 22px;
    color: #343333;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 8px;
}

/* ==================================welcome page css start ========================================== */

.wel-sect {
    overflow: hidden;
}

.wel-content {
    padding-right: 20px;
}




/* IMAGE */
.wel-img-wrapper {
    display: flex;
    justify-content: center;
}

.wel-circle-img {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid #c0262c;
    transition: 0.4s ease;
}



.wel-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile */
@media(max-width:768px) {

    

    .wel-circle-img {
        width: 280px;
        height: 280px;
        margin-top: 20px;
    }
}