/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333333; /* Main text color - dark gray for readability */
  overflow-x: hidden;
  background: #ffffff; /* Pure white background for clean, professional look */
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc2626, #b91c1c); /* Red gradient - brand primary color */
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3); /* Red shadow for depth */
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b); /* Darker red on hover */
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(220, 38, 38, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
  }
}

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

/* Animation Classes */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.bounce-in {
  animation: bounceIn 0.6s ease-out forwards;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98); /* Almost pure white with slight transparency */
  backdrop-filter: blur(15px); /* Glass effect for modern look */
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Very subtle border */
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); /* Soft shadow for depth */
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.99); /* More opaque when scrolled */
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
  animation: logoFloat 3s ease-in-out infinite; /* Subtle floating animation */
}

.logo:hover {
  transform: scale(1.05);
  animation-play-state: paused; /* Pause float on hover */
}

.logo-image {
  width: 55px; /* Increased size for better visibility */
  height: 55px;
  border-radius: 12px; /* More rounded corners */
  transition: all 0.4s ease;
  object-fit: contain;
  background: #ffffff; /* Pure white background */
  padding: 6px; /* More padding for logo breathing room */
  border: 3px solid #f3f4f6; /* Light gray border for definition */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  display: block; /* Ensure image displays */
}

.logo-image:hover {
  transform: rotate(8deg) scale(1.15); /* More pronounced hover effect */
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25); /* Red shadow on hover */
  border-color: #dc2626; /* Red border on hover to match logo colors */
  background: #fef2f2; /* Very light red background on hover */
}

.logo-text h1 {
  color: #111827; /* Very dark gray, almost black for strong contrast */
  font-size: 1.6rem; /* Slightly larger for better visibility */
  font-weight: 800; /* Bolder weight */
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
}

.logo-text p {
  color: #6b7280; /* Medium gray for subtitle */
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #374151; /* Dark gray for navigation links */
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  font-weight: 600; /* Bolder navigation text */
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px; /* Thicker underline */
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, #dc2626, #b91c1c); /* Red gradient underline */
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #dc2626; /* Red color on hover */
  transform: translateY(-2px);
}

.nav-btn {
  background: linear-gradient(135deg, #dc2626, #b91c1c); /* Red gradient button */
  color: white;
  padding: 14px 28px; /* Larger padding for better click target */
  border-radius: 10px; /* More rounded button */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3); /* Red shadow */
  font-weight: 700; /* Bold button text */
}

.nav-btn:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b); /* Darker red on hover */
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.5);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

.mobile-menu-btn span {
  width: 24px;
  height: 3px; /* Thicker hamburger lines */
  background: #374151; /* Dark gray hamburger lines */
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #dc2626; /* Red when active */
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: #dc2626; /* Red when active */
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0; /* More padding */
  border-top: 2px solid #f3f4f6; /* Thicker, lighter border */
  background: rgba(255, 255, 255, 0.98); /* Almost pure white */
  backdrop-filter: blur(10px);
}

.nav-mobile.active {
  display: flex;
}

.nav-link-mobile {
  color: #374151; /* Dark gray mobile links */
  text-decoration: none;
  padding: 12px 0; /* More padding for touch targets */
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 8px;
}

.nav-link-mobile:hover {
  color: #dc2626; /* Red on hover */
  padding-left: 15px;
  background: rgba(220, 38, 38, 0.05); /* Very light red background */
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%); /* White to very light gray gradient */
  color: #111827; /* Very dark text for contrast */
  text-align: center;
  position: relative;
  border-bottom: 1px solid #f3f4f6; /* Subtle border */
}

.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 900; /* Extra bold */
  margin-bottom: 24px;
  background: linear-gradient(135deg, #111827, #374151); /* Dark gradient text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
  font-size: 1.25rem;
  color: #6b7280; /* Medium gray for description */
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.hero-btn {
  background: linear-gradient(135deg, #dc2626, #b91c1c); /* Red gradient button */
  color: white;
  padding: 20px 40px; /* Larger button */
  border-radius: 12px; /* More rounded */
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.3); /* Larger shadow */
}

.hero-btn:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.4);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h3 {
  font-size: 2.5rem;
  font-weight: 800; /* Extra bold headings */
  margin-bottom: 16px;
  color: #111827; /* Very dark headings */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-description {
  font-size: 1.25rem;
  color: #6b7280; /* Medium gray descriptions */
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #ffffff; /* Pure white background */
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h4 {
  font-size: 2rem;
  font-weight: 800;
  color: #111827; /* Very dark headings */
  margin-bottom: 24px;
}

.about-text p {
  color: #6b7280; /* Medium gray text */
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 500;
}

.about-icon {
  text-align: center;
}

.icon-circle {
  width: 140px; /* Larger icon circle */
  height: 140px;
  background: linear-gradient(135deg, #dc2626, #b91c1c); /* Red gradient */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3); /* Red shadow */
  transition: all 0.4s ease;
  border: 4px solid #ffffff; /* White border */
}

.icon-circle:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.5);
}

.icon-circle span {
  font-size: 4.5rem; /* Larger emoji */
}

.about-icon h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827; /* Very dark text */
  margin-bottom: 12px;
}

.about-icon p {
  color: #6b7280; /* Medium gray */
  font-weight: 500;
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
  background: #ffffff; /* Pure white background */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background: #ffffff; /* Pure white cards */
  border-radius: 20px; /* More rounded cards */
  padding: 36px; /* More padding */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); /* Softer shadow */
  border: 2px solid #f3f4f6; /* Light gray border */
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 300px; /* Taller cards */
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
  transition: left 0.5s ease;
}

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

.hover-lift:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15); /* Larger shadow on hover */
  transform: translateY(-12px) scale(1.03); /* More lift */
  border-color: #dc2626; /* Red border on hover */
}

.service-icon {
  font-size: 3.5rem; /* Larger icons */
  margin-bottom: 20px;
  transition: all 0.4s ease;
  align-self: flex-start;
}

.service-card:hover .service-icon {
  transform: scale(1.3) rotate(15deg); /* More dramatic hover effect */
}

.service-card h4 {
  font-size: 1.4rem; /* Larger titles */
  font-weight: 800;
  color: #111827; /* Very dark titles */
  margin-bottom: 16px;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.service-card:hover h4 {
  color: #dc2626; /* Red on hover */
}

.service-card p {
  color: #6b7280; /* Medium gray text */
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1;
  font-weight: 500;
}

.service-btn {
  background: linear-gradient(135deg, #dc2626, #b91c1c); /* Red gradient */
  color: white;
  padding: 14px 32px; /* Larger button */
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
  margin-top: auto;
  align-self: flex-start;
}

.service-btn:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.5);
}

/* Service Detail Sections */
.service-detail {
  padding: 80px 0;
  background: #ffffff; /* Pure white background */
  border-bottom: 1px solid #f3f4f6;
}

.service-detail.dark {
  background: #f9fafb; /* Very light gray for alternating sections */
  color: #111827;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-detail-text h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #111827; /* Very dark headings */
}

.service-detail-text p {
  font-size: 1.25rem;
  margin-bottom: 24px;
  line-height: 1.7;
  color: #6b7280; /* Medium gray text */
  font-weight: 500;
}

.service-features {
  margin-bottom: 32px;
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 10px 0; /* More padding */
  font-size: 1.1rem;
  color: #6b7280; /* Medium gray */
  transition: all 0.3s ease;
  font-weight: 500;
}

.service-features li:hover {
  color: #dc2626; /* Red on hover */
  padding-left: 15px;
  transform: scale(1.02);
}

.service-detail-btn {
  background: linear-gradient(135deg, #dc2626, #b91c1c); /* Red gradient */
  color: white;
  padding: 16px 40px; /* Larger button */
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.service-detail-btn:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

.service-detail-icon {
  text-align: center;
}

.icon-circle-large {
  width: 150px; /* Larger icon circles */
  height: 150px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05)); /* Light red gradient */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
  transition: all 0.4s ease;
  border: 4px solid rgba(220, 38, 38, 0.2); /* Red border */
}

.rotate-hover:hover {
  transform: rotate(20deg) scale(1.2); /* More dramatic rotation */
  box-shadow: 0 25px 55px rgba(220, 38, 38, 0.3);
}

.icon-circle-large span {
  font-size: 4.5rem; /* Larger emojis */
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #ffffff; /* Pure white background */
  border-top: 1px solid #f3f4f6;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600; /* Bolder labels */
  color: #374151; /* Dark gray labels */
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px; /* More padding */
  border: 2px solid #e5e7eb; /* Light gray border */
  border-radius: 10px; /* More rounded inputs */
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff; /* Pure white inputs */
  color: #111827; /* Very dark text */
  font-weight: 500;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af; /* Medium gray placeholders */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #dc2626; /* Red focus border */
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1); /* Red focus shadow */
  transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #dc2626; /* Red hover border */
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px; /* Taller textarea */
}

.form-submit {
  text-align: center;
  margin-top: 32px;
}

.pulse-btn {
  background: linear-gradient(135deg, #dc2626, #b91c1c); /* Red gradient */
  color: white;
  padding: 18px 50px; /* Larger button */
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.pulse-btn:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.5);
  animation: pulse 1s ease-in-out;
}

.pulse-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 20px;
  padding: 16px; /* More padding */
  border-radius: 10px;
  text-align: center;
  display: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1); /* Light green background */
  color: #10b981; /* Green text */
  border: 2px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
  background: rgba(220, 38, 38, 0.1); /* Light red background */
  color: #dc2626; /* Red text */
  border: 2px solid rgba(220, 38, 38, 0.3);
}

/* Footer */
.footer {
  background: #7f8380; /* Very light background for contrast */
  color: white;
  padding: 60px 0; /* More padding */
  border-top: 3px solid #000000; /* Black top border */
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.08);
}

.footer-logo-image {
  width: 52px; /* Larger footer logo */
  height: 52px;
  border-radius: 10px;
  transition: all 0.3s ease;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.1); /* Light background */
  padding: 6px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: block; /* Ensure image displays */
}

.footer-logo-image:hover {
  transform: rotate(12deg) scale(1.15);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
  border-color: #dc2626;
}

.footer-logo span {
  font-size: 1.4rem; /* Larger footer text */
  font-weight: 800;
}

.footer-content p {
  color: #d1d5db; /* Light gray footer text */
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .section-header h3 {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-detail-text h3 {
    font-size: 2rem;
  }

  .service-detail-text p {
    font-size: 1.1rem;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .whatsapp-btn {
    bottom: 80px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .logo-image {
    width: 50px;
    height: 50px;
  }

  .logo-text h1 {
    font-size: 1.4rem;
  }

  .logo-text p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .section-header h3 {
    font-size: 1.75rem;
  }

  .service-card {
    padding: 28px;
  }

  .about-text h4 {
    font-size: 1.5rem;
  }

  .service-detail-text h3 {
    font-size: 1.75rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .whatsapp-btn {
    bottom: 65px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .logo-image {
    width: 45px;
    height: 45px;
  }

  .logo-text h1 {
    font-size: 1.2rem;
  }

  .logo-text p {
    font-size: 0.8rem;
  }

  .logo {
    gap: 12px;
  }
}

/* Intersection Observer Animation Triggers */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Additional Enhancement Effects */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 20px 20px 0 0;
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* Logo enhancement for better visibility */
.logo-image {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)); /* Drop shadow for better definition */
}

.logo-image:hover {
  filter: drop-shadow(0 4px 8px rgba(220, 38, 38, 0.3)); /* Red drop shadow on hover */
}
