﻿body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background-color:#9e9e9e08;
}

.video-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.overlay {
  position: relative;
  height: 100%;
  width: 100%;
      background: rgb(0 0 0 / 50%);
  padding: 20px;
  box-sizing: border-box;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px; /* Fixed header height */
  padding: 0 30px;
  overflow: hidden; /* Prevent logo from stretching the header */
  
}

.logo img {
  height: 86px; /* You can change this freely */
  width: auto;
  object-fit: contain;
  display: block;
}



.main-header nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  color: #ffffff;
}

.nav-links li {
  background-color: #59002d;  /* Button color */
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

/* Style the anchor elements to match the li text color */
.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  display: block;
}

/* Maintain the same background on hover (no change) */
.nav-links li:hover {
  background-color: red;
}

/* ✅ Active button - full background in red */
.nav-links li.active {
  background-color: red; /* Red or any active color */
}


.main-header .lang-book {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icons a:nth-child(1) { color: #1877f2; }  /* Facebook */
.social-icons a:nth-child(2) { color: #e1306c; }  /* Instagram */
.social-icons a:nth-child(3) { color: #000000; }  /* X (Twitter) */
.social-icons a:nth-child(4) { color: #ff0000; }  /* YouTube */

.social-icons a:hover {
  transform: scale(1.2); /* optional effect */
}



.hero-text {
  text-align: center;
  margin-top: 180px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.6;
}

.icons span {
  margin: 0 10px;
  font-size: 16px;
}


/* Hide hamburger by default */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

/* Responsive rules */
@media (max-width: 768px) {
  .main-header nav ul {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 60px;
    right: 0px;
    padding: 3px 56px;
    border-radius: 5px;
  }

  .main-header nav ul.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .main-header {
    flex-wrap: wrap;
  }

  .social-icons {
    margin-top: 10px;
  }
  .main-header .logo {
  font-size: 11px;
  font-weight: bold;
}
}




.actions {
  margin-top: 20px;
}

.explore-btn, .view-btn {
  background: #b19364;
  color: #fff;
  border: none;
  padding: 10px 25px;
  margin: 10px;
  border-radius: 30px;
  cursor: pointer;
}

.view-btn {
  background: transparent;
  border: 1px solid #fff;
}
.explore-btn:hover {
  background: red; /* Slightly darker */
  color: #fff;
  transform: scale(1.05);
}

.view-btn:hover {
  background: #346320;
  color: #ffffff;
  transform: scale(1.05);
}
.stats {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 60px;
  font-size: 18px;
  font-weight: bold;
}






/* About section code*/
.mosque-section {
  display: flex;
  align-items: stretch; 
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  color:#59002d;
}

.left-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  width: 60%; /* Fix width to match col-sm-6 */
}

.left-images img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.left-images img:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.left-images img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}



.right-content {
  width: 50%; /* Fix width to match col-sm-6 */
}

.section-title {
  color: red;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 30px;
}

.right-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
  color:#59002d;
}

.right-content p {
  color: #000;
  font-size: 15px;
  line-height: 1.6;
  text-align:justify;
}

.vision-mission {
  display: flex;
  gap: 40px;
  margin: 20px 0;
}

.box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.box .icon {
  font-size: 32px;
  background-color: #0096e0;
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 10px;
}

.box h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.donation-box {
  display: flex;
  background: #ffc1073b;
  padding: 15px;
  border-radius: 8px;
  align-items: center;
  gap: 20px;
  margin: 25px 0;
}

.donation-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.donation-box .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.donation-box .info p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.amount {
  color: #346320;
  font-size: 18px;
  text-align: right;
  font-weight: bold;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  color: #59002d;
  font-size: 16px;
  padding-left: 20px;
  position: relative;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #59002d;
}
@media (max-width: 991px) {
  .mosque-section {
    flex-direction: column;
    padding: 30px 15px;
  }

  .left-images,
  .right-content {
    width: 100%;
  }

  .left-images {
    grid-template-columns: 1fr 1fr;
  }

  .vision-mission {
    flex-direction: column;
    gap: 20px;
  }

  .donation-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .donation-box .info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }

  .amount {
    text-align: left;
    font-size: 16px;
  }

  .features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .left-images {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
    text-align: center;
  }

  .right-content h2 {
    font-size: 24px;
    text-align: center;
  }

  .right-content p {
    font-size: 14px;
    text-align: justify;
  }
}

@media (max-width: 768px) {
  .left-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  /* Remove custom positioning for mobile view */
  .left-images img:nth-child(1),
  .left-images img:nth-child(2),
  .left-images img:nth-child(3),
  .left-images img:nth-child(4) {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .left-images img {
    max-height: 585px;
  }
}













/* Font Awesome CDN */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

.stats-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background-image: linear-gradient(rgb(34 34 34 / 62%), rgb(34 34 34 / 77%)), url('assets/img/backgroundhomeimg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


.stat-box {
  background-color: #59002d99;
  border: 1px solid #ffffff;
  padding: 40px 30px;
  text-align: center;
  width: 230px;
  color: white;
  transition: transform 0.3s ease;
}

.stat-box i {
  font-size: 32px;
  color: white;
  margin-bottom: 15px;
}

.stat-box h2 {
  font-size: 36px;
  color: red; /* orange */
  margin: 0;
}

.stat-box p {
  margin: 10px 0 0;
  font-size: 16px;
}

.stat-box:hover {
  transform: scale(1.05);
}














.room-section {
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.section-header .subtitle {
  color: #0096e0;
  font-weight: 600;
  display: inline-block;
  
}

.section-header h2 {
  font-size: 32px;
  color: #59002d;
}

.section-header .highlight {
  color: red;
}

.room-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.room-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  max-width: 360px;
  text-align: left;
  overflow: hidden;
}

.room-image {
  position: relative;
}

.room-image img {
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
}

.price-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #0096e0;
  color: #fff;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
}

.room-content {
  padding: 20px;
}

.room-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #346320;
}

.stars {
  color: red;
  font-size: 16px;
  margin-bottom: 10px;
}

.room-icons {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.room-icons i {
  margin-right: 5px;
  color: #ffa500;
}

.room-content p {
  font-size: 14px;
  color: #000;
  margin-bottom: 20px;
}

.room-buttons {
  display: flex;
  gap: 10px;
}

.room-buttons .btn-detail,
.room-buttons .btn-book {
  flex: 1;
  padding: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.btn-detail {
  background: #59002d;
  color: #fff;
}

.btn-book {
  background: #346320;
  color: #fff;
}

.room-image video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 0; /* keep consistent with image */
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  font-size: 30px;
  font-weight: bold;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  opacity: 0;
  transition: 0.3s ease;
  cursor: pointer;
  z-index: 2;
}

.room-image:hover .video-overlay {
  opacity: 1;
}

/* Modal styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
}

.video-modal video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.video-modal-close {
  position: absolute;
  top: -30px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
  font-weight: bold;
}

























.product-section {
  text-align: center;
  padding: 60px 20px;
  background: white;
  position: relative;
  overflow: hidden;
}

.subtitle {
  color: #0096e0;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0px;
  text-align: center;
}

.title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #59002d;
  text-align: center;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 100%;
}

.carousel-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  min-width: 250px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.product-card h4 {
  color: red;
  margin-top: 10px;
  font-weight: bold;
}

.product-card .price {
  color: #000000;
  font-size: 18px;
  font-weight: bold;
}

.carousel-btn {
  background: #0096e0;
  border: none;
  font-size: 28px;
  cursor: pointer;
  padding: 10px 20px;
  z-index: 10;
  transition: 0.3s;
}

.carousel-btn:hover {
  color: green;
}

@media (max-width: 1024px) {
  .carousel-track {
    gap: 20px;
    padding: 20px 10px;
  }

  .product-card {
    min-width: 220px;
    padding: 15px;
  }

  .product-card h4 {
    font-size: 16px;
  }

  .product-card .price {
    font-size: 16px;
  }

  .carousel-btn {
    font-size: 24px;
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 26px;
  }

  .subtitle {
    font-size: 14px;
  }

  .carousel-track {
    gap: 15px;
  }

  .product-card {
    min-width: 200px;
    padding: 12px;
  }

  .product-card img {
    max-height: 150px;
  }

  .carousel-btn {
    font-size: 22px;
    padding: 6px 14px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 22px;
  }

  .subtitle {
    font-size: 13px;
  }

  .product-card {
    min-width: 180px;
    padding: 10px;
  }

  .product-card img {
    max-height: 130px;
  }

  .carousel-btn {
    font-size: 20px;
    padding: 6px 10px;
  }
}











.custom-gallery-wrap {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.custom-gallery-heading {
  font-size: 2em;
  margin-bottom: 0;
  color: red;
  font-weight: bold;
}

.custom-gallery-desc {
  font-size: 1.1em;
  color: #59002d;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.custom-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.custom-gallery-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.custom-gallery-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-gallery-box:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s ease;
  cursor: pointer;
}

.custom-gallery-box:hover .custom-overlay {
  opacity: 1;
}

/* Lightbox Styles */
.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.custom-lightbox-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.custom-lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .custom-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .custom-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Prev/Next Buttons */
.custom-lightbox-prev,
.custom-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  transition: background 0.3s ease;
}

.custom-lightbox-prev:hover,
.custom-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.custom-lightbox-prev { left: 20px; }
.custom-lightbox-next { right: 20px; }

.view-more-wrapper {
  text-align: center;
  margin: 30px 0 10px;
}

.btn-view-more {
  display: inline-block;
  padding: 12px 28px;
  background-color: #59002d; /* your brand green */
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgb(45 106 79 / 0.3);
  transition: background-color 0.3s ease;
}

.btn-view-more:hover {
  background-color: red;
}










.main-footer {
  background-color: #222;
  color: #eee;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-box {
  flex: 1 1 23%; /* Like col-sm-3 */
  min-width: 220px;
}

.footer-box h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #f8c55b;
}

.footer-box p, .footer-box li, .footer-box a {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #ccc;
  color:#ffffff;
}

.footer-bottom a {
  color: red;
  text-decoration: none;
  margin: 0 8px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-box {
    flex: 1 1 100%;
  }
}









/* Banner Video Styling */
    .banner-video-header {
      position: relative;
      height: 400px; /* Banner height */
      overflow: hidden;
    }
    .banner-video-header video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .banner-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4); /* dark overlay for text */
      display: flex;
      flex-direction: column;
    }
    /* Position header over video */
    .banner-overlay .main-header {
      padding: 10px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 2;
    }
    /* Text in center of banner */
    .banner-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
    }
    .banner-text h1 {
      font-size: 3.2rem;
      margin-bottom: 10px;
    }
    .banner-text p {
      font-size: 1.1rem;
      max-width: 700px;
    }
    
    
    
    
    
    
    
    
    
    
    .why-choose-us {
  background: #f8f9fa;
  padding: 60px 0;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .section-title {
  color: red;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 2rem;
  margin-top: 10px;
}

.section-header p {
  max-width: 700px;
  margin: 10px auto;
  color: #555;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.feature-card {
  background: #ff980070;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card i {
  font-size: 40px;
  color: #4CAF50;
  margin-bottom: 15px;
}

.feature-card h4 {
  margin-bottom: 10px;
  font-weight: bold;
      color: red;
}

.feature-card p {
  color: #000000;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}







/* Contact Section Styles */
.contact-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.contact-section .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-info, .contact-form {
  flex: 1 1 400px;
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgb(0 0 0 / 0.05);
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 20px;
  font-weight: 700;
  color: #2d6a4f;
}

.contact-info p {
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info ul li {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.4;
}

.contact-info ul li i {
  color: #2d6a4f;
  margin-right: 10px;
  min-width: 20px;
  text-align: center;
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #2d6a4f;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
  border-color: #2d6a4f;
  outline: none;
}

/* Button */
.btn-submit {
  background-color: #2d6a4f;
  color: #fff;
  font-weight: 700;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #1b4332;
}
.map-container {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 250px;
  width: 100%;
}
.map-container iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section .container {
    flex-direction: column;
  }
}



.whatsapp-float,
.call-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366; /* WhatsApp green */
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  z-index: 1000;
  transition: width 0.3s ease;
  overflow: visible;
}

/* Call button specific position & color */
.call-float {
  bottom: 90px; /* above WhatsApp */
  background-color: #007bff; /* Blue for call */
}

.whatsapp-float:hover,
.call-float:hover {
  width: 200px;
  border-radius: 30px;
  padding-left: 20px;
}

.whatsapp-tooltip,
.call-tooltip {
  display: none;
  white-space: nowrap;
  margin-left: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

.whatsapp-float:hover .whatsapp-tooltip,
.call-float:hover .call-tooltip {
  display: inline;
}