/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color:#ffffff ;
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #ffffff !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/
/* ===================
   HERO CAROUSEL STYLE
=================== */
.hero-carousel .carousel-item {
  position: relative;
}

.hero-carousel .carousel-item img {
  width: 100%;
  /* height: 100vh; */
  object-fit: cover;
}

.hero-carousel .carousel-item::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* background: rgba(0, 0, 0, 0.55); */
}

.hero-carousel .carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel .carousel-content h1 {
  font-size: 60px;
  text-transform: capitalize;
}

.hero-carousel .carousel-content p {
  max-width: 700px;
  margin: 15px auto 35px auto;
  font-size: 18px;
}

.hero-carousel .carousel-content-btn1 {
  background: var(--bs-secondary);
  color: var(--bs-dark);
  border: none;
  border-radius: 25px;
  transition: all 0.4s;
}

.hero-carousel .carousel-content-btn1:hover {
  background: var(--bs-primary);
  color: #fff;
}

.hero-carousel .carousel-content-btn2 {
  background: var(--bs-primary);
  color: #fff;
  border: none;
  border-radius: 25px;
  transition: all 0.4s;
}

.hero-carousel .carousel-content-btn2:hover {
  background: var(--bs-secondary);
  color: var(--bs-dark);
}

/* Carousel controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 70px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  opacity: 0.8;
  transition: 0.6s;
}

/* Indicators */
#carouselId .carousel-indicators li {
  width: 30px;
  height: 10px;
  background: var(--bs-primary);
  margin: 10px;
  border-radius: 30px;
  opacity: 1;
}

#carouselId .carousel-indicators li.active,
#carouselId .carousel-indicators li:hover {
  background: var(--bs-secondary);
}

/* ===================
   RESPONSIVE DESIGN
=================== */
@media (max-width: 992px) {
  .hero-carousel .carousel-item img {
    /* height: 70vh; */
  }

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

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

@media (max-width: 768px) {
  .hero-carousel .carousel-item img {
    /* height: 60vh; */
  }

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

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

  .hero-carousel .carousel-content button {
    padding: 8px 20px;
    font-size: 14px;
  }
}

.page-header {
    background:   url(../img/banner.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}
/*** Carousel End ***/


/*** Services Start ***/
.service-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}
.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: #d8a426;
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #26d48c;
}

.contact-form {
    background: #26d48c;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    /* letter-spacing: 1px; */
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/






.counter-section {

        background: url(../img/backgroundimage.png) center center no-repeat;

  /* background-image: url('img/backgroundimage.png');   */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: #fff;
}

.counter-section::before {
  content: "";
  position: absolute;
  inset: 0;
 
  z-index: 0;
}

.counter-section .container {
  position: relative;
  z-index: 1;
}

.counter h1 {
  font-size: 3rem;
  font-weight: 700;
}



.plus-sign {
  font-size: 0.8em;
  margin-left: 2px;
  color: #d8a426; /* change color as needed */
  font-weight: 600;
}


.wee {
     position: relative;
    padding: 40px 0 0;
    background-image: url(../img/background1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-top: -50px;
    background-color: rgb(247, 247, 247);
    z-index: 0;
}



.we {
  position: relative;
  overflow: hidden;
  color: #fff;
  z-index: 1;
}

/* Background YouTube Video Styling */
.we iframe {
  position: absolute;
  top: 50%;
  left: 50%;
width: 100vw;
height: 56.25vw; /* same 16:9 ratio */
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Overlay for readability */
.we::before {
  content: "";
  position: absolute;
  inset: 0;
 background: rgba(0, 31, 22, 0.7);
  z-index: 1;
}




/* Mobile view: hide video + use solid background */
@media (max-width: 768px) {
  .we {
    background-color: #024139; /* solid color background */
  }

  .we iframe {
    display: none; /* hide the video */
  }

  .we::before {
    display: none; /* remove overlay */
  }
}
.book-video {
  position: relative;
  overflow: hidden;
}

.book-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* overlay color and opacity */
  z-index: 1;
}

.book-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}


/* Make sure content stays above video */
.we > * {
  position: relative;
  z-index: 2;
}

.services-section {
  /* background-color: #fff; */
  padding: 60px 0;
  margin-top:-60px;
}

.services-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.service-content {
  background-color: #ffffff;
  text-align: center;
  padding: 20px 15px;
}

.service-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #024139;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.btn-book {
  display: inline-block;
  background-color: #024139;
  color: #ffffff;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-book:hover {
  background-color:#024139;
  color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
  .service-card img {
    height: 220px;
  }

  .service-content h4 {
    font-size: 16px;
  }

  .btn-book {
    font-size: 13px;
    padding: 8px 20px;
  }
}
  .amenities-section{
    padding:48px 16px;
    margin-top:-50px;
    background: linear-gradient(180deg,#ffffff 0%, #ffffff 100%);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color:var(--text);
  }
  .amenities-section .container{
    max-width:1100px;
    margin:0 auto;
  }
  .section-title{
    font-size:1.6rem;
    margin:0 0 6px;
    letter-spacing:0.2px;
    text-align:center;
  }
  .section-sub{
    text-align:center;
    color:var(--muted);
    margin:0 0 24px;
    font-size:0.95rem;
  }

  .amenities-grid{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
  }

  .amenity-card{
    display:flex;
    gap:14px;
    align-items:flex-start;
    padding:18px;
    background:linear-gradient(180deg,var(--card), #fff);
    border-radius:var(--radius);
    box-shadow: 0 6px 18px rgba(18,38,63,0.06);
    transition: transform .28s cubic-bezier(.2,.9,.3,1), box-shadow .28s;
    border: 1px solid rgba(31,41,55,0.04);
  }
  .amenity-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(18,38,63,0.09);
  }

  .amenity-card .icon{
    width:64px;
    height:64px;
    flex:0 0 64px;
    display:grid;
    place-items:center;
    border-radius:12px;
background: linear-gradient(180deg, rgb(2 65 57), rgb(2 65 57));    box-shadow: inset 0 -4px 8px rgba(223,159,61,0.04);
  }
  .amenity-card .icon svg{
    width:30px;
    height:30px;
     color:white;
  }

  .amenity-card .content h3{
    margin:0 0 6px;
    font-size:1.02rem;
    line-height:1;
  }
  .amenity-card .content p{
    margin:0;
    color:var(--muted);
    font-size:0.95rem;
  }

  /* Responsive */
  @media (max-width:1000px){
    .amenities-grid{ grid-template-columns:repeat(2,1fr); gap:14px; }
  }
  @media (max-width:560px){
    .amenities-grid{ grid-template-columns:1fr; }
    .amenity-card{ align-items:center; }
    .amenity-card .icon{ width:56px; height:56px; flex:0 0 56px; }
    .amenities-section{ padding:32px 12px; }
    .section-title{ font-size:1.25rem; }
  }


     .why-choose {
      padding: 80px 110px;
      background: #f7f7f7;
    }

    /* Mobile view */
@media (max-width: 768px) {
  .why-choose {
    padding: 80px 20px; /* reduced side padding for small screens */
  }
}

    .why-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
    }

    .why-text {
      flex: 1 1 550px;
    }

    .why-text h5 {
      color: #024139;
      background: rgba(14, 165, 164, 0.1);
      display: inline-block;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 14px;
      letter-spacing: 1px;
    }

    .why-text h2 {
      font-size: 2rem;
      color: #111827;
      margin: 15px 0;
    }

    .why-text p {
      color: #555;
      line-height: 1.7;
      margin-bottom: 25px;
      font-size: 1rem;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 12px;
      margin-bottom: 30px;
    }

    .feature-item {
      background: #ecfdf5;
      /* padding: 10px 15px; */
      border-radius: 12px;
      display: flex;
      align-items: center;
      font-weight: 500;
      color: #065f46;
      font-size: 0.95rem;
    }

    .feature-item i {
      color: #0ea5a4;
      margin-right: 8px;
    }

    .why-btn {
background: linear-gradient(135deg, #024139, #024139);
      color: white;
      padding: 12px 28px;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .why-btn:hover {
      box-shadow: 0 8px 20px rgba(6, 182, 180, 0.3);
      transform: translateY(-2px);
    }

    .why-image {
      /* flex: 1 1 500px; */
      text-align: center;
    }

    .why-image img {
      width: 100%;
      max-width: 480px;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 900px) {
      .why-container {
        flex-direction: column;
        text-align: center;
      }

      .why-text h2 {
        font-size: 1.8rem;
      }

      .why-text p {
        font-size: 0.95rem;
      }

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


.book-event {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.book-event iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 ratio */
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.book-event::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 31, 22, 0.7);
  z-index: 1;
}

/* Mobile view: hide video + use solid background */
@media (max-width: 768px) {
  .book-event {
    background-color: #024139; /* solid color background */
  }

  .book-event iframe {
    display: none; /* hide the video */
  }

  .book-event::before {
    display: none; /* remove overlay */
  }
}



/* Content Above Video */
.book-event h2,
.book-event p,
.booking-form {
  position: relative;
  z-index: 2;
}

/* Heading and Paragraph */
.book-event h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.book-event p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.6;
  color: #f5f5f5;
}

/* Form Styling */
.booking-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.booking-form input,
.booking-form select {
  padding: 12px 15px;
  width: 280px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  color: #333;
}

.booking-form select {
  background-color: #fff;
  cursor: pointer;
}

/* Button Styling */
.booking-form button {
  background-color: #ff9900;
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.booking-form button:hover {
  background-color: #e68a00;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    align-items: center;
  }

  .booking-form input,
  .booking-form select {
    width: 100%;
    max-width: 400px;
  }

  .booking-form button {
    width: 100%;
    max-width: 400px;
  }

  .book-event h2 {
    font-size: 1.6rem;
  }

  .book-event p {
    font-size: 0.95rem;
  }
}



.gallery-section {
  padding: 80px 20px;
  background-color: #f8fcff;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.gallery-section h2 {
  font-size: 2rem;
  color: #0c4da2;
  font-weight: 600;
  margin-bottom: 10px;
}

.gallery-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* ----- Responsive Grid ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-items: center;
}

/* ----- Image Styling ----- */
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* ----- Responsive Adjustments ----- */
@media (max-width: 768px) {
  .gallery-section h2 {
    font-size: 1.6rem;
  }

  .gallery-grid img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    gap: 15px;
  }
}





.faq-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 60px 10%;
  flex-wrap: wrap;
  background-color: #f9fcfb;
}

/* FAQ content */
.faq-content {
  flex: 1 1 500px;
  max-width: 700px;
}

.faq-content h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 25px;
  color: #024139;
}

/* Accordion Style */
.accordion-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 8px;
  border-radius: 6px;
  overflow: hidden;
}

.accordion-title {
  background-color: #e8f5f1;
  color: #024139;
  cursor: pointer;
  padding: 15px 20px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-title span {
  font-size: 20px;
  font-weight: bold;
}

.accordion-title.active {
  background-color: #024139;
  color: #fff;
}

.accordion-content {
  display: none;
  padding: 15px 20px;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

.accordion-content.show {
  display: block;
}

/* FAQ Image */
.faq-image {
  flex: 1 1 350px;
  text-align: center;
}

.faq-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    flex-direction: column;
    padding: 40px 20px;
  }
  .faq-content h2 {
    text-align: center;
  }
}


/* Logo Styling */
.site-logo {
  height: 120px;
  width: auto;
  margin-top: -20px;
  margin-bottom: -17px;
  transition: all 0.3s ease-in-out;
}

/* Responsive Logo */
@media (max-width: 768px) {
  .site-logo {
    height: 80px;
    width: auto;
    margin-top: -10px;
    margin-bottom: -10px;
  }
}

/* Optional alignment fix for small screens */
.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Floating Icon Container */
.floating-icons {
  position: fixed;
  right: 25px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Icon Style */
.floating-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #fff;
  color: #024139;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  font-size: 26px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* WhatsApp Specific */
.floating-icons .whatsapp-float {
  background-color: #25d366;
  color: #fff;
}

/* Call Specific */
.floating-icons .call-float {
  background-color: #024139;
  color: #fff;
}

/* Hover Effects */
.floating-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Hide on Mobile */
@media (max-width: 768px) {
  .floating-icons {
    display: none;
  }
}
/* Counter Section with Dotted Borders */
.counter-section {
  position: relative;
  background: linear-gradient(90deg, #024139, #036b58);
  color: #fff;
  overflow: hidden;
}

/* Top Dotted Line */
.counter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: radial-gradient(#ffffff 1.5px, transparent 1.5px);
  background-size: 15px 5px;
  background-repeat: repeat-x;
  opacity: 0.8;
}

/* Bottom Dotted Line */
.counter-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: radial-gradient(#ffffff 1.5px, transparent 1.5px);
  background-size: 15px 5px;
  background-repeat: repeat-x;
  opacity: 0.8;
}

/* Counter Styling */
.counter h1 {
  font-weight: 700;
  font-size: 48px;
}

.counter h5 {
  font-weight: 500;
  font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .counter h1 {
    font-size: 32px;
  }
  .counter h5 {
    font-size: 16px;
  }
}



 .bhoomika-contact-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
  }

  /* Contact Info Boxes */
  .bhoomika-contact-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 15px;
  }

  .bhoomika-contact-box {
    flex: 1 1 300px;
    background: #024139;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 20px;
  }

  .bhoomika-contact-box i {
    font-size: 32px;
    margin-bottom: 10px;
  }

  /* Form + Map Container */
  .bhoomika-contact-main {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  /* Form Styling */
  .bhoomika-contact-form {
    flex: 1 1 55%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .bhoomika-contact-form input,
  .bhoomika-contact-form select,
  .bhoomika-contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
  }

  .bhoomika-contact-form input:focus,
  .bhoomika-contact-form select:focus,
  .bhoomika-contact-form textarea:focus {
    border-color: #024139;
    outline: none;
  }

  .bhoomika-half-width {
    flex: 1 1 calc(50% - 15px);
  }

  .bhoomika-full-width {
    flex: 1 1 100%;
  }

  .bhoomika-contact-form button {
    background-color: #024139;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .bhoomika-contact-form button:hover {
    background-color: #024139;
  }

  /* Map Styling */
  .bhoomika-map-container {
    flex: 1 1 40%;
  }

  .bhoomika-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
    min-height: 380px;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .bhoomika-contact-main {
      flex-direction: column;
    }
    .bhoomika-map-container {
      order: 2;
    }
  }

     .mission-vision-section {
      padding: 60px 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: -100px;;
    }

    /* Card */
    .mv-box {
      background: #024139;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      width: 550px;
      color:white;
      max-width: 90%;
      padding: 25px 30px;
      transition: all 0.3s ease;
    }

    .mv-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 90, 255, 0.15);
    }

    /* Icon + Title */
    .mv-title {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
    }

    .mv-title i {
      background-color: #e7f0ff;
      color: #024139;
      font-size: 18px;
      padding: 10px;
      border-radius: 50%;
    }

    .mv-title h3 {
      margin: 0;
      font-size: 20px;
      font-weight: 600;
      color: #ffffff;
    }

    /* Text */
    .mv-box p {
      color: #ffffff;
      font-size: 15px;
      line-height: 1.7;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .mission-vision-section {
        flex-direction: column;
        align-items: center;
      }
      .mv-box {
        width: 90%;
      }
    }


      .offer-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9fbff;
  }

  .offer-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #024139;
    margin-bottom: 20px;
  }

  .offer-section p.intro {
    max-width: 750px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
  }

  /* Offer Cards */
  .offer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .offer-box {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
  }

  .offer-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 90, 255, 0.15);
  }

  .offer-box i {
    background-color: #e7f0ff;
    color: #024139;
    font-size: 26px;
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 15px;
  }

  .offer-box h4 {
    font-size: 17px;
    color: #024139;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .offer-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .offer-section h2 {
      font-size: 28px;
    }
    .offer-section p.intro {
      font-size: 15px;
      padding: 0 10px;
    }
  }



/*   
.about-section {
  padding: 80px 20px;
  background: #f9fbff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1 1 500px;
}

.about-subtitle {
  color: #004aad;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-title {
  font-size: 26px;
  color: #0a0a0a;
  margin-bottom: 20px;
  font-weight: 700;
 
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
   text-align: justify;
}

.about-image {
  flex: 1 1 450px;
  display: flex;
  justify-content: center;
} */



.about-section {
  background: linear-gradient(135deg, #fff7e6 0%, #ffe8c5 100%);
  padding: 60px 0;
}

.about-title {
  font-size: 25px;
  font-weight: 700;
  color: #d8a426;
}

.about-text p {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}

.about-image img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  object-fit: cover;
  
}

/* Carousel controls */
/* Desktop: add margin-left */
.carousel-control-prev-icon {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 10px;
  margin-left: 40px;
}
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 10px;
  /* margin-left: 50px; */
}

/* Mobile & Tablet: remove margin */
@media (max-width: 768px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    margin-right: 10px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  
  .about-title {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-image {
    margin-top: 20px;
  }
}



.about-image img {
  width: 100%;
  /* max-width: 500px; */
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text {
    padding: 0 10px;
  }

  .about-title {
    font-size: 30px;
  }

  /* .about-image img {
    max-width: 90%;
  } */
}

@media (max-width: 576px) {
  .about-title {
    font-size: 16px;
        margin-top: 30px !important;
  }

  .about-text p {
    font-size: 15px;
  }
}

/* Default (Desktop view) */
.about-image .carousel-inner {
  margin-left: 30px;
}

/* Mobile view: remove margin */
@media (max-width: 768px) {
  .about-image .carousel-inner {
    margin-left: 0;
  }
}

.bhoomika-creation-luxury {
  background: linear-gradient(180deg, #fffaf3 0%, #fff 100%);
  padding: 100px 20px;
  text-align: center;
   border-top: 8px double #d4a017;
  border-bottom: 8px double #d4a017;  
}
.creation-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.creation-inner h2 {
  font-size: 2.5rem;
  color: #b5832b;
  margin-bottom: 20px;
}
.creation-inner p {
  color: #444;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.creation-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.creation-box {
  background: #fff;
  border: 2px solid #f3d385;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(212, 160, 23, 0.1);
  transition: all 0.3s ease;
}
.creation-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(212, 160, 23, 0.25);
}
.creation-tagline {
  margin-top: 40px;
  font-weight: 600;
  color: #8b6508;
}
@media(max-width:768px){
  .creation-inner h2{font-size:2rem;}
}




.bhoomika-birthday-split {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  margin: 50px auto;
  max-width: 1100px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.bhoomika-image-side {
  flex: 1 1 45%;
background: url(../img/brthday2.png) center center no-repeat;  min-height: 350px;
}
.bhoomika-image-side1 {
  flex: 1 1 45%;
background: url(../img/wedding2.png) center center no-repeat;  min-height: 350px;
}
.bhoomika-image-side2 {
  flex: 1 1 45%;
background: url(../img/thread2.png) center center no-repeat;  min-height: 350px;
}
.bhoomika-image-side3 {
  flex: 1 1 45%;
background: url(../img/party2.png) center center no-repeat;  min-height: 350px;
}

.bhoomika-image-side4 {
  flex: 1 1 45%;
background: url(../img/event2.png) center center no-repeat;  min-height: 350px;
}
.bhoomika-image-side5 {
  flex: 1 1 45%;
background: url(../img/meeting2.png) center center no-repeat;  min-height: 350px;
}

.bhoomika-content-side {
  flex: 1 1 55%;
  padding: 50px 30px;
  text-align: left;
  background-color: #024139;
}
.bhoomika-content-side h2 {
  color: #d8a426;
  font-size: 30px;
}
.bhoomika-content-side p {
  margin: 15px 0 20px;
  color: #ffffff;
}
.bhoomika-content-side ul {
  list-style: none;
  padding: 0;
}
.bhoomika-content-side li {
background: #ffffff;
    margin: 10px 0;
    padding: 12px 18px;
    border-left: 5px solid #d8a426;
    border-radius: 8px;
    color:#024139;
}
.bhoomika-footer {
  margin-top: 30px;
  font-weight: 600;
  color: #d8a426;
}
@media(max-width:768px){
  .bhoomika-birthday-split{flex-direction:column;}
}



/* Mobile view: 2 boxes per row (2 rows total) */
@media (max-width: 576px) {
  .counter-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 15px; */
    margin-top:-30px;
    margin-bottom:-40px;
  }

  .counter-section .col-lg-3,
  .counter-section .col-md-6 {
    flex: 0 0 45%;   /* 2 per row */
    max-width: 45%;
    text-align: center;
  }

  .counter-section .counter h1 {
    font-size: 20px;;
    color: #d8a426;
  }

  .counter-section .counter h5 {
    font-size:12px !important;
    color: #fff;
  }
}



/* Desktop - 3 images per row */
.gallery-section .col-lg-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/* Tablet - 2 images per row */
@media (max-width: 992px) {
  .gallery-section .col-lg-4 {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

/* 📱 Mobile - show only the middle (one image) */
@media (max-width: 576px) {
  .gallery-section .row {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Hide all images except the middle one */
  .gallery-section .col-lg-4 {
    display: none;
  }

  .gallery-section .col-lg-4:nth-child(2) {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Image styling */
  .gallery-section img {
    width: 100%;
    border-radius: 15px;
  }

  /* Center carousel controls */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}.video-section {
  padding: 80px 5%;
  background-color: #fff3de;
}

/* Flex container */
.video-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* Text content */
.video-section .content {
  flex: 1 1 45%;
}

.video-section .content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.video-section .content p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

.video-section .btn {
  display: inline-block;
  background: #024139;
  color: #fff;
  padding: 12px 28px;
  margin-top: 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.video-section .btn:hover {
  background: #024139;
  transform: translateY(-2px);
}

/* Video container */
.video-section .video {
  flex: 1 1 45%;
  position: relative;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); */
}

.video-wrapper iframe {
  width: 100%;
  height: 320px;
  border: none;
  pointer-events: none; /* disable hover actions like logo tooltips */
}

/* Optional overlay to further hide watermark during hover */
.video-wrapper::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
}

/* Responsive design */
@media (max-width: 768px) {
  .video-section .container {
    flex-direction: column;
    text-align: center;
  }

  .video-section .content, 
  .video-section .video {
    flex: 1 1 100%;
  }

  .video-wrapper iframe {
    height: 250px;
  }
}



 

        header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 38px 20px;
            position: relative;
            overflow: hidden;
        }

        .logo {
               font-size: 40px;
    font-family: "Saira", sans-serif;
            margin-bottom: 15px;
            font-weight: 600;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .tagline {
            font-size: 13px;
            max-width: 700px;
            margin: 0 auto 25px;
            font-weight: 300;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .intro {
            max-width: 800px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .services-section {
            padding: 100px 0;
            /* background-color: #0a0a0a; */
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: #d4af37;
            margin-bottom: 20px;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 600px;
            margin: 0 auto;
        }
 

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: rgba(30, 30, 30, 0.8);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
            border-color: rgba(212, 175, 55, 0.5);
        }

        .service-image {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .service-image::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
        }

        .service-content1 {
            padding: 30px;
            position: relative;
            z-index: 1;
        }

        .service-content1 h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #d4af37;
            font-weight: 500;
        }

        .service-content1 p {
            color: #ccc;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .features {
            list-style-type: none;
        }

        .features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
            color: #e0e0e0;
        }

        .features li::before {
            content: "✦";
            position: absolute;
            left: 0;
            color: #d4af37;
            font-weight: bold;
        }
 
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
            
            .logo {
                font-size: 2.5rem;
            }
        }




            .section-title {
            text-align: center;
            margin-bottom: 10px;
            position: relative;
        }

        .section-title h2 {
        font-size: 2.5rem;
    color: #ffffff;
    display: inline-block;
    padding-bottom: 10px;
    margin-top: 25px;
        }

  
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .feature-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 40px 30px;
            text-align: center;
            flex: 1;
            min-width: 300px;
            max-width: 350px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #024139;
        }

        .feature-card h3 {
             font-size: 20px;;
            margin-bottom: 15px;
            color: #024139;
        }


        #why-choose{
          background-color: #024139;
          padding-bottom: 33px;
          /* border-top: 8px double #d4a017; */
     /* border-bottom: 8px double #d4a017; */
        }










 .faq1{
   border-bottom: 8px double #d4a017;
   background-color: #f5f5f5;
 }


            .bhoomika-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
     }

    .bhoomika-faq-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: flex-start;
    }

    .bhoomika-faq-content {
      flex: 1;
      min-width: 300px;
    }

    .bhoomika-faq-image {
      flex: 1;
      min-width: 300px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      height: 500px;
      position: relative;
    }

    .bhoomika-faq-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .bhoomika-faq-image:hover img {
      transform: scale(1.03);
    }

    .bhoomika-image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(26, 42, 108, 0.8), transparent);
      color: white;
      padding: 30px 20px 20px;
    }

    .bhoomika-faq-item {
      background: white;
      border-radius: 10px;
      margin-bottom: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: all 0.3s ease;
     }

    .bhoomika-faq-item:hover {
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .bhoomika-faq-question {
      padding: 20px 25px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: white;
      border: none;
      width: 100%;
      text-align: left;
      font-size: 1.1rem;
      font-weight: 600;
      color: #024139;
    }

    .bhoomika-faq-question i {
      transition: transform 0.3s ease;
      color: #024139;
    }

    .bhoomika-faq-answer {
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      color: #666;
      line-height: 1.7;
    }

    .bhoomika-faq-item.active .bhoomika-faq-answer {
      padding: 0 25px 25px;
      max-height: 200px;
    }

    .bhoomika-faq-item.active .bhoomika-faq-question i {
      transform: rotate(180deg);
    }

    @media (max-width: 768px) {
      .bhoomika-faq-container {
        flex-direction: column;
      }

      .bhoomika-faq-image {
        order: -1;
        height: 350px;
      }
    }