   /* ========== GLOBAL FONT SETUP ========== */

/* Body text, paragraphs, buttons, nav, etc */
/* ========== GLOBAL FONT SETUP ========== */

/* PURE WEBSITE KA DEFAULT FONT */
body {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #222;
}
body, html {
  overflow-x: hidden;
}
/* Sare headings ek jese */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Faculty Glyphic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Navbar, dropdown, buttons, offcanvas text, etc. sab same font le */
.navbar-brand,
.nav-link,
.dropdown-item,
.btn,
small,
.input-group-text,
.offcanvas-title,
.offcanvas .nav-link,
.carousel-caption,
.hero-content,
p,
span {
  font-family: inherit;
}


    /* ========== HEADER STYLES ========== */
    /* Logo styling */
    .logo-box {
      background: #fff !important;
      padding: 0 20px !important;
      height: 90px;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
  
    .logo-box .navbar-brand {
      color: #fff !important;
      font-size: 28px !important;
      font-family: 'Georgia', serif !important;
      white-space: nowrap !important;
    }
    /* Header Scroll Hide/Show */
/* Header Scroll Hide/Show */
.navbar {
  /* position: fixed !important; */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  transition: transform 0.35s ease;
  padding: 0;
}

.navbar.hide-header {
  transform: translateY(-100%);
}

*{
    font-family: "Faculty Glyphic", sans-serif !important;
}

    /* Navigation styling */
    .navbar-nav .nav-link {
      color: #000 !important;
      padding: 8px 12px !important;
      font-size: 17px !important;
    }

    .navbar-nav .nav-link:hover {
      color: #b74c3a !important;
    }

    .home-pill {
      background: #eb2128 !important;
      color: #fff !important;
      border-radius: 6px !important;
      padding: 6px 16px !important;
    }

    /* Icon styling */
    .icon-box {
      border-left: 1px solid #ddd !important;
      padding: 10px 15px !important;
      text-align: center !important;
    }

    .icon-box i {
      font-size: 20px !important;
      display: block !important;
    }

    .icon-box small {
      font-size: 10px !important;
      letter-spacing: 1px !important;
    }

    .badge-custom {
      position: absolute !important;
      top: -6px !important;
      right: -10px !important;
      background: #b74c3a !important;
      color: #fff !important;
      font-size: 10px !important;
      padding: 2px 6px !important;
      border-radius: 10px !important;
    }

    .icon-wrapper {
      position: relative !important;
      display: inline-block !important;
    }

    /* Mobile toggler styling */
    .navbar-toggler {
      border-color: #b74c3a !important;
      margin-right: 15px !important;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(183,76,58,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    /* Mobile-specific header styles */
    @media (max-width: 992px) {
      .logo-box {
        height: 65px !important;
      }
      
      /* .logo-box .navbar-brand {
        font-size: 24px !important;
      }
       */
      .navbar-nav {
        padding: 10px 0 !important;
      }
      
      .navbar-nav .nav-link {
        padding: 10px 15px !important;
        border-bottom: 1px solid #f0f0f0 !important;
      }
      
      .dropdown-menu {
        border: none !important;
        box-shadow: none !important;
        padding-left: 20px !important;
      }
      
      .home-pill {
        display: inline-block !important;
        width: auto !important;
        margin: 5px 0 !important;
      }
      
      /* Mobile icons area */
      .mobile-icons {
        display: flex !important;
        justify-content: space-around !important;
        padding: 10px 0 !important;
        border-top: 1px solid #eee !important;
        background: #f9f9f9 !important;
      }
      
      .mobile-icon-item {
        text-align: center !important;
        flex: 1 !important;
      }
      
      .mobile-icon-item i {
        font-size: 20px !important;
        display: block !important;
        margin-bottom: 5px !important;
      }
      
      .mobile-icon-item small {
        font-size: 10px !important;
        letter-spacing: 1px !important;
        color: #666 !important;
      }
      
      .mobile-badge {
        position: absolute !important;
        top: -5px !important;
        right: 25% !important;
        background: #b74c3a !important;
        color: #fff !important;
        font-size: 10px !important;
        padding: 2px 6px !important;
        border-radius: 10px !important;
      }
      
      .desktop-icons {
        display: none !important;
      }
    }

    /* Desktop-specific header styles */
    @media (min-width: 993px) {
      .mobile-icons {
        display: none !important;
      }
      
      .desktop-icons {
        display: flex !important;
      }
    }
    
    /* ========== HERO SLIDER STYLES ========== */
    /* Banner Height */
  /* Hero Carousel Full Height */
#heroCarousel {
    position: relative;
}

/* Hero slide image */
/* .hero-slide {
   height: 100vh; 
   min-height: 650px; 
   position: relative; 
   background-size: cover; 
   background-position: center; 
  } */

/* Hero content positioning */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    padding: 0 15px;
}

/* Buttons */
.btn-custom {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 30px;
    font-weight: bold;
    transition: 0.3s;
}
.btn-custom:hover {
    background-color: #333;
}

/* Responsive text for smaller screens */
@media (max-width: 768px) {
    .hero-slide {
        height: 60vh; /* reduce height on mobile */
    }
    .head-main {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 14px;
    }
}

    /* Dark Overlay */
    .hero-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.35);
    }

    /* Text box */
    .hero-content {
      position: absolute;
      top: 50%;
      left: 15%;
      z-index: 10;
      transform: translateY(-50%);
      color: #fff;
      max-width: 550px;
      animation: zoomOut 0.9s ease;
      opacity: 0;
      animation-fill-mode: forwards;
    }

    /* Zoom-Out Animation */
    @keyframes zoomOut {
      0% { transform: translateY(-50%) scale(1.2); opacity: 0; }
      100% { transform: translateY(-50%) scale(1); opacity: 1; }
    }

    /* Button Style */
    .btn-custom {
      position: relative;
      overflow: hidden;
      padding: 10px 25px;
      border-radius: 30px;
      background: #fff;
      color: #000;
      font-weight: 600;
      transition: 0.3s ease;
      border: none;
    }

    .btn-custom::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: #b54c3a;
      transition: 0.5s ease;
      z-index: 1;
    }

    .btn-custom:hover::after {
      left: 0;
    }

    .btn-custom:hover span {
      color: #fff;
    }

    .btn-custom span {
      position: relative;
      z-index: 2;
      transition: 0.3s ease;
      color: inherit;
    }

    /* Carousel indicators */
    .carousel-indicators {
      bottom: 30px;
    }
    
    .carousel-indicators button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin: 0 5px;
      background-color: rgba(255,255,255,0.5);
      border: none;
    }
    
    .carousel-indicators button.active {
      background-color: #fff;
    }

    /* ========== RESPONSIVE HERO STYLES ========== */
    @media (max-width: 1200px) {
      .hero-content {
        max-width: 500px;
      }
      
      .hero-content h1 {
        font-size: 2.8rem;
      }
    }

    @media (max-width: 992px) {
      .hero-slide {
        height: 80vh;
        min-height: 500px;
      }
      
      .hero-content {
        max-width: 450px;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        padding: 0 20px;
      }
      
      .hero-content h1 {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 768px) {
      .hero-slide {
        height: 70vh;
        min-height: 450px;
      }
      
      .hero-content {
        max-width: 400px;
      }
      
      .hero-content h1 {
        font-size: 2.2rem;
      }
      
      .hero-content p {
        font-size: 0.95rem;
      }
    }

    @media (max-width: 576px) {
      .hero-slide {
        height: 60vh;
        min-height: 400px;
      }
      
      .hero-content {
        max-width: 320px;
      }
      
      .hero-content h1 {
        font-size: 1.8rem;
      }
      
      .hero-content p {
        font-size: 0.9rem;
        text-align: justify;
      }
      
      .btn-custom {
        padding: 8px 20px;
        font-size: 0.9rem;
      }
      
      .carousel-indicators {
        bottom: 0px;
      }
    }

    @media (max-width: 400px) {
      .hero-slide {
        height: 55vh;
        min-height: 350px;
      }
      
      .hero-content h1 {
        font-size: 1.6rem;
        text-align: justify;
      }
      
      .hero-content .small {
        font-size: 0.75rem;
        text-align: justify;
      }
    }
    .offcanvas {
  width: 300px !important;
}

.offcanvas .nav-link {
  font-size: 18px;
  padding: 12px 5px;
  border-bottom: 1px solid #f0f0f0;
}

.offcanvas-header {
  border-bottom: 1px solid #eee;
}

.input-group-text {
  background: #fff !important;
}
@media (max-width: 768px) {
  .hero-content {
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
    max-width: 90% !important;
  }
}

@media (max-width: 576px) {
  .hero-content {
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
    max-width: 100% !important;
    width: 350px;
  }
}

@media (max-width: 400px) {
  .hero-content {
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
    max-width: 95% !important;
    padding-top: 46px;
  }
}

/* second section */
/* ================= BENEFITS STRIP ================= */

.benefits-strip {
  background-color: #f8efe5;       /* halka cream bg jaisa reference me */
  padding: 24px 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               sans-serif;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  justify-content: center;
}
/* Icon Hover 360° rotation + red color */
.benefit-icon i {
  display: inline-block;
  transition: color 0.4s ease;
}

.benefit-item:hover .benefit-icon i {
  animation: spin360 0.8s linear forwards;
}

@keyframes spin360 {
  0% {
    transform: rotateY(0deg);
    color: inherit;
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
    color: red;
  }
}

.benefit-icon {
  font-size: 28px;
  color: #b74c3a;                  /* same warm red tone */
  line-height: 1;
  flex-shrink: 0;
}

/* .benefit-content {
 
} */

.benefit-title {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
}

.benefit-text {
  font-size: 13px;
  color: #6b7280;                  /* soft grey text */
}

/* ---------- Responsive tweaks ---------- */

@media (max-width: 991.98px) {
  .benefits-strip {
    padding: 20px 0;
  }
}

@media (max-width: 575.98px) {
  .benefit-item {
    justify-content: flex-start;
  }

  .benefit-title {
    font-size: 14px;
  }

  .benefit-text {
    font-size: 12px;
  }
}

/* second section off */

/* third section */
/* --- ROOM COLLECTION: force single row slide --- */

/* Sab carousel items ke andar wali row ko flex + nowrap bana do */
.room-collection .carousel-item .row {
  display: flex !important;
  flex-wrap: nowrap !important;   /* 👈 ab 2 row me nahi tutege */
}

/* Columns ko wrap hone se roko */
.room-collection .carousel-item [class^="col-"],
.room-collection .carousel-item [class*=" col-"] {
  flex: 0 0 auto !important;
}
.collapse:not(.show) {
    display: none;
    margin-right: 40px;
}
/* Mobile / tablet par card ki width control karo */
@media (max-width: 991.98px) {
  .room-collection .carousel-item .row {
    overflow-x: auto;             /* 👈 horizontal scroll/slide allow */
    scrollbar-width: none;        /* Firefox scrollbar hide */
  }

  .room-collection .carousel-item .row::-webkit-scrollbar {
    display: none;                /* Chrome scrollbar hide */
  }

  .room-collection .carousel-item [class^="col-"],
  .room-collection .carousel-item [class*=" col-"] {
    width: 70%;                   /* 👈 har card approx 70% width, adjust karo taste se */
    max-width: 260px;
  }
}

/* Extra small screens ke liye thoda chhota */
@media (max-width: 575.98px) {
  .room-collection .carousel-item [class^="col-"],
  .room-collection .carousel-item [class*=" col-"] {
    width: 80%;
    max-width: 240px;
  }
}
/* third section */
.room-card-img {
  width: 100%;
  display: block;
  border-radius: 24px; /* default */
  transition: border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s ease;
}

.room-card:hover .room-card-img {
  border-radius: 30%;
  transform: scale(1.03);
}


/* third section off */


/* fourth section----------- */
  /* ===== HERO LAYOUT WRAPPER ===== */
        .hero-wrapper {
            position: relative;
            min-height: 80vh;
            overflow: hidden;
        }

        /* LEFT SIDE */
        .hero-left {
            background: #eb2128;
            padding: 90px 70px;
            color: #fff;
        }

        .hero-kicker {
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-size: 12px;
            color: #fff;
            margin-bottom: 22px;
        }

        .hero-title {
            font-family: "Georgia", "Times New Roman", serif;
            font-size: 44px;
            line-height: 1.2;
            margin-bottom: 26px;
        }

        .hero-sub {
            max-width: 360px;
            color: var(--text-off);
            font-size: 14px;
            margin-bottom: 28px;
        }

        .hero-timer-label {
            font-size: 13px;
            margin-bottom: 14px;
            color: #f3e6d5;
            font-weight: 500;
        }

        .hero-timer {
            display: flex;
            gap: 34px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .hero-timer-item span {
            display: block;
            text-align: left;
        }

        .hero-timer-number {
            font-size: 30px;
            font-weight: 600;
            color: var(--accent-red);
        }

        .hero-timer-text {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #e0d3c0;
        }

        .btn-custom {
            background: transparent;
            color: #fff;
            border-radius: 999px;
            padding: 11px 32px;
            font-weight: 500;
            font-size: 14px;
            border: 1px solid #fff;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .btn-custom span {
            font-size: 13px;
        }
        .btn-custom hero-btn:hover {
            background: #fff;
            color: #000;
        }

        /* RIGHT SIDE (BIG BG IMAGE) */
        .hero-right {
            position: relative;
            min-height: 100%;
        }

        .hero-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* CENTER ROUND IMAGE */
        .hero-circle {
         position: absolute;
    top: 50%;
    left: 41%;
    transform: translate(-10%, -50%);
    width: 305px;
    height: 387px;
    border-radius: 35%;
    overflow: hidden;
    box-shadow: 0 30px 55px rgba(0, 0, 0, 0.55);
    z-index: 2;
        }

        .hero-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ===== 50% STICKER WITH ROTATING BACKGROUND ONLY ===== */
        .hero-badge {
            position: absolute;
    top: 32%;
    left: 39%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    z-index: 3;
        }

        /* rotating image / shape */
       .hero-badge-rotor {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image: url("./img/sticker.png");
    background-size: cover;        /* image ko poora round me fit karega */
    background-position: center;   /* center focus */
    background-repeat: no-repeat;  /* repeat na ho */
    
    animation: spinSticker 12s linear infinite;
}

        /* non-rotating text layer */
        .hero-badge-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            pointer-events: none;
        }

        .hero-badge-title {
            font-size: 12px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .hero-badge-percent {
            margin-top: 6px;
            font-size: 40px;
            font-weight: 700;
        }

        @keyframes spinSticker {
            from { transform: rotate(0deg); }
            to   { transform: rotate(360deg); }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1199.98px) {
            .hero-left {
                padding: 70px 45px;
            }
            .hero-title {
                font-size: 38px;
            }
            .hero-circle {
                width: 380px;
                height: 380px;
                transform: translate(-5%, -50%);
            }
            .hero-badge {
                width: 160px;
                height: 160px;
                left: 46%;
                top: 34%;
            }
        }
/* ===== MOBILE (Very Small Screens) ===== */
@media (max-width: 575.98px) {

    /* LEFT TEXT CENTER */
    .hero-left {
        padding: 40px 18px 35px;
        text-align: center;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.25;
    }

    .hero-sub {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-timer {
        gap: 16px;
        justify-content: center;
    }
    .hero-timer-number {
        font-size: 22px;
    }

    /* ===== CENTER IMAGE RIGHT IMAGE KE UPAR ===== */
    .hero-circle {
      position: absolute;
        top: 85%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 112px;
        height: 112px;
        z-index: 20;         /* sabse upar */
    }

    /* ===== STICKER HIDE ===== */
    .hero-badge {
        display: none !important;
    }

    btn-custom {
        padding: 10px 26px;
        font-size: 13px;
    }
}


/* fourth section--------------- */

/* five  */
/* ========== SECTION HEADER ========== */
.section-heading {
  font-size: 32px;
  font-weight: 600;
  color: #000 !important;
  font-family: Georgia, serif;
}
@media (max-width:575.98px){
  .section-heading {
    font-size: 20px; /* 👈 mobile pe 20px */
    padding-left: 10px;
  }
}


.section-link {
  color: #d73f3f;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

/* ========== DEAL BANNER CARDS ========== */
.deal-card {
  padding: 12px;
}

.deal-card-inner {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.deal-card-inner img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
}

/* Dark gradient overlay */
.deal-card-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

/* Overlay content text box */
.deal-content-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  color: #fff;
  max-width: 80%;
  z-index: 2;
}

/* Badges themes */
.badge-green {
  background: #056c5f;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.badge-red {
  background: #b52b2b;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.badge-purple {
  background: #5a3ab5;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

/* Banner subtitle */
.deal-subtitle {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

/* Banner heading */
.deal-title {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 6px;
  font-family: Georgia, serif;
  position: relative;
  z-index: 2;
}

/* Banner description */
.deal-desc {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

/* Buttons */
.deal-btn {
  border: 1.6px solid rgba(255,255,255,0.35);
  padding: 6px 18px;
  border-radius: 18px;
  font-size: 14px;
  background: transparent;
  color: #fff;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.deal-btn:hover {
  background: rgba(255,255,255,0.15);
}

/* five off */

/* dhfh. */

   /* ===== PAGE BASE ===== */

  /* ===== DUAL BANNER WRAPPER ===== */
  .dualBannerJah {
    max-width: 100%;
  }

  /* ===== BANNER CARD ===== */
  .bannerCardJah {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 480px; /* 👈 IMAGE KI HEIGHT BADI */
    background: #000;
  }

  /* ===== BANNER IMAGE ===== */
  .bannerImgJah {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ===== COMMON CONTENT ===== */
  .bannerContentJah {
    position: absolute;
    color: #fff;
    z-index: 2;
  }

  /* ===== BUTTON ===== */
  .bannerBtnJah {
    margin-top: 18px;
    padding: 10px 26px;
    border-radius: 30px;
    border: none;
    background: #ffffff;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
  }
  .bannerBtnJah i {
    margin-left: 8px;
    font-size: 12px;
  }

  /* ===== RED STRIP (Moving Text) ===== */
  .bannerLeftStripJah {
    position: absolute;
    left: 0;
    right: 0;
    top: 405px;
    z-index: 2;
    background: #c63e32;
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    overflow: hidden;
    padding: 12px 0;
  }

  .stripTrackJah {
    display: inline-flex;
    gap: 50px;
    white-space: nowrap;
    padding-left: 100%;
    animation: stripMove 12s linear infinite;
    min-width: max-content;
  }

  @keyframes stripMove {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
  }

  /* ===== LEFT BOTTOM CONTENT ===== */
  .bannerLeftContentJah {
    left: 48px;
    bottom: 48px;
    max-width: 60%;
    text-align: left;
  }

  .bannerLeftContentJah h2 {
    font-size: 60px;
    line-height: 1;
    margin: 0 0 10px;
    font-weight: 600;
  }
  .bannerLeftContentJah p {
    font-size: 15px;
    max-width: 300px;
    margin: 0 0 18px;
    opacity: 0.95;
  }

  /* ===== RIGHT BANNER TOP-LEFT CONTENT ===== */
  .bannerRightContentJah {
    left: 48px;
    top: 48px;
    max-width: 60%;
    text-align: left;
  }

  .bannerRightContentJah .bannerRightLabelJah {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.9;
  }
  .bannerRightContentJah h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 16px;
  }

  /* ===== RESPONSIVE BREAKPOINTS ===== */
  @media (max-width: 991.98px) {
    .bannerCardJah { min-height: 380px; }
    .bannerLeftContentJah { left: 22px; bottom: 32px; max-width: 75%; }
    .bannerRightContentJah { left: 22px; top: 32px; max-width: 75%; }
    .bannerLeftContentJah h2 { font-size: 40px; }
    .bannerRightContentJah h2 { font-size: 32px; }
  }

  @media (max-width: 575.98px) {
   .brand-title{
    padding-left: 10px;
   }
   .sectionSpacingTBJah {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
    .bannerCardJah {
      min-height: 300px;
      margin-bottom: 18px;
    }
    .bannerLeftStripJah { top: 255px; font-size: 21px; }
    .stripTrackJah { gap: 32px; animation-duration: 8s; }
    .bannerLeftContentJah { left: 22px; bottom: 26px; max-width: 85%; }
    .bannerRightContentJah { left: 22px; top: 26px; max-width: 85%; }
    .bannerLeftContentJah h2 { font-size: 34px; }
    .bannerRightContentJah h2 { font-size: 28px; }
  }
/* iduhziufh */

/* djhf */
  .brand-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    padding: 5px;
    text-align: center;
    cursor: pointer;
  }

  .brand-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 18px;
  }

  /* Image ke andar bottom center me heading button */
  .img-heading-btn {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    
    background: rgba(255,255,255,0.85);
    color: #000;
    font-size: 14px;
    font-weight: 600;
    
    padding: 6px 16px;
    border-radius: 24px;
    border: none;
    transition: 0.4s ease;
    white-space: nowrap;
  }

  /* Hover se color change */
  .brand-card:hover .img-heading-btn {
    background: #b54c3a;
    color: #fff;
  }
/* jshgdjhgj */

/* uwahgdi */

    .testimonials-section {
      padding-left: 20px;
      padding-right: 20px;
      padding-bottom: 20px;
      padding-top: 20px;
    }

    .testi-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
      gap: 16px;
    }

    .testi-title {
      font-size: 28px;
      font-weight: 600;
      margin: 0;
      color: #111827;
    }

    .testi-header-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .testi-rating-block {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 20px;
      background: #f5f5f5;
    }

    .testi-rating-stars {
      display: flex;
      gap: 2px;
      font-size: 14px;
      color: #f97316; /* orange-ish for stars */
    }

    .storyHeadingJah{
      text-align: justify;
    }
    .testi-rating-score {
      font-size: 12px;
      font-weight: 500;
      padding: 2px 8px;
      border-radius: 999px;
      background: #111827;
      color: #fff;
    }

    .testi-rating-text {
      font-size: 12px;
      color: #6b7280;
      white-space: nowrap;
    }

    .testi-nav {
      display: flex;
      gap: 8px;
    }

    .testi-nav-btn {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }

    .testi-nav-btn i {
      font-size: 14px;
      color: #111827;
    }

    .testi-nav-btn:hover {
      background: #111827;
      border-color: #111827;
      transform: translateY(-1px);
    }

    .testi-nav-btn:hover i {
      color: #ffffff;
    }

    /* ===== Card Styles ===== */
    .testi-card {
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      padding: 20px 18px;
      background: #ffffff;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .testi-stars {
      font-size: 14px;
      color: #f97316;
      margin-bottom: 8px;
    }

    .testi-name {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 12px;
      color: #111827;
    }

    .testi-text {
      font-size: 13px;
      line-height: 1.5;
      color: #4b5563;
      margin-bottom: 18px;
    }

    .testi-divider {
      height: 1px;
      background: #e5e7eb;
      margin: 8px 0 18px;
    }

    .testi-product {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .testi-product-img {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      object-fit: cover;
      background: #f3f4f6;
    }

    .testi-product-info {
      display: flex;
      flex-direction: column;
      font-size: 12px;
    }

    .testi-product-name {
      font-weight: 500;
      margin-bottom: 4px;
      color: #111827;
    }

    .testi-product-price {
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .testi-product-price span.current {
      color: #dc2626;
      font-weight: 600;
    }

    .testi-product-price span.old {
      color: #9ca3af;
      text-decoration: line-through;
      font-size: 11px;
    }

    /* Swiper: remove default shadow/overflow */
    .swiper {
      padding-bottom: 4px;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .testi-header {
        flex-direction: column;
        align-items: flex-start;
      }
      .testi-header-right {
        width: 100%;
        justify-content: space-between;
      }
      .testi-title {
        font-size: 23px;
        padding-left: 10px;
      }
    }

    @media (max-width: 576px) {
      .testimonials-section {
        padding: 24px 0 40px;
      }
      .jah-family-section{
        padding-bottom: 0px !important;
        
      }
    }
/* iueryhaui; */


/* hdsge */

/* ===== FULL WIDTH STORY SECTION ===== */
.sectionStoryJah {
  background-color: #2c261f;
  padding: 60px 45px;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sectionSpacingTBJah {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* ===== IMAGE FULL WIDTH NO GAP ===== */
.storyImgLeftJah img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

/* ===== QUOTE BIG TEXT ===== */
.storyQuoteJah {
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  margin: 20px 0 32px;
  text-align: justify;
}

/* ===== WHY CHOOSE ===== */
.storyWhyChooseJah {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 90%;
}

/* ===== POINTS COLUMN ===== */
.storyPointsColJah {
  font-size: 16px;
}

.storyPointsColJah li {
  margin-bottom: 14px;
}

.storyPointsColJah i {
  color:#b54c3a;
  margin-right: 8px;
}

/* ===== RESPONSIVE FIX ===== */
@media (max-width: 768px) {
  .sectionStoryJah { text-align: center; padding: 40px 20px; }
  .storyWhyChooseJah { max-width: 100%; text-align: justify; }
  .storyPointsColJah { width: 100%; text-align: justify;}
}
/* hef/gzl */

/* uwghd */
.instaStripJah{
  display:flex;
  width:100vw;
  overflow:hidden;
}
.instaBoxJah{
  position:relative;
  flex:1;
  overflow:hidden;
  height:auto;
}
.instaBoxJah img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.instaIconJah{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:32px;
  opacity:0;
  color:#fff;
  transition:opacity .3s ease;
  pointer-events:none;
}
.instaBoxJah:hover .instaIconJah{
  opacity:1;
}
.instaBoxJah:hover img{
  filter:brightness(.55);
  transition:.3s ease;
}
@media(max-width:768px){
  .instaBoxJah:nth-child(n+3){display:none;}
  .instaBoxJah{flex:0 0 50%;height:220px;}
}

/* jdfh======= */

.footer-subscribe-title {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
  margin-bottom: 16px;
}

.footer-input {
  font-size: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 50px;
  padding: 10px 16px;
  width: 100%;
  outline: none;
}

.footer-btn {
  background: #c5523f;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
  border: none;
  margin-top: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.footer-btn:hover {
  opacity: 0.9;
}

.footer-heading {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-text {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-link {
  font-size: 13px;
  color: #6c757d;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

.footer-link:hover {
  color: #c5523f;
}

.footer-bottom {
  border-top: 1px solid #dee2e6;
  padding-top: 18px;
  margin-top: 5px;
}

.footer-copy {
  font-size: 12px;
  color: #6c757d;
  margin: 0;
}

.footer-policy {
  font-size: 12px;
  color: #6c757d;
  text-decoration: none;
  margin-right: 14px;
}

.footer-policy:hover {
  color: #111;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  background: #f3f3f3;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: #222;
  cursor: pointer;
  transition: 0.3s ease;
}

.footer-social-btn:hover {
  background: #b74c3a;
  color: #fff;
}

/* FULL WIDTH for Desktop / Large Screen */
@media (min-width: 1200px) {
  .container-wide {
    max-width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

/* MOBILE TWEAKS */
@media (max-width: 576px) {
  .footer-subscribe-title {
    font-size: 18px;
  }

  .footer-heading {
    font-size: 13px;
  }
}

/* footer---------------------------------------------- */

.btn-slide{
  padding:12px 25px;
  border:none;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  border-radius:6px;
  background:#b84d3b;
  transition:0.3s ease;
  position:relative;
  overflow:hidden;
  z-index:1;
}

/* Slide Animation */
.btn-slide{
  padding:5px 14px;
  border:none;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  border-radius:6px;
  background:#b84d3b;
  transition:0.3s ease;
  position:relative;
  overflow:hidden;
  z-index:1;
}

.btn-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:#eb2128;
  width:0;
  transition:0.4s ease;
  z-index:-1;
}

.btn-slide:hover::before{
  width:100%;
  background-color:#eb2128;
}

/* Button Center Fix */
.jah-product-info{
  text-align:center;
}

/* about page====================================================== */
   .about-us{
    padding-bottom: 100px;
    padding-top: 100px;
   }
  /* First Image Crop */
  .img-main-box {
      width: 100%;
      height: 350px;
      overflow: hidden;
      border-radius: 15px;
      position: relative;
  }
  @media (max-width: 576px) {
    .img-overlay, 
    .experience-box, 
    .dots-pattern {
        display: none !important;
    }
     
}
@media (max-width: 768px) {
    .img-main {
        padding-right: 0 !important;
    }
     .about-us{
    padding-bottom: 0px;
    padding-top: 30px;
   }
}
  .img-main {
      width: 100%;
      height: 100%;
      object-fit: cover;
      padding-right: 150px;
  }

  /* Second Image Overlay */
  .img-overlay {
      width: 52%;
      position: absolute;
      bottom: -94px;
      left: 325px;
      border-radius: 15px;
      /* filter: brightness(60%); */
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }

  /* ANIMATION - FLOAT UP DOWN */
  @keyframes floatUpDown {
      0%   { transform: translateY(0); }
      50%  { transform: translateY(-18px); }
      100% { transform: translateY(0); }
  }

  /* 5+ BOX */
  .experience-box {
      position: absolute;
      top: 100px;
      right: 7px;
      background: #0c1b36;
      padding: 14px 20px;
      border-radius: 10px;
      color: #fff;
      z-index: 10;
      animation: floatUpDown 3s ease-in-out infinite;
  }

  /* DOTS */
  .dots-pattern {
      position: absolute;
      top: 36px;
      right: 6px;
      width: 120px;
      height: 120px;
      background-image: radial-gradient(#ff5252 2px, transparent 2px);
      background-size: 15px 15px;
      opacity: .4;
      z-index: 5;

      /* SAME ANIMATION */
      animation: floatUpDown 3s ease-in-out infinite;
      animation-delay: .2s;  /* थोड़ा अलग smooth look */
  }
  /* ueryhious */

      .why-choose-section {
      background-color: #f8fafc;
    }

    .why-choose-title-small {
      letter-spacing: 2px;
      font-size: 17px;
      text-transform: uppercase;
      color: #eb2128;
      font-weight: 600;
    }

    .why-choose-title-main {
      font-weight: 700;
      font-size: 28px;
      color: #111827;
    }

    .why-choose-card {
      background-color: #ffffff;
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      height: 100%;
      transition: all 0.2s ease-in-out;
    }

    .why-choose-card:hover {
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.09);
      transform: translateY(-3px);
    }

    .why-choose-text h5 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 6px;
      color: #111827;
    }

    .why-choose-text p {
      font-size: 14px;
      margin-bottom: 0;
      color: #6b7280;
      line-height: 1.5;
    }

/* Hover pe icon pehle paltega, fir 360° right se left rotate karega */
.why-choose-icon i {
  font-size: 24px;
  color: #eb2128;
  display: inline-block;
  transition: transform 0.4s ease-in-out;
}

.why-choose-card:hover .why-choose-icon i {
  animation: spin360 0.8s linear forwards;
}

@keyframes spin360 {
  0% {
    transform: rotateY(0deg);
    color: inherit;
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
    color: red;
  }
}

    @media (max-width: 576px) {
      .why-choose-title-main {
        font-size: 22px;
      }
    }
  /* udhfiz */
  /* hsggk */
  /* PAGE BASE STYLING */
.about-page {
  padding: 0px 0;
  background: #f9fafb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-badge {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #eb2128;
  margin-bottom: 8px;
}

.section-heading {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.section-subtext {
  font-size: 15px;
  color: #6b7280;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* MISSION & VISION BLOCK */
.mv-block {
  background: linear-gradient(135deg, #e5f0ff 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.mv-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 20px 18px;
  height: 100%;
  border: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
}

.mv-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

.mv-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 0;
}

/* CENTER ICON FOR MV */
.mv-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mv-icon-circle {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: #0f172a;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.6);
}

.mv-icon-circle i {
  font-size: 36px;
  color: #e5f0ff;
  display: inline-block;
  transform-origin: center;
  transition: color 0.3s ease;
}

.mv-icon-circle:hover i {
  animation: iosFlip 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  color: #ff3b30;
}

@keyframes iosFlip {
  0%   { transform: rotate(0deg) scaleX(1); }
  60%  { transform: rotate(-200deg) scaleX(-1.12); }
  100% { transform: rotate(-360deg) scaleX(-1); }
}

/* INFRASTRUCTURE SECTION */
.infra-block {
  margin-top: 44px;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.infra-content {
  flex: 1;
  min-width: 260px;
}

.infra-icon-box {
  width: 132px;
  height: 132px;
  border-radius: 24px;
  background: radial-gradient(circle at 20% 20%, #dbeafe, #1d4ed8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.25);
  position: relative;
  overflow: hidden;
}

.infra-icon-box::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 160%;
  background: linear-gradient(120deg, rgba(255,255,255,0.8), transparent);
  top: -30%;
  left: -90%;
  transform: rotate(15deg);
}

.infra-icon-box:hover::after {
  animation: sweep 0.7s ease-out forwards;
}

@keyframes sweep {
  0%   { left: -90%; }
  100% { left: 140%; }
}

.infra-icon-box i {
  font-size: 48px;
  color: #ffffff;
  transition: color 0.35s ease;
}

.infra-icon-box:hover i {
  animation: spin360 0.5s ease-out forwards;
  color: #ef4444;
}

@keyframes spin360 {
  0%   { transform: rotate(0deg) scaleX(1); }
  100% { transform: rotate(-360deg) scaleX(-1); }
}

.infra-heading {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.infra-text {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 14px;
  line-height: 1.7;
}

.infra-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.infra-list li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.infra-list li i {
  font-size: 18px;
  color: #0d6efd;
}

@media (max-width:768px){
  .section-heading { font-size: 22px; }
  .section-subtext { font-size: 13px; }
  .mv-icon-circle { margin: 18px auto; }
  .infra-icon-box { margin: 0 auto; }
}

  /* jdhvjklbhlkd */
/* ===========================about page off============================= */

/* =================contact page============== */
.contact-page{ padding:53px 0; }
.jah-section-header{ text-align:center; margin-bottom:36px; }
.jah-small-title{
  font-size:12px; text-transform:uppercase; letter-spacing:2px;
  color:#eb2128; font-weight:600; margin-bottom:6px;
}
.jah-main-title{ font-size:34px; font-weight:800; color:#13233a; margin-bottom:8px; }
.jah-subtitle{ font-size:14px; color:#6b7280; max-width:560px; margin:0 auto; }

.jah-card-input{
  width:100%; border-radius:6px; border:1px solid #edf0f5;
  background:#f6f8fc; padding:12px 14px; font-size:14px;
  color:#374151; outline:none; margin-bottom:14px;
}
.jah-card-input:focus{
  border-color:#33a86b; background:#ffffff;
  box-shadow:0 0 0 2px rgba(51,168,107,.15);
}

.jah-info-block{ display:flex; flex-direction:column; gap:24px; }
.jah-info-row{ display:flex; gap:14px; align-items:flex-start; }
.jah-icon-box{
  width:60px; 
  height:60px; 
  background:#b84d3b; 
  border-radius:10px;
  display:flex;
   justify-content:center; 
   align-items:center; 
   flex-shrink:0;
}
.jah-icon-box:hover{
  background: #eb2128;
 
}
.jah-icon-box i{ 
  font-size:26px; 
  color:#ffffff;
 }
 .jah-icon-box i:hover{
  color: #000;
 }

.faq-sec{ margin-top:50px; }
.faq-sec .jah-small-title{ text-align:center; }
.faq-title{ font-size:22px; font-weight:800; text-align:center; margin-bottom:16px; color:#13233a; }
.faq-item{
  border:1px solid #e5e7eb; border-radius:14px; padding:14px 18px;
  margin-bottom:12px; background:#ffffff; cursor:pointer;
  transition:all 0.2s ease;
}
.faq-item:hover{ box-shadow:0 6px 18px rgba(0,0,0,0.06); border-color:#bfdbfe; transform:translateY(-1px); }

.faq-ques{ font-size:14px; font-weight:700; display:flex; justify-content:space-between; align-items:center; }
.faq-ans{ font-size:13px; color:#6b7280; line-height:1.6; margin-top:6px; display:none; }
.faq-item.open .faq-ans{ display:block; }
.faq-item.open .toggle i{ transform:rotate(180deg); }
.toggle i{ transition:transform 0.25s ease; }

.support-hours{
  font-size:12px; color: #000; text-align:center; margin-top:4px;
}

@media (max-width:768px){
  .jah-main-title{ font-size:26px; }
}

  /* 📍 Full width map wrapper */
  .embed-map-fixed {
    width: 100%;
    height: 500px; /* jaisi tumhari height thi */
    position: relative;
  }

  .embed-map-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: none !important;
  }

  .embed-map-frame {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
  }
  .jah-main-title {
  font-size: clamp(1.6rem, 2.2vw, 2.8rem);
  line-height: 1.2;
}

.jah-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
}

.jah-small-title {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  letter-spacing: 0.5px;
}

.support-hours {
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}
.contact-page .container {
  max-width: 1200px;
  width: 95%; /* responsive for all screens + zoom levels */
}

/* ===============contact page off===================== */