/* =========================
   NORTH BENGAL INTERIOR
   ========================= */

:root {
  --primary: #6b4f3a;
  --secondary: #f5f0e8;
  --dark: #222;
  --white: #fff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Segoe UI,
    Arial,
    sans-serif;
  line-height: 1.7;
  color: var(--dark);
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER
   ========================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Header Call Button */

.header-call {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #28a745;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  animation: vibrate 1.5s infinite;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.35);
}

.header-call i {
  color: #fff;
}

.header-call::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(40, 167, 69, 0.4);
  animation: pulse 2s infinite;
}

.header-call::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(40, 167, 69, 0.2);
  animation: pulse2 2s infinite;
}

/* .logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
} 
.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:24px;
    font-weight:700;
    color:var(--primary);
}

.logo img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo span {
  font-size: 18px;
  font-weight: 700;
  margin-top: 5px;
}*/

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 60px;
  height: 60px;
}

.logo-text h2 {
  margin: 0;
  font-size: 20px;
  color: #6b4f3a;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: var(--dark);
  font-weight: 600;
  transition: 0.3s;
}

nav ul li a:hover {
  color: var(--primary);
}

/* =========================
   HERO
   ========================= */

/* .hero {
  position: relative;
  min-height: 100vh;
  background: url("../images/hero.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
} */

.hero {
  position: relative;
  min-height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 90%;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 58px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 600;
}
.btn a {
  color: #fff !important;
}

.btn:hover {
  transform: translateY(-3px);
  background: #533b29;
}

/* =========================
   SECTION
   ========================= */

section {
  padding: 90px 0;
}

section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
  color: var(--primary);
}

/* =========================
   SERVICES
   ========================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.35s;
}

.card:hover {
  transform: translateY(-10px);
}

.card i {
  font-size: 45px;
  color: var(--primary);
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 10px;
}

/* =========================
   ABOUT
   ========================= */

.about {
  background: var(--secondary);
}

.about p {
  max-width: 900px;
  margin: auto;
  text-align: center;
  font-size: 18px;
}

/* =========================
   GALLERY
   ========================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: var(--shadow);
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* =========================
   LOCATION
   ========================= */

.locations {
  background: var(--secondary);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.location-grid div {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 15px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

/* =========================
   FAQ
   ========================= */

.faq-item {
  margin-bottom: 25px;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* =========================
   CONTACT
   ========================= */

.contact {
  text-align: center;
}

.contact p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #6b4f3a;
}

.contact p > a {
  color: #6b4f3a;
}

.contact  a > i {
  color: #02d113;
}

.contact a {
  color: var(--primary);
  font-weight: 700;
  color: #ffffff;
}

/* =========================
   FLOATING CALL BUTTON
   ========================= */

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 95px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #28a745;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 9999;
  animation: vibrate 1.2s infinite;
  box-shadow: 0 0 0 rgba(40, 167, 69, 0.6);
}

.floating-call::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 2s infinite;
  border: 2px solid rgba(40, 167, 69, 0.4);
}

.floating-call::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse2 2s infinite;
  border: 2px solid rgba(40, 167, 69, 0.2);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes pulse2 {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes vibrate {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(15deg);
  }
}

/* =========================
   MOBILE FOOTER
   ========================= */

.mobile-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-footer a {
  color: #444;
  text-align: center;
  font-size: 12px;
}

.mobile-footer i {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

.mobile-footer a:hover {
  color: var(--primary);
}

/* =========================
   FOOTER
   ========================= */

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 25px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  nav {
    display: none;
  }

  section h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 25px;
  }

  section {
    padding: 70px 0;
  }

  body {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .btn {
    padding: 12px 25px;
  }

  .floating-call {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }
}
/*=============================
LANGUAGE SWITCHER
==============================*/

/* Language Switcher */

.lang-switcher {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

.lang-current {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: #6b4f3a;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}

.lang-current:hover {
  opacity: 1;
}

.lang-options {
  display: none;
  margin-top: 10px;
}

.lang-options.show {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lang-options button {
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 14px;
}

/* Lead Popup */

 .lead-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.7);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.hide-popup{
    display:none !important;
}

/* .lead-box{
    background:#fff;
    width:90%;
    max-width:400px;
    padding:25px;
    border-radius:10px;
} */
 .lead-box{
    position:relative;
    background:#fff;
    width:90%;
    max-width:420px;
    padding:25px;
    border-radius:15px;
}

.lead-box h3{
    text-align:center;
    margin-bottom:20px;
    color:#6B4F3A;
}

.lead-box input,
.lead-box select{
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border:1px solid #ddd;
    border-radius:8px;
}

.lead-box button{
    width:100%;
    border:none;
    background:#25D366;
    color:#fff;
    padding:14px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

.close-popup{
    position:absolute;
    top:10px;
    right:15px;
    cursor:pointer;
    font-size:25px;
}

 
.popup-header{
    text-align:center;
    margin-bottom:15px;
}

.popup-header img{
    width:63px;
    height:63px;
    display:block;
    margin:0 auto 10px auto;
    object-fit:contain;
}

.popup-header h3{
    margin:0;
    color:#6B4F3A;
    font-size:22px;
}


/* ==========================
   LIGHTBOX
========================== */

.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,.9);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:999999;
}

.lightbox.show{
    opacity:1;
    visibility:visible;
}

.lightbox-img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
    box-shadow:0 0 25px rgba(255,255,255,.2);
}

.close-lightbox{
    position:absolute;
    top:20px;
    right:25px;

    color:#fff;
    font-size:40px;
    font-weight:bold;

    cursor:pointer;
}