body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
}
.main-header {
  background: #fff;
  z-index: 1000;
  width: 100%;
  top: 0;
  position: fixed;
  transition: all 0.2s ease;
}
.navbar-brand .logo-img {
  height: 55px;
  width: 135px;
  /* object-fit: contain; */
  transition: transform 0.3s ease;
}

.navbar-brand .logo-img:hover {
  transform: scale(1.05);
}


.side-logo{
  height: 80px;
  width: 140px;
}
.navbar-brand {
  font-size: 1.4rem;
}
.navbar-nav .nav-link {
  color: #333;
  font-weight: 600;
  margin-right: 12px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #2b6100;
}
.side-menu {
  position: fixed;
  top: 0;
  left: -320px; 
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 20px rgba(0,0,0,0.08);
  padding: 20px;
  z-index: 1200;
  transition: left 0.35s ease;
  overflow-y: auto;
}
.side-menu.open {
  left: 0;
}
.side-menu-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.side-link {
  display: block;
  padding: 10px 4px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease, background .2s ease;
}
.side-link:hover,
.side-link.active {
  color: #2b6100;
}

.submenu {
  display: none;
  padding-left: 6px;
  margin-top: 6px;
}
.submenu.show {
  display: block;
}
.dropdown-item:hover {
  color: #2b6100 !important;
}
.close-menu{
    color: rgb(255, 255, 255) !important;
    font-size: 23px !important;
    border-color: rgb(249, 7, 7) !important;
    background-color: rgb(248, 18, 18);
    height: 44px !important;
    width: 44px !important;
}
.btn-outline-primary{
    border:1px solid #2b6100 !important;
    color: #2b6100 !important;
}
.btn-outline-primary:hover{
    background-color: #2b6100 !important;
    color: #fff !important;
}
.btn-primary{
    background-color: #2b6100 !important;
    border-color: #2b6100 !important;
     background: #9ccb32;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}
.btn-primary:hover{
     background-color: #fcad1c !important;
     border-color: #fcad1c !important;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1150;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* =====================================
       HERO BANNER SECTION
===================================== */
.land-hero-section {
  position: relative;
  padding: 150px 0;
  height: 695px;
  background: url('../images/plot.jpg') center/cover no-repeat;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 40, 20, 0.65); */
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 120px;
  margin-bottom: 20px;
}

.hero-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtext {
  font-size: 25px;
  margin: 20px 0 21px;
}

.hero-desc {
  font-size: 17px;
  max-width: 450px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e8e8e8;
}

.hero-bottom-info .info-item {
  font-size: 16px;
  display: flex;
  align-items: center;
}
.hero-bottom-info i {
  background: #9ccb32;
  color: #0c3a1e;
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
}

.why-box {
  background: #9ccb32;
  padding: 35px;
  border-radius: 30px;
  width: 50%;
  margin: auto;
  margin-top: 40px;
  position: relative;
  z-index: 2;
  color: #0d2c10;
}

.why-title {
  background: #0c3a1e;
  color: #fff;
  padding: 10px 25px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 25px;
  font-size: 20px;
}

.why-list {
  list-style: none;
  padding: 0;
}
.why-list li {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.why-list i {
  font-size: 16px;
  margin-right: 10px;
  background: #0c3a1e;
  color: #fff;
  padding: 6px;
  border-radius: 50%;
}


/* ===== FLOATING HIGHLIGHTS OVER HERO ===== */
.highlights-floating {
  position: relative;
  margin-top: -70px; 
  z-index: 30;
}

.highlight-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 10px 30px rgba(0,0,0,0.25);
}

.highlight-card i {
  font-size: 38px;
  color: #7fb821;
  margin-bottom: 10px;
}

.highlight-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0c3a1e;
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 15px;
  color: #444;
}


/* ABOUT SECTION */
.about-section {
  background: #fff;
}

.about-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #7fb821;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  color: #0c3a1e;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}
.about-img-wrapper {
  position: relative;
}

.about-img {
  border-radius: 16px;
  width: 100%;
}

.about-badge {
  position: absolute;
  bottom: -15px;
  left: 15px;
  background: #90b821;
  color: #fff;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.25);
}

/* ===== Section Title Stylish Design ===== */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.section-title .subtitle::before,
.section-title .subtitle::after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #90b821; 
  margin: 0 10px;
}

.section-title .subtitle span {
  font-weight: 600;
  color: #90b821;
  font-size: 23px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #101828;
  margin: 0;
}


/* project section  */

.projects-section {
  background: #f7f7f7;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.project-card .project-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-content {
  padding: 20px;
}

.project-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}

.project-content .location {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.project-content ul {
  padding-left: 18px;
}

.project-content ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

/* Why choose us section  */
.why-choose-modern {
  background: #ffffff;
  overflow-x: hidden; 
  padding: 60px 0;
}

.whychoose-box {
  background: #f9f9f9;
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid #90b821;
  position: relative;
  transition: 0.3s ease;
}

.whychoose-box:hover {
  background: #fff;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.whychoose-box .num {
  font-size: 22px;
  width: 40px;
  height: 40px;
  background: #90b821;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  margin-bottom: 8px;
}

.whychoose-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.whychoose-box p {
  color: #666;
  font-size: 14px;
  margin-bottom: 0;
}

.why-center-video video {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.10);
  display: block;
  object-fit: cover;
}

.why-choose-modern .row {
  row-gap: 30px;
}

.left {
  text-align: right;
}

.right {
  text-align: left;
}


/* banner section  */

.cta-banner {
  position: relative;
  background-image: url('../images/banner.jpg'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 20px;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;

}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.cta-content {
  position: relative;
  z-index: 5;
  color: #fff;
  max-width: 700px;
  margin: auto;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  opacity: .9;
  margin-bottom: 25px;
}

.cta-btn {
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
}


/* amentieis section  */

.amenities-section {
  padding: 70px 0;
  background: #f8f9fa;
}

.amenity-box {
  background: #fff;
  padding: 25px 15px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.amenity-box img {
  width: 185px;
  height: 120px;
  margin-bottom: 15px;
}

.amenity-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.amenity-box p {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}

.amenity-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}


/* gallery section  */

.gallery-section {
  background: #f7faff;
}

.section-title h2 {
  font-size: 34px;
  color: #166ba1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 240px;
}

.gallery-item.tall {
  height: 380px;
}
.gallery-item.hig {
  height: 280px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
  opacity: 0.9;
}



/* layout section  */

.layout-map {
  padding: 80px 0;
  background: #f8f9fb;
}

.layout-map-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.layout-map-left {
  flex: 1 1 45%;
}

.layout-map-left img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.layout-map-right {
  flex: 1 1 50%;
}

.layout-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.layout-title span {
  color: #2b8a3e;
}

.layout-desc {
  color: #444;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.layout-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.layout-features li {
  margin-bottom: 10px;
  font-size: 15px;
}

.layout-btns .btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 15px;
  margin-right: 10px;
  font-weight: 600;
  text-decoration: none;
}

.btn.download {
  background: #2b8a3e;
  color: #fff;
}

.btn.view {
  border: 2px solid #2b8a3e;
  color: #2b8a3e;
}



/* Location Advantage section  */

.location-timeline {
  background: linear-gradient(rgb(166 154 154 / 50%), rgb(92 82 82 / 50%)), url(../images/banner3.jpeg) center / cover no-repeat;
  background-attachment: fixed;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: auto;
  padding: 20px 0;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: #2b8a3e;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 40px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-number {
  width: 55px;
  height: 55px;
  background: #2b8a3e;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  margin-bottom: 15px;
}

.timeline-content {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  width: 75%;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.timeline-content h4 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #2b8a3e;
}

.timeline-content p {
  margin: 0;
  font-size: 14px;
  color: #555;
}



/* Achievement section  */


.achievements-section {
 background: linear-gradient(rgba(193, 190, 190, 0.5), rgba(190, 189, 189, 0.5)), url(../images/banner4.jpeg) center / cover no-repeat;
   background-attachment: fixed; 
  padding: 50px 0;
}

.counter-box {
  border-radius: 20px;
  padding: 25px 20px;
  transition: 0.3s;
}



.counter-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.counter-box h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 5px;
}

.counter-box p {
  font-size: 17px;
  opacity: 0.9;
}

/* FAQ Section  */
.faq-section {
  background: #f7f9fc;
}

.accordion-button {
  font-size: 18px;
  font-weight: 600;
}

.accordion-body {
  font-size: 15px;
  color: #444;
}
.faq-image-box {
  text-align: center;
}

.faq-image {
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  height: 336px;
  width: 517px;
}

/* blog section  */

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-img img {
  width: 100%;
  height: 230px;
}

.blog-meta {
  font-size: 14px;
  color: #777;
}

.read-btn {
  font-weight: 600;
  text-decoration: none;
  color: #007bff;
}

.read-btn:hover {
  text-decoration: underline;
}


/* Footer section css  */

.site-footer {
  background: url(../images/footer-bg.jpg) center / cover no-repeat;
  color: #000000;
  font-family: Arial, sans-serif;
}

.footer-logo-img {
  width: 160px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #2b8a3e;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}
.footer-content h5{
  color: #000000 !important;
}
.footer-content p{
  color: #000000;
}
.footer-links li,
.footer-contact li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #070707;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 8px;
  color: #000000;
}

.footer-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #013e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #050505;
  
}

.footer-bottom {
  border-top: 1px solid #222;
}



/* Breadcrumb Section  */

.breadcrumb-section {
  position: relative;
  background: url('../images/breadcrumb-banner.jpg') center/cover no-repeat;
  padding: 110px 0;
  color: #fff;
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.breadcrumb-item+.breadcrumb-item::before {
  color: #fff !important;
}
.breadcrumb-section .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: #ddd;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb .active {
  color: #fff;
}



/* Project Details section  */

.project-details h2 {
  color: #222;
}

.feature-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

.cta-box {
  background: linear-gradient(rgba(16, 16, 16, 0.5), rgba(65, 53, 53, 0.5)), url(../images/details-banner.jpg) center / cover no-repeat;
  /* background-attachment: fixed; */
  padding: 60px 0;
  border-radius: 12px;
}

.project-details img {
  border-radius: 12px;
}

/* Layout Plan Section  */

.layout-plan-section .layout-card {
  transition: all 0.3s ease;
  background: #fff;
  border: 1px solid #eee;
}

.layout-plan-section .layout-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.layout-plan-section img {
  border-radius: 10px;
}

/* Contact Section  */

.contact-section {
  background: #fff;
}


.contact-info-box {
  background: #f7f7f7;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-info-box h4 {
  font-weight: 700;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}

.info-item i {
  font-size: 24px;
  color: #7fb821;
}

.contact-form-box {
  background: #f7f7f7;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.map-container iframe {
  width: 100%;
  border-radius: 12px;
}


/* Enquiry section  */

.enquiry-section {
  background: #f6f9f3;
}

.enquiry-subtitle {
  color: #7fb821;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.enquiry-title {
  font-size: 32px;
  font-weight: 700;
  color: #0c3a1e;
  margin: 10px 0 15px;
}

.enquiry-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.enquiry-points {
  list-style: none;
  padding-left: 0;
}

.enquiry-points li {
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.enquiry-points i {
  color: #7fb821;
  font-size: 18px;
}

.enquiry-form-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
}

.enquiry-form-box h4 {
  font-weight: 700;
  margin-bottom: 20px;
}

.enquiry-form-box .form-control {
  height: 50px;
  border-radius: 8px;
}

.enquiry-form-box textarea {
  height: auto !important;
}

.btn-success {
  background: #7fb821;
  border: none;
  font-weight: 600;
}

/* Loader  */

/* Loader Wrapper */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}


/* Loader Wrapper */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.dots-loader {
  display: flex;
  gap: 10px;
}

.dots-loader span {
  width: 14px;
  height: 14px;
  background: #00a651; 
  border-radius: 50%;
  display: inline-block;
  animation: bounce 0.6s infinite alternate;
}

.dots-loader span:nth-child(2) {
  animation-delay: 0.2s;
}

.dots-loader span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes bounce {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-12px);
    opacity: 0.5;
  }
}

body.loaded #loader-wrapper {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}



/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #064202;
  color: #ffffff;
  font-weight: 800;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(143, 122, 2, 0.7);
  animation: floatUp 3s ease-in-out infinite, glowPulse 2.5s ease-in-out infinite;
}

.scroll-top:hover {
  background-color: #fff;
  color: #269d27;
  box-shadow: 0 0 25px #28b2d4;
  transform: scale(1.1);
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* 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 !important;
  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: #0b8be6 !important;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  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 !important;
  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);
  }
}