/* ---- TOP BAR ---- */
.top-bar {
  background-color: #e30613;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width:100%;
}

/* .containeres{
  display: block;
} */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-info span {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 22px;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
}

.contact-info i {
  font-size: 20px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icons a {
  color: #fff;
  font-size: 22px;
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 0.75;
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .contact-info span {
    font-size: 22px;
  }
}









/* ---- HEADER ---- */
.logos {
  height: 58px;
  width: auto;
}

.hdr-header {
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.hdr-navbar {
  padding: 5px 0;
}

.hdr-brand {
  text-decoration: none;
}

/* Desktop nav */
.hdr-desktop-nav {
  display: flex;
}

.hdr-nav-list {
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hdr-nav-link {
  font-size: 24px;
  font-weight: 600;
  color: #222 !important;
  padding: 8px 16px !important;
  transition: color 0.3s;
  position: relative;
  text-decoration: none;
  display: block;
}

.hdr-nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #c47010;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.hdr-nav-link:hover::after,
.hdr-nav-link.active::after {
  transform: scaleX(1);
}

.hdr-nav-link:hover,
.hdr-nav-link.active {
  color: #000000 !important;
}

.hdr-contact-btn {
  background: linear-gradient(90deg, #c47010, #e09020);
  color: #fff !important;
  border-radius: 25px;
  padding: 8px 22px !important;
  margin-left: 6px;
}

.hdr-contact-btn:hover {
  opacity: 0.88;
}

.hdr-contact-btn::after {
  display: none !important;
}

/* Hamburger button */
.hdr-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hdr-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hide hamburger on desktop, show desktop nav */
@media (min-width: 992px) {
  .hdr-hamburger {
    display: none;
  }

  .hdr-desktop-nav {
    display: flex;
  }
}

/* Show hamburger on mobile, hide desktop nav */
@media (max-width: 991px) {
  .hdr-hamburger {
    display: flex;
  }

  .hdr-desktop-nav {
    display: none;
  }

  .logos {
    height: 46px;
  }
}


/* ---- DRAWER OVERLAY ---- */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000;
  transition: opacity 0.3s;
}

.drawer-overlay.active {
  display: block;
}


/* ---- MOBILE DRAWER ---- */
.mob-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 10001;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 20px 0 40px;
}

.mob-drawer.open {
  right: 0;
}

/* Close X button */
.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1a2340;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  margin: 0 16px 10px auto;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.drawer-close:hover {
  background: #c47010;
}

/* Drawer nav list */
.drawer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-item {
  border-bottom: 1px solid #f0f0f0;
}

/* Simple link */
.drawer-link {
  display: block;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}

.drawer-link:hover {
  color: #c47010;
}

/* Dropdown row */
.drawer-link-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  transition: color 0.2s;
}

.drawer-link-row:hover {
  color: #c47010;
}

/* Arrow icon */
.drawer-arrow {
  width: 28px;
  height: 28px;
  fill: #555;
  border: 1.5px solid #ddd;
  border-radius: 50%;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.drawer-has-drop.open .drawer-arrow {
  transform: rotate(180deg);
}

/* Sub dropdown */
.drawer-drop {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  transition: max-height 0.3s ease;
}

.drawer-has-drop.open .drawer-drop {
  max-height: 300px;
}

.drawer-drop li a {
  display: block;
  padding: 12px 36px;
  font-size: 0.9rem;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s;
}

.drawer-drop li a:hover {
  color: #c47010;
}

.drawer-drop li:last-child a {
  border-bottom: none;
}













/* carousel */
.hero-section {
  position: relative;
}

.carousel-item {
  height: 600px;
  background-size: cover;
  background-position: center;
}

/* Smooth fade */
.carousel-fade .carousel-item {
  transition: opacity 1s ease-in-out;
}

/* Overlay Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 2;
}

.center-img {
  text-align: center;
}

.center-img img {
  max-height: 400px;
}

.hero-box {
  padding: 15px 25px;
  color: #fff;
  font-weight: bold;
  border-radius: 12px;
  display: inline-block;
  margin: 10px 0;
}

.orange {
  background: #d88a1c;
}

.red {
  background: #d62828;
}

.blue {
  background: #1d1b4f;
}

.left-boxes {
  text-align: left;
}

.right-boxes {
  text-align: right;
}

@media(max-width:768px) {
  .carousel-item {
    height: 166px;
    width: 100%;
  }

  .left-boxes,
  .right-boxes {
    text-align: center;
  }

  .center-img img {
    max-height: 250px;
  }
}







.appointment-bar {
  background-color: #c62828;
  padding: 20px 10px;
  text-align: center;
}

.appointment-bar h2 {
  color: #fff;
  font-weight: 700;
  margin: 0;
  font-size: 28px;
}

/* Responsive */
@media (max-width: 768px) {
  .appointment-bar h2 {
    font-size: 18px;
    line-height: 1.4;
  }
}










/* image */
.image-section {
  background-color: #0d1f35;
  padding: 40px 60px;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.image-section .img-wrapper {
  border: 5px solid #e8a020;
  display: inline-block;
  line-height: 0;
  max-width: 340px;
}

.image-section .img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile fix */
@media (max-width: 768px) {
  .image-section {
    padding: 20px 16px;
    min-height: auto;
  }

  .image-section .col-auto {
    width: 100%;
  }

  .image-section .img-wrapper {
    max-width: 100%;
    width: 100%;
  }
}



















/* ---- Hero Section ---- */
.hero-sections {
  background-image: linear-gradient(180deg, #EEA302 0%, #A3751C 100%);
  min-height: 460px;
  overflow: hidden;
  padding: 70px 2px;
}

/* Image col */
.hero-img-col {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Wrapper for chakra + image stacking */
.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 480px;
}

/* Rotating Chakra SVG */
.hero-chakra {
  position: absolute;
  top: 26%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 77%;
  max-width: 420px;
  height: auto;
  animation: spinChakra 25s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes spinChakra {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Ganesh image */
.hero-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Text col */
.hero-text-col {
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-desc {
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-text-col {
    padding: 24px 16px;
    order: 1;
  }

  .hero-img-col {
    order: 2;
  }

  .hero-img-wrap {
    max-width: 100%;
  }

  .hero-chakra {
    width: 80%;
  }

  .hero-img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.4rem;
  }

  .hero-desc {
    font-size: 0.93rem;
  }
}














.osa-section {
  background: linear-gradient(rgba(59, 29, 0, 0.7), rgba(107, 50, 0, 0.7)),
              url('../images/about2b.webp');
  background-size: cover;
  background-position: center;
  padding: 80px 0; /* top-bottom spacing */
}

/* Center card */
.osa-card {
  background-color: #6b3a0f; /* brown box */
  border-radius: 8px;
  padding: 10px;
  max-width: 900px;  /* IMPORTANT: width control */
  margin: 0 auto;    /* center me lane ke liye */
}

/* Image */
.osa-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}








.about-section {
  background-image: linear-gradient(180deg, #976F4C 0%, #1e2340 100%);
  padding: 60px 20px;
}

.about-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.about-subheading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

.about-desc {
  font-size: 1rem;
  color: #e0d0c0;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: center;
}

.highlight-text {
  color: #e07820;
  font-weight: 600;
}

.know-more-btn {
  display: inline-block;
  background: linear-gradient(90deg, #c47010, #e09020);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 10px;
  transition: opacity 0.3s;
}

.know-more-btn:hover {
  opacity: 0.85;
  color: #fff;
}

@media (max-width: 768px) {
  .about-heading {
    font-size: 1.8rem;
  }

  .about-subheading {
    font-size: 1.6rem;
  }

  .about-desc {
    font-size: 0.95rem;
  }
}









.ctrev-section {
  background-color: #1e2340;
  padding: 50px 0;
}

/* ---- Form ---- */
.ctrev-form-col {
  padding-right: 30px;
  padding-top: 10px;
}

.ctrev-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ctrev-input {
  background: transparent;
  border: 1.5px solid #fff;
  border-radius: 6px;
  padding: 14px 18px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
}

.ctrev-input::placeholder {
  color: #ccc;
}

.ctrev-input:focus {
  border-color: #e09020;
}

.ctrev-textarea {
  resize: vertical;
  min-height: 110px;
}

.ctrev-submit {
  background: linear-gradient(90deg, #c47010, #e09020);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px;
  cursor: pointer;
  transition: opacity 0.3s;
  width: 100%;
}

.ctrev-submit:hover {
  opacity: 0.88;
}

/* ---- Reviews ---- */
.ctrev-reviews-col {
  padding-left: 20px;
}

.ctrev-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

.ctrev-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.ctrev-slide {
  display: none;
}

.ctrev-slide-active {
  display: block;
}

.ctrev-card {
  background-color: #252b4a;
  border-radius: 8px;
  padding: 20px 18px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ctrev-stars {
  color: #f5c842;
  font-size: 1.3rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.ctrev-text {
  color: #d0cce0;
  font-size: 0.93rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 16px;
}

.ctrev-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #3a3f60;
  padding-top: 12px;
}

.ctrev-reviewer-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e09020;
}

.ctrev-reviewer-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
}

.ctrev-reviewer-time {
  color: #aaa;
  font-size: 0.8rem;
}

.ctrev-next-btn {
  position: absolute;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  background-color: #3a3f60;
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
}

.ctrev-next-btn:hover {
  background-color: #e09020;
}

.ctrev-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.ctrev-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e09020;
  opacity: 0.4;
  cursor: pointer;
  display: inline-block;
}

.ctrev-dot-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .ctrev-form-col {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .ctrev-reviews-col {
    padding-left: 0;
  }

  .ctrev-heading {
    font-size: 1.5rem;
  }
}












.svc-section {
  background-color: #1e2340;
  padding: 55px 0 60px;
}

.svc-main-heading {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.3;
}

.svc-sub-text {
  font-size: 0.97rem;
  color: #ccc;
  margin-bottom: 6px;
  line-height: 1.7;
}

.svc-highlight {
  color: #e07820;
  font-weight: 500;
}

/* Card */
.svc-card {
  background-color: #07273c;
  border: 1.5px solid #e11a06;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.25);
}

.svc-card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.svc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.svc-card:hover .svc-card-img {
  transform: scale(1.05);
}

.svc-card-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.svc-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.svc-card-desc {
  font-size: 0.88rem;
  color: #b0b8d0;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 16px;
}

.svc-know-more {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.svc-know-more:hover {
  color: #e07820;
  border-color: #e07820;
}

@media (max-width: 768px) {
  .svc-main-heading {
    font-size: 1.5rem;
  }
}











.wcu-section {
  background-color: #fff;
  padding: 55px 0;
}

/* Left */
.wcu-left {
  padding-right: 30px;
}

.wcu-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.wcu-underline {
  width: 60px;
  height: 4px;
  background-color: #e07820;
  border-radius: 2px;
  margin-bottom: 20px;
}

.wcu-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Stats */
.wcu-stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #e07820;
  line-height: 1.1;
  margin-bottom: 6px;
}

.wcu-stat-label {
  font-size: 0.88rem;
  color: #444;
  font-weight: 500;
  line-height: 1.4;
}

/* Badges */
.wcu-badge-img {
  width: 160px;
  height: auto;
  object-fit: contain;
  margin: 0 20px;
}

@media (max-width: 768px) {
  .wcu-left {
    margin-bottom: 30px;
    padding-right: 0;
  }

  .wcu-title {
    font-size: 1.6rem;
  }

  .wcu-stat-number {
    font-size: 1.8rem;
  }

  .wcu-badge-img {
    width: 110px;
    margin: 0 10px;
  }
}












.testi-section {
  background-color: #fff;
  padding: 55px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Decorative background pattern */
.testi-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image:
    radial-gradient(circle, #f5c84222 1px, transparent 1px),
    radial-gradient(circle, #e0782022 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px;
  pointer-events: none;
  z-index: 0;
}

/* Left */
.testi-left {
  position: relative;
  z-index: 1;
  padding-right: 30px;
}

.testi-main-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin-bottom: 30px;
}

.testi-reviewer-name {
  color: #e07820;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.testi-stars {
  color: #f5c842;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.testi-scroll-box {
  max-height: 130px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.testi-scroll-box::-webkit-scrollbar {
  width: 5px;
}

.testi-scroll-box::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.testi-review-text {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.75;
  margin: 0;
}

/* Right */
.testi-right {
  position: relative;
  z-index: 1;
}

.testi-main-video {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.testi-video-player {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.testi-thumb-wrap {
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}

.testi-thumb-video {
  width: 100%;
  height: 100px;
  display: block;
  object-fit: cover;
  border: none;
}

@media (max-width: 768px) {
  .testi-left {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .testi-main-title {
    font-size: 1.7rem;
  }

  .testi-video-player {
    height: 200px;
  }

  .testi-thumb-video {
    height: 80px;
  }
}












.bka-section {
  display: flex;
  align-items: stretch;
  min-height: 320px;
  overflow: hidden;
}

/* Orange sides */
.bka-side {
  width: 12%;
  flex-shrink: 0;
}

.bka-left {
  background: linear-gradient(160deg, #d46000 0%, #e88010 40%, #b84000 100%);
}

.bka-right {
  background: linear-gradient(200deg, #d46000 0%, #e88010 40%, #b84000 100%);
}

/* Cream center */
.bka-center {
  flex: 1;
  background-color: #f5ece0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 50px 20px;
}

/* SVG patterns */
.bka-svg {
  position: absolute;
  top: 0;
  height: 100%;
  width: 48%;
  pointer-events: none;
}

.bka-svg-left {
  left: 0;
}

.bka-svg-right {
  right: 0;
}

/* Content */
.bka-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.bka-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.bka-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 22px;
}

.bka-wa-icon {
  margin-bottom: 18px;
}

.bka-btn {
  display: inline-block;
  background: linear-gradient(90deg, #e05818, #f07830);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 38px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: opacity 0.3s;
}

.bka-btn:hover {
  opacity: 0.88;
  color: #fff;
}

@media (max-width: 768px) {
  .bka-side {
    width: 7%;
  }

  .bka-title {
    font-size: 1.5rem;
  }

  .bka-subtitle {
    font-size: 0.9rem;
  }
}








.map-section {
  background-color: #fff;
  padding: 0;
  width: 100%;
}

.map-wrapper {
  width: 76%;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.map-iframe {
  width: 100%;
  height: 230px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .map-wrapper {
    width: 95%;
  }

  .map-iframe {
    height: 200px;
  }
}










.faq-section {
  background-color: #fff;
  padding: 50px 0 60px;
}

.faq-item {
  background-color: #f2f2f2;
  border-radius: 4px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  user-select: none;
}

.faq-question span {
  font-size: 0.97rem;
  font-weight: 500;
  color: #2a2a3a;
  flex: 1;
  padding-right: 16px;
}

.faq-icon {
  width: 16px;
  height: 16px;
  fill: #555;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.faq-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.faq-open .faq-answer {
  max-height: 300px;
  padding: 0 24px 18px;
}

.faq-answer p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-question span {
    font-size: 0.9rem;
  }
}












.ftr-section {
  background-image: url('../images/fbg.webp');
  /* apni background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Dark overlay on bg */
.ftr-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 0, 0.78);
  z-index: 0;
}

.ftr-section>* {
  position: relative;
  z-index: 1;
}

/* Triangle top */
.ftr-top-shape {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.ftr-top-shape svg {
  display: block;
  width: 100%;
  height: 70px;
}

.ftr-shape-fill {
  fill: #ffffff;
}

/* Left col */
.ftr-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ftr-desc {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.75;
  margin-bottom: 22px;
  font-weight: 500;
}

.ftr-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.ftr-soc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.3s;
}

.ftr-soc-link:hover {
  background: rgba(255, 255, 255, 0.25);
}

.ftr-soc-link svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* Form */
.ftr-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ftr-input {
  background: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 16px;
  color: #333;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
}

.ftr-input::placeholder {
  color: #999;
}

.ftr-textarea {
  resize: vertical;
  min-height: 100px;
}

.ftr-submit {
  background: linear-gradient(180deg, #DA742B 0%, #B08823 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 13px;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.3s;
}

.ftr-submit:hover {
  opacity: 0.88;
}

/* Info */
.ftr-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ftr-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.ftr-info-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
}

.ftr-info-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.ftr-info-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.ftr-info-text {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .ftr-title {
    font-size: 1.8rem;
  }

  .ftr-top-shape svg {
    height: 45px;
  }
}

/* Footer bottom bar */
.ftr-bottom-bar {
  background: rgba(0, 0, 0, 0.35);
  padding: 14px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ftr-copy {
  color: #bbb;
  font-size: 0.85rem;
  margin: 0;
}
















.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact ul li {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 700;
}

.footer-contact ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact ul li a:hover {
  color: #007bff;
  text-decoration: underline;
}

/* Optional: Better spacing for mobile */
@media (max-width: 576px) {
  .footer-contact ul li {
    font-size: 18px;
  }
}










.container {
  display: flex;
  gap: 10px;
}

.col {
  flex: 1;
}

.col img {
  width: 100%;
  margin-bottom: 10px;
}









.floating-icons {
  position: fixed;
  left: 15px;
  /* right side ke liye right:15px */
  bottom: 121px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

/* Call button */
.floating-icons .call {
  background: #28a745;
}

/* WhatsApp button */
.floating-icons .whatsapp {
  background: #25d366;
}

/* Hover effect */
.floating-icons a:hover {
  transform: scale(1.1);
}








    /* =====================
       GALLERY PAGE STYLES
    ===================== */

    /* Page Hero Banner */
    .gal-banner {
      background: linear-gradient(135deg, #c47010 0%, #1e2340 100%);
      padding: 50px 20px;
      text-align: center;
    }

    .gal-banner h1 {
      font-size: 2.6rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }

    .gal-banner p {
      color: #f0d090;
      font-size: 1rem;
      margin: 0;
    }

    .gal-banner .breadcrumb-gal {
      margin-top: 12px;
      display: flex;
      justify-content: center;
      gap: 6px;
      font-size: 0.9rem;
    }

    .gal-banner .breadcrumb-gal a {
      color: #ffd080;
      text-decoration: none;
    }

    .gal-banner .breadcrumb-gal span {
      color: #fff;
    }

    /* =====================
       FILTER TABS
    ===================== */
    .gal-filter {
      background: #fff;
      padding: 30px 0 10px;
      text-align: center;
    }

    .gal-filter-btn {
      display: inline-block;
      padding: 8px 22px;
      margin: 5px 4px;
      border: 2px solid #e07820;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 600;
      color: #e07820;
      cursor: pointer;
      transition: all 0.3s;
      background: #fff;
    }

    .gal-filter-btn:hover,
    .gal-filter-btn.active {
      background: #e07820;
      color: #fff;
    }

    /* =====================
       IMAGES SECTION
    ===================== */
    .gal-images-section {
      background: #fff;
      padding: 30px 0 50px;
    }

    .gal-section-title {
      font-size: 1.8rem;
      font-weight: 800;
      color: #1e2340;
      margin-bottom: 6px;
    }

    .gal-section-underline {
      width: 55px;
      height: 4px;
      background: #e07820;
      border-radius: 2px;
      margin-bottom: 28px;
    }

    /* Masonry grid */
    .gal-masonry {
      columns: 4;
      column-gap: 12px;
    }

    .gal-masonry-item {
      break-inside: avoid;
      margin-bottom: 12px;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }

    .gal-masonry-item img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      transition: transform 0.4s ease;
    }

    .gal-masonry-item:hover img {
      transform: scale(1.04);
    }

    .gal-masonry-item .gal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      transition: background 0.3s;
    }

    .gal-masonry-item:hover .gal-overlay {
      background: rgba(0,0,0,0.35);
    }

    .gal-overlay i {
      color: #fff;
      font-size: 1.8rem;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .gal-masonry-item:hover .gal-overlay i {
      opacity: 1;
    }

    @media (max-width: 991px) { .gal-masonry { columns: 3; } }
    @media (max-width: 767px) { .gal-masonry { columns: 2; } }
    @media (max-width: 480px) { .gal-masonry { columns: 2; column-gap: 8px; } .gal-masonry-item { margin-bottom: 8px; } }

    /* =====================
       VIDEO SECTION
    ===================== */
    .gal-video-section {
      background: #1e2340;
      padding: 50px 0 60px;
    }

    .gal-video-section .gal-section-title {
      color: #fff;
    }

    .gal-video-section .gal-section-underline {
      margin-bottom: 30px;
    }

    .gal-video-card {
      border-radius: 10px;
      overflow: hidden;
      background: #000;
      margin-bottom: 24px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    }

    .gal-video-card video,
    .gal-video-card iframe {
      width: 100%;
      height: 220px;
      display: block;
      border: none;
      object-fit: cover;
    }

    .gal-video-label {
      background: #252b4a;
      padding: 12px 16px;
      color: #e0d0c0;
      font-size: 0.88rem;
      font-weight: 500;
    }

    /* =====================
       LIGHTBOX
    ===================== */
    .gal-lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 99999;
      align-items: center;
      justify-content: center;
    }

    .gal-lightbox.active {
      display: flex;
    }

    .gal-lightbox img {
      max-width: 90vw;
      max-height: 88vh;
      border-radius: 8px;
      object-fit: contain;
      box-shadow: 0 0 40px rgba(0,0,0,0.6);
    }

    .gal-lb-close {
      position: absolute;
      top: 20px;
      right: 24px;
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
      background: none;
      border: none;
      line-height: 1;
      z-index: 10;
    }

    .gal-lb-prev,
    .gal-lb-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.15);
      color: #fff;
      border: none;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      font-size: 1.3rem;
      cursor: pointer;
      transition: background 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gal-lb-prev { left: 16px; }
    .gal-lb-next { right: 16px; }
    .gal-lb-prev:hover, .gal-lb-next:hover { background: rgba(255,255,255,0.3); }
	@media (max-width: 768px) {
    .cu-md-ds-nn {
        display: none ! IMPORTANT;
    }
	.contact-info span {
        font-size: 17px;
    }
}
    @media (max-width: 576px) {
      .gal-banner h1 { font-size: 1.8rem; }
      .gal-section-title { font-size: 1.4rem; }
      .gal-video-card video, .gal-video-card iframe { height: 180px; }
    }
	

@media (max-width: 374px) {
    .logos {
        height: 44px;
    }
}
.cu-whte{
    color:#fff;
}
#callme-wh {
        position: fixed;
        left: 15px;
        bottom: 145px;
        width: 70px;
        height: 70px;
        cursor: pointer;
      
        z-index: 99990;
    }
    #callme-wh #callmeMain {
        -moz-border-radius: 50% !important;
        -webkit-border-radius: 50% !important;
        border-radius: 50% !important;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        background-color: rgb(40 167 69);
        width: 60px;
        height: 60px;
        -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
        -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
        animation: zcwmini2 1.5s 0s ease-out infinite;
    }
    #callme-wh #callmeMain:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: -6px;
        left: -6px;
        background-image: url(wp.png);
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-animation: zcwphone2 1.5s linear infinite;
        -moz-animation: zcwphone2 1.5s linear infinite;
        animation: zcwphone2 1.5s linear infinite;
    }
#callme {
        position: fixed;
        left: 15px;
        bottom: 251px;
        width: 70px;
        height: 70px;
        cursor: pointer;
      
        z-index: 99990;
    }
    #callme #callmeMain {
        -moz-border-radius: 50% !important;
        -webkit-border-radius: 50% !important;
        border-radius: 50% !important;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        background-color: rgb(40 167 69);
        width: 60px;
        height: 60px;
        -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
        -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
        animation: zcwmini2 1.5s 0s ease-out infinite;
    }
    #callme #callmeMain:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: -6px;
        left: -6px;
        background-image: url(https://ss.zadarma.com/callbackWidget/images/mini.png);
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-animation: zcwphone2 1.5s linear infinite;
        -moz-animation: zcwphone2 1.5s linear infinite;
        animation: zcwphone2 1.5s linear infinite;
    }
    @-webkit-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-webkit-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }