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

@font-face {
  font-family: "Cardo-Bold";
  src: url(./assets/fonts/Cardo/Cardo-Bold.ttf);
}
@font-face {
  font-family: "Gilroy-Bold";
  src: url(./assets/fonts/Gilroy/Gilroy-Bold.ttf);
}
@font-face {
  font-family: "Gilroy-Regular";
  src: url(./assets/fonts/Gilroy/Gilroy-Regular.ttf);
}
html {
  scroll-behavior: smooth;
}

span.wpcf7-spinner {
  position: absolute;
}

body {
  font-family: "Gilroy-Regular";
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cardo-Bold";
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
}

section {
  padding: 70px 0;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.SectionTitle {
  margin-bottom: 36px;
}
.SectionTitle h2 {
  font-size: 16px;
}
.SectionTitle h3 {
  font-weight: 700;
  font-size: 42px;
}

.WebBtn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 36px;
  border: 4px solid transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #EE3935;
  box-shadow: 0 0 0 2px #EE3935;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.WebBtn svg {
  position: absolute;
  width: 24px;
  fill: #EE3935;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.WebBtn svg.arr-1 {
  right: 16px;
}
.WebBtn svg.arr-2 {
  left: -25%;
}
.WebBtn .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #EE3935;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.WebBtn .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.WebBtn:hover {
  color: #fff;
}
.WebBtn:hover .arr-1 {
  right: -25%;
}
.WebBtn:hover .arr-2 {
  left: 16px;
}
.WebBtn:hover .text {
  transform: translateX(12px);
}
.WebBtn:hover svg {
  fill: #fff;
}
.WebBtn:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}
.WebBtn:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #EE3935;
}

#header {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  background: rgba(255, 255, 255, 0);
}
#header .WebBtn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 36px;
  border: 4px solid transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 0 2px #fff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
#header .WebBtn svg {
  position: absolute;
  width: 24px;
  fill: #fff;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
#header .WebBtn svg.arr-1 {
  right: 16px;
}
#header .WebBtn svg.arr-2 {
  left: -25%;
}
#header .WebBtn .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
#header .WebBtn .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
#header .WebBtn:hover {
  color: #EE3935;
}
#header .WebBtn:hover .arr-1 {
  right: -25%;
}
#header .WebBtn:hover .arr-2 {
  left: 16px;
}
#header .WebBtn:hover .text {
  transform: translateX(12px);
}
#header .WebBtn:hover svg {
  fill: #EE3935;
}
#header .WebBtn:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}
#header .WebBtn:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #EE3935;
}
#header * {
  transition: 300ms all ease;
}
#header #nav-main {
  border-radius: 14px;
  padding: 16px 0;
}
#header .navbar-brand img {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 600ms all ease;
}
#header .dropdown:hover .dropdown-menu.show {
  opacity: 1;
  display: block;
}
#header .dropdown-menu.show {
  opacity: 0;
  transition: 200ms all ease;
  display: none;
}
#header .dropdown:hover .dropdown-menu {
  opacity: 1;
  display: block;
}
#header .dropdown-menu {
  opacity: 0;
  transition: 200ms all ease;
  display: none;
  top: 30px;
}
#header .dropdown-menu li {
  width: 100%;
}
#header .dropdown-menu li:hover::after {
  display: none;
}
#header .dropdown-menu a {
  font-weight: 500;
}
#header .dropdown-menu a:hover {
  background-color: transparent;
  color: #308C98;
}
#header .navbar-expand-lg .navbar-nav .dropdown-menu {
  background-color: #FFF;
  line-height: 1.5;
  padding: 24px 18px;
  box-shadow: 0px 0px 26px 0px #FFF;
}
#header .dropdown-item:focus,
#header .dropdown-item:hover {
  color: #fff;
}
#header .dropdown-item.active,
#header .dropdown-item:active {
  color: #fff;
}
#header .navbar > .container-fluid {
  align-items: flex-end;
  align-items: center;
}
#header .navbar-expand-lg .navbar-nav {
  width: 75%;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
#header .dropdown {
  padding-right: 10px;
}
#header .dropdown::before {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  right: 0px;
  top: 14px;
  position: absolute;
}
#header li {
  position: relative;
  font-size: 16px;
  transition: 300ms all ease;
  color: #FFF;
  letter-spacing: 1px;
  border-radius: 10px;
  transition: 300ms all ease;
  margin: 0 4px;
  display: inline-flex;
  font-weight: 500;
}
#header li::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 0px;
  background: #EE3935;
  border-radius: 130px;
  left: 36%;
  bottom: 0px;
  transition: 400ms all ease;
}
#header li:hover::after {
  width: 18px;
}
#header li a {
  color: #FFF;
  padding: 5px 3px 7px;
  transition: 300ms all ease;
  font-weight: 500;
}
#header .navbar-expand-lg {
  padding: 0;
}
#header li.contact-btn:hover::after {
  display: none !important;
}
#header li.active::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 18px;
  background: linear-gradient(90deg, #406AB2 0%, #75CDD9 100%);
  border-radius: 130px;
  left: 36%;
  bottom: 0px;
  transition: 400ms all ease;
}
#header li.active a {
  color: #fff;
}

#header.darkHeader {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #fff;
}
#header.darkHeader li a {
  color: #308C98;
  padding: 5px 3px 7px;
  transition: 300ms all ease;
}
#header.darkHeader .WebBtn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 36px;
  border: 4px solid transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #EE3935;
  box-shadow: 0 0 0 2px #EE3935;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
#header.darkHeader .WebBtn svg {
  position: absolute;
  width: 24px;
  fill: #EE3935;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
#header.darkHeader .WebBtn svg.arr-1 {
  right: 16px;
}
#header.darkHeader .WebBtn svg.arr-2 {
  left: -25%;
}
#header.darkHeader .WebBtn .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #EE3935;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
#header.darkHeader .WebBtn .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
#header.darkHeader .WebBtn:hover {
  color: #fff;
}
#header.darkHeader .WebBtn:hover .arr-1 {
  right: -25%;
}
#header.darkHeader .WebBtn:hover .arr-2 {
  left: 16px;
}
#header.darkHeader .WebBtn:hover .text {
  transform: translateX(12px);
}
#header.darkHeader .WebBtn:hover svg {
  fill: #fff;
}
#header.darkHeader .WebBtn:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}
#header.darkHeader .WebBtn:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #EE3935;
}
#header.darkHeader img {
  max-width: 80px;
}
#header.darkHeader .navbar {
  padding: 5px 0px 7px;
  transition: 500ms;
}
#header.darkHeader #nav-main {
  padding: 3px 12px;
}

#mobile-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  padding: 0;
  background: #fff;
}
#mobile-nav .SocialIcons {
  display: flex;
  gap: 14px;
}
#mobile-nav .SocialIcons a:hover {
  transition: 300ms all ease;
  transform: scale(1.04);
}
#mobile-nav .social-area {
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}
#mobile-nav .social-area ul {
  margin: 0;
  padding: 0;
  gap: 60px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mobile-nav .social-area ul li {
  height: 24px;
  position: relative;
}
#mobile-nav .social-area ul li:hover img {
  transform: scale(1.14);
}
#mobile-nav .social-area ul li::after {
  content: "";
  height: 2.5px;
  width: 2.5px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 13px;
  left: -36px;
  transform: translateX(-50%);
}
#mobile-nav .social-area ul li img {
  width: 24px;
  transition: 400ms all ease;
}
#mobile-nav .mobile_nav_area {
  background-color: #fff;
  padding: 14px 12px;
  display: block;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}
#mobile-nav .ContactBtn {
  border-bottom: none !important;
  margin-top: 10px !important;
}
#mobile-nav .mobile_nav_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#mobile-nav .mobile_nav_right {
  width: 20%;
}
#mobile-nav .mobile_nav_right img {
  width: 65;
  height: auto;
}
#mobile-nav .mobile_nav_left {
  width: 10%;
  margin-top: 0px;
}
#mobile-nav .mobile_nav_left i {
  cursor: pointer;
  color: #EE3935;
  font-size: 28px;
}
#mobile-nav .mobile_nav_____ {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 100vh;
  margin-left: -1100px;
  transition: 0.2s all ease;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  margin-top: 18px;
  margin-bottom: 0px;
  padding-left: 0;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul .nav-item {
  border-bottom: 1px solid rgba(131, 131, 131, 0.48);
  transition: 0.3s ease-in-out;
  margin: 0 4px;
  position: relative;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul .nav-item a {
  padding: 4px 14px;
  text-decoration: none;
  position: relative;
  color: #308C98;
  text-transform: capitalize;
  font-size: 21px;
  display: flex;
  align-items: center;
  gap: 6px;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul .nav-item a .material-symbols-outlined {
  transition: 0.3s ease-in-out;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul .nav-item .dropdown-list {
  position: absolute;
  top: 0px;
  left: 22px;
  width: 100%;
  padding: 12px 22px;
  transform: scale(0.8);
  flex-direction: column;
  background: #d47911;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  list-style-type: none;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul .dropdown {
  padding-right: 10px;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul .dropdown::before {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.34em solid #fff;
  border-right: 0.34em solid transparent;
  border-bottom: 0;
  border-left: 0.34em solid transparent;
  right: unset;
  left: 27%;
  top: 20px;
  position: absolute;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul .contact-btn {
  border: none;
}
#mobile-nav .mobile_nav_____ .dropdown:hover .dropdown-menu.show {
  opacity: 1;
  display: block;
}
#mobile-nav .mobile_nav_____ .dropdown-menu.show {
  background: #000;
  margin: 0;
  padding-left: 16px;
  opacity: 0;
  transition: 200ms all ease;
  display: none;
}
#mobile-nav .mobile_nav_____ .dropdown:hover .dropdown-menu {
  opacity: 1;
  display: block;
}
#mobile-nav .mobile_nav_____ .dropdown-menu {
  opacity: 0;
  transition: 200ms all ease;
  display: none;
  top: 30px;
}
#mobile-nav .mobile_nav_____ .dropdown-menu li:hover::after {
  display: none;
}
#mobile-nav .mobile_nav_____ .dropdown-menu a {
  font-weight: 500;
}
#mobile-nav .mobile_nav_____ .dropdown-menu a:hover {
  background-color: transparent;
  color: #EE3935;
}
#mobile-nav .mobile_nav_____ .navbar-expand-lg .navbar-nav .dropdown-menu {
  background-color: #000;
  line-height: 1.5;
  padding: 24px 18px;
  box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.5490196078);
  border: 1px solid #585858;
}
#mobile-nav .mobile_nav_____ .dropdown-item:focus,
#mobile-nav .mobile_nav_____ .dropdown-item:hover {
  color: #fff;
}
#mobile-nav .mobile_nav_____ .dropdown-item.active,
#mobile-nav .mobile_nav_____ .dropdown-item:active {
  color: #fff;
}
#mobile-nav .mobile_nav_____ .navbar > .container-fluid {
  align-items: flex-end;
  align-items: center;
}
#mobile-nav .mobile_nav_____ .navbar-expand-lg .navbar-nav {
  width: 90%;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
#mobile-nav .mobile_nav_____ .dropdown {
  padding-right: 10px;
}
#mobile-nav .mobile_nav_____ .dropdown::before {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  right: 0px;
  top: 14px;
  position: absolute;
}
#mobile-nav #header-btn .web-btn {
  cursor: pointer;
  padding: 3px 20px;
}
#mobile-nav .mobile_nav1_icon_____ {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 18px;
  padding: 0 20px;
}
#mobile-nav .mobile_nav1_icon_____ img {
  width: 80px;
}
#mobile-nav .mobile_nav1_icon_____ .material-symbols-outlined {
  color: #EE3935;
  font-size: 27px;
  width: 44px;
  height: 44px;
  line-height: 42px;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  margin-right: 0px;
  cursor: pointer;
}
#mobile-nav .mobile_nav1_icon_____ i {
  color: #1676c1;
  font-size: 27px;
  width: 44px;
  height: 44px;
  line-height: 42px;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  margin-right: 16px;
  cursor: pointer;
  position: absolute;
  right: 0;
  opacity: 0;
}

#Hero {
  padding: 0;
  background: #fff;
}
#Hero img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

#AboutUs {
  padding: 0;
}
#AboutUs .Image1 {
  width: 300px;
  position: absolute;
  left: -38%;
  top: 10%;
  transform: rotate(10deg);
}
#AboutUs .Image2 {
  width: 300px;
  position: absolute;
  right: -40%;
  bottom: 6%;
  transform: rotate(-10deg);
}
#AboutUs .SectionTitle {
  text-align: center;
}
#AboutUs .SectionTitle h2 {
  font-size: 16px;
  color: #308C98;
}
#AboutUs .SectionTitle h3 {
  font-weight: 700;
  font-size: 42px;
  color: #ff9693;
}
#AboutUs .AboutUs {
  text-align: center;
  position: relative;
  background: #ffeded;
  padding: 100px 70px;
  width: 60%;
  margin: 0 auto;
  min-height: 90vh;
  height: 100%;
}
#AboutUs .AboutContent {
  font-size: 19px;
}

#contactus {
  background: url("https://banquet.bizzhotel.in/wp-content/uploads/2025/06/3-2.png") no-repeat;
  background-size: cover;
  padding: 60px 0 90px;
}
#contactus .SectionTitle {
  text-align: center;
}
#contactus .SectionTitle h2 {
  color: #308C98;
}
#contactus .SectionTitle h3 {
  color: #ff9693;
}
#contactus .contact-card {
  background-color: #fff;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-radius: 12px;
  max-width: 500px;
  margin: auto;
}
#contactus .contact-card .form-control {
  border: none;
  box-shadow: none;
  border-bottom: 1px solid #308C98;
  border-radius: 0;
  transition: 300ms all ease;
}
#contactus .contact-card .form-control:focus {
  background-color: #f3fffe;
}
#contactus .contact-card .send-button-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: -115px;
}
#contactus .contact-card .send-button-wrapper .send-message-btn {
  background-color: #EE3935;
  color: #fff;
  border: none;
  width: 150px !important;
  height: 150px;
  border-radius: 50%;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
#contactus .contact-card .send-button-wrapper .send-message-btn:hover {
  transform: scale(0.9);
  background-color: #fff;
  color: #EE3935;
  box-shadow: 0 0 0 2px #EE3935;
}
#contactus .form-label {
  color: #E09F8D;
}

@media (max-width: 768px) {
  #services .row {
    flex-direction: column;
  }
  #services .panel {
    height: 33.33vh;
  }
}
#Gallery .SectionTitle {
  text-align: center;
}
#Gallery .SectionTitle h2 {
  color: #308C98;
}
#Gallery .SectionTitle h3 {
  color: #ff9693;
}
#Gallery .Marquee {
  background-color: #fff;
  width: 100vw;
  box-sizing: border-box;
  padding: 1em;
  color: #fff;
  font-weight: 200;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  align-items: center;
  overflow: hidden;
}
#Gallery .Marquee-content {
  display: -ms-flexbox;
  display: box;
  display: flex;
  animation: marquee 50s linear infinite running;
  transition: 300ms all ease;
}
#Gallery .Marquee-content:hover {
  animation-play-state: paused;
}
#Gallery .Marquee-tag {
  width: 300px;
  margin: 0 0.5em;
  padding: 0.5em;
  background: rgba(255, 255, 255, 0.1);
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -o-box-align: center;
  align-items: center;
  -o-box-pack: center;
  justify-content: center;
  transition: all 0.3s ease;
}
#Gallery .Marquee-tag:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
  cursor: pointer;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translate(-50%);
  }
}

footer {
  padding: 70px 0 0;
  position: relative;
  background-color: #ffeded;
}
footer .FooterLogo {
  width: 200px;
  margin-bottom: 48px;
}
footer .FooterItem {
  margin-bottom: 24px;
}
footer .FooterItem:hover img {
  transform: scale(1.1);
}
footer .FooterItem:hover .Footertext {
  transform: translateX(10px);
}
footer .FooterItem a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #000;
  font-size: 18px;
}
footer .FooterItem a .Footertext {
  display: block;
  transition: 300ms all ease;
}
footer .FooterItem .Logo {
  width: 50px;
}
footer .FooterItem .Logo img {
  transition: 300ms all ease;
}
footer .SectionTitle h3 {
  color: #ff9693;
}
footer .FooterBtn {
  display: flex;
  align-items: center;
  gap: 14px;
}
footer .FooterBottomMain {
  padding-bottom: 10px;
  background-color: #fff;
}
footer .FooterBottomMain .FooterBottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding: 10px 0 10px;
}
footer .FooterBottomMain .FooterBottom a {
  color: #000;
  font-size: 14px;
  font-weight: 800;
  display: inline-block;
  transform: 300ms all ease;
}
footer .FooterBottomMain .FooterBottom a:hover {
  color: #EE3935;
}
footer .FooterBottomMain .FooterBottom p {
  color: #000;
  font-size: 14px;
  margin: 0px 0 -10px;
}
footer .FooterBottomMain .FooterBottom .SocialIcons {
  display: flex;
  gap: 14px;
}
footer .FooterBottomMain .FooterBottom .SocialIcons img {
  width: 42px;
}
footer .FooterBottomMain .FooterBottom .SocialIcons a:hover {
  transition: 300ms all ease;
  transform: scale(1.04);
}

#Services {
  padding: 0;
}
#Services .hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
#Services .hero-section .background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url("https://banquet.bizzhotel.in/wp-content/uploads/2025/06/wedding.png");
  transition: background-image 0.5s ease-in-out;
  z-index: 0;
}
#Services .hero-section .panels {
  position: relative;
  display: flex;
  height: 100%;
  z-index: 1;
}
#Services .hero-section .panels .panel {
  flex: 1;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}
#Services .hero-section .panels .panel span {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
}
#Services .hero-section .panels .panel .hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  background: rgb(255, 255, 255);
  padding: 4rem 2rem;
  text-align: center;
  color: #000;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 300ms all ease;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  text-align: center;
}
#Services .hero-section .panels .panel .hover-text span {
  position: static;
  transform: none;
  display: block;
  margin-bottom: 8px;
}
#Services .hero-section .panels .panel .hover-text p {
  font-size: 19px;
  font-weight: 500;
}
#Services .hero-section .panels .panel:hover span {
  display: none;
}
#Services .hero-section .panels .panel:hover .hover-text {
  opacity: 0.85;
  transform: translate(-50%, -50%);
}
#Services .hero-section .panels .panel:hover .hover-text span {
  display: block;
}

#ServicesPhone {
  padding: 0;
  display: none;
}
#ServicesPhone .owl-theme .owl-nav {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  width: 110%;
  position: absolute;
  top: 43%;
  left: -5%;
  z-index: 2;
}
#ServicesPhone .owl-carousel .owl-nav button.owl-next {
  background: url(./assets/images/RightArrow.svg);
  background-size: contain;
  opacity: 0.6;
  transition: 300ms all ease;
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  color: transparent;
}
#ServicesPhone .owl-carousel .owl-nav button.owl-prev {
  background: url(./assets/images/LeftArrow.svg);
  background-size: contain;
  opacity: 0.6;
  height: 40px;
  width: 40px;
  background-repeat: no-repeat;
  color: transparent;
}
#ServicesPhone .owl-carousel .owl-nav button.owl-next:hover {
  opacity: 1;
}
#ServicesPhone .owl-carousel .owl-nav button.owl-prev:hover {
  opacity: 1;
}
#ServicesPhone .ServicesItem {
  position: relative;
}
#ServicesPhone .ServicesItem .panel {
  flex: 1;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}
#ServicesPhone .ServicesItem .panel img {
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
}
#ServicesPhone .ServicesItem .panel .HoverText {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 2;
  width: 100%;
  text-align: center;
  font-size: 19px;
  font-weight: 500;
}
#ServicesPhone .ServicesItem .panel .HoverText span {
  font-weight: 600;
  font-size: 27px;
  margin-bottom: 12px;
  display: block;
}

.counter-section {
  padding: 50px 0;
  background-color: #ffeded;
  text-align: center;
}
.counter-section .SectionTitle h2 {
  color: #308C98;
}
.counter-section .SectionTitle h3 {
  color: #ff9693;
}
.counter-section .counter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.counter-section .counter-container .row {
  width: 100%;
}
.counter-section .counter-container .counter-box {
  padding: 40px;
  background-color: #ffffff;
  border-radius: 100%;
  aspect-ratio: 1/1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.counter-section .counter-container .counter-box:hover {
  transform: translateY(-5px);
}
.counter-section .counter-container .counter-box h3 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #EE3935;
}
.counter-section .counter-container .counter-box p {
  color: #666666;
  margin: 0;
  text-transform: capitalize;
  font-size: 18px;
}/*# sourceMappingURL=style.css.map */