*,
body {
  margin: 0;
  box-sizing: border-box;
  font-family: Open Sans;
}

:root {
  --primary_color: #243c72;
  --dark_blue: #021b51;
  --yellow: #ffc057;

  --container_width: 100%;
  --container_padding: 15px;
  --container_left_space: calc((100% - var(--container_width)) / 2);
}

@media (min-width: 768px) and (max-width: 991px) {
  :root {
    --container_width: 760px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  :root {
    --container_width: 1000px;
  }
}

@media (min-width: 1200px) {
  :root {
    --container_width: 1190px;
  }
}

@media (min-width: 1400px) {
  :root {
    --container_width: 1190px;
  }
}

/* container start */
.container {
  max-width: var(--container_width);
  width: 100%;
  padding-inline: var(--container_padding);
  margin: auto;
  box-sizing: border-box;
}

.container_left {
  margin-left: calc(var(--container_left_space));
  padding-left: var(--container_padding);
  box-sizing: border-box;
}

.container_right {
  margin-right: calc(var(--container_left_space));
  padding-right: var(--container_padding);
  box-sizing: border-box;
}

/* container end */

.d_flex {
  display: flex;
}

.dark_bg {
  background-color: var(--dark_blue);
}

.dark_bg * {
  color: #fff;
}

header {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}


header .container {
  max-width: calc(var(--container_width) + 80px);
  padding: 10px 15px;
}

.header_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header_flex .social_links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social_links a {
  display: flex;
}

.social_links img {
  width: 24px;
}

.gap_26 {
  gap: 28px;
}

.header_flex .contact_links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact_icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact_icon a {
  font-weight: 300;
  text-decoration: none;
  color: var(--primary_color);
}

nav {
  z-index: 1001;
  /* ensure nav is above slider */
  background-color: #fff;
  /* fix transparent overlap */
  width: 100%;
  position: relative;
}

nav .container {
  padding: 0 15px;
}

nav ul {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 32px;
}

nav li {
  position: relative;
}

nav li a {
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  padding: 10px 0;
  position: relative;
  transition: 0.3s;
}

nav li a:hover {
  opacity: 0.7;
}

nav li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background-color: var(--yellow);
}

.burger {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.35s ease-in-out;
}

@media (max-width: 802px) {
  header {
    box-shadow: 0 4px 6px #0000001a;
  }

  .burger {
    display: flex;
    background-color: transparent;
    border: none;
    padding: 0;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    z-index: 1002;
    /* higher than nav */
  }

  .burger_line {
    width: 32px;
    height: 3px;
    background-color: #000;
    display: block;
    transition: 0.3s;
  }

  .burger.active .burger_line:nth-child(1) {
    transform: translateY(9px) rotate(-45deg);
  }

  .burger.active .burger_line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger_line:nth-child(3) {
    transform: translateY(-9px) rotate(45deg);
  }

  nav {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 60vw;
    transform: translateX(-100%);
    transition: 0.3s;
    background-color: #fff;
    z-index: 1001;
    padding-top: 60px;
  }

  nav.active {
    transform: translateX(0);
  }

  .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  nav ul {
    flex-direction: column;
    gap: 16px;
    padding: 5px 30px;

  }

  .contact_links,
  .social_links,
  .header_cta {
    display: none !important;
  }
}

/* LOGO */

@media (max-width: 767px) {
  .logo {
    width: 140px;
  }
}

.logo {
  max-height: 70px;
  width: auto;
  height: auto;
}


/* button start */
.btn_one {
  display: inline-block;
  background-color: var(--primary_color);
  border: 2px solid var(--primary_color);
  color: #fff;
  padding: 8px 40px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn_one:hover {
  background-color: #fff;
  color: var(--primary_color);
}

/* button end */

/* dropdown start */
.has_sub_menu {
  position: relative;
  padding-right: 20px;
}

.has_sub_menu::after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  bottom: 0;
  margin: auto;
  background-image: url(https://sudip-bhowmick.github.io/images/img/dropdown.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
}

.sub_menu {
  display: none;
  background-color: var(--dark_blue);
  position: absolute;
  left: 0;
  top: 42px;
  flex-direction: column;
  gap: 0;
  padding: 8px 20px;
  white-space: nowrap;
  border-radius: 0px 0px 8px 8px;
}

.sub_menu.show {
  display: flex;
}

@media (max-width: 1024px) {
  .sub_menu {
    position: relative;
    top: 0;
  }
}

/* dropdown end */

/* Container and nav setup */
nav.dark_bg {
  background-color: #243c72;
  /* adjust as needed */
  padding: 10px 0;
}

nav.dark_bg .container {
  display: flex;
  justify-content: center;
  /* center the <ul> horizontally */
}

/* Main nav list */
nav.dark_bg ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  /* spacing between menu items */
  align-items: center;
}

/* Nav links */
nav.dark_bg ul li a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav.dark_bg ul li a:hover,
nav.dark_bg ul li a.active {
  color: #ffcc00;
  /* highlight color on hover or active */
}

/* Dropdown menu */
nav.dark_bg ul li {
  position: relative;
}

nav.dark_bg ul li .sub_menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  padding: 10px 0;
  min-width: 200px;
  z-index: 1000;
}

nav.dark_bg ul li:hover .sub_menu {
  display: block;
}

nav.dark_bg ul li .sub_menu li {
  display: block;
}

nav.dark_bg ul li .sub_menu a {
  padding: 10px 20px;
  display: block;
  color: white;
  border-bottom: white 1px solid;

}

.slider-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  height: auto;
  z-index: 1;
  /* ensures it's behind nav */
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
}



.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.182);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

@media (max-width: 768px) {

  .prev,
  .next {
    font-size: 1.5rem;
    padding: 0.3rem 0.8rem;
  }
}

.slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 550px;
  /* adjust height as needed */
}

@media (max-width: 768px) {
  .slide img {
    height: 40vh;
    /* reduce height for mobile */
  }
}


.brand-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #cf6a13;
}

.brand-title {
  font-size: 2.5rem; /* Default size for desktop */
  font-weight: bold;
}

/* Tablet (up to 768px) */
@media (max-width: 768px) {
  .brand-title {
    font-size: 2rem;
  }
}

/* Mobile (up to 425px) */
@media (max-width: 425px) {
  .brand-title {
    font-size: 1.6rem;
  }
}

/* Extra small devices (up to 320px) */
@media (max-width: 320px) {
  .brand-title {
    font-size: 1.4rem;
  }
}


.lang-btn {
  /* position: fixed; */
  top: 20px;
  right: 20px;
  /* z-index: 999; */
}

/* Responsive Utility Classes */
@media (max-width: 770px) {
  .lang-btn {
    text-align: center;
    justify-content: center;
  }

  .lang-btn button {
    margin-bottom: 5px;
  }

  .d-md-none {
    display: flex !important;
  }

  .d-md-flex {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-burger-lang {
    display: none !important;
  }

  .lang-btn {
    margin-left: 10px;
  }

  .lang-btn button {
    margin-left: 5px;
  }
}

/* Optional for gap consistency */
.header-right-wrap {
  flex-wrap: wrap;
  gap: 20px;
}


.services img {
  height: 200px;
  /* or any height you want */
  width: 100%;
  /* make sure it fills the column */
  object-fit: cover;
  /* crop if necessary, keeps good aspect ratio */
  border-radius: 6px;
}


.about-container {
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}


.gharoba-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2e1f12;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #d4a373;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 70px;
  right: 15px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 30px;
  text-decoration: none;
  border-radius: 50%;
}

.btn-whatsapp-pulse-border {
  bottom: 120px;
  right: 20px;
}


  .branch-card {
    background: linear-gradient(135deg, #ffecec, #fff);
    border: 1px solid #527ef4;
    position: relative;
  }
  .branch-card::before {
    /* content: "🏢"; */
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 2rem;
  }
  .map-wrapper iframe {
    transition: transform 0.3s ease-in-out;
  }
  .btn-danger {
    background: #6161f2;
    border: none;
    font-weight: 600;
  }
  .btn-danger:hover {
    background: #b5276a;
  }

    .location-icon {
    color: #d63384;
    font-size: 1.5em;
    margin-right: 5px;
  }