 #faq {
      background-color: #fff;
      padding: 60px 0;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .faq .content {
      margin-bottom: 40px;
      text-align: center;
    }
    .faq .content h3 {
      font-size: 30px;
      font-weight: 700;
      color: #333;
    }
    .faq .content p {
      color: #666;
      font-size: 16px;
    }
    .faq .accordion-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .faq .accordion-list li {
      background: #fff;
      margin-bottom: 10px;
      border: 1px solid #ddd;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .faq .accordion-list a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      font-size: 18px;
      font-weight: 600;
      color: #007bff;
      text-decoration: none;
      background: #f7f7f7;
      transition: background 0.3s, color 0.3s;
    }
    .faq .accordion-list a:hover {
      background: #e2e2e2;
      color: #0056b3;
    }
    .faq .accordion-list a i {
      font-size: 20px;
    }
    .faq .accordion-list .collapse {
      padding: 20px;
      color: #444;
      background: #fff;
    }
    .faq .accordion-list .icon-show {
      display: inline;
    }
    .faq .accordion-list .icon-close {
      display: none;
    }
    .collapse.show + .icon-show {
      display: none;
    }
    .collapse.show + .icon-show + .icon-close {
      display: inline;
    }
    @media (max-width: 767px) {
      .faq .content h3 {
        font-size: 24px;
      }
      .faq .content p {
        font-size: 14px;
      }
      .faq .accordion-list a {
        font-size: 16px;
        padding: 10px 15px;
      }
      .faq .accordion-list .collapse {
        padding: 15px;
      }
      .faq .accordion-list li {
        margin-bottom: 15px;
      }
    }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
/* Container for filter buttons */
.filter-button-group {
    display: flex;
    justify-content: center; /* Center the buttons horizontally */
    flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
    gap: 10px; /* Space between buttons */
    margin-bottom: 30px; /* Space below the buttons */
}

/* Filter buttons styling */
.filter-button-group .button {
    padding: 10px 20px; /* Space inside the buttons */
    cursor: pointer;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    display: inline-block; /* Ensures buttons are inline-block */
}

/* Hover state */
.filter-button-group .button:hover {
    background-color: #d9bf77; /* Color on hover */
    color: #fff; /* Text color on hover */
}

/* Checked button state */
.filter-button-group .button.is-checked {
    background-color: #d9bf77; /* Color when button is clicked/active */
    color: #fff; /* Text color when button is clicked/active */
}




        .gallery-item {
            margin-bottom: 20px;
            padding: 20px;
            background-color: #f9f9f9;
            text-align: center;
        }

        .gallery-item .icon {
            display: none;
        }

        .gallery-item:hover .icon {
            display: block;
        }






 .navbar-nav .nav-item .nav-link {
        font-family: 'Open Sans', sans-serif; /* Use a suitable sans-serif font */
        font-size: 16px; /* Adjust font size as needed */
        font-weight: 400; /* Normal font weight */
        transition: color 0.3s; /* Smooth transition for color change */
        color: #555; /* Default text color */
    }

    .navbar-nav .nav-item .nav-link:hover {
        color: gold; /* Gold color on hover */
    }

    .navbar-nav .nav-item .nav-link.active {
        font-weight: 600; /* Example: make active link slightly bolder */
        color: gold; /* Gold color for active link */
    }
	
/* Ensure dropdown menu behaves correctly */
.navbar-nav .nav-item .dropdown-menu {
    display: none; /* Hide dropdown menu by default */
    position: absolute;
    background-color: #fff; /* Adjust background color as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow if desired */
    z-index: 1000; /* Ensure dropdown appears above other content */
}

.navbar-nav .nav-item:hover > .dropdown-menu {
    display: block; /* Show dropdown on parent item hover */
}

.navbar-nav .nav-item .dropdown-menu a {
    color: #333; /* Adjust text color */
    padding: 10px 15px; /* Adjust padding as needed */
    display: block;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s; /* Smooth transitions */
}

.navbar-nav .nav-item .dropdown-menu a:hover {
    background-color: #f7f7f7; /* Hover background color */
    color: gold; /* Hover text color - changed to gold */
}

	
	
		
		  .hero-wrap {
            padding-top: 50px; /* Adjust this value as needed */
        }
		
		
		.bold-text {
		font-weight: bold;
		}
		
		.icon .logo-img {
		height: 440px; /* Adjust as needed for desktop */
		width: auto;
		}



 /* Ensure the logo is properly sized within the navbar */
        .navbar-brand img {
            height: 100px; /* Adjust the height to match your design */
            width: auto;
        }
        
	
		 /* Custom styles for navbar background */
        .navbar-white {
            background-color: #f8f9fa; /* Light grey color */
        }

        /* Custom styles for the toggle icon */
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }
		
		


	
	
	    .ftco-section {
        padding: 1em 0; /* Adjust padding as needed */
        margin-bottom: 0; /* Remove bottom margin */
    }

    .ftco-section-services {
        padding: 1em 0; /* Adjust padding as needed */
    }
	
	
	

		        /* Add top padding to the hero section for mobile */
        @media (max-width: 767px) {
            .hero-wrap {
                padding-top: 0px; /* Adjust this value as needed for mobile */
            }
			
			  .icon .logo-img {
				height: 320px; /* Adjust as needed for mobile */
			}
			
 .navbar-nav .nav-item .dropdown-menu {
        position: static;
        float: none;
      }
        }
		
		
	



.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 68px;
    color: #fff;
    background-color: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon:hover {
    background-color: #128C7E;
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-icon {
        font-size: 36px;
        width: 50px;
        height: 50px;
    }
}



   .btn-language {
  background-color: transparent;
  border: none;
  color: #262424; /* Adjust this to match your menu's text color */
  font-size: 12px;
  margin-left: 10px;
  cursor: pointer;
  padding: 8px;
}

.btn-language:hover {
  color: #f7f302; /* Adjust this to the desired hover color */
}



.alert {
    margin: 0; /* Remove default margin */
    padding: 10px; /* Adjust padding */
    font-size: 16px; /* Adjust font size */
    background-color: #f8d7da; /* Light red background */
    color: #721c24; /* Dark red text */
}

.alert strong {
    font-weight: bold; /* Bold text for the promo code */
}


