.navbar {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 800;
    transition: background-color 0.5s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
    background-color: #fff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}
.navbar-brand {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
}
.navbar-brand:hover {
    color: #007bff;
}
.navbar-nav .nav-link {
    color: #333;
    margin-right: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    background-color: #ff007a;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: darkblue;
}
.navbar-nav .nav-item.active .nav-link {
    color: #007bff;
    font-weight: bold;
}
.navbar .btn-custom {
    background-color: #ff007a;
    color: #fff;
    border-radius: 50px;
    padding: 8px 20px;
    transition: background-color 0.3s ease;
}
.navbar .btn-custom:hover {
    background-color: #e6006e;
    color: #fff;
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 10px 20px;
    }

    .navbar-nav .nav-link {
        margin-right: 0;
        font-size: 1rem;
        padding: 10px 0;
        text-align: center;
    }
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        margin-top: 10px;
    }
    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    .navbar .btn-custom {
        margin-top: 10px;
        width: 100%;
        border-radius: 30px;
    }
}
.hero-section {
    height: 100vh;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-section .carousel {
    height: 100%;
    width: 100%;
}

.hero-section .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}
.hero-section .content {
    position: absolute;
    margin-top: 50px;
    z-index: 2;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-top: 200px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
    color: #fff;
}
.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.hero-section .btn-custom {
    background-color: #ff007a;
    color: #fff;
    padding: 10px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}
.hero-section .btn-custom:hover {
    background-color: #e6006e;
    color: #fff;
}
#about-us {
    padding: 50px 0;
    background-color: #f9f9f9;
}
#about-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}
#about-us h2 {
    text-align: center;
    justify-content: center;
    font-size: 2rem;
    color: black !important;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    text-transform:uppercase;
}
#about-us .underline {
    width: 50px;
    height: 3px;
    margin-top: 5px;
    display: block;
}
#about-us h3 {
    font-size: 2.5rem;
    text-align: left;
    color: black;
    margin-bottom: 15px;
}
#about-us p {
    font-size: 1.1rem;
    text-align: justify;
    color: #666;
    margin-bottom: 15px;
}
#about-us button {
    justify-content: left;
}
#about-us p strong {
    color: #007bff;
    font-weight: 600;
}
#about-us .btn-primary {
    background-color: #ff007a;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    margin-top: 20px;
    text-transform: uppercase;
}
#about-us .btn-primary:hover {
    background-color: #e6006e;
}
#about-us img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
#about-us img:hover {
    transform: scale(1.05);
}
.about-us-heading a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #ff007a; 
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}
.about-us-heading a:hover::after {
    width: 100%;
}
.about-us-heading a:hover {
    color: darkblue; 
}
.about-us-heading a:hover {
    text-decoration: none; 
}
@media (max-width: 768px) {
    #about-us .row {
        flex-direction: column;
        text-align: center;
    }

    #about-us img {
        margin-bottom: 20px;
    }
    #about-us h2 {
        font-size: 2rem;
    }
    #about-us h3 {
        font-size: 1.8rem;
    }
    #about-us p {
        font-size: 1rem;
    }
    #about-us .btn-primary {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    #about-us h2 {
        font-size: 1.8rem;
    }

    #about-us h3 {
        font-size: 1.6rem;
    }

    #about-us p {
        font-size: 0.9rem;
    }

    #about-us .btn-primary {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}
.rooms {
    padding: 50px;
    background-color: #fff;
}

.rooms h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    position: relative;
}

.rooms h2::after {
    content: '';
    position: static;
    width: 20%;
    height: 3px; 
    background-color: transparent; 
    transition: background-color 0.3s ease; 
}
.rooms h2:hover::after {
    background-color: #e83e8c;
}

.rooms h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: #777;
    margin-bottom: 40px;
}

.room-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.room-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 30%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    position: relative; 
}
.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
}
.room-card img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
    margin-bottom: 20px;
    position: relative;
}
.icon-group {
    position: absolute;
    top:220px;
    left: 73%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    justify-content: center;
}
.icon-group i {
    font-size: 18px;
    color: #f988bd;
    background-color:white;
    padding: 6px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.icon-group i:hover {
    background-color:#e83e8c ;
}
.room-card h4 {
    font-size: 22px; 
    margin: 20px 0 10px;
}
.room-card p {
    font-size: 18px; 
    color: #555;
    margin: 0 20px 20px;
    flex-grow: 1;
}
.room-card .price {
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.room-card button {
    background-color: #e83e8c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: auto; 
}
.room-card button:hover {
    background-color: #d63384;
}
@media (max-width: 1200px) {
    .room-card {
        width: 30%;
    }
}
@media (max-width: 992px) {
    .room-card {
        width: 45%;
    }
}
@media (max-width: 768px) {
    .room-card {
        width: 100%;
    }

    .rooms h2 {
        font-size: 28px;
    }

    .rooms h3 {
        font-size: 22px;
    }

    .room-card img {
        height: 180px;
    }

    .room-card h4 {
        font-size: 18px;
    }

    .room-card p {
        font-size: 14px;
    }

    .room-card button {
        font-size: 14px;
        padding: 8px 16px;
    }
}
.services {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
    overflow: hidden;
}
.services .content {
    max-width: 50%;
    animation: fadeInLeft 1s ease-in-out;
}
.services .content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}
.services .content p {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
}

.services .content .icon-list {
    margin-top: 20px;
}

.services .content .icon-list .icon-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.services .content .icon-list .icon-item i {
    font-size: 2rem;
    margin-right: 10px;
    color: #f06449;
}
.services .image {
    max-width: 50%;
    animation: fadeInRight 3s ease-in-out;
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@media (max-width: 768px) {
    .services {
        flex-direction: column;
    }
    .services .content, .services .image {
        max-width: 100%;
        animation: fadeIn 1s ease-in-out;
    }
    @keyframes fadeIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
}
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.services-image {
    flex: 1;
    padding: 0 20px;
}
.services-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.services-image img:hover {
    transform: scale(1.05);
}
.services-content {
    flex: 2;
    text-align: center;
    padding: 0 30px;
}
.services-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    font-weight: bold;
    line-height: 1.3;
    color: #333;
}
.services-content h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #e91e63;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.services-list {
    list-style: none;
    padding: 0;
}
.services-list li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}
.services-list li i {
    font-size: 24px;
    color: #e91e63;
    margin-right: 10px;
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 768px) and (max-width: 1199px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .services-image, .services-content {
        flex: unset;
        width: 100%;
        margin-bottom: 30px;
    }
    .services-content {
        padding: 30px 20px;
    }
    .services-content h2 {
        font-size: 35px;
    }
    .services-list li {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .services-image, .services-content {
        flex: unset;
        width: 100%;
        margin-bottom: 20px;
    }
    .services-content {
        padding: 20px 15px;
    }
    .services-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .services-list li {
        font-size: 16px;
    }
    .services-list li i {
        font-size: 24px;
    }
}
.stats {
    display: flex;
    justify-content: space-around; 
    align-items: center;
    background-color: white; 
    padding: 40px 0; 
    border-radius: 10px;
    margin: 20px 50px;
    width: 90%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}
.stat-item {
    text-align: center; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-item h2 {
    font-size: 38px; 
    color:#000;
    margin: 0 0 10px 0; 
}
.stat-item p {
    font-size: 18px; 
    color: #555; 
}

@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        padding: 30px 0;
    }
    .stat-item {
        margin-bottom: 20px; 
    }
    .stat-item h2 {
        font-size: 36px; 
    }
    .stat-item p {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .stat-item h2 {
        font-size: 60px; 
    }

    .stat-item p {
        font-size: 20px; 
    }
}

.gallery-section {
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px; 
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15); 
}

.gallery-section h2 {
    margin-bottom: 40px;
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3); 
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px; 
    object-fit: cover;
    border-radius: 15px; 
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0.9; 
}

.gallery-grid img:hover {
    transform: scale(1.1); 
    box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.3);
    opacity: 1; 
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px;
    background-color: #fff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 20px;
}
.contact-info {
    background-color: #e91e63;
    color: white;
    padding: 40px 30px;
    border-radius: 10px;
    width: 50%;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
.contact-info h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.contact-info p i {
    margin-right: 10px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #c2185b;
}

.contact-form {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    width: 50%;
    margin-left: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #e91e63;
}

.contact-form .form-group {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

.contact-form button {
    background-color: #e91e63;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contact-form button:hover {
    background-color: #c2185b;
}
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        align-items: center;
    }
    .contact-info,
    .contact-form {
        width: 100%;
        margin-left: 0;
    }

    .contact-form .form-group {
        flex-direction: column;
    }
}


.map-container {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #f0f0f0;
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media screen and (max-width: 768px) {
    .map-container {
        padding-bottom: 75%;
    }
}
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 70px 40px; 
    font-family: 'Poppins', sans-serif;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-column {
    flex: 1;
    min-width: 220px; 
    margin: 20px;
}
.footer-column h3 {
    font-size: 22px;
    margin-bottom: 30px; 
    color: #f8f9fa;
    font-weight: bold;
    position: relative;
}
.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px; 
    height: 3px;
    background-color: #e91e63;
    bottom: -10px;
    left: 0;
}
.footer-column p {
    font-size: 16px;
    line-height: 2; 
    color: #b3b3b3;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 15px; 
}
.footer-column ul li a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}
.footer-column ul li a:hover {
    color: #e91e63; 
}
.book-now {
    background-color: #e91e63;
    color: #fff;
    padding: 15px 30px; 
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.4s ease, transform 0.2s ease;
}
.book-now:hover {
    background-color: #c2185b;
    transform: translateY(-3px);
}
.social-icons {
    display: flex;
    align-items: center;
    margin-top: 30px; 
}
.social-icons a {
    margin-right: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover {
    opacity: 1;
    transform: scale(1.1);
}
.social-icon-img {
    width: 35px;
    height: auto;
    transition: transform 0.3s ease;
}
.social-icon-img:hover {
    transform: scale(1.15);
}
.footer-bottom p{
    margin-top: 30px;
    text-align: center;
}
@media (max-width: 1199px) and (min-width: 768px) {
    .footer-column {
        flex-basis: 45%; 
        margin: 20px 0;
    }
    .social-icons {
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .footer-column {
        flex-basis: 100%; 
        text-align: center;
        margin: 30px 0;
    }
    .footer-column ul li {
        margin-bottom: 20px; 
    }
    .social-icons {
        flex-direction: column;
        align-items: center;
    }
    .social-icons a {
        margin-right: 0;
        margin-bottom: 20px; 
    }
    .book-now {
        padding: 12px 25px;
        font-size: 16px;
        margin-top: 30px;
    }
    .social-icon-img {
        width: 25px;
    }
}
