:root {

  /* colors */

  --primary-clr: #355C7D;
  --accent-clr: #FFA500;
  --secondry-clr: #2E8B57;
  --background: #F9F9F6;


  --text-primary: #2C2C2C;
  --text-secondry: #6D6D6D;


  --cta: #FFD700;
  --footer: #1A1A40;


  --fs-xsm: 0.85rem;
  --fs-sm: 1rem;
  --fs-md: 1.4rem;
  --fs-lg: 3rem;
  --fs-xl: 4rem;
  --fs-2xl: 6rem;

  --fs-md-sm: 1.2rem;
  --fs-md-lg: 2rem;
  --fs-md-xl: 2.6rem;

  --primary-font: 'Montserrat', sans-serif;
  --secondry-font: 'Poppins', sans-serif;



}

body {
  box-sizing: border-box;
  margin: 0;

}


.hero {
  position: relative;
  min-height: 100vh;
  /* background: url('kedarnath-kedar-dome-4k-zzp4fn8j88zb8fam.jpg') no-repeat center center / cover; */
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* padding-top: 100px; */

}


.hero-text {
  max-width: 400px;
  color: white;
  font-size: var(--fs-xl);
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  font-family: var(--secondry-font);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(136, 177, 230, 0.5);


  /* For Safari support */
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.2); Optional: subtle shadow for depth */

  background-color: transparent;
  transition: all 0.3s ease;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  background-color: white;
  color: var(--text-primary);


}

.header-call a {
  font-size: 20px;
  text-decoration: none;
  font-weight: 700;
  color: var(--text-primary);
}

.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.header-call .call-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-call .call-item i {
  color: var(--accent-clr);
  font-size: 1.7rem;
}

.header-call a {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.7rem;
}

@media (max-width: 1290px) {
  .header-call {
    display: none;
  }
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  /* helps with responsiveness */
  transition: padding 0.3s ease;
}

header.sticky {
  /* padding: 0.7rem 2rem; */
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.sticky nav {
  padding: 0.5rem 2rem;
  /* smaller height */
}

.logo {
  /* width: 140px; */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.logo i {
  font-size: 2rem;
  color: var(--accent-clr);
}

.logo h2 {
  font-size: 1.8rem;
  font-family: var(--secondry-font);
  font-weight: 700;
}



footer .logo h2 {
  font-size: 1.4rem;
}


.logo span {
  color: var(--accent-clr);
}

.logo img {
  width: 80px;

  height: auto;
  object-fit: contain;
}

.footer-logo {
  /* margin-top: -20px; */
}

.footer-logo .logo {
  /* justify-content:start; */
  margin-bottom: 1rem;
}

@media (max-width:768px) {
  .logo h2 {
    font-size: 1.4rem;

  }

  .logo img {
    width: 50px;

  }

}

/* nav .logo a {
    text-decoration: none;
    font-size:var(--fs-lg);
    font-weight: 700;
    font-family: 'Poppins',sans-serif;
     color: white;

} */

/* mobile menu */

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Desktop nav and CTA button */
.desktop-nav,
.desktop-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Active Link Style */
nav .nav-icon a.active,
.mobile-menu a.active {

  font-weight: 700;
  border-bottom: 2px solid var(--accent-clr);
}

/* Optional: for better visibility in mobile menu */
.mobile-menu a.active {
  background-color: rgba(42, 108, 214, 0.1);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  height: 100%;
  background-color: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: left 0.3s ease;
  z-index: 999;
}


.mobile-menu a {
  font-size: 1.2rem;
  text-decoration: none;
  color: black;
}

.mobile-menu a:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #2a6cd6;
}

.mobile-cta {
  margin-top: 2rem;
  align-self: flex-start;
}

/* Close button */
.close-btn {
  align-self: flex-end;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 2rem;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* semi-transparent black */
  display: none;
  /* Hidden by default */
  z-index: 998;
  /* just below the mobile menu */
  transition: opacity 0.3s ease;
}



nav .nav-icon {
  display: flex;
  gap: 2.5rem;
}

nav .nav-icon a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--primary-font);

  color: var(--text-primary);
  transition: all 0.3s ease;


}

nav .nav-icon a:hover {
  color: rgba(0, 0, 0, 0.548);
}

.cta-btn {
  padding: 1rem 2rem;
  font-family: var(--primary-font);

  background: linear-gradient(to right, var(--cta) 50%, var(--accent-clr) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: var(--text-primary);
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 28px;
  transition: background-position 0.4s ease-out, color 0.4s ease-out;
}

.cta-btn:hover {
  background-position: left bottom;
  color: #000000;
  /* Optional: change text/icon color on hover */
}


nav .cta-btn i {
  color: black;
}

.cta-btn i {
  transition: transform 0.3s ease;
  margin-left: 8px;
}

.cta-btn:hover i {
  transform: translateX(4px);
}


/* slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;

  /* border-radius: 70px; */
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  /* border-top-right-radius: 90px;
    border-top-left-radius: 90px; */
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  background: rgba(0, 0, 0, 0.35);
  /* Dark overlay for readability */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.slide-content {
  color: white;

  margin-left: 5%;
  padding: 2rem;
  text-align: left;
}

.slide-content h1 {
  font-size: var(--fs-2xl);
  line-height: 108px;
  max-width: 800px;
  margin-bottom: 1rem;
  font-family: var(--secondry-font);
  font-weight: 700;
  text-transform: capitalize;

  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);

}

.slide-content p {
  font-size: var(--fs-md);
  margin-bottom: 2rem;
  font-family: var(--primary-font);
  text-transform: capitalize;
  padding-left: 1rem;
}

.slide-content .cta-btn {
  padding: 1.6rem 2.6rem;
  font-size: 1.5rem;
  border-radius: 3rem;
}

/* Button already styled by your .cta-btn */


/* about us */
.about-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background-color: #f0f9ff;
  border-top-left-radius: 60px;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
  position: relative;
  min-width: 300px;
}

.main-image {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
}

.main-image img {
  width: 100%;
  border-radius: 20px;
  z-index: 1;
}

.float-img {
  position: absolute;
  width: 100px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.img1 {
  width: 60% !important;

  top: -30%;
  left: -30%;
}

.img2 {
  width: 60% !important;
  top: 70%;
  right: -15%;
}

.img3 {
  width: 60% !important;

  left: -20%;
  top: 80%;
}

.img4 {
  width: 60% !important;

  right: -20%;
  top: -30%;
}

.about-right {
  flex: 1;
  padding-left: 2rem;
  min-width: 300px;
  font-family: var(--primary-font);
}

.about-right .subtitle {
  font-family: var(--primary-font);
  font-size: 1.2rem;
  color: var(--accent-clr);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.about-right h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.about-right .desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  font-family: var(--secondry-font);
}

.features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 250px;
  font-family: var(--secondry-font);
}

.feature .icon {
  font-size: 2rem;
  color: #1e88e5;
  background-color: white;

  padding: 1.5rem;
  border-radius: 100%;
}

.bottom-btn-section {
  margin-top: 2rem;
}


/* contact us */

.bg-booking {
  background-image: url('../img/prit.webp');
  background-size: cover;
  background-position: center;
  /* min-height: 100vh; */
  width: 100%;
  padding-top: 3rem;
  font-family: var(--secondry-font);

}

/* #contact-brand{
  background-image: url('./photo-1737381439846-b927265e7dfc.avif');
  background-size: cover;
  background-position: center;
  min-height: 50vh; 
  width: 100%;
} */
.bg-booking .card {
  /* min-height: 600px; */
  margin: 0 20px 0 20px;
  border-radius: 15px;
  padding: 10px;
}

.booking-from-input {
  line-height: 2.5 !important;
}

.custom-btn {
  color: #fff !important;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 40px;
  border: none;
  background:
    linear-gradient(120deg, var(--cta) 45%, rgb(99 78 207 /0%) 45%), linear-gradient(120deg, var(--cta) 55%, #004d40 55%);
  background-size: 250%;
  background-position: right;
  transition: .6s ease-in-out;
  overflow: visible;
}

.custom-btn:hover {
  background-position: left;
  transition: .6s ease;
  background-color: blue;
}


/* Input Group Styling for Icons */
.custom-input-group {
  position: relative;
  margin-bottom: 25px;
}

.custom-input-group .form-control {
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 8px 15px 8px 25px;
  height: auto;
  font-size: 1.05em;
  background-color: #fff;
  color: #333;
  line-height: normal;
  box-shadow: none;
}


.custom-input-group .form-control:focus {
  border: 1px solid #209cee !important;
  background-color: #fff;
}


.custom-input-group i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
  font-size: 1.1em;
  z-index: 3;
  border-color: red;
}


.custom-input-group select.form-select {
  padding-right: 25px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.custom-input-group .select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
  pointer-events: none;
  z-index: 3;
}


.custom-input-group textarea.form-control {
  padding-top: 15px;
  padding-bottom: 15px;
  min-height: 120px;
  resize: vertical;
}

.custom-btn:hover {
  background-color: #00332c;
  color: white;
}

.custom-input-group .form-select {
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  padding: 8px 15px 8px 25px !important;
  height: 70px !important;
  font-size: 1.05em !important;
  background-color: #f8f8f8 !important;
  color: #333 !important;
  line-height: normal !important;
  box-shadow: none !important;
}

/* select 2  */

/* .select2-div .selection {
  height: 65px;
  display: inline-block;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.select2-div .select2-selection--single {
  height: 100% !important;
}

.select2-div .select2-selection__rendered {
  line-height: 58px !important;
  padding-left: 45px !important;
  padding-right: 15px !important;
}

.select2-div .select2-selection {
  border: 1px solid #ddd;
  ;
} */

#contact-brand {
  background-image: url('/contact.avif');
  background-size: cover;
  background-position: center;
  min-height: 50vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  text-align: center;
  overflow: hidden;
}

#contact-brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 50, 100, 0.6);
  z-index: 1;
}


#contact-brand .content {
  position: relative;
  z-index: 2;
}

#contact-brand h1 {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

#contact-brand .breadcrumb-nav {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.8);
}

#contact-brand .breadcrumb-nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

#contact-brand .breadcrumb-nav a:hover {
  color: white;
}

.Contact-info {
  min-height: 60vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  text-align: center;
  overflow: hidden;
}

.Contact-info .contant-card h3 {
  font-family: 'Pacifico', sans-serif;
  font-weight: 400;
  Color: var(--text-secondry);
  font-size: var(--fs-sm);
}

.Contact-info .contant-card h5 {
  font-family: var(--secondry-font);
  font-weight: 500;
  Color: rgb(17, 61, 72);
  font-size: 48px;
}

.Contact-info {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.contant-card {
  text-align: center;
  margin-bottom: 40px;
}

.contant-card h3 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.contant-card h5 {
  font-size: 1.2em;
  font-weight: 400;
  color: #555;
  margin-bottom: 0;
}

.info-card-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.infomation-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  justify-content: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-height: 145px;
  border: 1px solid #e0e0e0;
  font-family: var(--secondry-font);
}

.infomation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-clr);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.info-icon-circle i {
  color: white;
  font-size: 1.6em;
}

.infomation-card h5 {
  font-size: 1.2em;
  font-weight: 800;
  margin-bottom: 10px;
  color: #333;
}

.infomation-card p {
  font-size: 1em;
  color: #666;
  line-height: 1.2;
  margin-bottom: 0;
}

.infomation-card p:not(:last-child) {
  margin-bottom: 5px;
}

.infomation-card .information {
  text-align: start;
  padding-left: 20px;
}

.information a {
  color: var(--text-primary);
}


.info-icon-circle:hover {
  background-color: var(--cta);
}

/* footer */


/* Swiper Specific Styling */
.swiper-container {
  padding-bottom: 30px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
}

/* === OPTION 2: SLEEK & MINIMALIST === */
.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(216, 212, 207, 0.514);
  /* Semi-transparent background */
  color: #ffffff;
  width: 3.25rem;
  height: 3.25rem;
  padding: 1rem 1.2rem;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;

  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Subtle border */
  backdrop-filter: blur(4px);
  /* Frosted glass effect (works on modern browsers) */
  transition: all 0.3s ease;
}

.swiper-button-next {
  right: 20px;
}

.swiper-button-prev {
  left: 20px;
}

/* --- Hover State --- */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.6);
  /* Darkens on hover */
  border-color: rgba(255, 255, 255, 0.5);
}

/* --- Arrow Icons --- */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 0.9rem !important;
  font-weight: 600;
}

.card-title {
  font-weight: 400 !important;
  text-align: center;
  font-family: var(--secondry-font);
  /* text-transform: uppercase; */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 2.8rem;
    height: 2.8rem;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 2.5rem;
    height: 2.5rem;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    /* top: unset !important;   */
    bottom: 10px;
    transform: unset !important;
    margin-top: 1rem;
  }

  .swiper-button-next {
    right: 10px !important;
  }

  .swiper-button-prev {
    left: 10px !important;
  }

  .btn-group-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .btn-custom {
    width: 100%;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .info-icon-circle {
    width: 64px;

    height: 60px;
  }

  .bg-booking .card {
    margin: 20px;
    /* padding: 25px; */
    max-width: 90%;
  }

  .card-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .custom-input-group {
    margin-bottom: 20px;
  }

  .custom-input-group .form-control {
    padding: 10px 12px 10px 40px;
    font-size: 0.95em;
  }

  .custom-input-group i {
    left: 12px;
    font-size: 1em;
  }

  .custom-input-group textarea.form-control {
    min-height: 100px;
  }

  .select2-div .selection {
    width: 100% !important;
  }

  .custom-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  #contact-brand {
    min-height: 40vh;
  }

  #contact-brand h1 {
    font-size: 2.5em;
  }

  #contact-brand .breadcrumb-nav {
    font-size: 1em;
  }
}

@media (max-width: 991.98px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px auto;
  }

  .info-card-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    padding-left: 15px;
    padding-right: 15px;
  }
}



@media (max-width: 960px) {

  /* Hero Section Fix */
  /* .hero {
    padding-top: 80px;

  } */
   
 
  /* Hero Section Fix */
  .hero {
    padding-top: 80px;
    min-height: unset;
 
  }
 
  .hero-slider {
    border-radius: 0;
    /* height: 90vh; */
    height:60vh;
  }

   

  .slide-content {
    padding: 0.8rem;
    margin-left: 0 !important;
    text-align: center;
  }

  .slide-content h1 {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }

  .slide-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .slide-content .cta-btn {
    font-size: 1rem;
    padding: 1rem 2rem;
  }


  /* About Us Section Fix */
  .about-modern {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem;
  }

  .about-left,
  .about-right {
    width: 100%;
    padding: 0;
  }

  .main-image {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .float-img {
    display: none;
  }

  .about-right h2 {
    font-size: 2rem;
  }

  .about-right .desc {
    font-size: 0.95rem;
  }

  .features {
    justify-content: center;
  }

  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature .icon {
    font-size: 1.8rem;
    padding: 1rem;
  }

  .bottom-btn-section {
    text-align: center;
  }

  .Contact-info .contant-card h5 {
    font-size: 32px;
  }
}


/* devansh css */

body {
  font-family: "Inter", sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

.footer {
  background-color: #1f1f1f;
  color: #d1e2e4;
  padding: 60px 0 20px 0;
  font-size: 0.95rem;
}

.footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
  background-color: #ffa500;
}

.footer a {
  color: #d1e2e4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer .footer-logo img {
  max-width: 150px;
}

.footer .social-icons .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #3b565a;
  border-radius: 50%;
  color: #d1e2e4;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer .social-icons .icon:hover {
  background-color: #e67e00;
  color: #ffffff;
}

.quick-links,
.contact-info {
  list-style: none;
  padding: 0;
}

.quick-links li,
.contact-info li {
  margin-bottom: 10px;
  display: flex;
  align-items: start;
}

.quick-links li i,
.contact-info li i {
  margin-right: 10px;
  color: #ffa500;
  font-size: 1rem;
  margin-top: 3px;
}

.footer-bottom {
  background-color: #181717;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #d1e2e4;
  text-align: center;
}

.footer-bottom img {
  display: none;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}

.floating-buttons .btn {
  background-color: var(--accent-clr);
  color: var(--text-primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.floating-buttons .btn:hover {
  background-color: var(--cta);
}

/* QR Box */
.qr-box {
  background-color: #3b565a;
  border-radius: 10px;
  padding: 20px;
  max-width: 200px;
  margin-top: 20px;
}

.qr-box h5 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.qr-image {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  border-radius: 6px;
}

.qr-box p {
  color: #d1e2e4;
  font-size: 0.85rem;
}

.footer .logo {
  justify-content: start;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px 0;
  }

  .footer h5 {
    margin-top: 30px;
  }

  .footer-bottom .text-md-end {
    text-align: center !important;
    margin-top: 15px;
  }

  .qr-box {
    margin-left: auto;
    margin-right: auto;
  }

  .footer .logo {
    justify-content: start;
  }

  .footer .logo img {
    width: 50px !important;
  }

  footer .logo h2 {
    font-size: 1rem;
  }
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.text-center {
  text-align: center;
}

.section-subtitle {
  display: block;
  font-size: 1rem;
  color: #ff7f00;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #343a40;
}


.container.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #ffa500;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 2rem;
}

/* Card Styling */
#package .card {
  border: none;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#package .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

#package .card-img-top {
  height: 225px;
  object-fit: cover;
  width: 100%;
}

#package .card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.package-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #343a40;
  font-family: var(--primary-font);
  text-transform: uppercase !important;
}

.rating-stars {
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.btn-group-bottom {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn-custom {
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  flex: 1;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-read-more {
  background-color: #ffa500 !important;
  color: var(--text-primary) !important;
}

.btn-read-more:hover {
  background-color: #e67e00 Z !important;
}

/* Responsive Typography */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }

  .btn-group-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .btn-custom {
    width: 100%;
  }
}


/* contact form */

.contact-section {
  padding: 5rem 2rem;
  background: #f5f8ff;
  font-family: var(--primary-font);
}

.contact-container {
  max-width: 800px;
  margin: auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  padding: 3rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-header p {
  color: var(--text-secondry);
  font-size: 1rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--primary-font);
  transition: border-color 0.3s;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--accent-clr);
  outline: none;
}

.contact-form .form-group:nth-child(1) {
  flex-direction: row;
  gap: 1.5rem;
}

.contact-form .form-group:nth-child(1) input {
  flex: 1;
}

.contact-form button.cta-btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-family: var(--primary-font);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: linear-gradient(to right, var(--cta), var(--accent-clr));
  color: var(--text-primary);
  transition: background-position 0.4s ease;
  background-size: 200% 100%;
  background-position: right bottom;
}

.contact-form button.cta-btn:hover {
  background-position: left bottom;
}

.contact-form button i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.contact-form button:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form .form-group:nth-child(1) {
    flex-direction: column;
  }

  .info-card-container {
    margin-top: 2rem !important;
  }
}

.testimonial-card h5 {
  font-weight: 700;
  font-family: var(--primary-font);
}


.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
   
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-card img {
  border: 3px solid #ffc107;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
}

.testimonial-card h5 {
  margin-top: 1rem;
  font-weight: 600;
  color: #222;
}

.testimonial-card small {
  font-size: 0.875rem;
  color: #888;
}

.rating-stars {
  color: #ffc107;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Responsive behavior */
@media (max-width: 1290px) {

  .desktop-nav,
  .desktop-cta {
    display: none !important;
  }

  .hamburger {
    display: block;
  }

  .overlay {
    justify-content: center !important;
  }


}

/* contact goggle map */

.contact-address {
  font-family: var(--primary-font);
  font-weight: 400;
  color: var(--text-secondry);

}

.contact-address h4 {
  font-size: 2.5rem;
  font-family: var(--secondry-font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;

}

.contact-address strong {
  font-family: var(--primary-font);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.5rem;
}



.contact-address.map-bg {
  background: #F2994A;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #ffa500, #ffa50054);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #ffa500, #ffa50054);
  ;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  opacity: 0.95;

}

@media (max-width: 760px) {
  .contact-address h4 {
    font-size: 1.5rem;
    /* text-align: center; */
  }

  .contact-address strong{
    font-size: 1.1rem;
  }
}



.toast {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: var(--accent-clr);
  color: black;
  text-align: center;
  border-radius: 6px;
  padding: 16px;
  position: fixed;
  z-index: 999;
  left: 50%;
  bottom: 30px;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

/* Loading Overlay */
.loading-overlay {
  display: none;
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.loading-overlay.active {
  display: flex;
}