/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.text-secondary {
    color: #ec7900 !important;
    margin-bottom: 1rem;
}

.btn-secondary {
    color: #000;
    background-color: #ec7900 !important;
    border-color: #ff5e15 !important;
}

p {
    color: #000 !important;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    font-family: "Cairo", sans-serif !important;
}

body {
    font-family: "Fira Sans", sans-serif;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
    border: none;

}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
}

/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: linear-gradient(85deg, #000000 0%, #52525257 100%);
}

/*** Topbar End ***/

/*** Navbar ***/
.sticky-top {
    transition: 1s;
}

.color {
    color: #ec7900;
}

.navbar img {
    height: 70px;
}

.navbar h1 {
    margin-bottom: 0 !important;
    color: #000 !important;
    font-weight: bolder;
    letter-spacing: 0.9px;
    font-size: 49px;
}

.top-header a {
    font-size: 15px !important;
    letter-spacing: 0.5px;
}

.navbar {
    background-image: url(../img/boscosmo/logo/menu.jpg);
    background-size: cover;
    background-position: bottom;

}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: #000;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 10px;
    font-weight: 400;
    font-family: "Cairo", sans-serif;
    font-size: 18px;
    transition: .5s;
    z-index: 99;
    letter-spacing: 0.5px;
}

.navbar .navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border: 2px solid var(--bs-secondary);
    opacity: 0;
    transition: 0.5s;
    z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
    border-bottom: 0;
    border-right: 0;
}

.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
    border-top: 0;
    border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 50%;
    height: 50%;
    opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-secondary);
}

.nav-bar .navbar-toggler {
    color: var(--bs-dark);
    box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: #ffefde;
    transition: .5s;
    opacity: 1;
}

.navbar .nav-item .dropdown-menu {
    background: var(--bs-light);
    transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    transition: 0.5s;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item.active {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        margin-top: 15% !important;
        transform: rotateX(-75deg);
        transform-origin: 0 0;
        border: 0;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 991px) {
    .navbar .nav-item .dropdown-menu {
        position: relative;
        margin-top: 0;
        transition: 0.5s;
    }

    .navbar .navbar-nav .nav-item::after,
    .navbar .navbar-nav .nav-item::before {
        display: none;
    }

    .navbar .navbar-nav .nav-item:hover::after,
    .navbar .navbar-nav .nav-item:hover::before,
    .navbar .navbar-nav .nav-item.active::after,
    .navbar .navbar-nav .nav-item.active::before {
        display: none;

    }

    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar .navbar-nav .nav-item.nav-link {
        padding: 12px 0;
    }
}

/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 18, 72, 0.7), rgba(0, 18, 72, 0.7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Carousel Start ***/
.carousel .carousel-inner .carousel-item {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.carousel-caption h1 {
    font-size: 50px !important;
}

@media (min-width: 992px) {
    .carousel .carousel-inner .carousel-item img {
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 991px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .carousel-item .carousel-caption h1 {
        font-size: 36px;
    }

    .carousel-item .carousel-caption p.fs-5 {
        font-size: 15px;
    }
}


.carousel .carousel-inner .carousel-item::after {
    content: "";
    position: absolute;
    top: 70%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.carousel .carousel-indicators {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    z-index: 5;
}

.carousel .carousel-indicators li,
.carousel .carousel-indicators li,
.carousel .carousel-indicators li {
    margin-right: 30px !important;
    width: 10px;
    height: 10px;
    border: 6px solid var(--bs-secondary);
    background: var(--bs-white);
    transition: 0.5s;
}

.carousel .carousel-indicators li.active {
    border: 10px solid var(--bs-primary);
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    background: transparent;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    left: 0;
    padding: 25px 30px;
    background: var(--bs-primary);

}

.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    right: 0;
    padding: 25px 30px;
    background: var(--bs-primary);

}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** About Start ***/
.about {
    position: relative;
    background: #fff3dd;
    padding: 110px 0;
    overflow: hidden;
}

.about .about-item-content-img {
    border: 4px solid;
    border-color: var(--bs-secondary) var(--bs-primary) var(--bs-primary) var(--bs-secondary);
}

.about .about-item-image {
    position: relative;
    background: var(--bs-light);
    background-image: url(../img/boscosmo/home/about3.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.about .about-item-image .img-1 {
    margin-bottom: 250px;
    margin-right: 0;
    border: 4px solid;
    border-color: var(--bs-secondary) var(--bs-light) var(--bs-light) var(--bs-secondary);
    z-index: 3;
}

.about .about-item-image .img-2 {
    margin-top: 250px;
    margin-left: 0;
    border: 4px solid;
    border-color: var(--bs-light) var(--bs-secondary) var(--bs-secondary) var(--bs-light);
    z-index: 3;
}

.about .about-item-image::before {
    width: 80%;
    height: 80%;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-style: dotted;
    border-color: var(--bs-white);
    background: #ec7900;
    z-index: 2;
}

.about .about-item-image .about-item-image-content {
    width: 55%;
    height: 55%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bs-secondary);
    border: 4px solid var(--bs-primary);
    opacity: 0.9;
    z-index: 4;
}

.about .about-item-image .about-item-image-effect {
    position: absolute;
    top: 0;
    right: 0;
}

/*** About End ***/

/*** Support Catholic Start ***/

.catholic-modern-section {
    position: relative;
    background: #ffffff;
    padding: 110px 0;
    overflow: hidden;
}

/* animated background blobs */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: float 12s infinite alternate ease-in-out;
}

.blob-1 {
    width: 320px;
    height: 320px;
    background: #ff7a00;
    top: -120px;
    left: -120px;
}

.blob-2 {
    width: 260px;
    height: 260px;
    background: #0b1c3e;
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
}

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(40px);
    }
}

/* image card */
.modern-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.modern-image-card img {
    width: 100%;
    display: block;
}

/* content */
.modern-content {
    padding-left: 40px;
    animation: fadeUp 1.2s ease forwards;
}

.mini-title {
    color: #ff7a00;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 13px;
}

.modern-content h2 {
    font-size: 56px;
    font-weight: 700;
    margin: 12px 0 18px;
    color: #0b1c3e;
}

.modern-content h2 span {
    color: #ff7a00;
}

.modern-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.modern-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.modern-points li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
}

.modern-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff7a00;
}

/* bottom row */
.action-row {
    display: flex;
    align-items: center;
    gap: 25px;
}

.since-pill {
    padding: 12px 18px;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.since-pill span {
    font-size: 11px;
    color: #777;
}

.since-pill strong {
    font-size: 18px;
    color: #0b1c3e;
}

/* animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-secondary:hover {
    background: linear-gradient(85deg, #000000 0%, #52525257 100%) !important;
}

/*** Support Catholic End ***/

/*** Features Start ***/
.read-more {
    color: #0064b4;
    font-weight: 500;
}

.read-more:hover {
    color: #ec7900;
    font-weight: 700;
}

.feature-item:hover {
    box-shadow: 0 0 10px #ec7900;
}

.feature-item {
    background: linear-gradient(85deg, #ffffff 0%, #ffe0bf 100%);
    box-shadow: 0 0 10px #535353;
}

.feature .feature-item {
    position: relative;
    transition: 0.5s;

}

.feature .feature-item:hover {
    background: var(--bs-white);
    border: 1px solid transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.feature .feature-item:hover a {
    transition: 0.5s;
}

.feature .feature-item:hover a:hover {
    color: var(--bs-secondary);
}

.feature .feature-item .feature-img img {
    border: transparent;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-img img {
    border: 1px solid var(--bs-secondary);
}

/*** Features End ***/

/*** Services Start ***/
.bg-secondary {
    background-color: #ec7900 !important;
}

.service .service-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 1;
    box-shadow: 0 0 10px #f3ba7e;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
    background: rgba(0, 0, 0, .4);
}

.service .service-item .service-content {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.service .service-item:hover .service-content {
    opacity: 1;
}

.service .service-item:hover .service-content a.fs-4 {
    color: var(--bs-white);
    transition: 0.5s;
}

.service .service-item:hover .service-content a.fs-4:hover {
    color: var(--bs-secondary);
}

.service .service-item .service-title {
    position: absolute;
    width: 100%;
    height: 80px;
    bottom: 0;
    right: 0;
    background: var(--bs-light);
    display: flex;
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-title {
    margin-right: -100%;
}

/*** Services End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-secondary);
}

/*** Blog End ***/

/*** Contact Start ***/
.contact .contact-map {
    position: relative;
    overflow: hidden;
    padding: 20px;
    z-index: 1;
}

.contact .contact-map::before {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--bs-primary);
    z-index: -1;
}

.contact .contact-map::after {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bs-secondary);
    z-index: -1;
}

/*** Contact End ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(90deg, #6a11cb, #2575fc) !important;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
    text-decoration: none;
}

.footer .footer-item p {
    line-height: 25px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-secondary);
}

.inquiry-box {
    max-width: 100%;
}

.inquiry-form .form-control {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    background: #fff;
}

.btn-danger {
    background: #ec7900 !important;
    border: none !important;
}

.btn-danger:hover {
    background: #fff !important;
    color: #ec7900 !important;
}

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/

.why-us-section {
    background: linear-gradient(120deg, #ffffff, #ffffff);
    padding: 100px 0;
}

.why-us-content h2 {
    font-size: 42px;
    font-weight: 700;
}

.progress-bar {
    background: #ddd;
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    width: 70%;
    height: 100%;
    background: #ff7a00;
}

/* ACCORDION */
.why-us-accordion .accordion-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.accordion {
    /* background: linear-gradient(85deg, #c6c6c640 0%, #ffffff 100%), url('../img/boscosmo/home/why-us-bg.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 15px;
    /* padding: 25px; */
    cursor: pointer;
}

.accordion-header h4 {
    flex: 1;
    margin: 0;
    font-size: 18px;
}

.accordion-header .icon {
    width: 50px;
    height: 50px;
    background: #f2f2f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    color: #ff7a00;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    padding-bottom: 25px;
}

.stats-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(120deg, #001659, #f57c00);
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-box h2 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.stat-box p {
    color: #ffffff !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 18px;
}

/* floating background animation */
.bg-particles::before,
.bg-particles::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 10s infinite alternate;
}

.bg-particles::after {
    right: -100px;
    bottom: -100px;
    animation-delay: 3s;
}

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-60px);
    }
}

.bg-white {
    border-radius: 0px !important;
    min-height: 256px !important;
}

/* Relic Tour Styles */
.relic-hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/boscosmo/background/it-bg1.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.relic-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.relic-hero p {
    font-size: 1.5rem;
    color: #ec7900;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title .orange-line {
    width: 80px;
    height: 3px;
    background: #ec7900;
    margin: 0 auto 30px;
}

.relic-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.relic-card:hover {
    transform: translateY(-10px);
}

.relic-card .img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.relic-card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.relic-card-body {
    padding: 25px;
    text-align: center;
}

.relic-card-body h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0b1c3e;
    margin-bottom: 5px;
}

.relic-card-body p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icons i {
    color: #ec7900;
    cursor: pointer;
}

.btn-orange {
    background: #ec7900;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-orange:hover {
    background: #0b1c3e;
    color: white;
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.schedule-table th {
    background: #0b1c3e;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}

.schedule-table td {
    background: white;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.schedule-table tr:hover td {
    background: #fdf5eb;
}

.prayer-form-box {
    background: #fff3dd;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin: 50px 0;
}

.prayer-form-box h2 {
    text-align: center;
    color: #0b1c3e;
    font-weight: 800;
    margin-bottom: 40px;
}

.btn-dark-submit {
    background: #232323;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
}

.btn-dark-submit:hover {
    background: #ec7900;
}

.testimony-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.testimony-item:hover {
    background: #fdf5eb;
}

.testimony-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.testimony-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimony-content {
    flex-grow: 1;
}

.testimony-content h5 {
    margin: 0;
    font-weight: 700;
    color: #0b1c3e;
}

.testimony-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

.btn-book {
    background: #ec7900;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.programme-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.programme-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.programme-table th {
    background: #001659;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}

.programme-table td {
    padding: 15px;
    border: 1px solid #eee;
    text-align: center;
    vertical-align: middle;
}

.programme-table tr:nth-child(even) {
    background: #fcfcfc;
}

.prayer-form-section {
    background: #fff3dd;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.prayer-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: #ec7900;
    opacity: 0.1;
    border-radius: 0 0 0 100%;
}

.prayer-form-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    color: #001659;
    font-weight: 700;
}