:root {
  --primary-color: #00d4ff;
  --secondary-color: #ff6b35;
  --accent-color: #ffd23f;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  --gradient-2: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  --gradient-3: linear-gradient(135deg, #ffd23f 0%, #ff9500 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
}

/* Top Bar */
.top-bar {
  background: var(--gradient-1);
  padding: 8px 0;
  font-size: 14px;
  color: white;
}

.contact-info span {
  margin-right: 15px;
  white-space: nowrap; /* Prevent line breaks for email and phone */
}

.social-links a {
  color: white;
  margin-left: 10px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.navbar.fixed-top.scrolled {
  margin-top: 0;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color) !important;
  text-decoration: none;
}

.navbar-brand i {
  font-size: 28px;
  margin-right: 8px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-color) !important;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 7%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 50px 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--gradient-1);
  border: none;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.btn-outline-light {
  border: 2px solid white;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.hero-buttons.zinbutton {
  position: relative;
  z-index: 5;
}

/* Floating Card */
.floating-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  color: white;
  margin: 50px 0;
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

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

/* Product Slider Section */
.product-slider-section {
  background: var(--light-color);
  padding: 80px 0;
}

#productCarousel .carousel-item {
  padding: 0 15px;
}

#productCarousel .carousel-control-prev,
#productCarousel .carousel-control-next {
  background: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

#productCarousel .carousel-control-prev:hover,
#productCarousel .carousel-control-next:hover {
  opacity: 1;
}

/* Services Section */
.services-section {
  background: var(--light-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #196369;
  margin-bottom: 30px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
}

/* Why Choose Section */
.why-choose-section {
  background: white;
  padding: 80px 0;
}

.choose-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.feature-item i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 1.2rem;
}

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

.stat-card {
  background: #027192;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  color: white;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

/* Testimonial Section */
.testimonial-section {
  background: var(--gradient-1);
  padding: 80px 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #666;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.initial-circle {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonial-author h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.testimonial-author p {
  font-size: 0.9rem;
  color: #7f8c8d;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  background: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
  opacity: 1;
}

/* Gallery Page Specific Styles */
.gallery-header {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  padding: 100px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.gallery-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.header-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.pattern-element {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.pattern-element:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.pattern-element:nth-child(2) {
  top: 40%;
  right: 30%;
  animation-delay: 1s;
}

.pattern-element:nth-child(3) {
  bottom: 30%;
  left: 60%;
  animation-delay: 2s;
}

.pattern-element:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 1.5s;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(2); }
}

.gallery-section {
  background: var(--light-color);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.gallery-filter {
  background: white;
  border: 2px solid #0030d4;
  color: #5997b6;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-filter:hover,
.gallery-filter.active {
  background: #009ed1;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
}

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  height: 300px;
  background: var(--gradient-2);
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.8), rgb(0 0 0 / 85%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  padding: 20px;
}

.overlay-content h5 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 16px;
}

.view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.view-btn:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(0, 212, 255, 1);
}

.gallery-item {
  transition: all 0.3s ease;
}

.gallery-item.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* Products Page Specific Styles */
.products-header {
  background: linear-gradient(135deg, #ffd23f 0%, #ff9500 100%);
  padding: 100px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.products-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.header-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float-shapes 8s ease-in-out infinite;
}

.shape-1 {
  width: 50px;
  height: 50px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 75px;
  height: 75px;
  top: 60%;
  right: 25px;
  animation-delay: 2s;
}

.shape-3 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  left: 70px;
  animation-delay: 5s;
}

@keyframes float-shapes {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(-10deg); }
}

.product-categories {
  background: var(--light-color);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.product-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  height: 300px;
  background: var(--gradient-2);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.8), rgb(0 0 0 / 91%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay h5 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.product-overlay p {
  margin: 0;
  opacity: 0.9;
  font-size: 1rem;
}

.product-item {
  transition: all 0.3s ease;
}

.product-item.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* Contact Page Styles */
.contact-header .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
  transition: transform 0.3s ease;
}

.contact-header .icon-circle:hover {
  transform: scale(1.2);
}

.floating-label {
  position: relative;
  margin-bottom: 20px;
}

.floating-label input,
.floating-label textarea,
.floating-label select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: border-color 0.3s ease;
  font-size: 16px;
}

.floating-label input:focus,
.floating-label textarea:focus,
.floating-label select:focus {
  border-color: var(--primary-color);
  outline: none;
}

.floating-label label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #7f8c8d;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
  background: none;
  padding: 0 5px;
}

.floating-label input:focus + label,
.floating-label input:valid + label,
.floating-label textarea:focus + label,
.floating-label textarea:valid + label,
.floating-label select:focus + label,
.floating-label select:valid + label {
  top: -10px;
  font-size: 12px;
  color: var(--primary-color);
  font-weight: bold;
  transform: translateY(-50%);
}

.contact-info-item {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info-item .info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: 50%;
  margin-right: 15px;
}

.contact-info-item .info-content h5 {
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.map-container {
  position: relative;
}

.map-placeholder {
  background: var(--gradient-3);
  transition: transform 0.3s ease;
}

.map-container:hover .map-placeholder {
  transform: scale(1.02);
}

.emergency-card {
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.emergency-card:hover {
  transform: scale(1.05);
}

.emergency-card .emergency-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--secondary-color);
}

/* Modal Styles */
.modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modal-header {
  border-bottom: 1px solid #e9ecef;
  padding: 20px 30px;
}

.modal-body {
  padding: 30px;
}

.modal-image {
  border-radius: 10px;
  overflow: hidden;
  max-height: 400px;
  object-fit: cover;
}

.modal-placeholder i {
  font-size: 48px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.project-details {
  background: var(--light-color);
  padding: 20px;
  color: var(--dark-color);
  border-radius: 10px;
}

.project-details h6 {
  color: var(--dark-color);
  font-weight: bold;
  margin-bottom: 15px;
}

.project-details ul {
  list-style: none;
  padding: 0;
}

.project-details li {
  padding: 8px 0;
  border-bottom: 1px solid #dee2e6;
}

.project-details li:last-child {
  border-bottom: none;
}

/* Product Modal Styles */
#productModal .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

#productModal .modal-image {
  object-fit: cover;
  border-radius: 8px;
}

#productModal .product-price {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

#productModal ul {
  list-style: none;
  padding-left: 0;
}

#productModal ul li {
  padding: 5px 0;
  font-size: 1rem;
  color: #333;
}

#productModal ul li::before {
  content: "âœ” ";
  color: var(--primary-color);
}

.enquiry-btn {
  background: var(--gradient-1);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.enquiry-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.5);
  color: white;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 50px 0 20px;
}

.footer-widget h5,
.footer-widget h6 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.1);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-item i {
  color: var(--primary-color);
  margin-right: 10px;
  width: 20px;
}

/* Carousel Styles */
.carousel {
  padding: 0px 0px;
}

.carousel-item {
  transition: transform 0.6s ease;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 50% 50%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader img {
  width: 150px;
  height: auto;
  animation: flipHorizontal 1.5s infinite ease-in-out;
}

@keyframes flipHorizontal {
  0% {
    transform: perspective(400px) rotateY(0deg);
  }
  50% {
    transform: perspective(400px) rotateY(180deg);
  }
  100% {
    transform: perspective(400px) rotateY(360deg);
  }
}

/* Floating Buttons */
.btn-floating {
  position: fixed;
  right: 25px;
  overflow: hidden;
  width: 70px;
  height: 70px;
  border-radius: 100px;
  border: 0;
  z-index: 9999;
  color: white;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-floating img {
  width: 30px;
  height: 30px;
  transition: margin-bottom 0.2s ease;
}

.btn-floating:hover img {
  margin-bottom: -3px;
}

.btn-floating:hover {
  width: auto;
  padding: 0 25px;
  cursor: pointer;
}

.btn-floating span {
  font-size: 18px;
  margin-left: 8px;
  line-height: 1;
  display: none;
  white-space: nowrap;
}

.btn-floating:hover span {
  display: inline-block;
}

.btn-floating::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: -1;
  transform: scale(0);
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
}

.btn-floating:hover::before {
  transform: scale(2.5);
  opacity: 1;
  animation: wave 1.5s infinite ease-out;
}

@keyframes wave {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.btn-floating.phone {
  bottom: 150px;
  background-color: #760f10;
}

.btn-floating.phone:hover {
  background-color: #c03421;
}

.btn-floating.whatsapp {
  bottom: 65px;
  background-color: #34af23;
  /* padding-left: 113px; */
}

.btn-floating.whatsapp:hover {
  background-color: #1f7a12;
}

/* Responsive Design */
@media (max-width: 991px) {
  #productCarousel .carousel-item .row,
  #testimonialCarousel .carousel-item .row {
    justify-content: center;
  }
  #productCarousel .carousel-item .col-lg-4,
  #testimonialCarousel .carousel-item .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .product-card,
  .gallery-card {
    height: 250px;
  }
  .product-overlay h5,
  .gallery-overlay h5 {
    font-size: 1.2rem;
  }
  .product-overlay p,
  .gallery-overlay p {
    font-size: 0.85rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .btn-floating.whatsapp {
    right: 0px !important;
    bottom: 0px !important;
}
}

@media (max-width: 767px) {
  #productCarousel .carousel-item .col-lg-4,
  #testimonialCarousel .carousel-item .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero-buttons .btn {
    display: block;
    margin-bottom: 10px;
  }
  .gallery-header h1 {
    font-size: 32px;
  }
  .gallery-filters {
    flex-direction: column;
    align-items: center;
  }
  .gallery-filter {
    width: 200px;
  }
  .products-header h1 {
    font-size: 32px;
  }
  .filter-buttons {
    flex-direction: column;
    align-items: center;
  }
  .filter-btn {
    width: 250px;
  }
  .product-card,
  .gallery-card {
    height: 200px;
  }
  .product-overlay h5,
  .gallery-overlay h5 {
    font-size: 1.1rem;
  }
  .product-overlay p,
  .gallery-overlay p {
    font-size: 0.8rem;
  }
  .testimonial-content p {
    font-size: 0.9rem;
  }
  .initial-circle {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .carousel {
    padding: 0px 0px;
  }
}

/* Medium Screen Floating Buttons */
@media (max-width: 991px) {
  .btn-floating.phone {
    width: 50%;
    bottom: 0;
    right: auto;
    left: 0;
    transform: none;
    border-radius: 0;
    padding: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-floating.whatsapp {
    width: 50%;
    bottom: 0;
    right: 0;
    left: auto;
    transform: none;
    border-radius: 0;
    padding: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-floating img {
    width: 30px;
    height: 30px;
    transition: margin-bottom 0.2s ease;
    margin-left: 0;
  }
  .btn-floating span {
    font-size: 13px;
    margin-left: 8px;
    display: inline-block;
  }
}

/* Hero Section Text and Button Shadow Styles */
.hero-content .hero-title {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-content .hero-subtitle {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-buttons .btn-primary {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-primary:hover {
  box-shadow: 0 6px 16px rgba(0, 212, 255, 0.4);
}

.hero-buttons .btn-outline-light {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-outline-light:hover {
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4);
}

.map-container:hover iframe {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}
.back-to-top{
  bottom: 10px !important;
}

/* Hero Content Text Shadow */
.hero-content.text-white .hero-title {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content.text-white .hero-subtitle {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Existing styles remain unchanged, appending new styles for gallery and products */
.gallery-image img,
.product-image img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.gallery-overlay,
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.8), rgba(0, 0, 0, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image:hover .gallery-overlay,
.product-image:hover .product-overlay {
    opacity: 1;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.view-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 1);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
  font-size: 1rem !important;
}