@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Rye&display=swap');

* {
  font-family: "Rye", serif;
}


/* ====== Page Loader ====== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.outer-dot {
  width: 60px;
  height: 60px;
  background: #F4C430;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: outerZoom 1.4s ease-in-out infinite;
}

.inner-dot {
  width: 25px;
  height: 25px;
  background: #111111;
  border-radius: 50%;
  animation: innerZoom 1.4s ease-in-out infinite;
}

/* ====== Animations ====== */
@keyframes outerZoom {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.8;
  }
}

@keyframes innerZoom {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.7);
    opacity: 0.8;
  }
}


/* ====== Top Header ====== */

.top-header {
  background-color: #F4C430;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
}

.top-header i { color: #000; margin-right: 5px; }
.social-link { color: #fff; margin-left: 12px; transition: 0.3s; }
.social-link:hover { color: #000; transform: scale(1.1); }

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .top-header .row > div:first-child {
    text-align: center !important;
  }

  .top-header .row > div:first-child span {
    display: block;
    margin-bottom: 4px;
  }

  .top-header .row > div:last-child {
    margin-top: 8px !important;
  }
}


/* ===== Main Header ===== */
.main-header {
  background: #141414;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: relative;
  z-index: 100;
}

.hotel-logo {
    height: 68px;
    width: 99px;
}

/* ===== Desktop Menu ===== */
.menu li {
  position: relative;
  margin: 0 15px;
}
.menu li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}
.menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #F4C430;
  transition: width 0.3s ease;
}
.menu li a:hover::after,
.menu li a.active::after {
  width: 100%;
}
.menu li a:hover,
.menu li a.active {
  color: #F4C430;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #040404;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
  top: 120%;
  left: 0;
  border-radius: 6px;
  min-width: 206px;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  color: #ffffff;
  font-weight: 500;
}
.dropdown-menu li a:hover {
 
  color: #F4C430;
}

.book-btn {
  background: #F4C430;
  color: #000;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.book-btn:hover {
  background: #ffffff;
  color: #F4C430;
}



body.menu-open {
  overflow: hidden;
  height: 100vh;
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    overflow: hidden;
  }
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #090909;
  padding: 20px;
  box-shadow: 3px 0 10px rgba(0,0,0,0.2);
  transition: left 0.4s ease;
  z-index: 9999;
  overflow-y: auto;
}
.mobile-menu.active {
  left: 0;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu .close-btn {
  text-align: right;
  font-size: 25px;
  cursor: pointer;
  color: #F4C430;
}
.mobile-menu ul li {
  margin-bottom: 15px;
}
.mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  display: block;
}
.mobile-menu a:hover {
  color: 80ce14;
}

.mobile-menu .dropdown-sub {
  display: none;
  padding-left: 20px;
}
.mobile-menu .dropdown-sub.show {
  display: block;
}
.mobile-menu .dropdown > a i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.mobile-menu .dropdown.open > a i {
  transform: rotate(180deg);
}

.mobile-toggle {
  font-size: 25px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10000;
  position: relative;
}



/* ===== Hero Carousel Section ===== */
#hero-carousel .carousel-item {
  position: relative;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
}

#hero-carousel img {
  object-fit: cover;
  height: 100%;
}

.carousel-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: rgba(0, 0, 0, 0.45);*/
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  padding: 0 15px;
}

.carousel-caption .tagline {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.carousel-caption .tagline span {
    font-weight: 600;
    color: #e6b443;
    padding-bottom: 5px;
}

.carousel-caption h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.carousel-caption .desc {
  font-size: 17px;
  max-width: 600px;
  margin-bottom: 25px;
}

.btn-book {
  background-color: #ffb400;
  color: #000;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

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

.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background-color: #fff;
  border: 2px solid #ffb400;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.carousel-indicators .active {
  background-color: #ffb400;
  transform: scale(1.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* ===== HERO SECTION ===== */
.bg-image-hero {
  background: url("../images/slider-img1.jpg") no-repeat center center/cover;
  position: relative;
  width: 100%;
  height: 90vh;
}

.bg-image-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.hero-title {
  font-family: "Rye", serif;
  font-size: 47px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.hero-title span {
  font-weight: 600;
  color: #e6b443;
  padding-bottom: 5px;
}



.hero-subtitle {
  font-size: 29px;
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: 1px;
  margin-top: -10px;
}

.hero-description {
  max-width: 600px;
  margin: 0 auto 25px;
  font-size: 19px;
  opacity: 0.9;
}

.hero-btn {
  background: #F4C430;
  color: #000;
  padding: 12px 32px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
}
.hero-btn:hover {
  background: #fff;
  color: #F4C430;
}



/* ABOUT SECTION  */
.about-section,
.about-container,
.about-images
{
  overflow-x: hidden;
}

.about-container {
  flex-wrap: wrap;
  gap: 30px;
}
.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #063953, #167A9A, #51AEC8);
}

.about-container {
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  
}

.about-images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s;
}

.about-images img:hover {
  transform: scale(1.05);
}

.img-large {
  height: 320px !important;
}


.about-subtitle {
  color: #F4C430;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #fff;
}

.about-title span {
  color: #e6b443;
}

.about-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
  padding-bottom: 5px;
  color: #fff;
}

.about-desc {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-stats {
  display: flex;
  gap: 50px;
  margin: 20px 0;
}

.stat-box h1 {
  color: #F4C430;
  
}

.stat-box span {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
}

.brd-warning {
    border-color: #F4C430 !important;
}

/* SPECIAL DISH SECTION  */

.special-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #044A4A, #0A6C66, #129B8B);
  text-align: center;
}

.section-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.section-title span {
  color: #F4C430;
}

.section-sub {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.special-item {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.special-item:hover {
  transform: translateY(-7px);
}

.special-img {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.special-img img {
  width: 100%;
  height: 290px;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.special-item:hover img {
  transform: scale(1.1);
}

.special-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.special-item p {
  font-size: 15px;
  color: #666;
}

/* WHY Choose us section  */
.why-choose {
   background: linear-gradient(135deg, #063953, #167A9A, #51AEC8);
}

.video-wrapper {
    width: 100%;
    max-width: 580px; 
    height: 520px;   
    overflow: hidden;
    border-radius: 15px;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.choose-title {
  font-size: 35px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    
}

.choose-title span {
  color: #F4C430;
}

.choose-subtitle {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    padding-bottom: 5px;
}

.choose-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.choose-points {
  list-style: none;
  padding-left: 0;
}

.choose-points li {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.choose-points li i {
  color: #F4C430;
  font-size: 20px;
  margin-right: 10px;
}

/* banner section  */

.banner-section {
    position: relative;
    width: 100%;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
}

.banner-subtitle {
    font-size: 18px;
    opacity: .9;
}



/* Services section */

.services-section {
   background: linear-gradient(135deg, #044A4A, #0A6C66, #129B8B);
  text-align: center;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  transition: 0.4s;
  height: 260px;
  border: 1px solid #eee;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon i {
  font-size: 40px;
  color: #ffffff;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
}

.service-text {
  color: #666;
  font-size: 15px;
}
.icon-circle {
  width: 80px;
  height: 80px;
  background: #F4C430;
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 50%;
  transition: 0.3s ease;
}

.service-box:hover .icon-circle {
  background: #F4C430;
  transform: scale(1.1);
}

/* gallery section  */

.gallery-section {
  background: linear-gradient(135deg, #063953, #167A9A, #51AEC8);
}

.gallery-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}

.gallery-subtitle {
  font-size: 16px;
  color: #555;
}

.gallery-img-box {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}
.video-box {
    width: 100%;
    max-width: 580px; 
    height: 260px;   
    overflow: hidden;
    border-radius: 15px;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.gallery-img:hover {
  transform: scale(1.08);
}

/* RESERVATION SECTION  */

#reservation {
  overflow: hidden;
}

#reservation img {
  height: 524px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #F4C430;
  color: #424638;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: 0.3s;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

.play-btn:hover {
  background: #f5ee7a;
  color: #000;
}
#reservation .bg-dark {
  background-color: #0b0d17 !important;
}

#reservation h2 {
  font-size: 2rem;
}

#reservation .form-control,
#reservation .form-select,
#reservation textarea {
  background-color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
  padding: 10px 15px;
}

#reservation .form-control:focus,
#reservation .form-select:focus,
#reservation textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #269d27;
}

#reservation .btn-warning {
  background-color: #269d27;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  transition: 0.3s;
}
.reservation-content h6{
  color: #F4C430 !important;
}

#reservation .btn-warning:hover {
  background-color: #F4C430;
  color: #000;
}

.modal-content {
  border-radius: 15px;
  overflow: hidden;
}

.modal-body video {
  border-radius: 10px;
  height: 620px;
}

/* Testimonial section  */

#testimonials {
  background: linear-gradient(135deg, #044A4A, #0A6C66, #129B8B);
}

.testimonial-box {
  background: linear-gradient(135deg, #044A4A, #0A6C66, #129B8B);
  border-radius: 15px;
}
.testimonial-box img{
  height: 70px;
  width: 70px;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #fff;
  font-style: italic;
}

.rating-stars i {
    color: #f1c40f;  
    font-size: 18px;
    margin-right: 3px;
}

.carousel-control-next, .carousel-control-prev {
    width: 2% !important;
}

/* Blog Section */
#blog{
    background: linear-gradient(135deg, #063953, #167A9A, #51AEC8);
}
.blog-card {
  background: #fff;
  border-radius: 15px;
  transition: 0.3s ease;
  height: 437px;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-img-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.1);
}

.blog-date {
  font-size: 0.9rem;
  font-weight: 600;
  color: #F4C430;
}

.read-more {
  color: #F4C430;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.read-more:hover {
  color: #F4C430;
}

/* Footer Section */
.footer {
  background: #141414;
  color: #ccc;
}
.footer-logo img{
    height: 98px;
    width: 125px;

}
.footer .footer-title {
  color: #F4C430;
  font-weight: 600;
}
.footer-title {
  position: relative;
  padding-bottom: 6px;
  display: inline-block;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px; 
  height: 3px;       
  background: #F4C430;   
  border-radius: 2px;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #bbb;
}

.footer-social a {
  display: inline-block;
  margin-right: 8px;
  font-size: 1.2rem;
  color: #fff;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #F4C430;
}

.footer-links,
.footer-opening,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li a {
  display: block;
  color: #ccc;
  text-decoration: none;
  padding: 4px 0;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #F4C430;
}

.footer-opening li {
  color: #ccc;
  padding: 4px 0;
  font-size: 14px;
}

.footer-opening span {
  float: right;
  color: #fff;
}
.footer-opening i {
  margin-right: 8px;
  color: #F4C430;
}
.footer-contact li {
  padding: 6px 0;
  color: #ccc;
  font-size: 15px;
}

.footer-contact i {
  margin-right: 8px;
  color: #F4C430;
}

.footer-bottom {
  border-top: 1px solid #333;
  color: #888;
  font-size: 0.9rem;
}



/* Breadcrumb section  */

.inner-banner {
  background: url('../images/slider-img2.jpg') center/cover no-repeat;
  padding: 80px 0;
  position: relative;
}

.inner-banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
}

.inner-banner .container {
  position: relative;
  z-index: 2;
}

.inner-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.inner-breadcrumb {
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 500;
}
.inner-breadcrumb a{
  color: #F4C430 !important;
  text-decoration: none !important;
}


/* Contact Section */
.contact-section{
    background: linear-gradient(135deg, #063953, #167A9A, #51AEC8);
}
.contact-section h2 {
  font-size: 32px;
  font-weight: 700;
}

.contact-info-box p {
  margin-bottom: 10px;
  font-size: 15px;
}

.contact-info-box i {
  color: #F4C430;
  margin-right: 8px;
}

.social-links a {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #F4C430;
  transition: 0.3s;
}

.social-links a:hover {
  color: #F4C430;
}

.contact-form input,
.contact-form textarea {
  border-radius: 8px;
}

.contact-form button {
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
}

.map iframe {
  width: 100%;
  border-radius: 10px;
}


/* booking section  */

.booking-section {
  background: linear-gradient(135deg, #063953, #167A9A, #51AEC8);
}

.section-desc {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.booking-points {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.booking-points li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
}

.booking-points i {
  color: #28a745;
  margin-right: 8px;
  font-size: 18px;
}

.booking-form {
  background: #fff;
  border-radius: 12px;
}




/* Menus Section */
#menus { background: linear-gradient(135deg, #063953, #167A9A, #51AEC8); }

.scanner-wrap {
  height: 100%;
  width: 524px;
  min-height: 320px;
  background: #000;
  position: relative;
}

.scanner-img {
  height: 460px;
  width: 524px;
  display: block;
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(13,110,253,0) 0%, rgba(253, 217, 13, 0.9) 50%, rgba(13,110,253,0) 100%);
  top: -6%;
  transform: translateY(0);
  animation: scanMove 3s linear infinite;
  mix-blend-mode: screen;
}

.scanner-caption {
  background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0));
  color: #fff;
  width: 100%;
}

.category-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: .5rem;
  position: relative;
  padding-bottom: 6px;
}

.category-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #e7ba43;
  border-radius: 2px;
  margin-top: 6px;
}

.menu-list li .text-muted {
  font-size: .85rem;
}

@media (max-width: 991px) {
  .scanner-wrap { min-height: 260px; }
  .scanner-caption { text-align: center; }
}

@keyframes scanMove {
  0% { top: -10%; opacity: 0; }
  10% { opacity: 1; }
  50% { top: 50%; opacity: 1; }
  90% { opacity: 1; }
  100% { top: 110%; opacity: 0; }
}


/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #ffb400;
  color: #fff;
  border: none;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 180, 0, 0.7);
  transition: all 0.3s ease-in-out;
  animation: floatUp 2.5s infinite ease-in-out;
}

.scroll-top:hover {
  transform: scale(1.15);
  background: #ffffff;
  color: #ffb400;
  box-shadow: 0 0 25px rgba(255, 180, 0, 1);
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 90px; 
  right: 25px;
  background-color: #37c572 !important;
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.8);
  transition: all 0.3s ease;
  animation: pulseCalls 2s infinite;
}

.whatsapp-float:hover {
  background-color: #fff;
  color: #28a745;
  box-shadow: 0 0 20px rgba(40, 167, 69, 1), 0 6px 18px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

@keyframes pulseCalls {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}



/* Floating Call Button */
.call-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background-color: #007bff !important;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(58, 68, 184, 0.8), 0 4px 15px rgba(45, 62, 190, 0.4);
  animation: pulseCall 2s infinite;
  transition: all 0.3s ease;
}

.call-float:hover {
  background-color: #fff;
  color: #2a28a7;
  box-shadow: 0 0 20px rgb(40, 49, 167), 0 6px 18px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

@keyframes pulseCall {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 82, 202, 0.5);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}
