:root {
  --bosch-blue: #004aad;
  --light-blue: #e8f0ff;
}

/* Navbar base */
.bosch-header {
  background-color: var(--bosch-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5%;
  color: white;
  font-family: "Poppins", sans-serif;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* Brand section */
.brand-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 40px;
  /* space from left */
}

.brand-box img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.brand-name {
  font-weight: 600;
  font-size: 1.2rem;
}

/* Menu links */
.menu-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 35px;
  margin: 0;
}

.menu-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.menu-links a:hover {
  color: #ffd45a;
}

/* Dropdown (desktop hover + mobile toggle) */
.menu-links li {
  position: relative;
}

.menu-links a,
.menu-links button {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.menu-links .dropdown-toggle {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-links .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
  list-style: none;
  display: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 2000;
}

.menu-links .dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}

.menu-links .dropdown-menu a:hover {
  background: #eef4ff;
  border-bottom: 0;
}

.menu-links li.has-dropdown:hover>.dropdown-menu {
  display: block;
}

/* Call button */
.contact-btn {
  background: linear-gradient(45deg, #ff6b6b, #ff3b3b);
  color: white;
  padding: 23px 23px;
  border-radius: 8px;
  border: 2px solid white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
  margin-right: 10px;
  /* space from right edge */
}

.contact-btn:hover {
  background: white;
  color: var(--bosch-blue);
  transform: scale(1.05);
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 28px;
  cursor: pointer;
  margin-right: 0;
}

.hamburger span {
  background: white;
  width: 100%;
  height: 4px;
  margin: 3px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile View (same pattern as home) */
@media (max-width: 786px) {
  .bosch-header {
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    padding: 10px 5% 8px;
  }

  .brand-box {
    margin-left: 0;
    order: 1;
  }

  .menu-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--bosch-blue);
    text-align: left;
    padding: 10px 0;
    gap: 20px;
    order: 4;
  }

  .menu-links.active {
    display: flex;
  }

  .menu-links li.has-dropdown:hover>.dropdown-menu {
    display: none;
  }

  .menu-links .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 6px 0 0;
    background: transparent;
    min-width: 0;
  }

  .menu-links .dropdown-menu a {
    color: #fff;
    font-weight: 500;
    padding: 10px 12px;
  }

  .menu-links .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .menu-links li.has-dropdown.open>.dropdown-menu {
    display: block;
  }

  .menu-links .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 8px 0;
  }

  .contact-btn {
    order: 3;
    margin: 6px 0 0;
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    margin-right: 0;
  }

  .hamburger {
    display: flex;
    position: static;
    margin-left: auto;
    order: 2;
  }

  /* Animation when menu opens */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}







body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #f9fbff;
  color: #222;
  line-height: 1.7;
}

/* Hero */
.hero {
  position: relative;
  background: url('/assests/oven\ hero\ banner.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 160px 10%;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 35, 90, 0.65);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1rem;
}

/* Sections */
.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  gap: 40px;
  flex-wrap: wrap;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.section:nth-child(even) {
  background: #f1f6ff;
  flex-direction: row-reverse;
}

.section img {
  width: 100%;
  max-width: 550px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content {
  flex: 1;
  min-width: 300px;
}

.content h2 {
  color: #004aad;
  font-size: 1.9rem;
  margin-bottom: 15px;
}

.content p {
  color: #333;
  margin-bottom: 20px;
}

.details h3 {
  color: #004aad;
  font-size: 1.2rem;
  margin-top: 20px;
}

.details p {
  color: #444;
  font-size: 0.98rem;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
    padding: 60px 5%;
  }

  .section:nth-child(even) {
    flex-direction: column;
  }

  .hero {
    padding: 120px 5%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}

.testimonials-modern {
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
  padding: 90px 10%;
  text-align: center;
  overflow: hidden;
}

.testimonials-modern h2 {
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 10px;
  font-weight: 700;
}

.testimonials-intro {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 50px;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  background: linear-gradient(145deg, #0056d2, #003c99);
  color: white;
  width: 320px;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 74, 173, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  cursor: pointer;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 74, 173, 0.4);
}

.stars {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #ffdd33;
  text-shadow: 0 0 6px rgba(255, 221, 51, 0.8);
  letter-spacing: 2px;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e6e6e6;
}

@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 90%;
  }
}















/*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 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;
  }
}

/* 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;
  }
}

.hero-content a.call-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background-color: #004aad;
  /* Bosch Blue */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.hero-content a.call-btn:hover {
  background-color: #003580;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}