/*------------------------------------------------------------------
[Table of contents]

1. Import libraries
2. Custom properties
3. General Styles
4. Typography
5. Header and Navbar
6. Buttons and Links
7. Utilities
8. Sections
9. Swiper
10.Boxes and Cards
11.Footer
12.Accordion
13.Error 404
14.Responsive Layouts

-------------------------------------------------------------------*/

/* ---------------------------- */
/* Import libraries             */
/* ---------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('../css/vendor/bootstrap.min.css');

/* ---------------------------- */
/* Custom properties            */
/* ---------------------------- */
:root {
  --primary-color:#F58220;
  --secondary-color:#1C1C1C;
  --text-color:#191919;
  --text-color-2:#7A7A7A;
  --accent-color:#FFBB84;
  --accent-color-2:#FFD4AF;
  --accent-color-3:#fff9fa;
  --font-1:"Nunito", sans-serif;
  --font-2:"Source Sans 3", sans-serif;
}

/* ---------------------------- */
/* General Styles               */
/* ---------------------------- */
body {
  font-family: var(--font-2);
  color: var(--text-color);
  background-color: #FFFFFF;
}

.bg-primary-color {
  background-color: var(--secondary-color);
}

.bg-primary-color-2 {
  background-color: #868686;
}

.bg-secondary-color {
  background-color: var(--primary-color);
}

.bg-secondary-color-2 {
  background-color: var(--accent-color);
}

.bg-accent-color {
  background-color: var(--accent-color-2);
}

.bg-accent-color-2 {
  background-color: #FFD4AF;
  min-height: 350px;
}

.bg-gradient-primary {
  background: linear-gradient(to bottom, #6F9ED2, #3348cf);
}

.bg-gradient-secondary {
  background: linear-gradient(45deg, #000, #D7D7D7);
}

.text-primary-color {
  color: var(--primary-color);
}

.text-black-color-2 {
  color: var(--text-color);
}

.text-secondary-color-2 {
  color: var(--primary-color);
}

.text-muted-color {
  color: #000;
}

.accent-primary-color {
  color: var(--primary-color);
}

.accent-secondary-color {
  color:#ffffff;
}

.accent-tertiary-color {
  color: var(--accent-color-2);
}

.font-1 {
  font-family: var(--font-1);

}

.font-2 {
  font-family: var(--font-2);
}

.section {
  padding: 6em 2em 6em 2em;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.b-container {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}

/* ---------------------------- */
/* Typography                   */
/* ---------------------------- */
h1 {
  font-size: 52px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 20px;
}

button, a {
  font-size: 18px;
  font-family: var(--font-1);
}

ul {
  list-style: none;
}

p,
li {
  font-size: 18px;
}

img {
  object-fit: cover;
}

/* ---------------------------- */
/* Header and Navbar            */
/* ---------------------------- */
.top-bar {
  background-color: #F58220;
   padding-block: 0.6rem;
 
}

.social-box {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.social-box a {
  background-color: #fff;
  text-align: center;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}

.social-box a:hover {
  background-color: var(--accent-color-2);
  /* transform: scale(1.1); */
}

.logo-box img{
  max-height: 63px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.nav-link {
  font-size: 1.0rem;
  color: var(--text-color);
  font-weight: 600;
  padding-block: 1.85rem;
  padding-inline: 1.50rem;
}

.nav-link:hover {
  color: #F58220;
}

.nav-link.active {
  color: #F58220 !important;
}

.dropdown-menu{
  border: 0;
  border-radius: 0 0 25px 25px;
  padding: 15px 0px;
  width: 220px;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.3);
  box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.3);
}

.dropdown-item {
  color: var(--text-color);
  font-size: 1.15rem;
  padding: 15px;
  font-weight: 600;
  padding-block: 0.75rem;
  padding-inline: 0.75rem;
}

.dropdown-item:hover {
  color: #F58220 !important;
  background-color: transparent;
}

.dropdown-item:focus {
  color: #F58220 !important;
}

.dropdown-item.active {
  color: #F58220 !important;
  background-color: transparent;
}
/* ---------------------------- */
/* Buttons and Links            */
/* ---------------------------- */
.btn-quotes {
  width: 150px;
  background-color: var(--text-color);
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  border: none;
}

.btn-quotes:hover {
  background-color: #F58220;
  color: #FFFFFF;
  border: none;
}

.btn-primary-solid {
  background-color: #F58220;
  color: #FFFFFF;
  font-size: 1.15rem;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-primary-solid:hover {
  background-color: #000000;
  color: #FFFFFF;
  border: none;
}

.btn-secondary-solid {
  background-color: #F58220;
  color: #FFFFFF;
  font-size: 1.15rem;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-secondary-solid:hover {
  background-color: var(--accent-color-2);
  color: #FFFFFF;
  border: none;
  transform: scale(1.1);
}

.btn-secondary-solid-2 {
  background-color: #F58220;
  color: #FFFFFF;
  font-size: 1.15rem;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-secondary-solid-2:hover {
  background-color: #F58220;
  color: #FFFFFF;
  border: none;
  transform: scale(1.1);
}

.links-primary {
  font-family: var(--font-2);
  color: var(--text-color);
  font-size: 18px;
  text-decoration: none;
}

.links-primary:hover {
  color: #F58220;
  text-decoration: none;
}

.links-secondary {
  font-family: var(--font-2);
  color: #FFFFFF;
  font-size: 18px;
  text-decoration: none;
}

.links-secondary:hover {
  color: #F58220;
  text-decoration: none;
}

.badge-primary-color {
  background-color: #F58220;
  color: #FFFFFF;
  font-size: 18px;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
}

.badge-primary-color:hover {
  background-color: #F58220;
  color: #FFFFFF;
}

/* ---------------------------- */
/* Utilities                    */
/* ---------------------------- */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.video-box {
  width: 100%;
  max-width: 960px;
  height: auto;
}

.video-overlay .ratio {
  width: 100%;
  height: auto;
}

.video-overlay iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.img-container {
  width: 100%;
  max-width: 100%;
  max-width: 1000px;
}

.ratio-wrapper-429 {
  position: relative;
  aspect-ratio: 3 / 4; /* default: portrait */
  overflow: hidden;
}

.img-circle {
  width: 275px;
  height: 275px;
}

.ratio-wrapper-419 {
  position: relative;
  aspect-ratio: 3 / 4; /* default: portrait */
  overflow: hidden;
}

.bg-overlay-secondary {
  background: linear-gradient(45deg, rgba(245, 130, 32, 0.54), rgba(2, 2, 2, 0.36));
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.transition-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transition-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.scale-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scale-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.bg-secondary-gradient {
  background: linear-gradient(to right,white 0%,white 50%,#F8DAE0 50%,#F7D9DF 100%);
}

.breadcrumb {
  font-size: 22px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white !important;
}

.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: white !important;
}

.list-unstyled {
  padding-left: 0;
  margin-bottom: 0;
}

/* ---------------------------- */
/* Sections                     */
/* ---------------------------- */
.banner-section {
  position: relative;
  overflow: hidden;
  padding: 50px 75px 0 75px;
  color: white;
}

.hero-section {
  background-image: url('../image/Homehero.png');
  background-size: cover;
  background-position: center;
  padding-bottom: 80px;

  
}

/* ---------------------------- */
/* Swiper                       */
/* ---------------------------- */
.swiper-container-outer {
  position: relative;
  overflow: hidden;
}

.swiper {
  padding: 30px 0;
}

.swiper-slide {
  height: auto;
}

.btsSwiper .swiper-slide img {
  width: 100%;
  height:auto;
  object-fit: cover;
}

.btsSwiper .swiper-button-prev,
.btsSwiper .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(28, 28, 28, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btsSwiper .swiper-button-prev::after,
.btsSwiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.btsSwiper .swiper-button-prev:hover,
.btsSwiper .swiper-button-next:hover {
  background: rgba(245, 130, 32, 0.9);
  border-color: rgba(245, 130, 32, 0.9);
}

@media (max-width: 576px) {
  .btsSwiper .swiper-slide img {
    height: 260px;
  }
}

/* ---------------------------- */
/* Boxes and Cards              */
/* ---------------------------- */
.step-box {
  position: relative;
  margin-bottom: 3rem;
}

.step-box h1 {
  position: absolute;
  font-family: var(--font-1);
  font-weight: 900;
  opacity: 0.8;
  top: -10px;
  left: 13%;
  transform: translateX(-50%);
  z-index: 0;
  background:
  -webkit-linear-gradient(#F58220, #9abbfd);

  -webkit-text-fill-color: transparent;
}

.step-box h3 {
  position: relative;
  font-family: var(--font-1);
  font-weight: 700;
  margin: 25px 0 20px 0;
  z-index: 1;
}

.step-box p {
  position: relative;
  z-index: 1;
}

.feedback-card {
  background: #fff;
  border: #F58220 2px solid;
  border-radius: 30px;
  padding: 35px;
  max-height: 360px;
}

.quotes-section {
  padding: 6em 2em 6em 2em;
  position: relative;
  overflow: hidden;
}

.quotes-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background-image: url('../image/Place-Holder-1920x1280.jpg');
  background-size: cover;
  background-position: center center;
  opacity: 0.8;
  z-index: -1; /* place behind of content */
}

.quotes-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(58, 95, 169, 0.9), rgba(244, 197, 206, 0.8));
  opacity: 0.9;
  z-index: 1; /* place in-front of content */
}

.quotes-section > .container {
  position: relative; /* Force container in-front of background */
  z-index: 2;
}

.quotes-section > .card {
  margin-top: 30px; /* Space from heading */
}

.news-card {
  border: 2px solid #F58220;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.news-card .card-title {
  font-family: var(--font-1);
  font-weight: 800;
  text-decoration: none;
}
.news-card .card-title:hover {
  font-family: var(--font-1);
  font-weight: 800;
  /* font-size: 22px; */
  text-decoration: none;
  color: #F58220;
}

/* ---------------------------- */
/* Footer                       */
/* ---------------------------- */
.footer {
  position: relative;
  overflow: hidden;
  color: white;
}

.footer-background {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../image/footer-bg.jpg');
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.footer-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(25, 25, 25, 0.8), rgba(25, 25, 25, 0.9));
  z-index: 1; /* place in-front of content */
}

.footer-logo > img {
  max-height: 65px;
}

/* ---------------------------- */
/* Accordion                    */
/* ---------------------------- */
.accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: transparent;
}

.accordion .accordion-button {
  font-size: large;
  font-weight: 700;
  color: #fff;
  background-color: #F58220; /* Default blue */
  border-radius: 1.5rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: none;
}

.accordion .accordion-button.collapsed {
  background-color: #F58220; /* Blue for collapsed */
  color: #fff;
}

.accordion .accordion-button:not(.collapsed) {
  background-color: #000000; /* Pink for expanded */
  color: #ffffff;
}

.accordion .accordion-button:focus {
  box-shadow: none;
}

.accordion i {
  font-size: 1.2rem;
}

.accordion .accordion-collapse {
  margin-top: 0.5rem; /* Gap between header and body */
}

.accordion .accordion-body {
  font-size: large;
  background-color: #F5F5F5;
  padding: 1.5rem;
  border-radius: 1rem;
  /* margin-top: 0.5rem; */
  color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* ---------------------------- */
/* Error 404                    */
/* ---------------------------- */
.error-code {
  font-size: 18rem;
  font-weight: 900;
  line-height: 1;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.error-code span:nth-child(2) {
  background: linear-gradient(180deg, #F58220, #FFC2B3);
  color: white;
  padding: 20px 0;
  border-radius: 1.5rem;
}
/* ---------------------------- */
/* Responsive Layouts           */
/* ---------------------------- */
@media only screen and (max-width: 1199.98px) {
  .ratio-wrapper-429 {
    aspect-ratio: 3 / 2;
  }

  .ratio-wrapper-419 {
    aspect-ratio: 1 / 1;
  }

  .step-box h1 {
    left: 17%;
  }
}

@media only screen and (max-width: 991.98px) {
  /* ---------------------------- */
  /* Typography                   */
  /* ---------------------------- */
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  button, a{
    font-size: 17px;
  }

  p{
    font-size: 16px;
  }

/* ---------------------------- */
/* Header and Navbar            */
/* ---------------------------- */
/* padding: 4em 2em 4em 2em; */
  .section {
    padding: 4em 1em;
  }

  .top-bar {
    display: none;
  }

  .logo-box img {
    max-height: 86px;
  }

  .logo-drawer img {
    max-height: 60px;
  }

  .nav-link {
    font-size: 1rem;
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
  }
  
  .nav-link.active,
  .nav-link:hover,
  .nav-link:focus {
    color: #F58220 !important;
  }

  .navbar-nav .nav-link {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
  }

  .dropdown-menu {
    border-radius: 0;
    width: 100%;
    padding: 5px 0px 5px 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  .dropdown-item {
    font-size: 1rem;
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
  }

  .btn-quotes {
    display: none;
  }

  .img-circle {
    width: 275px;
    height: 275px;
  }

  .step-box h1 {
    left: 5%;
  }

  .feedback-slide {
    width: 33.333%; /* 3 slides per-row for desktop */
  }

  .bg-secondary-gradient {
    background: linear-gradient(to top,white 0%,white 62%,#F8DAE0 62%,#F7D9DF 100%);
  }

  .quotes-section {
    position: relative; /* Force container in-front of background */
    overflow: hidden;
    padding: 0;
  }

  .quotes-section > .container {
    position: relative; /* Force container in-front of background */
    z-index: 2;
    padding: 0;
  }

  .quotes-section > .card {
    margin-top: 70px;
  }

  .img-container {
    width: 90%;
  }

  .ratio-wrapper-429 {
    aspect-ratio: 16 / 9;
  }

  .img-circle {
    width: 300px;
    height: 300px;
  }

  .footer-logo {
    text-align: center;
    padding: 0 4rem;
  }

  .footer-logo > img {
    max-height: 85px;
  }

  .error-code {
    font-size: 15rem;
  }
}

@media only screen and (max-width: 767.98px) {
  .btn-play {
    width: 80%;
  }

  .badge-cta {
    display: none;
  }

  .bg-secondary-gradient {
    background: linear-gradient(to top,white 0%,white 61%,#F8DAE0 61%,#F7D9DF 100%);
  }

  .img-container {
    width: 85%;
  }

  .ratio-wrapper-429 {
    aspect-ratio: 1 / 1;
  }

  .img-circle {
    width: 300px;
    height: 300px;
  }

  .step-box h1 {
    left: 6%;
  }

  .footer-logo > img {
    max-height: 65px;
  }
}

@media only screen and (max-width:576.98px){
  .ratio-wrapper-429 {
    aspect-ratio: 3 / 4;
  }

  .img-circle {
    width: 185px;
    height: 185px;
  }

  .step-box h1 {
    left: 8%;
  }

  .error-code {
    font-size: 10rem;
  }
}
/* Space below cards */
.mySwiper {
  padding-bottom: 60px;
}

/* Center pagination properly */
.swiper-pagination {
  bottom: 0px !important;
}

/* Default dot */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;     /* Empty inside */
  border: 2px solid #cfcfcf;   /* Light grey outline */
  opacity: 1;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

/* Active dot */
.swiper-pagination-bullet-active {
  background: #191919;         /* Blue active color */
  border-color: #191919;
  transform: scale(1.1);
}
/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Smooth fade effect */
.dropdown-menu {
  transition: all 0.3s ease;
}

/* Optional: remove arrow rotation issue */
.nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}
.service-thumbnail {
  width: 100%;
  height: 260px;          /* Important: fixed height */
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}
.swiper-slide .card:hover .service-thumbnail {
  transform: scale(1.1);
}
.misvis {
  align-content: left;
  padding-left: 80px;
  text-align: left;
}

.img-container-1 {
  overflow: hidden;
}

.bottom-card {
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.img-container-1:hover .bottom-card {
  transform: translateY(0);
}

.img-container-1 img {
  transition: transform 0.4s ease;
}

.img-container-1:hover img {
  transform: scale(1.05);
}
.social-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #333;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--text-color); /* Bootstrap primary */
  color: white;
  transform: translateY(-3px);
}
.bg-secondar-color-2{
  background-color: #FFD4AF;

}
.partner-logo {
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}


.gallery-img {
  width: 600px;
  height: 400px;
  object-fit: cover;   /* keeps image nicely cropped */
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Make responsive */
@media (max-width: 768px) {
  .gallery-img {
    width: 100%;
    height: auto;
  }
}
/* Custom Close Button */
.custom-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: white;
  opacity: 1;
  padding: 10px;
  border-radius: 50%;
  z-index: 10;
}

.custom-close-btn:hover {
  background-color: #f8f9fa;
  transform: scale(1.1);
}
/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #F58220; /* Your primary color */
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background-color: #0f357d;
  transform: translateY(-5px);
}
/* Sticky Header */
header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
}

/* Optional: Add slight shadow when scrolling */
header.scrolled {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}


/* WhatsApp Button */
/* ===============================
   WhatsApp Floating Button
================================= */

.wh-api {
    position: fixed;
    bottom: 75px;
    right: 75px;
    z-index: 999;
}

.wh-fixed > a {
    display: block;
    text-decoration: none;
}

/* Main Button */
button.wh-ap-btn {
    position: relative; /* IMPORTANT FIX */
    width: 60px;
    height: 60px;
    border: none;
    background-color: #2ecc71;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

/* WhatsApp Icon */
button.wh-ap-btn::after {
    content: "";
    background-image: url("../image/whatsapp.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    width: 100%;
    height: 100%;
    display: block;
}

/* Hover Effect */
button.wh-ap-btn:hover {
    background-color: #20bf6b;
    transform: scale(1.05);
}

/* Tooltip Text */
button.wh-ap-btn::before {
    content: "Chat with Us ! ";
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #49654e;
    color: #fff;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 30px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Show Tooltip on Hover */
.wh-fixed > a:hover button.wh-ap-btn::before {
    opacity: 1;
}

/* ===============================
   Pulse Animation
================================= */

.whatsapp-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #10b418;
    z-index: -1;
}

.whatsapp-pulse:before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #10b418;
    bottom: -15px;
    right: -15px;
    opacity: 0.6;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    25% {
        transform: scale(0.4);
        opacity: 1;
    }
    50% {
        transform: scale(0.7);
        opacity: 0.6;
    }
    75% {
        transform: scale(0.9);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

 .btn-row{
    padding:8px;
    border-radius:10px;
    background: linear-gradient(to right,#ff9a44,#000000);
}

.btn-row a{
    display:block;
    text-decoration:none;
    color:white;
    font-weight:600;
    padding:12px;
    border-radius:8px;
    background:transparent;
}

.btn-row a:hover{
    background:rgba(255,255,255,0.15);
}
.btn.active{
    background:rgba(255,255,255,0.15) !important;
    color: #FFFFFF;
}
.btn-row a{
    display: block;
    border-bottom: 2px dotted #ccc;
    padding-bottom: 10px;
    margin: 6px 0;
}

.btn-row a:last-child{
    border-bottom: none;
}



/* Gallery */
/* ===== AUTO COLLAGE ===== */
.gallery {
  column-count: 4;
  column-gap: 15px;
  padding: 30px;
}

.gallery img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: block;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1000px) {
  .gallery { column-count: 3; }
}
@media (max-width: 600px) {
  .gallery { column-count: 2; }
}

/* ===== POPUP ===== */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  transition: opacity 0.3s;
}

/* Controls */
.close, .prev, .next {
  position: absolute;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 10000;
  user-select: none;
}

.close {
  top: 20px;
  right: 40px;
}

.prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

* {
  box-sizing: border-box;
}

.video {
  position: relative;
  width: 100%;
  padding-bottom: 177.77%; /* 9:16 reels style */
  overflow: hidden;
}

.video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
}

/* Progress bar */
.bar {
  height: 4px;
  background: red;
  width: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  transition: width 0.2s linear;
}

/* Position container */


/* Common arrow style */
.team-prev,
.team-next {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: 0.3s;
}

/* Remove default swiper arrows */
.team-prev::after,
.team-next::after {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

/* Hover effect */
.team-prev:hover,
.team-next:hover {
  background: #F58220;
}

.team-prev:hover::after,
.team-next:hover::after {
  color: #fff;
}

/* 👉 POSITION OUTSIDE */
.team-prev {
  left: 10px;   /* move outside */
}

.team-next {
  right: 10px;  /* move outside */
}
.bg-secondary-color{
background-color: #F58220;
}
.disclimer{
  color: #7A7A7A;
  border-radius: 8px;
  font-size: 14px;
  text-align: left;
  span{
   font-size: 16px;
    font-weight: 600;
  }
}

/* Modal Z-index Fix */
.modal {
  z-index: 10000 !important;
}

.modal-backdrop {
  z-index: 9998 !important;
}


