@import url('https://fonts.googleapis.com/css2?family=Gidole&family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

html {
    margin-top: 0px !important;
}

.elementor-element {
    padding: 0 !important;
}

a {
    cursor: pointer;
}


.banner_div .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner_div .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(34, 40, 110, 0.8); */
    background: linear-gradient(103.9deg, rgba(217, 217, 217, 0) -7.11%, rgba(34, 40, 110, 0.5) 55.24%, #22286E 96.98%);
}

.banner_div .carousel-content {
    position: absolute;
    bottom: 7pc;
    left: 0;
    padding: 0 5rem 5rem 5rem;
    color: white;
    z-index: 10;
    max-width: 925px;
}

.banner_div .carousel-content h2 {
    font-family: Inria Sans;
    font-weight: 700;
    font-size: 32px;

}

.banner_div .carousel-content h3 {
    font-family: Inter;
    font-weight: 700;
    font-size: 62px;

}

.banner_div .carousel-content p {
    font-family: Inria Sans;
    font-weight: 400;
    font-size: 18px;
}

.banner_div .nav-tabs {
    border: none;
    margin-top: 2rem;
}

.banner_div .nav-tabs .nav-link {
    color: white;
    border: none;
    padding: 0;
    margin-right: 2rem;
    background: transparent;
    cursor: pointer;
}

.banner_div .nav-tabs .nav-link:hover {
    /* text-decoration: underline; */
}

.banner_div .nav-tabs .nav-link.active {
    color: white;
    background: transparent;
    font-weight: 500;
    border-bottom: 2px solid white;
}

/* Hide standard carousel controls */
.banner_div .carousel-control-prev,
.banner_div .carousel-control-next,
.banner_div .carousel-indicators {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner_div .carousel-content {
        padding: 0 2rem 3rem 2rem;
    }

    .banner_div .carousel-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .banner_div .carousel-content h1 {
        font-size: 2rem;
    }

    .banner_div .nav-tabs .nav-link {
        margin-right: 1rem;
    }
}




.hero-section {
    background: linear-gradient(103.9deg, rgba(217, 217, 217, 0) -7.11%, rgba(34, 40, 110, 0.8) 55.24%, #22286e 96.98%),
        url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}



.welcome-text {
    font-family: Inria Sans;
    font-weight: 700;
    font-size: 32px;
    color: #FFFFFF;
}

.hero-description {
    font-family: Inria Sans;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons a {
    color: #ffffff;
    font-family: "Inria Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    /* Set your fixed height here */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Only for the first button */
.hero_lorem_button::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 4px;
    width: 0;
    background-color: white;
    transition: width 0.4s ease-in-out;
}

/* Animate on hover */
.hero_lorem_button:hover::after {
    width: 100%;
}

.hero-buttons a.active::after {
    width: 100%;
}

/*  */

.social-metrics {
    background-color: var(--secondary-color);
    padding: 15px 0;
    color: var(--primary-color);
    font-weight: bold;
}

.section-title {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 20px;
}

.what-is-section {
    padding: 50px 0;
}

.core-values {
    background-color: var(--secondary-color);
    padding: 50px 0;
}

.value-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #22286E;
    border-radius: 5px;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card h4 {
    color: var(--primary-color);
    font-family: Inter;
    font-weight: 600;
    font-size: 32px;
    text-transform: uppercase;
}

.value-card.active {
    background: #22286E;
    border: 1px solid #22286E;
    transition: all 0.3s ease;
}

.value-card.active h4 {
    color: var(--secondary-color);
    font-family: Inter;
    font-weight: 600;
    font-size: 32px;
    text-transform: uppercase;

}

.value-card.active p {
    color: var(--secondary-color);
}

.value-card p {
    font-family: Inria Sans;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}

.value-card:hover {
    background: #22286E;
    border: 1px solid #22286E;
    transform: translateY(-10px);
    transition: width 0.4s ease-in-out;
    transition: all 0.3s ease;
}



.value-card:hover h4 {
    color: var(--secondary-color);
}

.value-card:hover p {
    color: var(--secondary-color);
}

.video-section .image_slider_div .heading-text .rest-text {
    font-family: Inter;
    font-weight: 600;
    font-size: 48px;
    color: #ffffff;
}


.video-section {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 70px 0;
}

.video-section .image_slider_div .heading-underline {
    height: 4px;
    width: 80px;
    background-color: #ffffff;
    margin-bottom: 30px;
    position: relative;
    transform: unset;
    left: 0;
}


.video-section .image_slider_div .heading-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--third-color);
    animation: slideRight 2s infinite;
}

.video-section p {
    font-family: Inria Sans;
    font-weight: 400;
    font-size: 20px;
    line-height: 145%;
    letter-spacing: -2%;

}

.video-section .image_slider_div .heading-text {
    color: #ffffff;
    font-weight: 700;
    display: block;
    align-items: baseline;
    margin-bottom: 8px;
}

.video-section .image_slider_div .heading-container {
    text-align: start;
}

.testimonials {
    padding: 50px 0;
    background-color: var(--secondary-color);
}

.testimonial-card {
    text-align: center;
    margin-bottom: 30px;
}

.join-section {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 50px 0;
}

.join-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 5px;
}

.join-form .wpcf7-form-control {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.join-form .wpcf7-form-control ::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.join-form .btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    width: 100%;
    padding: 10px;
    font-weight: bold;
}

/* Exact Footer Styles to match the image */
.footer-main {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    position: relative;
}

/* Left side footer styles */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 80px;
    height: 80px;
}

.footer-social {
    display: flex;
    margin: 20px 0;
}

.footer-social a {
    color: white;
    margin-right: 20px;
    font-size: 18px;
}

/* Contact info styles - exact alignment */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    width: 16px;
    margin-right: 10px;
    margin-top: 3px;
}

.contact-item span {
    font-size: 14px;
}

/* Right side footer styles */

.powered-by {
    text-align: right;
}

.powered-by p {
    font-size: 16px;
    margin-bottom: 15px;
}

.powered-by img {
    max-width: 180px;
}

/* Copyright bar */
.footer-copyright {
    background-color: white;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-copyright p {
    margin: 0;
    color: #333;
    font-size: 14px;
}

.footer-copyright a {
    color: #333;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}



/*  */



.contact-form {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    border: 1px solid var(--third-color);
    border-radius: 8px;
}

.form-title {
    color: var(--form-color);
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--form-color);
    margin: 0 auto 30px;
}

.wpcf7-form-control {
    border: none;
    border-bottom: 1px solid var(--third-color);
    border-radius: 0;
    padding-left: 5px;
    margin-bottom: 20px;
}

.wpcf7-form-control :focus {
    box-shadow: none;
    border-color: var(--form-color);
}

.submit-btn {
    background-color: var(--form-color);
    color: var(--secondary-color);
    border: none;
    padding: 10px 0;
}

.reset-btn {
    background-color: var(--secondary-color);
    color: var(--form-color);
    border: 1px solid var(--third-color);
    padding: 10px 0;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.login-btn {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    background-color: transparent;
    border-radius: 4px;
    padding: 5px 15px;
    font-size: 14px;
}




/* current_oficer */

.current_oficer {
    padding-block: 50px 70px;
}

.current_oficer h2 {
    font-family: Inter;
    font-weight: 600;
    font-size: 48px;
    text-align: center;
    color: #22286E;
}

.current_oficer p {
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    color: #22286E;
}

.current_oficer .page-header {
    position: relative;
    animation: fadeInDown 1s ease-out;
}

.current_oficer .page-title {
    color: var(--form-color);
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.current_oficer .page-subtitle {
    color: var(--form-color);
    animation: fadeIn 1.2s ease-out;
}

.current_oficer .title-underline {
    width: 0;
    height: 4px;
    background-color: var(--form-color);
    margin: 1rem auto;
    animation: expandWidth 1.5s ease-out forwards;
    position: relative;
}

.current_oficer .title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 4px;
    background-color: var(--primary-color);
    animation: slidingHighlight 3s ease-in-out infinite;
}

/* Card Animations and Styling */
.current_oficer .officers-container {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.current_oficer .officer-card {
    background-color: var(--accent-color);
    overflow: hidden;
    height: 100%;
    transition: all var(--transition-speed) ease-out;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
    animation: fadeInUp 0.8s ease-out backwards;
}

.current_oficer .officer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.current_oficer .officer-card:hover .officer-image {
    transform: scale(1.05);
}

.current_oficer .officer-card:hover .masonic-symbol {
    transform: rotate(10deg) scale(1.1);
}

.current_oficer .officer-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 100%; */
    transition: background-color var(--transition-speed);
}

.officer-image-container.col-6.p-0 img {
    width: 100%;
}

.current_oficer .officer-card:hover .officer-info {
    background-color: rgba(245, 245, 245, 0.9);
}

.officer-info img {
    width: 100%;
}

.current_oficer .officer-name {
    color: var(--form-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    transition: color var(--transition-speed);
}

.current_oficer .officer-years {
    color: var(--form-color);
    font-size: 1.25rem;
    font-weight: bold;
    transition: color var(--transition-speed);
    position: relative;
}

.current_oficer .officer-years::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

.current_oficer .officer-card:hover .officer-years::after {
    width: 50px;
}

.current_oficer .officer-image-container {
    overflow: hidden;
    height: 100%;
}

.current_oficer .officer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
    transition: transform 0.5s ease-out;
}

.current_oficer .masonic-symbol {
    width: 100%;
    /* height: 80px; */
    margin: 0 auto;
    transition: all 0.5s ease-out;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Pagination Styling and Animations */
.current_oficer .pagination-container {
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: backwards;
}

.current_oficer .pagination .page-item .page-link {
    color: var(--form-color);
    transition: all var(--transition-speed);
    border-radius: 4px;
    margin: 0 2px;
}

.current_oficer .pagination .page-item.active .page-link {
    background-color: var(--form-color);
    border-color: var(--form-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(34, 40, 110, 0.3);
    /* transform: translateY(-2px); */
}

.current_oficer .pagination .page-item .page-link:hover:not(.active) {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

.current_oficer .pagination-nav-link {
    text-decoration: none;
    transition: all var(--transition-speed);
    padding: 8px 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    color: #22286E;
    cursor: pointer;
}

.current_oficer .pagination-nav-link:hover {
    color: var(--secondary-color);
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(30, 43, 111, 0.3);
}

.current_oficer .pagination-nav-link .arrow {
    transition: transform var(--transition-speed);
}

.current_oficer .pagination-nav-link:hover .arrow-left {
    transform: translateX(-5px);
}

.current_oficer .pagination-nav-link:hover .arrow-right {
    transform: translateX(5px);
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

@keyframes slidingHighlight {
    0% {
        left: 0;
    }

    50% {
        left: calc(100% - 30px);
    }

    100% {
        left: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Styles */

/* Staggered Animation for Cards */
.current_oficer .col-md-6:nth-child(1) .officer-card {
    animation-delay: 0.1s;
}

.current_oficer .col-md-6:nth-child(2) .officer-card {
    animation-delay: 0.2s;
}

.current_oficer .col-md-6:nth-child(3) .officer-card {
    animation-delay: 0.3s;
}

.current_oficer .col-md-6:nth-child(4) .officer-card {
    animation-delay: 0.4s;
}

.current_oficer .col-md-6:nth-child(5) .officer-card {
    animation-delay: 0.5s;
}

.current_oficer .col-md-6:nth-child(6) .officer-card {
    animation-delay: 0.6s;
}



/* current_oficer */
/* post-master */



@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(30, 43, 111, 0.5);
    }

    50% {
        box-shadow: 0 0 15px rgba(30, 43, 111, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(30, 43, 111, 0.5);
    }
}


.page-content {
    animation: fadeIn 1s ease-out;
}

.page-content .lodge-title {
    color: var(--primary-color);
    animation: slideUp 0.8s ease-out;
}

.page-content .lodge-subtitle {
    animation: slideUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.page-content .lodge-text {
    animation: slideUp 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

.page-content .divider {
    height: 4px;
    width: 120px;
    background-color: var(--form-color);
    margin: 15px auto;
    animation: slideUp 0.8s ease-out 0.6s;
    animation-fill-mode: both;
}

.page-content .master-card {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    cursor: pointer;
    animation: fadeIn 0.8s ease-out;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.page-content .master-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: glow 2s infinite;
}

.page-content .master-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform var(--transition-speed);
    filter: grayscale(20%);
}

.page-content .master-card:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.page-content .master-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(65, 77, 212, 0) 0%, #22286E 100%);
    height: 100%;
    /* background-color: rgba(30, 43, 111, 0.8); */
    color: var(--secondary-color);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
    transform: translateY(20px);
}

.page-content .master-card:hover .master-info {
    bottom: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-content .master-info .name {
    font-family: Inria Sans;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0;
    transform: translateY(10px);
    opacity: 0;
    transition: all var(--transition-speed) 0.1s;
    color: #FFFFFF;
}

.page-content .master-info .years {
    font-family: Inter;
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 0;
    transform: translateY(10px);
    opacity: 0;
    transition: all var(--transition-speed) 0.2s;
}

.master_text_position {
    position: absolute;
    bottom: 15px;
}

.page-content .master-card:hover .master-info .name,
.page-content .master-card:hover .master-info .years {
    transform: translateY(0);
    opacity: 1;
}



.page-content .nav-link {
    color: var(--form-color);
    text-decoration: none;
    transition: all var(--transition-speed);
    position: relative;
}

.page-content .nav-link:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.page-content .nav-link:hover .arrow-left {
    animation: bounce-left 1s infinite;
}

.page-content .nav-link:hover .arrow-right {
    animation: bounce-right 1s infinite;
}

@keyframes bounce-left {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-5px);
    }
}

@keyframes bounce-right {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}



/* Staggered animation for grid items */
.page-content .col-12:nth-child(1) .master-card {
    animation-delay: 0.1s;
}

.page-content .col-12:nth-child(2) .master-card {
    animation-delay: 0.2s;
}

.page-content .col-12:nth-child(3) .master-card {
    animation-delay: 0.3s;
}

.page-content .col-12:nth-child(4) .master-card {
    animation-delay: 0.4s;
}

.page-content .col-12:nth-child(5) .master-card {
    animation-delay: 0.5s;
}

.page-content .col-12:nth-child(6) .master-card {
    animation-delay: 0.6s;
}

.page-content .col-12:nth-child(7) .master-card {
    animation-delay: 0.7s;
}

.page-content .col-12:nth-child(8) .master-card {
    animation-delay: 0.8s;
}

.page-content .col-12:nth-child(9) .master-card {
    animation-delay: 0.9s;
}

.page-content .col-12:nth-child(10) .master-card {
    animation-delay: 1.0s;
}

.page-content .col-12:nth-child(11) .master-card {
    animation-delay: 1.1s;
}

.page-content .col-12:nth-child(12) .master-card {
    animation-delay: 1.2s;
}

/* post-master */


/* history */
.timeline_section {
    padding-block: 50px;
}

.timeline_heading h1 {
    font-family: Inter;
    font-weight: 600;
    font-size: 48px;
    text-align: center;
    color: #22286E;
    padding-inline: 13pc;
}

.timeline_heading p {
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    color: #22286E;
}

.timeline_section .timeline-container {
    position: relative;
    padding-block: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Timeline vertical line */
.timeline_section .timeline-line {
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 50px;
    bottom: 3pc;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline_section .timeline-item {
    position: relative;
    margin-bottom: 30px;
    /* padding-top: 40px; */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline_section .timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline marker */
.timeline_section .timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 10;
}

.timeline_section .marker-circle {
    width: 24px;
    height: 24px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    transition: transform var(--transition-speed) ease;
}

.timeline_section .timeline-item:hover .marker-circle {
    transform: scale(1.2);
}

.timeline_section .marker-inner {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.timeline_section .timeline-year {
    position: absolute;
    top: -8px;
    text-decoration: underline;
    font-family: Inter;
    font-weight: 600;
    font-size: 32px;
    color: var(--primary-color);
    transition: transform var(--transition-speed) ease;
}

.timeline_section .timeline-item:hover .timeline-year {
    transform: scale(1.1);
}

.timeline_section .year-left {
    right: 52%;
    margin-right: 15px;
    text-align: right;
}

.timeline_section .year-right {
    left: 52%;
    margin-left: 15px;
    text-align: left;
}

.timeline_section .timeline-content {
    padding-top: 0;
    padding-bottom: 30px;
}

.timeline_section .timeline-content:last-child {
    padding-bottom: 0px !important;
}

.timeline_section .timeline-title {
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: color var(--transition-speed) ease;
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    margin-block: 3pc 22px;
}

.timeline_section .timeline-item:hover .timeline-title {
    color: var(--form-color);
}

.timeline_section .timeline-description {
    font-size: 14px;
    color: var(--third-color);
    font-family: Inria Sans;
    font-weight: 400;
    font-size: 20px;
}

.timeline_section .timeline-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 250px;
    transition: transform var(--transition-speed) ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.timeline_section .timeline-item:hover .timeline-image {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.timeline_section .content-left {
    text-align: right;
    padding-right: 40px;
}

.timeline_section .content-right {
    text-align: left;
    padding-left: 40px;
}

.align_center {
    align-items: center;
}


/* Animation for timeline line */
@keyframes growLine {
    from {
        transform: translateX(-50%) scaleY(0);
        transform-origin: top center;
    }

    to {
        transform: translateX(-50%) scaleY(1);
        transform-origin: top center;
    }
}

.timeline_section .timeline-line {
    animation: growLine 1.5s ease-out forwards;
}

/* history  */
/* home */


.image_slider_div .heading-container {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.image_slider_div .heading-text {
    color: #22286e;
    font-weight: 700;
    /* display: flex; */
    align-items: baseline;
    margin-bottom: 8px;
}

.image_slider_div .heading-text .big-w {
    font-size: 60px;
    line-height: 1;
}

.image_slider_div .heading-text .rest-text {
    font-family: Inter;
    font-weight: 600;
    font-size: 48px;
    color: #22286E;
}

.image_slider_div .heading-underline {
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.image_slider_div .heading-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--third-color);
    animation: slideRight 2s infinite;
}

.image_slider_div .image-container {
    background-color: white;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: auto;
    height: 100%;
}

.image_slider_div .content-image {
    width: 100%;
    height: 100%;
    display: block;
}

.image_slider_div .content-text p {
    color: #22286E;
    font-family: Inria Sans;
    font-weight: 400;
    font-size: 20px;
}

.image_slider_div .read-more {
    font-family: Inria Sans;
    font-weight: 700;
    font-size: 20px;
    color: #22286E;
    text-decoration: none;
}

.image_slider_div .read-more:hover {
    text-decoration: underline;
}

.image_slider_div .slider-section {
    /* background-color: #22286e; */
    color: white;
    padding: 30px 20px 0px 20px;
    margin-top: 15px;
    position: absolute;
    bottom: -25px;
    width: 100%;
}

.image_slider_div .quote-text {
    font-family: Inter;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;

}

.image_slider_div .carousel-indicators {
    position: relative;
    margin-bottom: 0;
}

.image_slider_div .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.5;
    margin: 0 5px;
    border: none;
}

.image_slider_div .carousel-indicators .active {
    opacity: 1;
}

.background_gradient_top {
    background: linear-gradient(to top, rgb(14 64 125) 22%, rgb(255, 255, 255) 22%);
}

.background_gradient_top.image_slider_div {
    padding-block: 50px;
}

.pos-rel {
    position: relative;
}

.side_image_postition {
    position: relative;
    /* background-color: red; */
    overflow: hidden;
}

.side_image_postition::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    min-width: 490px;
    background-image: url('../images/sidebr1.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto 100%;
    z-index: 0;
    pointer-events: none;
}


.side_image_postition1 {
    position: relative;
    /* background-color: red; */
    overflow: hidden;
}

.side_image_postition1::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    min-width: 490px;
    background-image: url('../images/sidebr2.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto 100%;
    z-index: 0;
    pointer-events: none;
}

.history.side_image_postition1 {
    position: relative;
    /* background-color: red; */
    overflow: hidden;
}

.history.side_image_postition1::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 50%;
    width: auto;
    min-width: 300px;
    background-image: url('../images/sidebr2.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto 100%;
    z-index: 0;
    pointer-events: none;
}

.history.side_image_postition_down {
    position: relative;
    /* background-color: red; */
    overflow: hidden;
}

.history.side_image_postition_down::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    width: auto;
    min-width: 300px;
    background-image: url('../images/sidebr1.png');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto 100%;
    z-index: 0;
    pointer-events: none;
}

/* home-contct */
.background_gradient_top1 {
    background: linear-gradient(to top, rgb(14 64 125) 50%, rgb(255, 255, 255) 50%);
    padding-block: 50px;
}

.background_gradient_top1.image_slider_div .image-container {
    background-color: white;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: auto;
    height: auto;
}

.background_gradient_top1 .image_slider_div .content-image {
    width: 100%;
    height: 100%;
    display: block;
}

.imge_down_para {
    padding-top: 30px;
}

.imge_down_para p {
    font-family: Inria Sans;
    font-weight: 400;
    font-size: 22px;
    /* margin-bottom: 0; */
    color: #FFFFFF;
}

.image_slider_div .image_section img {
    width: 50%;
}

.image_slider_div .image_section {
    /* background-color: #22286e; */
    color: white;
    padding: 30px 20px 0px 20px;
    margin-top: 15px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 85%;
    transform: translateX(-50%);
}

/* about */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes borderPulse {
    0% {
        border-color: var(--form-color);
    }

    50% {
        border-color: var(--third-color);
    }

    100% {
        border-color: var(--form-color);
    }
}

.home_form h3 {
    font-family: Inter;
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: -2%;
}

.home_form h3 .first-letter {
    font-size: 70px;
}

.home_form .underline {
    left: 25%;
    transform: translateX(-50%);
}

.home_form .home_content_par_ul {
    font-family: Inter;
    font-weight: 500;
    font-size: 28px;
    color: #FFFFFF;
}

.home_content_par {
    font-family: Inter;
    font-weight: 500;
    font-size: 22px;
    color: #FFFFFF;
}

.home_form {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.home_form.main-container {
    padding-block: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_form .left-section {
    animation: slideInLeft 1s ease-out;
}

.home_form .right-section {
    animation: slideInRight 1s ease-out;
}

.underline {
    width: 8rem;
    height: 3px;
    background-color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--third-color);
    animation: slideRight 2s infinite;
}

@keyframes slideRight {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.home_form ul.criteria-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.home_form ul.criteria-list li {
    display: flex;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.home_form ul.criteria-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.home_form ul.criteria-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.home_form ul.criteria-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.home_form ul.criteria-list li:nth-child(4) {
    animation-delay: 0.4s;
}

.home_form ul.criteria-list li:nth-child(5) {
    animation-delay: 0.5s;
}

.home_form ul.criteria-list li:nth-child(6) {
    animation-delay: 0.6s;
}

.home_form ul.criteria-list li:nth-child(7) {
    animation-delay: 0.7s;
}

.home_form ul.criteria-list li::before {
    content: "•";
    margin-right: 0.5rem;
}

.home_form .learn-more {
    color: var(--secondary-color);
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: transform var(--transition-speed);
    border-bottom: 1px solid;
}

.home_form .learn-more::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width var(--transition-speed);
}

.home_form .learn-more:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.home_form .learn-more:hover::after {
    width: 100%;
}

.home_form .learn-more i {
    transition: transform var(--transition-speed);
}

.home_form .learn-more:hover i {
    transform: translateX(3px) translateY(-3px);
}

.home_form .contact-form {
    background-color: var(--secondary-color);
    color: var(--form-color);
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.home_form .contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.home_form .form-title {
    font-family: Inter;
    font-weight: 500;
    font-size: 28px;
    text-align: center;
    text-transform: uppercase;
    color: #22286E;
}

.home_form .divider {
    width: 100%;
    height: 1px;
    background-color: var(--form-color);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.home_form .divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--third-color);
    animation: slideRight 2s infinite;
}

.home_form .wpcf7-form-control {
    border: none;
    border-bottom: 1px solid var(--form-color);
    border-radius: 0;
    padding: 0;
    margin-bottom: 1rem;
    transition: border-color var(--transition-speed), transform var(--transition-speed);
    background-color: transparent;
}

.home_form label {
    width: 100%;
}

.home_form input {
    width: 100%;
}

.home_form .wpcf7-form-control :focus {
    box-shadow: none;
    border-color: var(--third-color);
    transform: translateY(-3px);
}

.home_form .wpcf7-form-control ::placeholder {
    color: var(--form-color);
    opacity: 0.7;
    transition: opacity var(--transition-speed), transform var(--transition-speed);
}

.home_form .wpcf7-form-control :focus::placeholder {
    opacity: 0.5;
    transform: translateY(-5px);
}

.wpcf7-form-control {
    font-family: Inter;
    font-weight: 400;
    font-size: 22px;
    color: #22286E;
}

.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    height: 70px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border: none;
    box-shadow: none;
    border-bottom: 2px solid #22286E;
}

.home_form .btn {
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.home_form .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.home_form .btn:hover::before {
    width: 300%;
    height: 300%;
}

.home_form .btn-submit {
    background-color: var(--form-color);
    color: var(--secondary-color);
    border: none;
}

.home_form .btn-submit:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.home_form .btn-reset {
    background-color: var(--secondary-color);
    color: var(--form-color);
    border: 1px solid var(--form-color);
}

.home_form .btn-reset:hover {
    background-color: var(--accent-color);
    color: var(--form-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* home */













/* Footer styles */
.footer {
    background-color: var(--form-color);
    color: var(--secondary-color);
    padding: 40px 0 20px;
}

.social-icons a {
    color: var(--secondary-color);
    /* margin: 0 10px; */
    font-size: 18px;
}

.contact-info {
    font-size: 14px;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.copyright {
    font-size: 14px;
    text-align: center;
}

.copyright a {
    color: var(--secondary-color);
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

.testmonil_section .section-title {
    color: var(--primary-color);
    font-family: Inter;
    font-weight: 600;
    font-size: 48px;
    text-align: center;
}

.testmonil_section .title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 3rem;
}

.testmonil_section .testimonial-container {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.testmonil_section .testimonial-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25%;
    height: 33%;
    opacity: 0.1;
    z-index: -1;
}

/* Testimonial carousel */
.testmonil_section .testimonial-wrapper {
    position: relative;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 20px 0;
}

.testmonil_section .testimonial-track {
    display: flex;
    justify-content: center;
    position: relative;
    height: 350px;
}

.testmonil_section .testimonial-item {
    position: absolute;
    width: 30%;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    background-color: white;
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
    opacity: 0;
    transform: scale(0.9);
    z-index: 0;
    visibility: hidden;
}

.testmonil_section .testimonial-item.left {
    left: 0%;
    transform: translateX(-20px) scale(0.9);
    opacity: 0.7;
    z-index: 1;
    visibility: visible;
}

.testmonil_section .testimonial-item.right {
    right: 0%;
    transform: translateX(20px) scale(0.9);
    opacity: 0.7;
    z-index: 1;
    visibility: visible;
}

.testmonil_section .testimonial-item.active {
    left: 50%;
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 10;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
    visibility: visible;
}

.testmonil_section .testimonial-content {
    font-family: Inria Sans;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #22286E;
}

.testmonil_section .testimonial-item.active .testimonial-content {
    color: var(--primary-color);
}

.testmonil_section .testimonial-name {
    font-family: Inter;
    font-weight: 500;
    font-size: 28px;
    text-align: center;
    color: #22286E;
    text-transform: capitalize;
}

.testmonil_section .testimonial-item.active .testimonial-name {
    color: var(--primary-color);
}

.testmonil_section .testimonial-lodge {
    font-family: Inria Sans;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #22286E;
}

/* Custom indicators */
.testmonil_section .custom-indicators {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.testmonil_section .custom-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testmonil_section .custom-indicators li.active {
    background-color: var(--primary-color);
}

/* Navigation arrows */
.testmonil_section .testimonial-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 15px;
}

.testmonil_section .nav-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.testmonil_section .nav-btn:hover {
    background-color: #f8f9fa;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .testmonil_section .testimonial-item {
        width: 80%;
    }

    .testmonil_section .testimonial-item.left,
    .testmonil_section .testimonial-item.right {
        display: none;
    }
}

/* Simple animation classes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

/* gallery */
.gallery {
    padding-block: 50px 70px;
}

.gallery h2 {
    font-family: Inter;
    font-weight: 600;
    font-size: 48px;
    text-align: center;
    color: #22286E;
}

.gallery .page-title {
    color: var(--form-color);
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.gallery .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 100%;
    /* Default 1:1 aspect ratio */
    overflow: hidden;
}

.gallery .main-image {
    padding-bottom: 50%;
    /* 2:1 aspect ratio for the main image */
}

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

.gallery .overlay-blue {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(25, 50, 120, 0.5);
}

.gallery .row {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
}

/* Medium devices and up */
@media (min-width: 768px) {

    .gallery .overlay-blue {
        padding: 2rem !important;
    }

    /* Adjust aspect ratios for larger screens */
    .gallery .col-md-8 .image-container:not(.main-image) {
        padding-bottom: 50%;
        /* 2:1 aspect ratio for the bottom right image */
    }
}

/* Fix for Safari and some mobile browsers */
.gallery .object-fit-cover {
    object-fit: cover;
}

/* gallery */

/* contact */
.contact:root {
    --primary-color: #22286e;
    --background-color: #f4f4f4;
}

.contact {
    padding-block: 50px 70px;
}

/* body {
  background-color: var(--background-color) !important;
} */

.contact .text-primary {
    color: var(--primary-color) !important;
}

.contact .btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.contact .btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.contact .btn-outline-primary:hover {
    background-color: rgba(34, 40, 110, 0.05) !important;
    color: var(--primary-color) !important;
}

.contact .divider {
    width: 4rem;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.contact .custom-input {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #22286E;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none !important;
    padding: 0;
}

.contact .custom-input:focus {
    border-color: var(--primary-color);
}

.contact .card {
    border-color: #ddd;
}

.contact .form-label {
    font-size: 1.1rem;
    margin: 0;
    width: 100%;
}

.contact h2 {
    font-family: Inter;
    font-weight: 500;
    font-size: 28px;
    text-align: center;
    text-transform: uppercase;
}

.contact p {
    margin: 0;
}

.wpcf7-submit {
    font-family: Inter;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: -2%;
    color: #ffffff;
    border-radius: 10px;
}

.contact .btn-outline-primary {
    font-family: Inter;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: -2%;
    color: #22286E;
    border-radius: 10px;
}

/* contact */
.container {
    max-width: 1240px;
}

.recent-events.side_image_postition::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    min-width: 495px;
    background-image: url(../images/sidebr1.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto 50%;
    z-index: 0;
    pointer-events: none;
}

.pos_rel {
    position: relative;
}

.contact.home-contact {
    padding-block: 50px 0px;
}

.contact.home-contact .wpcf7-submit {
    border-radius: 10px;
}



.modal.show .modal-dialog {
    margin-top: 6.75rem !important;
}

.form-label.text-primary br {
    display: none;
}



.modal.contact .wpcf7 form .wpcf7-response-output {
    margin: 0em 0.5em 0em;
    border: 2px solid #1e2b6f;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    border-color: #1e2b6f;
}

.modal.contact .wpcf7 .wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary.w-100.py-3 {
    margin: 0;
}

.read_more_heading_style h4 {
    color: var(--primary-color);
    font-family: Inter;
    font-weight: 600;
    font-size: 32px;
    text-transform: uppercase;
    text-align: center;
}

.read_more_heading_style p {
    font-family: Inria Sans;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}


.rsvp_button_flex {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.recent-hea_up {
    font-family: Inter;
    font-weight: 600;
    font-size: 48px;
    text-align: center;
    color: #22286E;
}



/*  */


.custom-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.custom-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-indicators li.active {
    background: #000;
}

#rsvpModal .modal-body label {
    width: 100%;
}

#rsvpModal .modal-body .wpcf7-form-control {
    font-size: 18px;
}

.wpcf7-form-control {
    font-size: 18px;
}

.contact .form-label {
    font-size: 22px;
    margin: 0;
    width: 100%;
    font-weight: 600;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: #fff !important;
    color: #333 !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
}