/* General Styles */
:root {
  --primary: #735F32;
  --secondary: #C8AE7D;
  --light: #F6F1E9;
  --dark: #282A3A;
  --white: #FFFFFF;
  --gray: #808080;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: var(--dark);
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  position: relative;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: var(--primary);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 12px 30px;
  border-radius: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #7d6b43;
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(115, 95, 50, 0.2);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Top Bar */
.top-bar {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.9rem;
}

.top-bar a {
  color: var(--white);
  margin-right: 20px;
}

.top-bar a i {
  margin-right: 5px;
}

.top-bar .social-icons a {
  margin-left: 10px;
  margin-right: 0;
}

/* Header */
.navbar {
  padding: 20px 0;
  transition: var(--transition);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.navbar-nav .nav-item {
  margin-left: 5px;
}

.navbar-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000; /* Black for non-active nav items */
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #8B4513; /* Brown on hover */
}

.navbar-nav .nav-link.active {
  color: #8B4513; /* Brown for active nav item */
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 2px;
  background: #8B4513; /* Brown underline for active link */
  bottom: -2px;
  left: 25%;
}

.navbar-scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

/* Hero Section Carousel */
.hero {
  position: relative;
  height: 75vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 75vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.carousel-item {
  transition: opacity 0.5s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  z-index: 3;
  background: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 20px;
}

/* About Section */
.about-img {
  position: relative;
}

.about-img::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 5px solid var(--primary);
  top: -20px;
  left: -20px;
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 30px;
}

/* Services Section */
.service-card {
  padding: 0;
  background: var(--white);
  border-radius: 8px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  position: relative;
}

.service-card h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.service-card p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.service-features li::before {
  content: "â€¢";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.view-more-btn {
  font-size: 10px;
  padding: 5px 15px;
  border-radius: 8px;
}

.modal-service-image img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.modal-content {
  border-radius: 8px;
}

.modal-body {
  padding: 0;
  background-color: #1a1a1a;
}

.modal-service-content {
  padding: 20px;
}

/* Portfolio Section */
.portfolio-item {
  transition: var(--transition);
  margin-bottom: 30px;
}

.portfolio-filters {
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-btn {
  font-weight: 500;
  padding: 10px 20px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  margin: 5px;
}

.filter-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.portfoliosize {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0px;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfoliosize {
  opacity: 1;
}

.portfolio-title {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.portfolio-description {
  color: var(--white);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 10px;
}

/* Project Cards */
.project-card {
  display: flex;
  flex-direction: column;
  height: 450px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.project-img-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-img {
  transform: scale(1.1);
}

.project-title {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-subtitle {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 10px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-description {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Gallery Section */
.gallery-card {
  height: 300px;
  overflow: hidden;
  position: relative;
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(115, 95, 50, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-description {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Portfolio Cards */
.portfolio-card {
  height: 300px;
  overflow: hidden;
  position: relative;
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.portfolio-img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(115, 95, 50, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portfolio-description {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Client Logos */
.client-logo {
  width: 100px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12%;
}

/* Testimonials */
.testimonial {
  text-align: center;
  padding: 40px;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial .quote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 30px;
}

.client-info h5 {
  margin-bottom: 5px;
}

.client-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: auto;
}

.team-social {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(115, 95, 50, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.team-member:hover .team-social {
  opacity: 1;
}

.team-social a {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 10px;
}

.team-info {
  padding: 20px;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-info h4 {
  margin-bottom: 5px;
}

.team-info p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Contact Section */
.contact-info {
  margin-bottom: 30px;
}

.contact-info i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info h4 {
  margin-bottom: 15px;
}

.contact-form .form-control {
  border-radius: 0;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.contact-form textarea.form-control {
  height: 150px;
}

/* Footer */
.footer {
  background-color: var(--dark);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-about img {
  margin-bottom: 30px;
  max-width: 200px;
}

.footer-about p {
  margin-bottom: 30px;
}

.footer-title {
  color: var(--white);
  margin-bottom: 30px;
  font-size: 1.4rem;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
}

.footer-contact i {
  margin-right: 15px;
  color: var(--primary);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
}

/* Gallery */
.gallery-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(115, 95, 50, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

/* Gallery Dropdown Menu */
.navbar-nav .gallery-dropdown .dropdown-menu {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin-top: 0;
  padding: 0;
  min-width: 200px;
}

.navbar-nav .gallery-dropdown .dropdown-item {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000;
  padding: 10px 20px;
  transition: var(--transition);
}

.navbar-nav .gallery-dropdown .dropdown-item:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Make Gallery unclickable on desktop */
.navbar-nav .gallery-dropdown .nav-link {
  pointer-events: none; /* Prevent clicking on desktop */
}

/* Hover effect for desktop */
@media (min-width: 992px) {
  .navbar-nav .gallery-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
  }

  .navbar-nav .gallery-dropdown .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
  
}

/* Mobile menu: Make Gallery clickable */
@media (max-width: 991px) {
  .navbar-nav .gallery-dropdown .nav-link {
    pointer-events: auto; /* Allow clicking in mobile menu */
  }

  .navbar-nav .gallery-dropdown .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    padding-left: 20px;
  }

  .navbar-nav .gallery-dropdown .dropdown-item {
    padding: 8px 20px;
  }
}

/* Media Queries */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav .nav-item {
    margin-left: 0;
    margin-bottom: 10px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    height: 2px;
    background: #8B4513; /* Brown underline for active link */
    bottom: -2px;
    left: 25%;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 80vh;
  }
  
  .hero-slide {
    height: 80vh;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  project-card {
    height: 400px;
  }
  
  .project-img-container {
    height: 200px;
  }
  
  .gallery-card {
    height: 250px;
  }
  
  .portfolio-card {
    height: 250px;
  }
  
  .portfolio-filters {
    flex-direction: column;
    gap: 12px;
  }
  
  .filter-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}
.btn-group-sm>.btn, .btn-sm {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 10px;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.indexbutton{
  background-color: #fff;

}
.indexbutton:hover {
  background-color: #7d6b43;
  color: #fff;
}

.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: #735f32;
  border-color: #735f32;
}
.btn-outline-primary {
  --bs-btn-color: #735f32;
  --bs-btn-border-color: #a4997a;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none;
}

.text-primary {
  --bs-text-opacity: 1;
  color: #735f32 !important;
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #f5f1ea;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.page-header {
  height: 230px;
}
.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
}
.softnue{
  color:#735F32
}
.softnue:hover {
  color: #00d6eb;
}

    .text-shadow {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    @media (min-width: 250px) {
      .col-md-2 {
          flex: 0 0 auto !important;
          width: 16.666667% !important;
      }
      .col-md-10 {
        flex: 0 0 auto !important;
        width: 82.333333% !important;
    }
  }
/* 
  @media (min-width: 250px){
    .email{
      padding-right: 30px;
    }
  }
  @media (min-width: 250px  ) and (max-width:768px){
    .email{
      padding-right: 195px;
    }
  } */

  /* Top Bar Contact Items */
.top-bar .contact-item {
  display: block; /* Each item on a new line */
  margin-bottom: 8px; /* Space between items */
}

.top-bar .contact-item a {
  display: flex;
  align-items: center; /* Align icon and text vertically */
  color: var(--white);
}

.top-bar .contact-item a i {
  margin-right: 8px; /* Consistent spacing between icon and text */
  min-width: 20px; /* Ensure icons align vertically by reserving space */
  text-align: center; /* Center the icon */
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .top-bar .contact-item {
    display: inline-block; /* Display inline on larger screens */
    margin-right: 20px; /* Space between email and phone */
  }
}

@media (max-width: 767px) {
  .top-bar .contact-item {
    display: block; /* Stack vertically on mobile */
  }
  .top-bar .contact-item a i {
    display: inline-block; /* Ensure icons align properly */
  }
}
@media (max-width: 991px) {
  .navbar-collapse.show {
    display: block; /* Ensure Bootstrap's show class works */
  }
  .navbar-collapse:not(.show) {
    display: none; /* Ensure collapse hides properly */
  }
}

/* Top Bar Contact Items */
.top-bar .contact-item {
  display: block; /* Each item on a new line */
  margin-bottom: 8px; /* Space between items */
}

.top-bar .contact-item a {
  display: flex;
  align-items: center; /* Align icon and text vertically */
  color: var(--white);
}

.top-bar .contact-item a i {
  margin-right: 8px; /* Consistent spacing between icon and text */
  min-width: 20px; /* Ensure icons align vertically */
  text-align: center; /* Center the icon */
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .top-bar .contact-item {
    display: inline-block; /* Display inline on larger screens */
    margin-right: 20px; /* Space between email and phone */
  }
}

@media (max-width: 767px) {
  .top-bar .contact-item {
    display: block; /* Stack vertically on mobile */
  }
  .top-bar .contact-item a i {
    display: inline-block; /* Ensure icons align properly */
  }
}

/* Floating Buttons and Mobile Contact Bar */
.quick_contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.quick_contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 18px;
}

.quick_contact a:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.qwhtsapp {
  background-color: #075e54;
  color: #fff;
}

.qcall {
  background-color: #007bff;
  color: #fff;
}

.quick_contact_icon {
  font-size: 30px;
}

.mobile-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.mobile-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}

.mobile-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  transition: background-color 0.3s ease;
}

.whatsapp-btn {
  background-color: #075e54;
}

.whatsapp-btn:hover {
  background-color: #064c43;
}

.call-btn {
  background-color: #007bff;
}

.call-btn:hover {
  background-color: #0056b3;
}

.mobile-contact-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .quick_contact {
      display: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-contact-bar {
      display: none !important;
  }
}