
  *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
/*
  font-family: "Tagesschrift", system-ui;
  font-weight: 400;
  font-style: normal;*/



}
/* header desgin */


  :root{
    --header-h: 121px;
  }

  :root{
    --site-header-h: 72px; /* তোমার header height অনুযায়ী 64/72/80 adjust করতে পারো */
    }

    .hompagesolution{

        position: relative;
        top: 6px;
    }


  /* ✅ Fixed Header */
  .fixed-header{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: var(--header-h) !important;
    z-index: 9999 !important;
    background: #fff !important;
    box-shadow: 0 6px 18px rgba(0,0,0,.08) !important;
  }


  /* ✅ Topbar */
  .topbar{
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    height: var(--header-h);
    border-top: 2px solid #2f3a45;
    border-bottom: 1px solid #e7e7e7;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
  }

  .topbar .inner{ padding-left: 18px; padding-right: 18px; }
  @media (min-width: 992px){
    .topbar .inner{ padding-left: 28px; padding-right: 28px; }
  }

  /* columns */
  .nav-col-left, .nav-col-right{ flex: 1 1 0; min-width: 0; }

  /* Desktop menu items */
  .menu-item{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: .2s ease;
    color: #111;
    white-space: nowrap;
    border: 1px solid #033364;
  }
  .menu-item:hover{ background: rgba(0,0,0,.04); color:#111; }
  .menu-item i{ font-size: 18px; color:#111; }
  .nav-link-min{
    font-size: 15px;
    letter-spacing: .6px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    color:#111;
  }
  /* Right items */
  .right-item{
    display: inline-flex;
    align-items:center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    color:#111;
    transition: .2s ease;
    white-space: nowrap;
  }
  .right-item:hover{ background: rgba(0,0,0,.04); color:#111; }
  .right-item i{ font-size: 16px; }

  /*  Responsive toggles */
  .desktop-only{ display:flex; }
  .mobile-only{ display:none; }

  /*  LOGO FIX (default desktop) */
  .destop-logo{ display:flex; align-items:center; }
  .center-logo{ display:none; align-items:center; justify-content:center; }

  .destop-logo img{ width: 119px; height: auto; object-fit: contain; }
  .center-logo{
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
  }
  .center-logo img{
    max-width: 135%;
    object-fit: contain;
  }
  /*  Mobile Rules */
  @media (max-width: 991.98px){
    :root{ --header-h: 56px; }
    .desktop-only{ display:none !important; }
    .mobile-only{ display:flex !important; }
    /*  LOGO FIX (mobile) */
    .destop-logo{ display:none !important; }
    .center-logo{ display:flex !important; }
    .nav-col-left{ flex: 1 1 auto; }
    .nav-col-right{ flex: 1 1 auto; }
    .mobile-left-wrap{
      display:flex;
      align-items:center;
      gap: 10px;
      min-width: 0;
    }
    .mobile-right-wrap{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap: 8px;
      white-space: nowrap;
    }
    .center-logo{ width: 36px; height: 36px; }
    .mobile-right-wrap .right-item{
      padding: 6px 8px;
      border-radius: 10px;
    }
    .mobile-right-wrap .right-item i{ font-size: 18px; }
    .mobile-right-wrap .nav-link-min{
      font-size: 11px;
      letter-spacing: .4px;
    }
  }

  /* Extra small devices */
  @media (max-width: 360px){
    .mobile-right-wrap{ gap: 4px; }
    .mobile-right-wrap .right-item i{ font-size: 14px; }
    .mobile-right-wrap .nav-link-min{
      font-size: 9px;
      letter-spacing: .2px;
    }
    .mobile-right-wrap .right-item{ padding: 4px 6px; }
    .center-logo{ width: 30px; height: 30px; }
    .topbar .inner{ padding-left: 10px; padding-right: 10px; }
    .mobile-right-wrap .phone-text{ display:none; }
  }


  /* ✅ Offcanvas menu items */
  .off-item{
    position: relative;
    display:flex;
    align-items:center;
    gap:10px;
    padding: 12px 12px;
    border-radius: 10px;
    text-decoration:none;
    color:#111;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .6px;
  }
  .off-item:hover{ background: rgba(0,0,0,.05); color:#111; }

  /* ✅ Offcanvas above header */
  .offcanvas{ z-index: 11000 !important; }
  .offcanvas-backdrop{ z-index: 10999 !important; }

  /*login modal */

/* ===== LOGIN MODAL THEME (Compact Centered Card) ===== */
.login-modal {
  padding: 0 !important;
}
.login-modal .modal-dialog {
  max-width: 440px;
  margin: 1.75rem auto;
}
.login-modal-content {
  border: 0;
  border-radius: 24px;
  overflow: hidden !important;
  background: #ffffff;
  box-shadow: 0 25px 70px -15px rgba(15, 23, 42, 0.25), 0 0 1px rgba(0, 0, 0, 0.08);
  position: relative;
  width: 100%;
}

.login-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 15px;
}
.login-close:hover {
  background: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.login-panel {
  background: #ffffff;
  padding: 38px 32px 32px;
}
.login-card {
  width: 100%;
}
.login-card-header {
  text-align: center;
  margin-bottom: 24px;
}
.login-card-logo {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto 14px;
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-card-header h3 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.3px;
}
.login-card-header p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
}

.login-form .l-field {
  margin-bottom: 18px;
}
.l-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12.5px;
  color: #334155;
  font-weight: 700;
}

/* Input group with icon */
.l-input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.l-input-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  font-size: 16px;
  pointer-events: none;
  transition: color 0.2s ease;
  z-index: 3;
}
.l-input {
  width: 100%;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  padding: 11px 14px 11px 42px;
  font-size: 13.5px;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
  font-weight: 500;
}
.l-input:focus {
  border-color: #033364;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(3, 51, 100, 0.14);
}
.l-input-group:focus-within .l-input-icon {
  color: #033364;
}

/* Password Toggle */
.l-pwd-toggle {
  position: absolute;
  right: 12px;
  background: transparent;
  border: 0;
  color: #94a3b8;
  font-size: 17px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  z-index: 3;
}
.l-pwd-toggle:hover {
  color: #0f172a;
}

.l-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.l-link {
  font-size: 12px;
  color: #033364;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}
.l-link:hover {
  color: #02172c;
  text-decoration: underline;
}

.l-row2 {
  margin: 14px 0 20px;
}
.l-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #334155;
  cursor: pointer;
  user-select: none;
}
.l-checkbox {
  display: none;
}
.l-check-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid #cbd5e1;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  transition: all 0.2s ease;
}
.l-checkbox:checked + .l-check-box {
  background: #033364;
  border-color: #033364;
  box-shadow: 0 2px 6px rgba(3, 51, 100, 0.3);
}
.l-mini {
  font-size: 12.5px;
  color: #475569;
  font-weight: 500;
}

.l-btn {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 13px 18px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #033364 0%, #054a8e 100%);
  box-shadow: 0 8px 24px -4px rgba(3, 51, 100, 0.4);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.l-btn:hover {
  background: linear-gradient(135deg, #02172c 0%, #033364 100%);
  box-shadow: 0 12px 30px -4px rgba(3, 51, 100, 0.5);
  transform: translateY(-1px);
}
.l-btn:active {
  transform: translateY(0);
}

@media (max-width: 576px) {
  .login-modal .modal-dialog {
    max-width: 92%;
    margin: 1rem auto;
  }
  .login-panel {
    padding: 30px 20px 24px;
  }
}

/* Auto-hide floating support button when any modal or offcanvas is active */
body.modal-open .floating-support,
body.offcanvas-open .floating-support {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}


















/*search */
/* ===== HERO IMAGE SECTION (example) =====
*/
.hero-banner{
  position: relative;
  width: 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ✅ Search bar section overlay between hero and packages */
.hero-search-wrap{
  position: relative;
  margin-top: -85px;          /* 🔥 image এর উপর overlap */
  z-index: 50;
  padding-bottom: 30px;
}

.hero-search-wrap .container{
  position: relative;
}

/*  Background plate (grey) */
.hero-search-bar{
  background: #f6f6f6;       
  border-radius: 18px;
  padding: 34px 34px;
  box-shadow: 0 18px 140px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 150px;
}

/*  Field style */
.hs-field{
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 290px;              /* desktop width */
  height: 62px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}

.hs-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #033364;
  flex: 0 0 auto;
  margin-top: 2px;
}

.hs-field-inner{
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  min-width: 0;
}

.hs-field-inner small{
  font-size: 11px;
  font-weight: 900;
  color: #033364;
  text-transform: uppercase;
  letter-spacing: .6px;
  line-height: 1;
}

/* ✅ Input text look like screenshot */
.date-input{
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  font-size: 16px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.2;
  cursor: pointer;
}
.date-input::placeholder{
  color: #9ca3af;
  font-weight: 700;
}

/*  Search button */
.hs-right{
  display: flex;
  align-items: center;
}
.hs-btn{
  height: 62px;
  min-width: 180px;
  padding: 0 34px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #033364 0%, #054a8e 100%);
  color: #fff;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(3, 51, 100, .28);
  transition: .2s ease;
}
.hs-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(3, 51, 100, .35);
  filter: brightness(1.05);
}
/*  Packages section spacing (so search bar doesn't crash into title) */
.packages-section,
#packages,
.popular-packages{
  position: relative;
  z-index: 1;
  padding-top: 30px;
}
/* =========================
    Responsive
========================= */
@media (max-width: 1199.98px){
  .hero-search-bar{
    padding: 28px;
    min-height: 140px;
  }
  .hs-field{ width: 270px; }
  .hs-btn{ min-width: 170px; }
}
@media (max-width: 991.98px){
  .hero-search-wrap{
    margin-top: -60px;    /* less overlap on tablet */
  }
  .hero-search-bar{
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 22px;
    min-height: auto;
  }
  .hs-field{
    width: 100%;
    max-width: 520px;
    height: 58px;
  }
  .hs-btn{
    width: 100%;
    max-width: 520px;
    height: 58px;
  }
}
@media (max-width: 575.98px){
  .hero-search-wrap{
    margin-top: -45px;
    padding-bottom: 18px;
  }
  .hero-search-bar{
    border-radius: 16px;
    padding: 18px 14px;
  }
  .hs-field{
    height: 54px;
    border-radius: 12px;
  }
  .hs-btn{
    height: 54px;
    border-radius: 12px;
  }
  .date-input{ font-size: 15px; }
}
.flatpickr-calendar{
  z-index: 99999 !important;
}

/* slider */

.slider{
  width:100%;
  height:500px;
  overflow:hidden;
  position:relative;
}
.slides{
  display:flex;
  height:100%;
  transition:transform .5s ease;
}
.slide{
  min-width:100%;
  height:100%;
}
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
/* arrows */
.s-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:999px; border:0; cursor:pointer;
  font-size:28px; display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.85); box-shadow:0 10px 24px rgba(0,0,0,.18);
}
.s-prev{ left:14px; }
.s-next{ right:14px; background:white; color:black; }
.s-prev{ left:14px; }
.s-prev{ right:14px; background:white; color:black; }
@media (max-width:768px){
  .s-nav{ width:38px; height:38px; font-size:22px; }
}
/* pagkag */
.pkg-section{ padding:56px 0; background:#fff; }
.pkg-title{
  text-align:center;
  font-weight:900;
  color:#033364;
  margin-bottom: 28px;
}
.pkg-card{
  background:#fff;
  border:1px solid #e9eef2;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  transition:.2s ease;
}
.pkg-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(0,0,0,.10);
}
.pkg-media{ position:relative; height:190px; overflow:hidden; }
.pkg-media img{ width:100%; height:100%; object-fit:cover; display:block; transform:scale(1.03); }
.pkg-badge{
  position:absolute; top:12px; left:12px;
  background:rgba(0,0,0,.55);
  color:#fff;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.pkg-badge .dot{
  width:8px; height:8px; border-radius:50%;
  background:#12c76a;
  box-shadow:0 0 0 3px rgba(18,199,106,.18);
}
.pkg-meta{
  position:absolute; left:0; right:0; bottom:10px;
  padding:0 14px;
  display:flex; justify-content:space-between; gap:10px;
  color:#fff; font-weight:900; font-size:12px;
  text-shadow:0 2px 10px rgba(0,0,0,.6);
}
.pkg-meta span{ display:inline-flex; align-items:center; gap:8px; }
.pkg-meta i{ font-size:14px; }
.pkg-body{ padding:14px 16px 16px; }
.pkg-name{
  font-size:16px;
  font-weight:900;
  line-height:1.25;
  margin:0 0 10px;
  color:#1f2937;
  min-height:44px;
}
.pkg-price{ font-size:20px; font-weight:900; color:#033364; }
.pkg-sub{ font-size:12px; color:#6b7280; margin-top:2px; }
/* Pagination UI */
.pkg-pagination-wrap{
  display:flex;
  justify-content:center;
  margin-top: 26px;
}
.pkg-pagination{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}
.pkg-page-btn{
  border:1px solid #e5e7eb;
  background:#fff;
  padding:8px 12px;
  border-radius:10px;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  transition:.15s ease;
}
.pkg-page-btn:hover{ background:rgba(0,0,0,.04); }
.pkg-page-btn.active{
  background:#188b3d;
  border-color:#188b3d;
  color:#fff;
}
.pkg-page-btn:disabled{
  opacity:.5;
  cursor:not-allowed;
}
/* Mobile */
@media (max-width:768px){
  .pkg-media{ height:170px; }
}





























/*About */

.about-wrap{
  background: #f6f6f6;
  padding: 70px 0;
}

.about-wrap .container{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Layout */
.about-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Text */
.about-title{
    font-size: 34px;
    font-weight: 900;
    margin: 0 0 10px;
    color: #111;
    position: relative;
    bottom: 27px;
}

.about-subtitle{
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 28px;
  color: #111;
}

.about-content p{
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 22px;
  color: #333;
  max-width: 520px;
}

/* Image Stack */
.about-media{
  position: relative;
  min-height: 420px;
  display: flex;
  justify-content: flex-end;
}

.about-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* back image (bottom-left) */

.img-back{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  height: 320px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* front image (top-right) */

.img-front{
  position: absolute;
  right: 0;
  top: 0;
  width: 78%;
  height: 360px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  border: 10px solid #fff; 
}

/* ===================== Responsive ===================== */

@media (max-width: 992px){
  .about-grid{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-content p{
    max-width: 100%;
  }

  .about-media{
    min-height: 380px;
  }

  .img-front{ width: 82%; height: 320px; }
  .img-back{ width: 78%; height: 280px; }
}

@media (max-width: 576px){
  .about-wrap{ padding: 50px 0; }

  .about-title{ font-size: 34px; }
  .about-subtitle{ font-size: 16px; margin-bottom: 20px; }

  /* Mobile: neat stacked look */
  .about-media{
    min-height: auto;
    position: static;
    display: grid;
    gap: 14px;
  }
  .img-front, .img-back{
    position: static;
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 10px;
  }
  .img-front{
    border: 8px solid #fff;
  }
}




/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 80px 0 90px;
  background: #f4f8f6;
}

.gallery-header {
  margin-bottom: 48px;
}

.gallery-title {
  font-weight: 900;
  font-size: 40px;
  color: #0f2d1f;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}

.gallery-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0a8c5e, #10b981);
  border-radius: 4px;
  margin: 10px auto 0;
}

.gallery-sub {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: #4a5568;
}

/* ===== Grid Gallery ===== */
.gallery-section {
  padding: 60px 0;
  background: #fbfbfd;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 1px solid #e9ecef;
  box-shadow: 0 6px 24px rgba(0,0,0,.05);
}

.gallery-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gallery-item:hover .gallery-img-wrap img {
  transform: scale(1.07);
}

/* Hover overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(3,51,100,.55) 0%, rgba(0,0,0,.45) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  border: 2px solid rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  transform: scale(.7);
  transition: transform .3s ease;
}

.gallery-item:hover .gallery-zoom {
  transform: scale(1);
}

/* View more button */
.gallery-view-more-btn {
  display: inline-block;
  padding: 12px 35px;
  background: #033364;
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(3,51,100,0.25);
  margin-top: 25px;
  border: none;
  cursor: pointer;
}
.gallery-view-more-btn:hover {
  background: #022243;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(3,51,100,0.35);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-title { font-size: 34px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
}

@media (max-width: 576px) {
  .gallery-title { font-size: 28px; }
  .gallery-sub { font-size: 13px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
}



















/* ========= Booking Page ========= */

.bookingpage{
  margin-top: 0px;
  padding-top:250px!important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stepbar-wrap{
  width: 100%;
  background: #033364;
}
.stepbar{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-align: center;
  flex-wrap: wrap;
}
.stepbar-item{
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.stepbar-item.is-active{
  text-decoration: underline;
  text-underline-offset: 4px;
}
.stepbar-sep{
  opacity: .9;
  font-size: 16px;
  line-height: 1;
}
.ticket-wrap{ 
  padding: 18px 0; 
}
.ticket-grid{ 
  row-gap: 16px; 
}
.ticket-card{
  background:#fff;
  border:1px solid #eef0f4;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(16,24,40,.08);
  height:auto;
}
.ticket-body{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap:14px;
  padding:14px;
  align-items:start;
}
.t-side-left{
  border:1px solid #eef0f4;
  border-radius:14px;
  padding:12px;
  background:#fbfcff;
  height:260px;
}
.t-img{
  width:100%;
  height:100%;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #e8ebf2;
  background:#fff;
}
.t-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.t-left-info{
  border:1px solid #eef0f4;
  border-radius:12px;
  padding:10px;
  background:#fff;
}
.t-side-right{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  align-content:start;
}
.t-box{
  border:1px solid #eef0f4;
  border-radius:14px;
  padding:12px;
  background:#ffffff;
  min-height:69px;
}
.t-box-wide{
  grid-column: 1 / -1;
}
.t-new{
  font-size:13px;
  line-height:1.35;
  color:#101828;
  font-weight:700;
  margin-bottom:6px;
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}
.spanstatus{ 
  color:#12a150; 
  font-weight:800; 
}
.t-discount-ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  border-radius:8px;
  background:#fff1f2;
  border:1px solid #ffe4e6;
  margin-right:6px;
  font-size:14px;
}
.t-left-discount{
  border:1px dashed #e6e8ee;
  border-radius:12px;
  padding:10px;
  background:#fff;
  font-weight:800;
  font-size:13px;
}
.inportent{
  color:red;
}
.t-actions{
  grid-column: 1 / -1;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  padding-top:2px;
}
.t-btn{
  width: 100%;
  border:none;
  cursor:pointer;
  padding:10px 16px;
  border-radius:12px;
  font-weight:900;
  font-size:14px;
  color:#fff;
  background: linear-gradient(90deg, #033364 0%, #054a8e 100%);
  box-shadow:0 10px 20px rgba(3, 51, 100, .20);
}
@media (max-width: 576px){
  .stepbar{
    padding: 12px 10px;
    gap: 6px;
  }
  .stepbar-item{
    font-size: 12px;
    white-space: normal;
  }
  .stepbar-sep{
    font-size: 14px;
  }
  .ticket-body{
    grid-template-columns: 2fr 3fr;
    gap:8px;
    padding:8px;
  }
  .t-side-left{
    height:220px;
    padding:6px;
  }
  .t-side-right{
    gap:7px;
  }
  .t-box{
    min-height:58px;
    padding:8px 7px;
    border-radius:10px;
  }
  .t-new{
    font-size:10.5px;
    margin-bottom:4px;
    gap:4px;
  }
  .t-btn{
    padding:9px 12px;
    font-size:13px;
    border-radius:9px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 991px){
  .ticket-body{ grid-template-columns: 200px 1fr; }
}

@media (max-width: 575px){
  /* bootstrap col-6 -> full width on mobile */
  .ticket-grid > [class*="col-6"]{ flex:0 0 100%; max-width:100%; }

  .ticket-body{ grid-template-columns: 1fr; }
  .t-side-right{ grid-template-columns: 1fr; }
  .t-actions{ justify-content:stretch; }
  .t-btn{ width:100%; }
}
/* ===== Booking Ticket Responsive Fix ===== */

.ticket-wrap{
  padding: 18px 0;
  overflow-x: hidden;
}

.ticket-card{
  max-width: 100%;
}

.ticket-body{
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
}

.t-side-left,
.t-side-right,
.t-box{
  min-width: 0;
}

.t-img{
  height: 475px;
}

.t-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tablet / iPad */
@media (max-width: 1024px){
  .ticket-grid > [class*="col-"]{
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  .ticket-body{
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .t-img{
    height: 430px;
  }
}

/* Mobile */
@media (max-width: 767px){
  .ticket-body{
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .t-side-right{
    grid-template-columns: 1fr;
    z-index: 999;
  }
  .t-img{
    height: 300px;
  }
  .t-actions{
    justify-content: stretch;
  }
  .t-btn{
    width: 100%;
  }
}
/* Small Mobile */
@media (max-width: 420px){
  .ticket-wrap{
    padding: 10px 0;
  }

  .ticket-body{
    padding: 10px;
    gap: 10px;
  }

  .t-img{
    height: 240px;
  }

  .t-box{
    padding: 10px;
  }

  .t-new{
    font-size: 12px;
  }
}

/* ===== iPad / Tablet Device Fix Only ===== */
/* ===== Tablet/iPad Professional Layout ===== */
@media (min-width:768px) and (max-width:1024px){
  .ticket-body{
    display:grid;
    grid-template-columns: 2fr 3fr;
    gap:12px;
    align-items:start;
  }
  .t-side-left{
    height:100%;
  }
  .t-img{
    min-height:100%;
    height:100%;
  }
  .t-side-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }
  .t-box{
    padding:10px;
    min-height:auto;
  }
  .t-actions{
    grid-column:1 / -1;
  }
  .t-btn{
    width:100%;
  }

}






/* ===== Booking Offcanvas ===== */
.booking-canvas{  width: 420px; 
  max-width: 100vw;}
.booking-canvas-head{ border-bottom:1px solid #e9eef3; }
.booking-canvas-body{ background:#f6f7fb; }

.bk-summary{
  background:#fff;
  border:1px solid #e9eef3;
  border-radius:16px;
  padding:12px;
}
.bk-s-row{
  display:flex; gap:10px; flex-wrap:wrap;
  justify-content:space-between;
}
.bk-s-item{
  font-size:13px;
  color:#111827;
}
.bk-s-item span{ color:#6b7280; font-weight:600; margin-right:6px; }
.bk-s-item.price b{ color:#ef4444; }

.bk-block{
  background:#fff;
  border:1px solid #e9eef3;
  border-radius:16px;
  padding:14px;
}
.bk-title{
  font-weight:800;
  display:flex; align-items:center; gap:10px;
  margin:0 0 12px;
}
.bk-title i{ color:#033364; }
.req{ color:#ef4444; font-weight:800; }
/* Image preview */
.img-preview{
  width:100%;
  border:1px dashed #cfd8e3;
  border-radius:14px;
  background:#fbfdff;
  overflow:hidden;
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.img-preview img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:none;
}
.img-preview .hint{
  padding:12px;
  color:#6b7280;
  font-size:13px;
  text-align:center;
}
.off-item:hover {
  background: #f3f4f6;
}

/* Payment options */
.pay-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.pay-option{
  border:1px solid #e9eef3;
  border-radius:16px;
  padding:12px;
  background:#fff;
  display:flex;
  gap:10px;
  cursor:pointer;
}
.pay-option.active{
  border-color: rgba(3, 51, 100, .45);
  box-shadow: 0 0 0 4px rgba(3, 51, 100, .12);
}
.p-title{ font-weight:900; }
.p-sub{ font-size:12px; color:#6b7280; margin-top:4px; }
/* Desktop default */
#bookingCanvas.offcanvas-end{
  width: 30vw;        /* 30% feel */
  min-width: 360px;
  max-width: 520px;
}
/* Mobile */
@media (max-width: 992px){
  #bookingCanvas.offcanvas-end{
    width: 95vw !important;
    max-width: 95vw !important;
  }
  .booking-canvas{ width: 100% !important; }
  .pay-grid{ grid-template-columns:1fr; }
}


/* ===================== help desk =====================*/

.helpdesk-image{
  margin-top: 55px;
  padding-top:250px!important;
  }
/*help desk serve */

.stepbar-wrap{
  width: 100%;
  background: #033364;
}
.help-wrap{ background:#f6f7fb; }
.help-head{
  display:flex; gap:14px; align-items:flex-start; justify-content:space-between;
  flex-wrap:wrap;
}
.help-title{ font-weight:900; margin:0; }
.help-sub{ color:#6b7280; margin:6px 0 0; }
.help-badges{ display:flex; gap:10px; flex-wrap:wrap; }
.help-badge{
  background:#fff; border:1px solid #e9eef3; border-radius:999px;
  padding:8px 12px; font-size:13px; font-weight:700;
}
.help-badge.is-green{
  border-color: rgba(3, 51, 100, .35);
  box-shadow: 0 0 0 4px rgba(3, 51, 100, .10);
}
.qcard{
  display:flex; gap:12px; align-items:center;
  background:#fff; border:1px solid #e9eef3; border-radius:16px;
  padding:14px; text-decoration:none; color:#111827;
  transition:.18s;
}
.qcard:hover{ transform: translateY(-2px); box-shadow:0 12px 22px rgba(15,23,42,.08); }
.qicon{
  width:42px; height:42px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(3, 51, 100, .12); color:#033364;
  font-size:20px;
}
.qtitle{ font-weight:900; }
.qmeta{ font-size:13px; color:#6b7280; }
.help-card{
  background:#fff; border:1px solid #e9eef3; border-radius:18px;
  padding:16px;
}
.hcard-title{
  display:flex; align-items:center; gap:10px;
  font-weight:900; margin:0;
}
.hcard-title i{ color:#033364; }
.req{ color:#ef4444; font-weight:900; }
.cat-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:10px;
}
.cat-item{
  border:1px solid #e9eef3; border-radius:14px; padding:10px 12px;
  font-weight:700; font-size:13px; color:#111827;
  display:flex; gap:10px; align-items:center;
}
.cat-item i{ color:#033364; }
.chip{
  display:flex; align-items:center; gap:8px;
  border:1px solid #e9eef3; border-radius:999px;
  padding:8px 12px; font-weight:700; font-size:13px;
  background:#fff;
}
.addr-row{ display:flex; gap:10px; align-items:center; color:#374151; margin:8px 0; }
.addr-row i{ color:#033364; }

@media (max-width: 576px){
  .cat-grid{ grid-template-columns:1fr; }
}


/* roombooking */
.seat-grid-card{ background:#fff; border:1px solid #e9ecef; border-radius:16px; padding:16px; }
.seat-wrapper{ display:flex; justify-content:center; gap: 30px; }
.seat{
  width: 52px; height: 52px; border-radius: 14px;
  font-size: 13px; font-weight: 800;
  display:flex; align-items:center; justify-content:center;
  user-select:none; cursor:pointer;
  background:#fff; border: 1.5px solid #d9d9d9; color:#111;
  transition: transform .08s ease;
}
.seat:active{ transform: scale(.98); }
.seat.disabled{ background:#dcdcdc; color:#9a9a9a; cursor:not-allowed; border-color:#dcdcdc; }
.seat.selected{ background:#033364; border-color:#033364; color:#fff; }
.bk-seat-center{ display:flex; align-items:center; justify-content:center; min-height: calc(100vh - 120px); }

/* sticky */
.bk-sticky{
  position: sticky;
  bottom: 0; left: 0; right: 0;
  background:#033364; color:#fff;
  padding: 10px 12px;
  display:flex; justify-content:space-between; align-items:center;
  gap:10px; z-index: 9999;
  border-radius: 14px;
  margin-top: 14px;
}
.bk-count{ font-weight:900; font-size:14px; }
.bk-sub{ font-size:12px; opacity:.95; max-width: 280px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.bk-total{ font-weight:900; font-size:18px; }
.bk-btn{ border: 0; border-radius: 12px; padding: 10px 14px; font-weight: 900; background:#fff; color:#033364; cursor:pointer; }
.bk-btn:disabled{ opacity:.6; cursor:not-allowed; }
.d-none{ display:none !important; }

/* header close */
.bk-form-head{ position: relative; padding: 8px 0 14px; margin-bottom: 12px; border-bottom: 1px solid #e9ecef; }
.bk-form-title{ font-weight: 800; font-size: 16px; }
.bk-form-close{
  position:absolute; top: 0; right: 0;
  width:36px; height:36px;
  border:1px solid #e6e6e6; background:#fff;
  border-radius:12px; font-size:24px; line-height: 1;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.bk-form-close:hover{ border-color:#cfcfcf; }

.bk-title{ font-weight: 800; margin:0 0 10px; }
.req{ color:#dc3545; }

/* preview */
.img-preview{
  border: 1px dashed #cfcfcf;
  border-radius: 12px;
  padding: 12px;
  min-height: 120px;
  display: grid;
  place-items: center;
}
.img-preview img{ max-width: 100%; max-height: 220px; border-radius: 10px; }
.hint{ font-size: 12px; color:#6c757d; }

/* summary */
.bk-summary{ background:#f8f9fa; border:1px solid #e9ecef; border-radius:14px; padding:10px 12px; }
.bk-s-row{ display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; }
.bk-s-item span{ color:#6c757d; font-size:12px; margin-right:6px; }
.bk-s-item b{ font-weight:900; }
.bk-s-item.price b{ font-size:16px; }

/* payment */
.pay-grid{ display:grid; gap:10px; }
.pay-option{ border:1px solid #e9ecef; border-radius:14px; padding:10px 12px; display:flex; gap:10px; cursor:pointer; }
.pay-option input{ margin-top:4px; }
.p-title{ font-weight:900; }
.p-sub{ font-size:12px; color:#6c757d; }






 /* ============================================ new section  ============================================================ */

  /* ===== HOTEL SERVICES SECTION ===== */
.services-section {
  background-color: #f6f6f6;
  padding: 80px 0 90px;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  color: #b8985a;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}

.services-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #033364;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 28px;
}

.services-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 150px;
}

.service-icon-wrap {
  width: 120px;
  height: 120px;
  background: #edeae4;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover .service-icon-wrap {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(184, 152, 90, 0.18);
}

.service-item:hover svg {
  stroke: #9a7c3f;
}

svg {
  transition: stroke 0.3s ease;
}

.service-name {
  font-size: 14px;
  color: #444;
  text-align: center;
  font-weight: 400;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    gap: 20px;
  }
  .service-item {
    width: 120px;
  }
  .service-icon-wrap {
    width: 95px;
    height: 95px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    gap: 16px;
  }
  .service-item {
    width: 100px;
  }
  .service-icon-wrap {
    width: 80px;
    height: 80px;
  }
  .service-icon-wrap svg {
    width: 36px;
    height: 36px;
  }
  .services-title {
    font-size: 1.6rem;
  }
}

/* ===== RESTAURANT & BAR ===== */
.restaurant-section {
  padding: 60px 0 80px;
  background: #fff;
}

.restaurant-main-title {
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 40px;
}

.restaurant-layout {
  display: flex;
  align-items: stretch;
  gap: 50px;
}

/* Left Image */
.restaurant-left-img {
  position: relative;
  width: 420px;
  min-width: 280px;
  flex-shrink: 0;
  overflow: hidden;
  min-height: 380px;
}

.restaurant-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.restaurant-chef-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 78px;
  background: #b8985a;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right */
.restaurant-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.menu-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid #ebebeb;
}

/* Left column items — right border + right padding */
.menu-item-row:nth-child(odd) {
  padding-right: 30px;
  border-right: 1px solid #ebebeb;
}

/* Right column items — left padding */
.menu-item-row:nth-child(even) {
  padding-left: 30px;
}

/* Remove bottom border from last 2 items */
.menu-item-row:nth-last-child(1),
.menu-item-row:nth-last-child(2) {
  border-bottom: none;
}

.menu-item-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-name {
  flex: 1;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.menu-item-price {
  font-size: 15px;
  color: #b8985a;
  font-weight: 700;
  white-space: nowrap;
  margin-left: 8px;
}

/* Responsive */
@media (max-width: 991px) {
  .restaurant-layout {
    flex-direction: column;
    gap: 30px;
  }
  .restaurant-left-img {
    width: 100%;
    min-height: 260px;
  }
}

@media (max-width: 576px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-item-row:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
  .menu-item-row:nth-child(even) {
    padding-left: 0;
  }
  .menu-item-row:nth-last-child(2) {
    border-bottom: 1px solid #ebebeb;
  }
  .menu-item-row:nth-last-child(1) {
    border-bottom: none;
  }
}


.stats-section {
  background: #02172c;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}
.stat-item {
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: inherit;
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  color: #f59e0b;
  font-weight: 800;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}
.stat-label {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}
/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(3) {
    border-right: 1px solid #3a3733;
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid #3a3733;
    padding-top: 20px;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat-item {
    padding: 20px 15px;
  }
}

 /* ============================================ FOOTER section ============================================================ */
.footer-section {
  background: linear-gradient(180deg, #03284f 0%, #02172c 100%) !important;
  border-top: 4px solid #033364;
  padding: 70px 0 0;
  color: #f8fafc;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 0.8fr 1.2fr;
  gap: 40px;
}

/* Brand */
.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-logo-main {
  font-family: 'SolaimanLipi', 'Playfair Display', serif;
  font-size: 2rem;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.footer-logo-sub {
  font-size: 10px;
  letter-spacing: 3px;
  color: #38bdf8;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 700;
}

.footer-desc {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 15px;
}

.footer-social-btn:hover {
  background: #033364;
  border-color: #38bdf8;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(3, 51, 100, 0.4);
}

/* Columns */
.footer-col-title {
  font-size: 16.5px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: #38bdf8;
  border-radius: 2px;
  margin-top: 6px;
}

/* Services — 2 column list */
.footer-col:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.footer-col:nth-child(2) .footer-col-title {
  grid-column: span 2;
}

.footer-col:nth-child(2) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  column-gap: 12px;
}

.footer-col:nth-child(2) h4 {
  grid-column: 1 / -1;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.footer-links li a::before {
  content: '❯';
  font-size: 9px;
  color: #38bdf8;
  transition: transform 0.2s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-links li a:hover::before {
  color: #60a5fa;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.6;
  align-items: flex-start;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 50px;
  background: #011020;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

.footer-bottom strong {
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col:nth-child(2) {
    grid-template-columns: 1fr;
  }
}






/* ===== iPad Pro 1024 Fix Only ===== */
@media only screen 
and (width: 1024px){

  .topbar .inner{
    padding: 8px 10px;
  }

  .nav-col-left{
    gap: 4px !important;
  }

  .menu-item{
    padding: 8px 10px;
    font-size: 11px;
  }

  .menu-item i{
    font-size: 12px;
  }

  .nav-link-min{
    font-size: 10px;
  }

  .destop-logo img{
    width: 78px !important;
    height: 78px !important;
  }

  .nav-col-right{
    gap: 4px !important;
  }

  .right-item{
    font-size: 11px;
  }

  .right-item span{
    font-size: 10px;
  }

}


/* =========================================================
   GLOBAL RESPONSIVE SAFETY PATCH - added by ChatGPT
   Keeps layout safe on mobile, tablet, desktop, and print
========================================================= */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
img, svg, video, canvas, iframe {
  max-width: 100%;
}
.container, .container-fluid {
  max-width: 100%;
}
button, input, select, textarea {
  max-width: 100%;
}
/* Large tablet */
@media (max-width: 1199.98px) {
  .menu-item { padding: 10px 8px; }
  .nav-link-min { font-size: 11px; }
  .right-item { padding: 8px 7px; }
  .destop-logo img { width: 100px; }
}

/* Tablet */
@media (max-width: 991.98px) {
  body { padding-top: var(--header-h); }
  .fixed-header { height: var(--header-h) !important; }
  .topbar { height: var(--header-h); }
  .login-modal .modal-dialog { margin: 1.5rem auto; }
  .login-card { padding: 18px; }
  .hero-banner { min-height: 300px; }
  .pkg-section, .about-wrap, .portfolio-wrap, .services-section, .restaurant-section, .footer-section {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  :root { --header-h: 56px; }
  h1, .about-title, .pf-title, .services-title, .restaurant-main-title {
    word-break: break-word;
    font-size: 19px;
  }
  .hero-search-wrap { margin-top: -35px; }
  .hero-search-bar { width: 100%; }
  .hs-field, .hs-btn { max-width: 100%; }
  .login-visual { min-height: 230px; padding: 20px; }
  .login-hero h2 { font-size: 24px; }
  .login-panel { padding: 16px; }
  .about-content p { font-size: 14px; line-height: 1.75; }
  .portfolio-wrap .container, .about-wrap .container { padding: 0 14px; }
  .footer-section { padding-top: 45px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .topbar .inner { padding-left: 8px; padding-right: 8px; }
  .center-logo { width: 32px; height: 32px; }
  .mobile-right-wrap .nav-link-min { font-size: 10px; }
  .slider { height: 200px; }
  .s-nav { width: 34px; height: 34px; font-size: 20px; }
  .pkg-name { min-height: auto; }
  .login-card { border-radius: 14px; padding: 16px; }
  .l-alt { flex-direction: column; }
  .footer-col:nth-child(2) { grid-template-columns: 1fr; }
}

@media print {
  .fixed-header, .no-print, .s-nav, .offcanvas, .offcanvas-backdrop {
    display: none !important;
  }
  body { padding-top: 0 !important; overflow: visible !important; }
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}



/* =====================================================
   BOOKING CANVAS — MOBILE BUTTON FIX
   এটা CSS ফাইলের একদম শেষে add করুন
===================================================== */

.advantages-section { padding: 50px 0; background-color: #f8fafc; }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
}

.advantage-item {
  text-align: center;
  padding: 25px 15px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  transition: 0.3s;
  width: 100%;
}

.advantage-item:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0,0,0,0.1); }

.icon-wrapper { margin-bottom: 15px; }
.advantage-name { font-size: 16px; font-weight: 700; color: #333; margin-bottom: 8px; }
.advantage-desc { font-size: 12px; color: #666; line-height: 1.4; margin: 0; }

/* ===== HIDE GOOGLE TRANSLATE BANNER & CUSTOM SWITCHER STYLE ===== */
body {
  top: 0px !important;
}
.skiptranslate, iframe.skiptranslate, .goog-te-banner-frame {
  display: none !important;
  visibility: hidden !important;
}
.goog-te-gadget {
  display: none !important;
  visibility: hidden !important;
}
.goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
}
#google_translate_element {
  display: none !important;
  visibility: hidden !important;
}
.goog-text-highlight {
  background: transparent !important;
  box-shadow: none !important;
}

.lang-switcher-container {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
}

#customLangSelector:hover {
  border-color: #022243;
  color: #022243;
}

/* ==========================================================================
   PREMIUM REDESIGN ADDITIONS - TSS VILLA HOME PAGE
   ========================================================================== */

/* Modern Fonts & Global Enhancements */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

.hompagesolution {
  font-family: 'Outfit', 'SolaimanLipi', sans-serif;
  color: #1e293b;
  overflow-x: hidden;
}

/* 1. Stunning Hero Section Redesign */
.hero-wrap {
  position: relative;
  background: linear-gradient(135deg, #02172c 0%, #033364 50%, #064e8a 100%) !important;
  padding: 100px 20px 120px !important;
  overflow: hidden;
}

.hero-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-wrap .site-name-text {
  font-family: 'SolaimanLipi', 'Playfair Display', serif;
  font-weight: 800;
  font-size: 3.2rem !important;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #ffffff, #fef08a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 12px !important;
}

.hero-wrap p {
  font-size: 1.15rem !important;
  max-width: 650px;
  margin: 0 auto 40px !important;
  font-weight: 400;
  opacity: 0.95;
}

/* Glassmorphic Search Widget */
.hero-search-container {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

.hero-search-container:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hs-field {
  background: rgba(255, 255, 255, 0.95) !important;
  padding: 12px 20px !important;
  border-radius: 12px !important;
  border: 1.5px solid transparent !important;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  transition: all 0.25s ease !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.hs-field:hover, .hs-field:focus-within {
  border-color: #f59e0b !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.hs-field i {
  color: #033364;
  font-size: 1.15rem;
}

.hs-field input.date-input {
  font-weight: 600 !important;
  color: #02172c !important;
  font-size: 14.5px !important;
  width: 110px !important;
  cursor: pointer;
}

.hero-check-btn {
  padding: 15px 32px !important;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  border: none !important;
  color: #02172c !important;
  font-weight: 800 !important;
  font-size: 15.5px !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}

.hero-check-btn:hover {
  background: #ffffff !important;
  color: #033364 !important;
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4) !important;
}

/* 2. Rules Card Layout Redesign */
.rules-notice-section {
  background: #f8fafc !important;
  padding: 80px 0 !important;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.rule-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rule-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e1;
}

.rule-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(3, 51, 100, 0.08);
  color: #033364;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.rule-card:hover .rule-icon-box {
  background: linear-gradient(135deg, #033364 0%, #054a8e 100%);
  color: #ffffff;
  transform: scale(1.08) rotate(-5deg);
}

.rule-text {
  font-size: 15.5px;
  color: #334155;
  line-height: 1.6;
  font-weight: 600;
}

.rule-text strong {
  color: #033364;
  font-weight: 800;
}

/* 3. Popular Packages (Floor Cards) Redesign */
.pkg-section {
  background: #ffffff !important;
  padding: 85px 0 !important;
}

.pkg-title {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: #033364 !important;
  text-align: center;
  margin-bottom: 50px !important;
  position: relative;
}

.pkg-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #f59e0b;
  border-radius: 2px;
}

.pkg-card {
  background: #ffffff;
  border-radius: 24px !important;
  border: 1px solid #e2e8f0 !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 45px rgba(3, 51, 100, 0.12) !important;
  border-color: #cbd5e1 !important;
}

.pkg-media {
  overflow: hidden;
  position: relative;
  height: 230px;
}

.pkg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.pkg-card:hover .pkg-media img {
  transform: scale(1.08);
}

.pkg-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 60%);
}

.pkg-body {
  padding: 24px 28px !important;
}

.pkg-name {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #033364 !important;
  margin-bottom: 18px !important;
}

.pkg-price-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pkg-price {
  font-size: 1.2rem !important;
  color: #22c55e !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
}

.pkg-sub {
  font-size: 13.5px !important;
  color: #64748b !important;
  font-weight: 500 !important;
}

.pkg-btn {
  padding: 10px 20px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  background-color: #033364 !important;
  border-color: #033364 !important;
  color: #ffffff !important;
  transition: all 0.25s ease !important;
}

.pkg-btn:hover {
  background-color: #f59e0b !important;
  border-color: #f59e0b !important;
  color: #02172c !important;
  transform: translateY(-1px);
}

/* 4. Refined Stats Section */
.stats-section {
  background: linear-gradient(135deg, #02172c 0%, #033364 100%) !important;
  padding: 70px 0 !important;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px !important;
  padding: 30px 10px !important;
}

.stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-number {
  color: #f59e0b !important;
  font-weight: 800 !important;
  font-size: 3rem !important;
  text-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.stat-label {
  color: #cbd5e1 !important;
  font-weight: 600 !important;
}

/* 5. Our Gallery Redesign */
.gallery-section {
  padding: 85px 0 !important;
  background: #f8fafc !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: all 0.35s ease;
}

.gallery-item:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.gallery-img-wrap {
  position: relative;
  padding-bottom: 70%; /* 4:3 Aspect Ratio */
  overflow: hidden;
}

.gallery-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease !important;
}

.gallery-item:hover .gallery-img-wrap img {
  transform: scale(1.08);
}

.gallery-overlay {
  background: rgba(3, 51, 100, 0.6) !important;
}

.gallery-zoom {
  background: #ffffff !important;
  color: #033364 !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-view-more-btn {
  background: #033364 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  padding: 14px 32px !important;
  border: 1.5px solid #033364 !important;
  box-shadow: 0 8px 15px rgba(3, 51, 100, 0.15) !important;
  transition: all 0.25s ease !important;
}

.gallery-view-more-btn:hover {
  background: #f59e0b !important;
  border-color: #f59e0b !important;
  color: #02172c !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(245, 158, 11, 0.25) !important;
}

/* 6. Advantages Section Redesign */
.advantages-section {
  padding: 85px 0 !important;
  background: #ffffff !important;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  gap: 24px !important;
  margin-top: 40px;
}

.advantage-item {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 30px 20px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.advantage-item:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 30px rgba(3, 51, 100, 0.08) !important;
  border-color: #cbd5e1 !important;
}

.icon-wrapper {
  background: #f1f5f9;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px !important;
  transition: all 0.3s ease;
}

.advantage-item:hover .icon-wrapper {
  background: #033364;
}

.advantage-item:hover .icon-wrapper i {
  color: #ffffff !important;
  transform: scale(1.1);
}

.advantage-name {
  color: #033364 !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  margin-bottom: 10px !important;
}

.advantage-desc {
  font-size: 13.5px !important;
  color: #475569 !important;
  line-height: 1.5 !important;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .hero-wrap .site-name-text {
    font-size: 2.2rem !important;
  }
  .hero-search-container {
    padding: 12px;
    gap: 10px;
  }
  .hs-field {
    min-width: 100%;
  }
  .hs-field input.date-input {
    width: 100% !important;
  }
  .rules-grid {
    grid-template-columns: 1fr;
  }
}

