@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
    --primary-color: #320a5e;
    --primary-color-dark: #5a189a;
    --text-dark: #7b2cbf;
    --text-light: #6F2DA8;
    --white: #FFFFF0;
    --max-width: 1200px;
}
.ntg1{
    background-color: #870d92;
 
    box-shadow: 0 0 20px #a028be;
    
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

img {
    width: 100%;
    display: flex;
}

a {
    text-decoration: none;
}
.navbar {
    margin-top: 0;
}

nav {
    background: #ffffff;
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensures the nav bar stays on top of other content */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 75px; /* Adjust height to fit within the nav bar */
}

nav ul {
    float: right;
    margin-right: 20px;
    display: flex;
    align-items: center;
    list-style: none;
}

nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a {
    color:#fff;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: rgb(203, 120, 218);
}
/* New styles for hover effect */
nav ul li a:hover {
    color: rgb(203, 120, 218); /* Change this to the desired hover color */
}

/* Optional: If you want a different background color on hover */
nav ul li:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Light background color on hover */
}

.checkbtn {
    font-size: 30px;
    color: #240046;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

@media (max-width: 952px) {
    nav ul li a {
        font-size: 16px;
    }
}

@media (max-width: 858px) {
    .checkbtn {
        display: block;
    }
    nav ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #8255ab;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all 0.5s;
        flex-direction: column;
    }
    nav ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav ul li a {
        font-size: 20px;
    }
    nav ul li a:hover,
    nav ul li a.active {
        background: none; /* Remove background on hover/active state */
    }
    nav ul li a:hover {
        color: var(--primary-color-dark); /* Change color on hover */
    }
    #check:checked ~ ul {
        left: 0;
    }
}

html,
body {
    scroll-behavior: smooth;
    padding-top: 80px; /* Add padding to offset the fixed navbar */
}

body {
    font-family: "Poppins", sans-serif;
}

.header {
    background-image: url("assets/cover.jpg");
    border-image-width: auto;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -80px;

}
.header .header-container {
    padding-top: 60px;
}

.header__container {
    padding-block: 10rem 15rem;
    text-align: center;
    color: var(--white);
}

.header__container {
    position: relative;
}

.header__container .text-background {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    color: white;
    display: inline-block;
    padding: 20px;
}
.header__container p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--white);
    text-align: center;
    opacity: 0.6;
}

.header__container h1 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 4.5rem;
    color: var(--white);
    text-align: center;
}

.header__container h1 span {
    color: #ffffff;
}

.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}


.section__subheader {
    margin-bottom: 0.5rem;
    position:relative;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.section__subheader::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translate(1rem, -50%);
    height: 2px;
    width: 4rem;
    background-color: var(--primary-color);
}

.section__header {
    max-width: 600px;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 3rem;
    color: var(--text-dark);
}

.section__p {
    max-width: 600px;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section__description {
    max-width: 600px;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about__container {
    overflow: hidden;
    display: grid;
    gap: 2rem;
}

.about__image img {
    max-width: 600px;
    margin: auto;
    border-radius: 5px;
}
.about__container:hover .about__image img {
    transform: scale(1.1); /* Example: increase the scale on hover */
    transition: transform 0.3s ease; /* Smooth transition */
}

.decor__grid {
    margin-top: 4rem;
    display: grid;
    gap: 1rem;
}

.decor__card {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

/* Swiper Styles */
/* Carousel Section Styles */
.carousel-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    background-color: #f8f9fa; /* Optional: Add a background color */
}

.owl-carousel {
    max-width: 1000px; /* Set a maximum width for the carousel */
    margin: 0 auto; /* Center the carousel */
}

.owl-carousel .item {
    height: 400px; /* Set a fixed height for consistency */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.owl-carousel .item img {
    width: auto;
    height: 100%; /* Ensure all images have the same height */
    object-fit: cover;
}

.owl-stage-outer {
    padding: 0 5%; /* Reduce padding for a more compact view */
}

.owl-item:not(.center) .item img {
    opacity: 0.5;
    transform: scale(0.9);
}

.owl-item.center .item img {
    opacity: 1;
    transform: scale(1.1);
}

.owl-carousel .owl-nav {
    display: none;
}

.owl-carousel .owl-dots {
    padding-top: 20px;
}

/* Section Styles */
.section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


.section__subheader {
    color: #aa84dd;
    font-size: 18px;
    text-align: center;
}

.section__header {
    color: #333;
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

/* Services Styles */
.accordion {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    
}

.accordion-item {
    background-color: #f1f1f1;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
}

.accordion-header h2 {
    font-size: 1.2rem;
    margin: 0;
}

.accordion-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-content {
   
    padding: 1rem;
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
}
/*Specific Background Images */
#content1 {
    background-image: url('assets/Bibha_brand_assets/png/image1.jpg');
    background-size: auto;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    backdrop-filter: blur(20px);
    color: #fff;
    font-weight: bold;
    position:relative;
}
#content1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.584); /* Adjust the opacity as needed */
    z-index: 1;
}

#content1 p {
    position: relative;
    z-index: 2; /* Ensure the text is above the overlay */
}


#content3 {
    background-image: url('assets/Bibha_brand_assets/png/image3.jpg');
    background-size: auto;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    backdrop-filter: blur(20px);
    color: #fff;
    font-weight: bold;
    position:relative;
}
#content3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.584); /* Adjust the opacity as needed */
    z-index: 1;
}

#content3 p {
    position: relative;
    z-index: 2; /* Ensure the text is above the overlay */
}

#content4 {
    background-image: url('assets/Bibha_brand_assets/png/image4.jpg');
    background-size: auto;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    backdrop-filter: blur(20px);
    color: #fff;
    font-weight: bold;
    position:relative;
}
#content4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.584); /* Adjust the opacity as needed */
    z-index: 1;
}

#content4 p {
    position: relative;
    z-index: 2; /* Ensure the text is above the overlay */
}





#content6 {
    background-image: url('assets/Bibha_brand_assets/png/image6.jpg');
    
    background-size: auto;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    backdrop-filter: blur(20px);
    color: #fff;
    font-weight: bold;
    position:relative;
}
#content6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.584); /* Adjust the opacity as needed */
    z-index: 1;
}

#content6 p {
    position: relative;
    z-index: 2; /* Ensure the text is above the overlay */
}

#content7 {
    background-image: url('assets/Bibha_brand_assets/png/image7.jpg');
    background-size: auto;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    backdrop-filter: blur(20px);
    color: #fff;
    font-weight: bold;
    position:relative;
}
#content7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.584); /* Adjust the opacity as needed */
    z-index: 1;
}

#content7 p {
    position: relative;
    z-index: 2; /* Ensure the text is above the overlay */
}

/* Open/Close Styles */
.accordion-item.open .accordion-content {
    max-height: 300px; /* Adjust based on content */
    padding: 15px; /* Add padding when open */
}

/* Banner Styles */
.banner__container {
    background-color: #f8f9fa;
    padding: 2rem 0;
    text-align: center;
}

.banner__content {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.banner__card {
    background: var(--white);
    border-radius: 5px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
    flex: 1 1 200px;
}

.banner__card:hover {
    transform: translateY(-10px);
}

.banner__icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.banner__card h4 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color-dark);
    margin-bottom: 0.5rem;
}

.banner__card p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .banner__content {
        flex-direction: column;
    }
}

.footer {
    background-color: var(--text-dark);
    font-weight: bold;
}

.footer__container {
    display: grid;
    gap: 4rem 2rem;
}

.footer__col h4 {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
}

.footer__links {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.footer__links a {
    color: var(--text-light);
    transition: 0.3s;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__socials {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__social-icon {
    max-width: 40px;
    opacity: 0.8;
    transition: 0.3s;
}

.footer__social-icon:hover {
    opacity: 1;
}

.footer__logo {
    max-width: 150px;
    width: 100%;
    height: auto;
}

.footer__bar {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}
/* Google Maps link hover effect */
.footer__content ul li a:hover {
    color: #ccc;
    text-decoration: underline;
  }
  
  /* Social media icon hover effect */
  .footer__socials a:hover img {
    transform: scale(1.2);
    transition: transform 0.3s ease;
  }
  
@media (width > 576px) {
    .room__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width > 768px) {
    .header__container {
        padding-block: 20rem 15rem;
    }

    .about__container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .room__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service__content {
        grid-column: 2/3;
    }

    .footer__container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (width > 1024px) {
    .room__grid {
        gap: 2rem;
    }
}
.logo1{
    background-size: auto;
    background-repeat: no-repeat;
    width: 1000%;
    height: 1000%;
}

.footer__col {
    width: 100%;
}

@media (min-width: 576px) {
    .footer__col {
        width: 30%;
    }
}
