/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    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  {
        margin-right: 0;
        padding: 10px 0;
    }
}



#header-carousel .carousel-item {
    height: 90vh;
    min-height: 500px; 
    position: relative;
}


#header-carousel .carousel-item img {
    width: 100%;
    height: 100%; 
    object-fit: cover;
}


#header-carousel .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 1;
}


.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #header-carousel .carousel-item {
        min-height: 450px;
    }
    
    #header-carousel .carousel-caption {
        top: 50%;
        transform: translateY(-50%);
        padding: 0 15px;
    }
}



.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item a,
.breadcrumb-item.active {
    font-size: 20px;
    color: white;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}




.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
/* Wrapper holds the visible border and radius */
.service-card {
  border: 3px solid #007bff;        /* visible blue border */
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06); /* lighter, won't hide border */
  padding: 8px;                      /* small gap between border and content */
  margin: 10px;                      /* spacing between cards */
  display: flex;
  align-items: stretch;
  height: auto;
}

/* The clickable content inside the border */
.service-item {
  width: 100%;
  text-decoration: none !important;
  color: inherit !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;           /* keep wrapper background visible */
  padding: 14px 12px;                /* reduced padding to shrink card */
  height: 220px;                     /* smaller compact height to match your reference */
  box-shadow: none;                  /* remove inner shadow to keep border visible */
  transition: .35s;
}

/* Icon box */
.service-icon {
  width: 58px;
  height: 58px;
  margin: 0 0 12px 0;
}

.icon-inner {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
}

/* Text sizes adjusted for compact card */
.service-item h5 {
  margin-bottom: 8px;
  font-size: 16px;
}

.service-item p {
  font-size: 13px;
  line-height: 1.4;
  color: #333;
}

/* Hover: keep strong contrast but don't hide border */
.service-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.service-item:hover {
  background: #4A7FA7;
  color: #fff !important;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
  color: #fff !important;
}

/* Responsive tweaks if you want it even smaller on phone */
@media (max-width: 576px) {
  .service-item {
    height: 200px;
    padding: 12px;
  }
  .service-card { padding: 6px; margin: 8px; }
}





/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    margin-top: 110px;
    padding-top: 80px;
    padding-bottom: 10px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
    align-items: center;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.cards {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f0f0f0; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto; 
}

.icon-circle i {
  font-size: 24px;
  color: #1e02f6;
}

.cards {
  display: flex;
  justify-content: center;   
  align-items: center;
  flex-wrap: wrap;          
  gap: 30px;
  padding: 40px 0;
  background-color: #f8f9fa;
}

.card {
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  text-align: center;       
  padding: 20px;
}

.card i {
  font-size: 2rem;
  color: hwb(207 9% 0% / 0.796);
  margin-bottom: 10px;
}

.card:hover {
  background-color: #4A7FA7;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card:hover i {
  color: white;
}

.card-title {
  text-align: center;
  font-size: 1.5rem;
  color: #FEA116;
  margin-bottom: 10px;
}

.card-text {
  text-align: center;       
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
.card-text:hover{
  color: white;
}
.vision {
  padding: 40px 0;
  display: flex;
  justify-content: center;   
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #f8f9fa;
}

.vision .card {
  max-width: 500px;
  text-align: center;       
  padding: 20px;
}

.vision .card-title {
  /* color: hwb(207 9% 0% / 0.796); */
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;  
}

.vision .card-text {
  text-align: center;      
  color: #333;
  line-height: 1.6;
}

.vision .card:hover .card-title,
.vision .card:hover .card-text {
  color: white;
}


.breadcrumb-white .breadcrumb-item a {
    color: white;
}

.breadcrumb-white .breadcrumb-item.active {
    color: white; 
}


.breadcrumb-white .breadcrumb-item + .breadcrumb-item::before {
    color: white; 
}
.breadcrumb-item a:hover{
    color: blue;
}


img {
  height: 250px; 
  object-fit: cover; 
  width: 100%; 
}

.footer-border {
  border-top: 1px solid #ccc;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  color: gray;
  font-size: 18px;
}

.date {
  position: relative !important; /* anchor picker below input */
}

.bootstrap-datetimepicker-widget {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  margin-top: 8px !important;
  transform: scale(0.9); /* adjust overall size */
  transform-origin: top left;
  z-index: 9999 !important;
}

/* keep small neat inputs */
.form-control.datetimepicker-input {
  height: 35px;
  font-size: 14px;
  padding: 3px 8px;
}
/* thankyou msg*/
 .thank-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 260px;
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    border: 1px solid #aaa;
    z-index: 9999;
    font-size: 15px;
  }

  .close-btn {
    border: none;
    background: none;
    float: right;
    font-size: 18px;
    cursor: pointer;
  }


/* Equal height for both room cards */
.equal-height-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.room-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 480px; /* set the same base height */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.room-item img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.room-item .p-4 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-features {
  list-style-type: disc !important;
  margin-left: 20px !important;
  padding-left: 0;
}

/* Make carousel arrows visible and rounded */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.6);
  border-radius: 50%;
  width: 35px;
  height: 35px;
}

.container-xxl.py-5 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}








.row.g-4 > div {
  display: flex;
}


/* Fix misalignment in footer Quick Links & Services */
.footer .col-lg-5 .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

/* Make links appear neatly one below the other */
.footer .btn-link {
    padding: 0;
    margin: 2px 0;
    width: auto;
    text-align: left;
    color: #ffffff !important;
}

.footer .btn-link:hover {
    text-decoration: underline;
    color: #ffc107 !important;
}

/* model room card*/

/* Same modal size */
.modal-dialog {
    max-width: 900px;
}

/* Same header color for all */
.modal-header {
    background: #0d6efd !important; /* Bootstrap Primary */
    color: white !important;
    border-bottom: none;
}

/* Close button color */
.modal-header .btn-close {
    filter: invert(1);
}

/* Modal body layout proper */
.modal-body img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Same font styling inside modal */
.modal-body h6,
.modal-body p,
.modal-body ul li {
    color: #000 !important;
}

/* List design clean */
.modal-body ul {
    padding-left: 18px;
    margin-bottom: 12px;
}

.modal-body li {
    margin-bottom: 6px;
}


/* quick reversation*/

.quick-box {
  background: #ffffff;
  border-left: 4px solid #007bff; /* Blue line */
  border-right: 4px solid #007bff; /* Blue line */
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.quick-box h5 {
  color: #0d3c98;
  font-weight: 600;
}

.quick-box a {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Button Hover Effects */
.quick-box a:hover {
  transform: scale(1.05);
}

/* Light Button Hover */
.btn-light:hover {
  background: #e4e4e4;
}

/* Dark Button Hover */
.btn-dark:hover {
  background: #000000;
}


/* FAQ Styling */

/* FAQ Styling */
#faqAccordion .accordion-button {
  background: #ffffff;
  font-weight: 600;
  color:  #007bff;
  border: none;
  transition: 0.3s ease;
}

#faqAccordion .accordion-button:not(.collapsed) {
  background: #007bff;
  color: #fff;
}

#faqAccordion .accordion-button:focus {
  box-shadow: none;
}

#faqAccordion .accordion-body {
  font-size: 16px;
  color: #444;
  border-left: 3px solid  #007bff;
  background: #f8faff;
}

/* Hover animation */
#faqAccordion .accordion-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
  transition: 0.3s;
}

#faqAccordion .accordion-item:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

/* Center headings */
.container h3 {
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  font-weight: 700;
}




.policy-group-card {
  background: #ffffff; /* white default */
  padding: 26px;
  border-radius: 15px;
  text-align: left;
  font-size: 16px;
  /* font-weight: 500; */
  color: #222;
  border-left: 4px solid #007bff; 
  border-right: 4px solid #007bff; 
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.10);
}

.policy-group-card:hover {
  background: #4A7FA7; 
  color: #000; /* keep text readable */
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.18);
  border-left-color: #007bff; /* darker gold */
}


/* Banquet Carousel Styling */
.banquet-img {
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.carousel-inner:hover .banquet-img {
  transform: scale(1.03);
}

/* Indicators Custom */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  background-color: rgba(var(--bs-primary-rgb), 0.7);
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: rgba(var(--bs-primary-rgb), 1);
}

/* Controls Hover effect */
.carousel-control-next-icon,
.carousel-control-prev-icon {
  filter: invert(1);
}

.carousel-control-next,
.carousel-control-prev {
  transition: 0.3s;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  transform: scale(1.15);
}

/* Container Title Styling */
.section-title {
  letter-spacing: 2px;
  font-weight: 600;
}

.text-primary {
  font-weight: 700;
}

/* Banquet Card Styling */
.banquet-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: 0.4s ease-in-out;
  border-left: 5px solid #007bff;
  border-right: 5px solid #007bff;
  width: 100%;
  max-width: 450px;
  
}

/* Hover Effect */
.banquet-card:hover {
  transform: translateY(-6px);
  background: #4A7FA7 !important;
  color: #fff !important;
  border-color: #007bff!important;
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}

/* Make all text white on hover */
.banquet-card:hover h5,
.banquet-card:hover p,
.banquet-card:hover li {
  color: #fff !important;
}

/* Button hover on yellow background */
.banquet-card:hover .btn-primary,
.banquet-card:hover .btn-outline-dark {
  background: white !important;
  border-color: rgb(225, 185, 6) !important;
  color:black !important;
}

/* Align Boxes Center */
#banquet-details .row {
  justify-content: center !important;
  text-align: left;
}

#banquet-details .col-lg-6 {
  display: flex;
  justify-content: center;
}

/* List Styling Reset */
.banquet-list {
  padding-left: 0 !important;
  margin-left: 0 !important;
  margin-top: 5px;
}

/* Align Bullet + Text perfectly */
.banquet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0;
  font-size: 16px;
  color: #212529;
  padding: 0;
  line-height: 1.4;
}

/* Perfect circular bullet */
.banquet-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--bs-primary);
  border-radius: 50%;
  flex-shrink: 0 !important;
}

/* Heading Icons space */
.banquet-card h5 i {
  margin-right: 8px !important;
}

.why-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  transition: 0.4s ease;
  border-left: 4px solid #007bff;
  border-right: 4px solid #007bff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

/* Hover ➜ Full Yellow */
.why-card:hover {
  background: #4A7FA7;
  color: #fff !important;
  transform: translateY(-6px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.18);
}

/* Icons and Text turn white */
.why-card:hover i,
.why-card:hover h5,
.why-card:hover p {
  color: #fff !important;
}

/* Icon Styling */
.why-card i {
  color: rgb(15, 93, 203);
  margin-bottom: 12px;
  transition: 0.3s;
}

.why-card:hover i {
  transform: scale(1.2);
}

.team-img {
  width: 100%;
  height: 420px; /* Adjust height */
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0px 4px 18px rgba(0,0,0,0.18);
  transition: 0.3s ease-in-out;
}

/* Hover effect – yellow glow */
.team-img:hover {
  transform: scale(1.03);
  box-shadow: 0px 8px 25px rgba(255, 215, 0, 0.45);
}

/* Cancel Booking Section */
#cancelPanel .card-section {
  background: #ffe9e9;
  border-left: 5px solid #d32121;
}

#cancelBtn {
  background: #d32121;
  border: none;
}

#cancelBtn:hover:enabled {
  background: #a60f0f;
  transform: scale(1.05);
}

#refundMessage {
  font-size: 1.05rem;
  color: #007f13;
  font-weight: 700;
  animation: fadeIn 0.6s ease-in-out;
}

/* Placeholder focused state */
#cancelBookingId:focus {
  border-color: #d32121;
  box-shadow: 0 0 6px rgba(211, 33, 33, 0.5);
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}


 /* Thank You Popup Styling */
    .thank-box {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #4A7FA7;
      color: white;
      padding: 20px;
      border-radius: 10px;
      font-size: 16px;
      z-index: 9999;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      animation: fadeInOut 4s ease;
    }

    @keyframes fadeInOut {
      0% {opacity: 0; transform: translateY(30px);}
      10%, 90% {opacity: 1; transform: translateY(0);}
      100% {opacity: 0; transform: translateY(30px);}
    }

/*carousel buttons*/
    .hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px; /* space between buttons */
}

/* For smaller screens (phones) */
@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column; /* stack vertically */
    align-items: center; /* center buttons */
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 180px;
    font-size: 14px;
    padding: 10px 0;
  }
}



@media (max-width: 992px) { /* lg breakpoint */
  .navbar-brand img {
    height: 50px; /* smaller logo for mobile */
  }
  .navbar-nav {
    text-align: center;
  }
  .navbar-nav .nav-item {
    margin-bottom: 10px; /* space between items on mobile */
  }
  .navbar-toggler {
    margin-right: 16px; /* spacing for hamburger button */
  }
}

/*footer resp*/
@media (max-width: 767.98px) { /* Bootstrap sm breakpoint */
  .footer .col-md-6, .footer .col-lg-3, .footer .col-lg-5 {
    margin-bottom: 24px;
  }
  .footer .section-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .footer .btn-link {
    font-size: 1rem;
    padding: 4px 0;
  }
  .footer .row.g-5 {
    gap: 2rem;
  }
  /* --- Add these centering rules below --- */
  .footer .row.gy-5.g-4.justify-content-center.text-center {
    flex-direction: column !important;
    align-items: center !important;
  }
  .footer .col-md-6 {
    max-width: 100%;
    flex: 0 0 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  /* Stack and center columns for Quick Links and Services */
  .footer .col-lg-5 .row {
    flex-direction: column !important;
    align-items: center !important;
  }
  .footer .col-md-6 {
    max-width: 100%;
    flex: 0 0 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    float: none !important;
    display: block !important;
  }
  .footer .btn-link {
    display: inline-block;
    text-align: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .footer .col-md-6 {
    text-align: center !important;
  }
  .footer .btn-link {
    display: block;
    width: 100%;
    text-align: center !important;
    margin: 0 auto 6px auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .footer .btn-link i {
    margin-right: 6px;
    /* Optional: center the icon with the text if needed */
  }
}










/* --- Desktop: keep same layout --- */
.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
}
/* --- Overlay stays same --- */
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  z-index: 1;
}
/* --- Caption styling --- */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100%;
  padding: 0 15px;
}
.carousel-caption h1 {
  font-size: 40px;
  font-weight: 600;
}
.carousel-caption h6 {
  font-size: 18px;
  letter-spacing: 1px;
}
.hero-buttons .btn {
  margin: 5px;
}
/* --- Mobile view --- */
@media (max-width: 768px) {
  /* Remove unwanted gray box under image */
  #header-carousel,
  #header-carousel .carousel-inner,
  #header-carousel .carousel-item {
    height: 100vh !important; /* increased to full screen height on mobile */
    background: transparent !important; /* removes gray area */
  }
  /* Ensure image behaves properly */
  .hero-img {
    width: 100%;
    height: 100vh !important; /* match full height */
    object-fit: cover !important; /* fill without distortion; use 'contain' if full image visibility is preferred over cropping */
    object-position: left center !important;
    background: none !important;
    background-color: transparent !important; /* ensures no gray box appears */
    display: block;
  }
  /* Fix caption position */
  .carousel-caption {
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 15px;
  }
  .carousel-caption h1 {
    font-size: 24px;
  }
  .carousel-caption h6 {
    font-size: 16px;
  }
}
/* --- Very small screens --- */
@media (max-width: 480px) {
  .carousel-caption {
    top: 65%;
  }
  .carousel-caption h1 {
    font-size: 20px;
  }
  .carousel-caption h6 {
    font-size: 14px;
  }
}



































































































































