/* File: css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #8B4513;
    --secondary: #D4A017;
    --accent: #F5DEB3;
    --light: #FFF8DC;
    --dark: #3E2723;
  --gradient-primary: linear-gradient(135deg, #8B4513 0%, #D4A017 100%);
  --gradient-dark: linear-gradient(135deg, #3E2723 0%, #8B4513 100%);
  --shadow-light: 0 5px 15px rgba(0,0,0,0.1);
  --shadow-medium: 0 10px 30px rgba(0,0,0,0.15);
  --shadow-heavy: 0 20px 40px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
  box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Navbar Enhancements */
.navbar {
  background: rgba(62, 39, 35, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(62, 39, 35, 0.98);
  padding: 10px 0;
}

.navbar-brand {
  font-weight: 800;
  font-size: 2rem;
  color: var(--light) !important;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand span {
  color: var(--secondary);
  text-shadow: 0 0 10px rgba(212, 160, 23, 0.5);
}

.nav-link {
  color: white !important;
  margin: 0 15px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
/* padding: 8px 15px !important; */
  border-radius: 25px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

.nav-link.active,
.nav-link:hover {
  color: var(--secondary) !important;
  background: rgba(212, 160, 23, 0.1);
  transform: translateY(-2px);
}

/* Hero Section Enhancements */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
              url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?ixlib=rb-4.0.3') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Add padding for fixed navbar */
}

/* Hero Section for other pages */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
              url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?ixlib=rb-4.0.3') no-repeat center center/cover;
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  padding-top: 100px; /* Add padding for fixed navbar */
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(212, 160, 23, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
  animation: slideInDown 1s ease-out;
  background: linear-gradient(45deg, #fff, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: slideInUp 1s ease-out 0.3s both;
  line-height: 1.6;
}

/* Button Enhancements */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  animation: slideInUp 1s ease-out 0.6s both;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-heavy);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

/* Section Enhancements */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
  font-weight: 700;
  font-size: 2.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  line-height: 1.2;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: expandWidth 1s ease-out 0.5s both;
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 100px; }
}

/* Enhanced Section Title for different contexts */
.section-title.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-title.mb-5 {
  margin-bottom: 3rem !important;
}

/* Section title variations */
.section-title.primary {
  color: var(--primary);
  text-shadow: none;
}

.section-title.dark {
  color: var(--dark);
  text-shadow: none;
}

.section-title.light {
  color: var(--light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Section titles in different contexts */
.bg-light .section-title,
.bg-white .section-title {
  color: var(--dark);
  text-shadow: none;
}

.bg-dark .section-title,
.bg-primary .section-title {
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Section titles in cards or containers */
.card .section-title,
.feature-box .section-title {
  color: var(--dark);
  text-shadow: none;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

/* Ensure section titles don't overflow on any device */
.section-title {
  box-sizing: border-box;
  width: 100%;
  display: block;
}

/* Fix navbar overlap issues */
section {
  padding-top: 80px;
  margin-top: 0;
}

section:first-of-type {
  padding-top: 100px;
}

.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.py-4 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.py-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Specific section fixes */
.how-it-works,
.why-us,
.testimonials,
.features-section,
.gallery-carousel,
.cta,
.contact-section,
.faq-section {
  padding-top: 100px !important;
}

/* Hero sections already have proper spacing */
.hero,
.hero-section {
  padding-top: 0;
  margin-top: 0;
}

/* Mobile-first responsive design for section titles */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem !important;
    margin-bottom: 25px !important;
    padding-bottom: 8px !important;
    line-height: 1.4 !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  
  .section-title::after {
    width: 40px !important;
    height: 3px !important;
  }
  
  .section-title.mb-5 {
    margin-bottom: 2rem !important;
  }
  
  /* Mobile navbar overlap fixes */
  section {
    padding-top: 70px !important;
  }
  
  section:first-of-type {
    padding-top: 90px !important;
  }
  
  .py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  
  .py-4 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .py-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .how-it-works,
  .why-us,
  .testimonials,
  .features-section,
  .gallery-carousel,
  .cta,
  .contact-section,
  .faq-section {
    padding-top: 90px !important;
  }
}

@media (min-width: 481px) and (max-width: 576px) {
  .section-title {
    font-size: 1.8rem !important;
    margin-bottom: 30px !important;
    padding-bottom: 10px !important;
    line-height: 1.3 !important;
  }
  
  .section-title::after {
    width: 50px !important;
    height: 3px !important;
  }
  
  .section-title.mb-5 {
    margin-bottom: 2.5rem !important;
  }
  
  /* Small mobile navbar overlap fixes */
  section {
    padding-top: 75px !important;
  }
  
  section:first-of-type {
    padding-top: 95px !important;
  }
  
  .how-it-works,
  .why-us,
  .testimonials,
  .features-section,
  .gallery-carousel,
  .cta,
  .contact-section,
  .faq-section {
    padding-top: 95px !important;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .section-title {
    font-size: 2rem !important;
    margin-bottom: 40px !important;
    padding-bottom: 15px !important;
    line-height: 1.3 !important;
  }
  
  .section-title::after {
    width: 60px !important;
    height: 4px !important;
  }
  
  .section-title.mb-5 {
    margin-bottom: 3rem !important;
  }
  
  /* Medium mobile navbar overlap fixes */
  section {
    padding-top: 80px !important;
  }
  
  section:first-of-type {
    padding-top: 100px !important;
  }
  
  .how-it-works,
  .why-us,
  .testimonials,
  .features-section,
  .gallery-carousel,
  .cta,
  .contact-section,
  .faq-section {
    padding-top: 100px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .section-title {
    font-size: 2.2rem !important;
    margin-bottom: 50px !important;
    padding-bottom: 18px !important;
  }
  
  .section-title::after {
    width: 80px !important;
  }
}

@media (min-width: 1025px) {
  .section-title {
    font-size: 2.5rem !important;
    margin-bottom: 60px !important;
    padding-bottom: 20px !important;
  }
  
  .section-title::after {
    width: 100px !important;
  }
}

/* Card Enhancements */
.card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  border: none;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-light);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-heavy);
}

/* Step Card Enhancements */
.step-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  border: none;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-light);
  backdrop-filter: blur(10px);
  position: relative;
}

.step-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-heavy);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.1) rotate(5deg);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.1), transparent);
  transition: left 0.6s;
}

.service-card:hover::before {
  left: 100%;
}

.service-img-top {
  height: 250px;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease;
}

.service-card:hover .service-img-top {
  transform: scale(1.1);
}

.card-body {
  padding: 30px;
}

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

.card-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Price Tag Enhancements */
.price-tag {
  background: var(--gradient-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  display: inline-block;
  margin: 15px 0;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.price-tag:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

/* Feature Box Enhancements */
.feature-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-heavy);
}

.feature-box i {
  font-size: 3rem;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.feature-box:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* Testimonial Enhancements */
.testimonial {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
    color: var(--secondary);
  opacity: 0.3;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

/* Gallery Carousel Enhancements */
.carousel {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.carousel-inner img {
  height: 400px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(212, 160, 23, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--secondary);
  transform: translateY(-50%) scale(1.1);
}

/* Form Enhancements */
.form-control {
  border: 2px solid transparent;
  border-radius: 15px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
  transform: translateY(-2px);
}

/* Footer Enhancements */
footer {
  background: var(--gradient-dark);
  color: white;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.social-icons a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  margin: 0 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icons a:hover {
  background: var(--secondary);
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-medium);
}

/* Animation Keyframes */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
  font-size: 1.1rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding-top: 80px;
    min-height: 50vh;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .feature-box {
    padding: 30px 20px;
  }
  
  .feature-box i {
    font-size: 2.5rem;
  }
  
  .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  .hero-content {
    padding: 20px;
  }
  
  .card-body {
    padding: 15px;
  }
  
  .feature-box {
    padding: 25px 15px;
  }
  
  .feature-box i {
    font-size: 2rem;
  }
  
  .btn-primary {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero p {
    font-size: 1.3rem;
  }
  
  .hero-section h1 {
    font-size: 3.5rem;
  }
  
  .hero-section p {
    font-size: 1.3rem;
  }
  
  .navbar-brand {
    font-size: 1.8rem;
  }
}

@media (min-width: 1025px) {
  .hero h1 {
    font-size: 4rem;
  }
  
  .hero p {
    font-size: 1.4rem;
  }
  
  .hero-section h1 {
    font-size: 4rem;
  }
  
  .hero-section p {
    font-size: 1.4rem;
  }
  
  .navbar-brand {
    font-size: 2rem;
  }
}

/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

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

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(212, 160, 23, 0.3);
  border-top: 4px solid var(--secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Parallax Effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Hover Effects */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

/* Text Gradient */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow Effect */
.glow {
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.5);
}

.glow:hover {
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.8);
}

/* Timeline Section Enhancements */
.timeline-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

/* Video Demo Enhancements */
.video-demo {
  background: rgba(0, 0, 0, 0.05);
}

.video-demo video {
  border-radius: 15px;
  box-shadow: var(--shadow-heavy);
  transition: all 0.3s ease;
}

.video-demo video:hover {
  transform: scale(1.02);
}

/* CTA Section Enhancements */
.cta {
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(212, 160, 23, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

/* Fix for very small screens */
@media (max-width: 360px) {
  .section-title {
    font-size: 1.4rem !important;
    margin-bottom: 20px !important;
    padding-bottom: 6px !important;
    line-height: 1.5 !important;
  }
  
  .section-title::after {
    width: 30px !important;
    height: 2px !important;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3), 0 2px 4px rgba(0,0,0,0.12);
  font-size: 2.2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: whatsappPulse 1.5s infinite;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 4px 8px rgba(0,0,0,0.18);
  background: #1ebe5d;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0.1); }
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    right: 16px;
    bottom: 16px;
  }
}



/* Navbar logo image styling */
.navbar-brand img {
  height: 48px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 36px;
    max-width: 110px;
    margin-top: 0;
    margin-bottom: 0;
  }
}

/* Reduce navbar vertical padding for a more compact look */
.navbar {
  padding-top: 6px;
  padding-bottom: 6px;
}

.navbar.scrolled {
  padding-top: 3px;
  padding-bottom: 3px;
}

/* Responsive font size for 'Cocktail Concept' text in navbar */
.navbar-brand .navbar-title-text {
  font-size: 100px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--light) !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  display: inline-block;
}

@media (min-width: 481px) and (max-width: 768px) {
  .navbar-brand .navbar-title-text {
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .navbar-brand .navbar-title-text {
    font-size: 1.2rem;
  }
}

@media (min-width: 1025px) {
  .navbar-brand .navbar-title-text {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar-title-text {
    display: none !important;
  }
}

.navbar-brand .navbar-title-text1 {

  font-size: 80px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--light) !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  display: inline-block;
}

@media (min-width: 481px) and (max-width: 768px) {
  .navbar-brand .navbar-title-text1 {
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .navbar-brand .navbar-title-text1 {
    font-size: 1.2rem;
  }
}

@media (min-width: 1025px) {
  .navbar-brand .navbar-title-text1 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .navbar-title-text1 {
    display: none !important;
  }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

.blinking-text {
  animation: blink 2s infinite;
}


