@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');
/*topnavbar*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
}

/* ====== NAVBAR ====== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #002b80;
  color: white;
  padding: 20px 10%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  border-bottom: 2px solid gray;
}

.call-btn {
  background-color: #0047b3;
  border: 2px solid white;
  padding: 10px 18px;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.call-btn:hover {
  background-color: white;
  color: #0047b3;
}

/* ====== HAMBURGER (MOBILE) ====== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: white;
}

/* ====== NAV SPACE SECTION ====== */
.nav-space {
  height: 500px;
  width: 100%;
  margin-top: 90px; /* To push below navbar */
  background-color: #001a4d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-space img {
  max-height: 490px;
   width: 70%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

/* ====== HERO SECTION ====== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #001a4d, #0047b3);
  color: #fff;
  padding: 100px 10%;
  overflow: hidden;
  position: relative;
}

.hero-content {
  max-width: 50%;
  z-index: 2;
  animation: slideInLeft 1.2s ease;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  line-height: 1.6;
  opacity: 0.95;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease-in-out;
  animation: pulse 2s infinite;
}

.whatsapp-btn i {
  margin-right: 8px;
  font-size: 1.3rem;
}

.whatsapp-btn:hover {
  background-color: #1da851;
  transform: translateY(-4px);
}

/* Image Section */
.hero-image {
  animation: slideInRight 1.2s ease;
}

.hero-image img {
  width: 480px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
  transition: transform 0.4s ease;
}

.hero-image img:hover {
  transform: scale(1.05) rotate(2deg);
}

/* Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 40px rgba(37, 211, 102, 0.7); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 70px 5%;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-image img {
    width: 85%;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #002b80;
    position: absolute;
    top: 75px;
    right: 10%;
    width: 200px;
    border-radius: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }
}
/*TRUBLESHOOTING*/
.troubleshooting {
  background: none;
  color: #002766;
  text-align: center;
  padding: 100px 8%;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden; /* ✅ removes unwanted horizontal line */
}

.troubleshooting h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #001a4d;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.troubleshooting .intro {
  max-width: 800px;
  margin: 0 auto 60px;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ====== GRID ====== */
.troubleshooting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  overflow-x: hidden;
}

/* ====== CARD ====== */
.trouble-card {
  background: linear-gradient(135deg, #0047b3, #007bff);
  color: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: left;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

/* Entry animation delay */
.trouble-card:nth-child(1) { animation-delay: 0.2s; }
.trouble-card:nth-child(2) { animation-delay: 0.4s; }
.trouble-card:nth-child(3) { animation-delay: 0.6s; }
.trouble-card:nth-child(4) { animation-delay: 0.8s; }
.trouble-card:nth-child(5) { animation-delay: 1s; }
.trouble-card:nth-child(6) { animation-delay: 1.2s; }

/* ====== ICON ====== */
.trouble-card i {
  font-size: 2.3rem;
  color: #00e0ff;
  margin-bottom: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* ====== HOVER EFFECT ====== */
.trouble-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 14px 40px rgba(0, 114, 255, 0.6);
  background: linear-gradient(135deg, #0056d6, #0099ff);
}

.trouble-card:hover i {
  transform: rotate(-8deg) scale(1.2);
  color: #fff;
}

/* ====== TEXT ====== */
.trouble-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.trouble-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f0f0;
}

/* ====== ANIMATION ====== */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== RESPONSIVE FIXES ====== */

/* Tablets */
@media (max-width: 1024px) {
  .troubleshooting-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .troubleshooting-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trouble-card {
    max-width: 85%;
    text-align: center;
    padding: 25px 18px; /* ✅ smaller padding for compact look */
    border-radius: 15px;
  }

  .trouble-card i {
    display: block;
    margin: 0 auto 12px;
    font-size: 2rem; /* ✅ slightly smaller icon */
  }

  .trouble-card h3 {
    font-size: 1.1rem; /* ✅ smaller heading */
  }

  .trouble-card p {
    font-size: 0.9rem; /* ✅ smaller paragraph */
    line-height: 1.5;
  }
}
/*read more*/
/* ✅ Read More Button */
.read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color:darkslategrey ;
  color: white;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 120, 215, 0.3);
  position: relative;
  overflow: hidden;
}

.read-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transition: left 0.3s ease;
}

.read-more:hover::before {
  left: 100%;
}

.read-more:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 120, 215, 0.4);
}

/*=========================Cards section*===============================/
/* ====== CARDS SECTION ====== */
.cards-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  padding: 100px 10%;
  background: linear-gradient(135deg, #001a4d, #0047b3);
  color: #fff;
  flex-wrap: nowrap; /* Keep cards in one line */
  box-sizing: border-box;
}

/* ====== INDIVIDUAL CARD ====== */
.card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px 30px;
  width: 30%;
  position: relative;
  text-align: left;
  transition: all 0.4s ease;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 1s ease;
}

/* Hover effect */
.card:hover {
  background: linear-gradient(135deg, #0047b3, #007bff);
  transform: translateY(-12px);
  box-shadow: 0 10px 30px rgba(0, 114, 255, 0.5);
}

/* Header: Icon (left) + Number (right) */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

/* Icon Style */
.card-header i {
  font-size: 2.2rem;
  color: #00c6ff;
  text-shadow: 0 0 12px rgba(0, 198, 255, 0.6);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Icon Animation */
.card:hover i {
  color: #fff;
  transform: rotate(-10deg) scale(1.1);
}

/* Number Style */
.card-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffffcc;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 15px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
}

/* Headings & Text */
.card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.card p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== Responsive Design ====== */
@media (max-width: 1024px) {
  .cards-section {
    flex-wrap: wrap;
    justify-content: center;
  }
  .card {
    width: 45%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .card {
    width: 100%;
  }
}


/*gallery*/

/* Gallery Section */
.gallery-section {
  text-align: center;
  padding: 80px 10%;
  background-color: #f7f9fc;
  font-family: 'Poppins', sans-serif;
}

.gallery-section h2 {
  color: #004aad;
  font-size: 2rem;
  margin-bottom: 10px;
}

.gallery-section p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #ff4d4d;
}

/*Floating buttons*/
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  pointer-events: none; /* let children manage pointer events */
}

/* Button base */
.floating-contact .btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 56px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  transform-origin: center;
}

/* SVG icons */
.floating-contact svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

/* Labels */
.floating-contact .label {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}

/* WhatsApp style */
.btn-whatsapp {
  background: linear-gradient(180deg, #25D366 0%, #128C7E 100%);
  color: #fff;
}

/* Phone style */
.btn-call {
  background: linear-gradient(180deg, #0078d7 0%, #005ea6 100%);
  color: #fff;
}

/* Hover / active */
.floating-contact .btn:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 26px rgba(0,0,0,0.2);
}

/* Small 'ping' animation to draw attention */
.btn-whatsapp::after,
.btn-call::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.9;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.15);
  animation: ping 2.6s infinite;
}

@keyframes ping {
  0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(0,0,0,0.12); opacity: 0.9; }
  70% { transform: scale(2.2); box-shadow: 0 0 0 6px rgba(0,0,0,0.02); opacity: 0; }
  100% { transform: scale(2.2); box-shadow: 0 0 0 6px rgba(0,0,0,0.00); opacity: 0; }
}

/* Make it compact on small screens */
@media (max-width: 500px) {
  .floating-contact {
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }
  .floating-contact .label { display: none; } /* icons only on very small screens */
  .floating-contact .btn { padding: 10px; min-width: 48px; }
}
/*FAQ*/
/* ✅ FAQ Section Styling */
.faq-section {
  background: linear-gradient(135deg, #004f91, #0099cc);
  color: white;
  padding: 70px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.faq-section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.faq-intro {
  font-size: 1rem;
  color: #e2e8f0;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.faq-question {
  padding: 18px 22px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #004f91;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #f9fafc;
  position: relative;
}

.faq-icon {
  font-size: 1.6rem;
  font-weight: bold;
  color: #0099cc;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  color: #444;
  font-size: 0.95rem;
  line-height: 6.6;
  transition: all 0.4s ease;
  border-top: 1px solid #e5e7eb;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 22px;
  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #ff5722;
}

@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 1.8rem;
  }
  .faq-question {
    font-size: 1rem;
  }
}
/*call cta action*/
/* 🌟 Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, #004f91, #007bff);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Floating background bubbles */
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  animation: float 6s infinite ease-in-out alternate;
  z-index: 1;
}

.cta-section::before {
  width: 200px;
  height: 200px;
  top: -60px;
  left: -80px;
}

.cta-section::after {
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: -100px;
  animation-delay: 2s;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(20px); }
}

.cta-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
}

.cta-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  animation: fadeInUp 0.8s ease forwards;
}

.cta-content p {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease forwards;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  animation: fadeInUp 1.4s ease forwards;
}

/* 🎨 Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 38px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.whatsapp-btn {
  background: linear-gradient(45deg, #25d366, #1ebe57);
  color: #fff;
  animation: pulse 2.5s infinite ease-in-out;
}

.call-btn {
  background: linear-gradient(45deg, #ff6b6b, #f44336);
  color: #fff;
}

/* Hover glow */
.cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: rgba(255,255,255,0.2);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  transform: scale(0.8);
  z-index: -1;
}

.cta-btn:hover::after {
  opacity: 1;
  transform: scale(1.05);
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* 🌈 Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 600px) {
  .cta-content h2 { font-size: 1.7rem; }
  .cta-btn { padding: 12px 25px; font-size: 1rem; }
}
/*footer*/
   /* 🌐 Bosch Footer */
    .bosch-footer {
      background: linear-gradient(135deg, #002f5e, #005fb8);
      color: #fff;
      padding: 70px 20px 30px;
      font-family: 'Poppins', sans-serif;
      position: relative;
      overflow: hidden;
    }

    /* Floating circles for animation */
    .bosch-footer::before,
    .bosch-footer::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      animation: footerFloat 6s infinite alternate ease-in-out;
      z-index: 0;
    }

    .bosch-footer::before {
      width: 220px;
      height: 220px;
      top: -60px;
      left: -80px;
    }

    .bosch-footer::after {
      width: 280px;
      height: 280px;
      bottom: -80px;
      right: -100px;
      animation-delay: 3s;
    }

    @keyframes footerFloat {
      from { transform: translateY(0); }
      to { transform: translateY(20px); }
    }

    /* Footer layout */
    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 40px;
      position: relative;
      z-index: 1;
    }

    .footer-col h3, .footer-col h4 {
      color: #fff;
      font-weight: 600;
      margin-bottom: 15px;
      border-bottom: 2px solid #00bcd4;
      display: inline-block;
      padding-bottom: 6px;
      animation: fadeInUp 1s ease;
    }

    .footer-col p, 
    .footer-col ul li a {
      color: #ddd;
      font-size: 0.95rem;
      line-height: 1.7;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    /* ← Add bold white arrow before every link */
    .footer-col ul li a::before {
      content: "→ ";
      color: #fff;
      font-weight: 900;
      margin-right: 6px;
      transition: transform 0.3s ease, color 0.3s ease;
      display: inline-block;
    }

    .footer-col ul li a:hover {
      color: #00bcd4;
      transform: translateX(5px);
    }

    .footer-col ul li a:hover::before {
      color: #00bcd4;
      transform: translateX(4px);
    }

    /* Social icons */
    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.15);
      color: #fff;
      font-size: 1.2rem;
      margin-right: 10px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .social-links a:hover {
      background: #00bcd4;
      transform: scale(1.15) rotate(10deg);
      color: #fff;
    }

    /* Bottom bar */
    .footer-bottom {
      text-align: center;
      padding-top: 25px;
      border-top: 1px solid rgba(255,255,255,0.2);
      margin-top: 40px;
      font-size: 0.9rem;
      color: #bbb;
      animation: fadeInUp 1.5s ease;
    }

    /* Animation */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive */
    @media (max-width: 600px) {
      .footer-col h3, .footer-col h4 { font-size: 1.1rem; }
      .footer-col p, .footer-col ul li a { font-size: 0.9rem; }
    }