body {
    overflow-x: hidden;
}

.container-fluid {
    width: 94%;
}

.header_bg {
    background: #412236;
}
.ltn__header-middle-area {
    z-index: 999;
        padding-top: 2px !important;
    padding-bottom: 2px !important;
}

.logo_sub_text {
    margin: 0;
    font-size: 13px;
    position: absolute;
    bottom: -7px;
    right: 0;
    color: #fff;
    text-transform: uppercase;
}

.site-logo span {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.03rem;
    color: #eda400 !important;
}

.site-logo-wrap .site-logo {
    position: relative;
}

.ltn__main-menu>ul>li>a {
    color: #fff;
}

.ltn__main-menu>ul>li>a {
    font-size: 17px;
    padding: 20px 7px;
}

.bg_slider {
    background: #562f45;
}

.slider-sticky-icon-2 {
    left: unset;
    right: 25px;
    bottom: unset;
    top: 32%;
}

.slider-sticky-icon-2 ul li a i {
    color: #fff;
}

/* Contact Info */
.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
}

.contact-item {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    transition: background 0.3s, transform 0.3s;
}

.contact-item:hover {
    background: rgb(34 11 27 / 52%);
    transform: translateY(-2px);
}

.contact-item:hover {
    color: #fff !important;
}

.contact-item i {
    font-size: 1rem;
    color: #fff;
}

.ltn__main-menu>ul {
    justify-content: end;
}


.asharm_bg_1 {
    background: #532f45;
}

.asharm_bg_2 {
    /*background: #FFF0E3;*/
    background: #FFF8EB;
}

.carousel {
    top: 20px;
    z-index: 111;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.about-title span {
    color: #814168;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.about-stats p {
    color: #000 !important;
    margin: 0;
}


.about-image img {
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 98, 255, 0.25);
}


.btn-primary {
    background-color: #814168;
    border-color: #814168;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 30px;
    transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background-color: #814168;
    border-color: #814168;
    transform: translateY(-2px);
}

.room-section {
    padding: 100px 0;
    position: relative;
}

.room-section h2 {
    font-weight: 600;
    font-size: 2.2rem;
    color: #fff;
}

.room-section p.section-desc {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #fff;
    font-size: 1rem;
}

.room-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.room-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.decor-leaf {
    position: absolute;
    top: -150px;
    right: -30px;
    opacity: 0.04;
    width: 180px;
    z-index: 0;
}


.founder-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.about-section {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.founder-content {
    z-index: 2;
    position: relative;
}

.founder-img-wrapper {
    margin: 0 auto;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
}

.founder-img-wrapper::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 25px;
    background: radial-gradient(circle at center, rgba(255, 208, 0, 0.5), transparent 60%);
    filter: blur(12px);
    z-index: -1;
    animation: auraPulse 3.2s ease-in-out infinite alternate;
}


.founder-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    pointer-events: none;
}


.founder-img-glow {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, filter .45s;
}


.founder-img-wrapper:hover .founder-img-glow {
    transform: scale(1.07) translateY(-6px);
    filter: brightness(1.15) saturate(1.15);
}


.founder-img-wrapper:hover::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
}


@keyframes auraPulse {
    from {
        filter: blur(14px) brightness(0.9);
        opacity: 0.8;
    }

    to {
        filter: blur(18px) brightness(1.05);
        opacity: 1;
    }
}

.founder-text {
    padding-left: 40px;
}

.founder-text h2 {
    font-weight: 600;
    color: #1e2a27;
    font-size: 2rem;
}

.founder-text p.message {
    font-size: 1rem;
    color: #000;
    margin: 20px 0;
    line-height: 1.7;
}

.founder-name {
    font-weight: 600;
    color: #3f2236;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: bold;
}

.founder-title {
    color: #000;
    font-size: 0.95rem;
}

.sticky-active.ltn__sticky-bg-white {
    background-color: #412236;
}

.sticky-active.ltn__sticky-bg-white .ltn__main-menu>ul>li>a {
    color: #fff;
}


.contact-section {
    background: #ffffff;
}

.contact-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #555;
}

.contact-title {
    font-size: 32px;
    color: #0a2240;
}

.contact-heading {
    font-size: 28px;
    line-height: 1.4;
    color: #0a2240;
}

.map-wrapper {
    border: 2px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.room-section::before {
    position: absolute;
    top: -5px;
    right: 0;
    content: '';
    z-index: 11111111;
    background: url('../images/flowers.png');
    width: 200px;
    height: 200px;
    background-size: cover;
    animation: sway 3s ease-in-out infinite;
}

span.title2 {
    color: #eda400;
}

.site-footer {
    background: #532f45;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.footer-nav a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #f1c40f;
    /* Gold hover */
    text-shadow: 0 0 5px rgba(241, 196, 15, 0.7);
}

.schedule-list {
    /* border: 1px solid #dee2e6;
    border-radius: 6px;
    background-color: #f8f9fa; */
    padding: 0;
    margin: 0;
}

.schedule-list li {
    display: block;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px 5px;
    border-bottom: 1px solid #dee2e6;
    font-size: 0.9rem;
    color: #495057;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list .time {
    font-weight: 600;
    color: #212529;
    flex: 0 0 40%;
}

.schedule-list .activity {
    flex: 0 0 60%;
    color: #495057;
}

.footer-title {
    font-size: 25px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .schedule-list li {
        flex-direction: column;
        gap: 2px;
    }

    .schedule-list .time {
        flex: 0 0 auto;
    }
}


.copyright {
    font-size: 14px;
    color: #ddd;
}

.box1_warpper {
    padding: 20px 22px;
    border: 1px solid #e7a300;
    border-radius: 20px;
    margin: 0.75rem 0;
    min-height: 126px;
}

.box1_warpper h2 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding-left: 10px;
    border-left: 5px solid #e7a300;
    border-radius: 5px;
}

.box1_warpper p {
    font-size: .875rem;
    line-height: 1.25rem;
    color: #4c505a;
    margin: 0;
}

hr {
    margin: 0.75rem 0;
    border-color: #000;
}

h2.gallery_text {
    margin: 0;
    background: #fff;
    border-radius: 0 0 10px 10px;
    text-align: center;
    padding: 0.75rem 0;
    font-size: 18px;
    letter-spacing: 0.02rem;
}

.footer-address ul li .footer-address-info p {
    color: #000;
}

.ltn__breadcrumb-area{
    padding: 60px 0;
    margin-bottom: 0;
}

.ltn__breadcrumb-list ul li{
    color: #fff !important;
}

.page-title {
    font-family: 'Nunito Sans', sans-serif;
}

.top_bar {
    padding: 5px 0;
    border-bottom: 1px solid #ffffff26;
}

.bg-overlay-white-30:before {
    background: rgb(0 0 0 / 38%);
}

.ltn__main-menu li > ul{
    border-top: 5px solid #f1c40f;
}

.ltn__main-menu li ul li a{
    color: #000 !important;
}

.ltn__main-menu li:hover > a {
    color: #e7a300;
}

@media(max-width: 768px) {
    .footer-nav .list-inline-item {
        display: block;
        margin: 8px 0;
    }
}


@keyframes sway {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-8px);
    }

    100% {
        transform: translateX(0);
    }
}

@media(max-width: 768px) {
    .contact-heading {
        font-size: 22px;
    }
}



@media screen and (max-width: 1400px) {
    .slider-sticky-icon-2 {
        display: block;
    }

    .founder-section {
        padding: 60px 0;
    }

    /*.contact-info {*/
    /*    flex-direction: column;*/
    /*    align-items: end;*/
    /*    gap: 5px;*/
    /*}*/

    .contact-item {
        font-size: 13px;
    }

    .ltn__main-menu>ul>li {
        margin-right: 12px;
    }

    .ltn__main-menu>ul>li>a {
        font-size: 15px;
    }

    .site-logo span {
        font-size: 26px;
    }
}


@media (max-width: 768px) {
    .room-section {
        padding: 70px 0;
    }

    .room-section h2 {
        font-size: 1.8rem;
    }

    .founder-text {
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
    }

    .about-title {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .btn-primary {
        display: block;
        margin: 0 auto;
    }
}

@media screen and (max-width: 590px) {

    .phone_screen span {
        font-size: 19px;
    }

    .phone_screen span .logo_sub_text {
        color: #3f2236;
    }

    .ltn__header-logo-and-mobile-menu-in-mobile .site-logo-wrap {
        justify-content: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 7px;
    }

    .active_in_phone {
        justify-content: end !important;
        gap: 7px;
    }

    .room-section::before {
        width: 130px;
        height: 130px;
    }

    .decor-leaf {       
        right: 0;
        width: 120px;   
    }
}