/********** Template CSS **********/
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden; /* Horizontal overflow hide karega */
  margin: 0;
  padding: 0;
}

:root {
    --primary: #F77D0A;
    --secondary: #2B2E4A;
    --light: #F4F5F8;
    --dark: #1C1E32;
}

@media (min-width: 1200px) {
    .col-xl-custom-1-5 {
        flex: 0 0 14.2%;
        max-width: 14.2%;
    }
}

#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
}

#loader-overlay img {
    width: 25vw;
    height: auto;
    max-height: 50vh;
    display: block;
    margin: 0 auto;
}

#loader-overlay h1 {
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin-top: 1rem;
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: slideIn 1.5s ease-out forwards;
    text-shadow: 2px 2px 0 #4074b5, 2px -2px 0 #4074b5, -2px 2px 0 #4074b5, -2px -2px 0 #4074b5,
                 2px 0px 0 #4074b5, 0px 2px 0 #4074b5, -2px 0px 0 #4074b5, 0px -2px 0 #4074b5;
}

/* Responsive styles */
@media (max-width: 768px) {
    #loader-overlay img {
        width: 50vw;
    }

    #loader-overlay h1 {
        font-size: 2.5rem;
    }
    .img-height{
        height:100px;
    }
}

@media (max-width: 480px) {
    #loader-overlay img {
        width: 70vw;
    }

    #loader-overlay h1 {
        font-size: 2rem;
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





.carousel-item img {
    object-fit: cover; 
    width: 100%;
    height: 100%;
}

.carousel-inner {
    height: 550px;  /* Set to the desired fixed height */
}

.carousel-item {
    height: 100%;
}

.carousel-caption {
    box-sizing: border-box;  /* Includes padding inside the total width/height */
    padding: 20px;  /* Adjust as needed */
}

.carousel-item {
    min-height: 550px;  /* Set to the height you want */
}


@keyframes scaleUpDown {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

@keyframes scaleUpDownBtn {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.blinking-icon {
  animation: scaleUpDown 1s infinite;
}

.blinking-btn {
  animation: scaleUpDownBtn 1s infinite;
}


.custom-page-header{
    background: linear-gradient(
        135deg,
        #0b2f66 0%,
        #123d82 50%,
        #0a2f63 100%
    );

    padding: 45px 0;
    text-align: center;

    border-bottom: 4px solid rgba(212,175,55,0.7);

    position: relative;
}

.custom-page-header::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background: linear-gradient(
        90deg,
        rgba(212,175,55,0.25),
        transparent,
        rgba(212,175,55,0.25)
    );

    pointer-events:none;
}
.custom-about-text {
    font-weight: bold;
    font-size: 2rem; 
    color: white;
    text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.5); 
    letter-spacing: 2px; 
    font-family: 'Arial', sans-serif; 
    text-transform: uppercase; 
    margin: 0;
    line-height: 1.2; 
}


.custom-about-text-3d {
    font-weight: bold;
    font-size: 2rem;
    color: #fff;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;

    /* 3D effect using multiple text shadows */
    text-shadow:
        1px 1px 0 #ccc,
        2px 2px 0 #bbb,
        3px 3px 0 #aaa,
        4px 4px 0 #999,
        5px 5px 0 #888,
        6px 6px 0 #777,
        7px 7px 0 #666;
}



h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.nav-bar::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: var(--dark);
}

.nav-bar::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: #ffffff;
}

.navbar-dark .navbar-nav .nav-link {
    padding: 30px 15px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        padding: 10px 15px;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 30, 50, .2);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.page-header {
    height: 400px;
    margin-bottom: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(28, 30, 50, .9), rgba(28, 30, 50, .9)), url(../img/bg-banner.jpg);
    background-attachment: fixed;
}

@media (max-width: 991.98px) {
    .page-header {
        height: 300px;
    }
}

.service-item {
    height: 320px;
    background: var(--light);
    transition: .5s;
}

.service-item:hover,
.service-item.active {
    background: var(--secondary);
}

.service-item h1,
.service-item h4 {
    transition: .5s;
}

.service-item:hover h1,
.service-item.active h1 {
    color: var(--dark) !important;
}

.service-item:hover h4,
.service-item.active h4 {
    color: var(--light);
}

.rent-item {
    padding: 30px;
    text-align: center;
    background: var(--light);
    transition: .5s;
}

.rent-item:hover,
.rent-item.active {
    background: var(--secondary);
}

.rent-item h4 {
    transition: .5s;
}

.rent-item:hover h4,
.rent-item.active h4 {
    color: var(--light);
}

.team-item {
    padding: 30px 30px 0 30px;
    text-align: center;
    background: var(--light);
    transition: .5s;
}

.team-item:hover,
.owl-item.center .team-item {
    background: var(--secondary);
}

.team-item h4 {
    transition: .5s;
}

.owl-item.center .team-item h4,
.owl-item.center .rent-item h4 {
    color: var(--light);
}

.team-item .team-social {
    top: 0;
    left: 0;
    opacity: 0;
    transition: .5s;
    background: var(--light);
}

.owl-item.center .team-item .team-social,
.owl-item.center .rent-item {
    background: var(--secondary);
}

.team-item:hover .team-social {
    opacity: 1;
    background: var(--secondary);
}

.team-carousel .owl-nav,
.related-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: calc(50% - 30px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next,
.related-carousel .owl-nav .owl-prev,
.related-carousel .owl-nav .owl-next {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover,
.related-carousel .owl-nav .owl-prev:hover,
.related-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.vendor-carousel .owl-dots,
.testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-carousel .owl-dot,
.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    transition: .5s;
}

.vendor-carousel .owl-dot.active,
.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 80px;
    height: 80px;
}

.testimonial-carousel .owl-item .testimonial-item {
    height: 350px;
    transition: .5s;
    background: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--secondary);
}

.testimonial-carousel .owl-item .testimonial-item h1,
.testimonial-carousel .owl-item .testimonial-item h4 {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item h1 {
    color: var(--dark) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h4 {
    color: var(--light);
}

.bg-banner {
    background: linear-gradient(rgba(28, 30, 50, .9), rgba(28, 30, 50, .3)), url(../img/room-banner.jpeg);
    background-attachment: fixed;
    background-size:cover;
}

.full-width{
    min-width:100% !important;
}


    @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

    :root {
        --primary: #D4AF37;           /* Rich gold */
        --primary-light: #f5e3b3;
        --primary-dark: #b28b2f;
        --secondary: #0B1A33;         /* Deep navy with a hint of blue */
        --accent: #F5F2E6;            /* Soft cream */
        --dark: #051020;
        --light: #FFFFFF;
        --gray: #8A8F99;
        --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #f5e3b3 50%, #D4AF37 100%);
        --gradient-navy: linear-gradient(135deg, #0B1A33 0%, #1E2A47 100%);
        --shadow-sm: 0 10px 30px rgba(0,0,0,0.05);
        --shadow-md: 0 20px 40px rgba(0,0,0,0.08);
        --shadow-lg: 0 30px 60px rgba(212,175,55,0.15);
        --shadow-hover: 0 40px 70px rgba(212,175,55,0.2);
        --font-heading: 'Cormorant Garamond', serif;
        --font-body: 'Lato', sans-serif;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: var(--font-body);
        color: #2C2C2C;
        background-color: var(--light);
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: var(--font-heading);
        font-weight: 600;
        letter-spacing: 0.02em;
    }

  /* Section Titles with gold underline and gradient */
  .section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
  }

  .section-title h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--secondary);
    display: inline-block;
    padding-bottom: 1rem;
    border-bottom: 3px solid transparent;
    border-image: var(--gradient-gold);
    border-image-slice: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  /* Buttons with gradient and shine effect */
  .btn {
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--gradient-gold);
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
  }

  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
    z-index: -1;
  }

  .btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--dark);
  }

  .btn:hover::before {
    left: 100%;
  }

  .btn-primary {
    background: var(--gradient-gold);
    color: var(--dark);
  }

  /* Carousel with glassmorphism overlay */
  .carousel-item {
    position: relative;
    height: 100vh;
    min-height: 600px;
  }

  .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(11,26,51,0.7) 0%, rgba(0,0,0,0.3) 100%); */
    z-index: 1;
  }

  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* .carousel-caption {
    z-index: 2;
    bottom: 50%;
    transform: translateY(50%);
    text-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    padding: 0 20px;
  } */

  .carousel-caption h4 {
    font-size: clamp(1rem, 3vw, 1.8rem);
    letter-spacing: 6px;
    font-weight: 300;
    color: var(--primary-light);
    animation: fadeInUp 1s ease;
    margin-bottom: 1rem;
  }

  .carousel-caption h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 700;
    color: #fff;
    animation: fadeInUp 1.2s ease;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
  }

  #header-carousel:hover .carousel-control-prev,
  #header-carousel:hover .carousel-control-next {
    opacity: 1;
  }

  .carousel-control-prev {
    left: 30px;
  }

  .carousel-control-next {
    right: 30px;
  }

  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    background: var(--primary);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 40px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  /* About Section */
  .about-icon-box {
    background: var(--light);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(212,175,55,0.1);
    backdrop-filter: blur(5px);
    padding: 30px 25px;
  }

  .about-icon-box:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
  }

  .about-icon-box .icon-circle {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(212,175,55,0.2);
  }

  .about-icon-box:hover .icon-circle {
    transform: scale(1.05);
    background: var(--primary)
  }

  .about-icon-box .icon-circle i {
    font-size: 2.8rem;
    color: var(--light);
  }

  .about-icon-box h4 {
    font-size: 1.4rem;
    color: var(--secondary);
    font-weight: 600;
  }

  /* Banner with Parallax */
  .banner-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }

  .banner-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11,26,51,0.95) 0%, rgba(212,175,55,0.5) 100%);
  }

  .banner-content {
    position: relative;
    z-index: 2;
    padding: 120px 0;
    text-align: center;
  }

  .banner-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  .banner-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--light);
    margin-bottom: 1.5rem;
  }

  .banner-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
  }

  /* Room Cards – Ultra Premium */
  .room-card {
    background: var(--light);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 20px 10px;
    border: 1px solid rgba(212,175,55,0.1);
    backdrop-filter: blur(2px);
  }

  .room-card:hover {
    transform: scale(1.03) translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
  }

  .room-img {
    height: 280px;
    overflow: hidden;
    position: relative;
  }

  .room-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
  }

  .room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
  }

  .room-card:hover .room-img img {
    transform: scale(1.15);
  }

  .room-content {
    padding: 30px 20px 35px;
    text-align: center;
    background: var(--light);
  }

  .room-content h4 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 700;
  }

  .room-amenities {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
    color: var(--gray);
    font-size: 1rem;
    flex-wrap: wrap;
  }

  .room-amenities span {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .room-amenities i {
    color: var(--primary);
    font-size: 1.3rem;
  }

  .room-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
    line-height: 1;
  }

  .room-price small {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
    letter-spacing: 1px;
  }

  /* Team Cards */
  .team-card {
    background: var(--light);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(212,175,55,0.1);
  }

  .team-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
  }

  .team-img {
    height: 320px;
    overflow: hidden;
  }

  .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }

  .team-card:hover .team-img img {
    transform: scale(1.1);
  }

  .team-card .p-4 {
    background: var(--light);
    position: relative;
    padding: 25px 20px 30px;
  }

  .team-card h4 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 5px;
  }

  .team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }

  .team-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
  }

  .team-social a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px) rotate(360deg);
  }

  /* Testimonial Cards */
  .testimonial-card {
    background: var(--light);
    border-radius: 40px;
    padding: 45px 35px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212,175,55,0.1);
    margin: 20px 10px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
  }

  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
  }

  .testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    box-shadow: 0 10px 20px rgba(212,175,55,0.3);
  }

  .testimonial-card i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
  }

  .testimonial-card h4 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 5px;
  }

  .testimonial-card i.text-muted {
    color: black !important;
    font-size: 15px;
  }

  /* Contact Form & Info */
  .contact-form {
    background: var(--light);
    border-radius: 40px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212,175,55,0.1);
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 50px;
    border: 2px solid #eee;
    padding: 15px 25px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    background: rgba(255,255,255,0.9);
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
    outline: none;
    background: #fff;
  }

  .contact-info {
    background: var(--gradient-navy);
    border-radius: 40px;
    padding: 50px 40px;
    color: var(--light);
    box-shadow: var(--shadow-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-info i {
    color: var(--primary);
    font-size: 2.2rem;
    margin-right: 20px;
    width: 40px;
    text-align: center;
  }

  .contact-info h5 {
    color: var(--light);
    font-size: 1.3rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
  }

  .contact-info p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Vendor / Partners */
  .vendor-item {
    background: var(--light);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    filter: grayscale(0.6);
    opacity: 0.7;
    margin: 10px;
    border: 1px solid transparent;
  }

  .vendor-item:hover {
    filter: grayscale(0);
    opacity: 1;
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
    transform: scale(1.05);
  }

  /* Modal Enhancements */
  .modal-content {
    border-radius: 50px;
    border: none;
    box-shadow: 0 50px 100px rgba(0,0,0,0.3);
    overflow: hidden;
  }

  .modal-header {
    background: var(--gradient-navy);
    color: var(--light);
    border-bottom: 3px solid var(--primary);
    padding: 25px 30px;
  }

  .modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
  }

  .modal-body {
    padding: 40px;
  }

  .modal .form-control,
  .modal .custom-select {
    border-radius: 40px;
    border: 2px solid #f0f0f0;
    /* padding: 15px 20px; */
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .modal .form-control:focus,
  .modal .custom-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
  }

  .modal .btn-block {
    border-radius: 40px;
    padding: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    color: var(--dark);
    border: none;
    transition: all 0.4s ease;
  }

  .modal .btn-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }

  /* Responsive Fine-Tuning */
  @media (max-width: 1199.98px) {
    .carousel-caption h1 {
      font-size: 4rem;
    }
    .room-content h4 {
      font-size: 1.8rem;
    }
  }

  @media (max-width: 991.98px) {
    .carousel-caption h1 {
      font-size: 3.5rem;
    }
    .about-icon-box {
      flex-direction: column;
      text-align: center;
      padding: 25px;
    }
    .about-icon-box .icon-circle {
      margin-right: 0;
      margin-bottom: 20px;
    }
   
    .contact-info {
      margin-top: 30px;
    }
  }

  @media (max-width: 767.98px) {
    .carousel-item {
      height: 80vh;
    }
    .carousel-caption h4 {
      letter-spacing: 3px;
      font-size: 1rem;
    }
    .carousel-caption h1 {
      font-size: 2.8rem;
    }
    .section-title h2 {
      font-size: 2.2rem;
    }
    .room-amenities {
      gap: 15px;
      font-size: 0.9rem;
    }
    .team-img {
      height: 250px;
    }
    .testimonial-card {
      padding: 30px 20px;
    }
    .contact-form {
      padding: 30px 20px;
    }
    .contact-info {
      padding: 40px 25px;
    }
    .modal-body {
      padding: 25px;
    }
  }

  @media (max-width: 575.98px) {
    .carousel-caption h1 {
      font-size: 2.2rem;
    }
    .btn {
      padding: 12px 28px;
      font-size: 0.85rem;
    }
    .room-price {
      font-size: 1.8rem;
    }
    .room-amenities {
      flex-direction: column;
      gap: 10px;
    }
    .team-card h4 {
      font-size: 1.5rem;
    }
    .testimonial-card .d-flex {
      flex-direction: column;
      text-align: center;
    }
    .testimonial-card img {
      margin-right: 0 !important;
      margin-bottom: 15px;
    }
    .contact-info .d-flex {
      flex-direction: column;
      text-align: center;
    }
    .contact-info i {
      margin-right: 0;
      margin-bottom: 10px;
    }
  }

  /* Additional micro-interactions */
  .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  .owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
  }

  .owl-carousel .owl-item {
    display: flex;
    height: auto;
  }

  .owl-carousel .owl-item > div {
    width: 100%;
  }

  