* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  /* color: rgb(152, 9, 9); */
  /* color: #f0a500; */
    overflow-x: hidden;
  width: 100%;
}
/* Make sure images / media are not overflowing */
img, video, iframe {
  max-width: 100%;
  height: auto;
}


/*=== topbar ===*/
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;  
  width: 100%;
}


/*... header ...*/
/*=== topbar header's logo ===*/
.header {
  display: flex;
  justify-content:space-between;
  align-items: center;
  padding: 12px 200px 15px 70px;
  background-color: #f0a500;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header .logo img {
  height: 40px;
  width: auto;
}
.header .logo button{
  border: none;
}
.header .logo h2 {
  margin: 0;
  font-size: 1.8rem;
  color:rgb(152, 9, 9);
  background:#f0a500 ;
}
/*== topbar contact's contact ==*/
.header .contact {
  display: flex;
  align-items: center;
  gap:25px; /* space between items */
  list-style: none; /* if you are using li directly, remove bullets */
  margin: 0;
  padding: 0;
}
.header .contact li a {
  text-decoration: none;
  padding: 6px 12px;
}
.header .contact .signin{
    display: flex;
    flex-direction: row;
    gap:5px;
    width: 150px;
}
.header .contact .signin img{
    margin-top: 15px;
    width: 30px;
    height: 30px;
}
.header .contact .signin a{
    color: rgb(152, 9, 9);
    font-weight: bold;
}
.header .contact li a:hover {
    color: black;
}
/* "Contact Us" button */
.header .contact li.sign button {
  background:rgb(152, 9, 9);
  color:#f0a500;
  border: none;
  padding: 8px 16px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.header .contact li.sign button:hover {
  transform: scale(1.2);
}


/* Hamburger button styling */
.hamburger {
  display: none;
  font-size:2.5rem;
  color:rgb(152, 9, 9);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
}

/* ... header's media query ... */
@media (max-width:768px) {
    html, body {
        overflow-x: hidden;
    }
    .header .logo{
        display: flex;
        flex-direction: column;
        margin-left:-10px;
    }
    .header .logo h2{
        font-size: 1.5rem;
    }
    .header .contact {
        flex-direction: column;
        gap: 20px;
        margin-left: 40px;
    }
    .header .contact .signin img{
        margin-top: 10px;
    }
    .header .contact li a,
    .header .contact li.sign button {
        font-size: 0.8rem;
    }
    .header .contact li.sign button {
        padding: 6px 12px;
        margin-left: -42px;
    }
    /* Optional: adjust any padding / margin that might push things out */
    .header {
        padding-left: 20px;
        padding-right: 20px;
    }
    .navBar .navLinks {
        padding-left: 0;  /* instead of 220px */
    }
    .hamburger{
        display: block;
        margin-left:-12px;
    }
}



/*=== navbar ===*/
.navBar {
  display: block;
  background-color:rgb(152, 9, 9) ;
  /* background-color: orangered; */
  height: 80px;
  border-top: 1px solid white;
  padding: 10px;
}
.navBar .navLinks {
  margin: 0 auto;
  padding-left: 220px;
}
.navBar .linkRight {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.5rem;
  gap: 1.5rem;
}

/*=== topbar navbar's Dropdown menu ===*/
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  min-width: 180px;
  padding: 0.5rem 0;
  list-style: none;
}
.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(-5);
}
.dropdown-menu li a {
  display: block;
  color:black;
  margin-top:-22px;
  font-size:1rem;
}

.linkRight li {
  position: relative;
}
.linkRight li a {
  text-decoration: none;
  font-size: 1.03rem;
  color: white;
  font-weight: bold;
  padding: 0.5rem 0.75rem;
  transition: background 0.3s, color 0.3s;
}
.linkRight li a:hover {
  /* color:#555; */
  color: #f0a500;
}
.linkRight li.sign button {
  background: red;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-weight: bold;
  box-sizing: border-box;
    /* Pulse animation */
  animation: pulse-btn 2s ease-in-out infinite;
}
/* @keyframes for pulse */
@keyframes pulse-btn {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* Mobile / small-screen styles */
@media (max-width:768px) {
  .header{
    height: 150px;
  }
  .navBar {
    display: none;
    width: 100%;
  }
  .navBar.active {
    display: block;
    background:rgb(152, 9, 9);
    height: 60vh;
  }
  .navBar .navLinks {
    padding: 1rem;
  }
  .navBar .linkRight {
    flex-direction: column;
    gap: 0;
  }
  .linkRight li {
    width: 100%;
    margin: 0;
    padding: 0.5rem 0;
  }
  .linkRight li a {
    display: block;
    width: 100%;
    color: #f0a500;
    padding: 0.75rem 1rem;
    background: transparent;
  }
  
  /* Allow scrolling if list is long */
  .navBar.active .linkRight {
    overflow-y: auto;
    max-height: 80vh;
    padding-bottom: 100px; /* space for button visibility */
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
  }
  .dropdown-menu li a {
    color:white;
    padding-left: 2rem;
  }

}












.hero-value {
  background: rgb(250, 250, 250);
  color: white;
  text-align: center;
  padding: 100px 20px;
  
  /* Fade + slide animation on load */
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s ease-out forwards;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-value .hero-inner {
  max-width: 700px;
  margin: auto;
}

.hero-value h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: orangered;

  /* Slight pop animation on headline */
  animation: popIn 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-value p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: textFade 1s ease-out forwards;
  animation-delay: 0.6s;
  color: #555;
}

.hero-value .cta-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  color: white;
  background:orangered;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;

  opacity: 0;
  transform: translateY(20px);
  animation: textFade 1s ease-out forwards;
  animation-delay: 0.9s;
}

.hero-value .cta-btn:hover {
  background:black;
  transform: translateY(-3px);
}

@keyframes textFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive styles for <= 768px */
@media only screen and (max-width: 768px) {
  .hero-value {
    padding: 60px 15px;
  }

  .hero-value h1 {
    font-size: 2rem;
  }

  .hero-value p {
    font-size: 1rem;
  }

  .hero-value .cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}









.pricing-section {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  background-color:rgb(250, 250, 250) ;
}

.pricing-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: orangered;
}

/* Toggle Switch */
.billing-toggle {
  margin-bottom: 40px;
}
.billing-toggle label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
}
.billing-toggle input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.2);
}
.toggle-label {
  color: #555;
}

/* Pricing Cards Grid */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}


.pricing-section .pricing-cards .plan-card:nth-child(2){
  /* combine existing entrance animation with pulse */
  /* background-color: orangered; */
  animation: fadeInPlan 0.8s ease-out forwards, pulse 2s infinite ease-in-out;
  transform-origin: center center;
}
/* .pricing-section .pricing-cards .plan-card .popular:nth-child(2) .badge{
  color: white;
} */
/* Gentle pulse keyframes */
@keyframes pulse {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  50% {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.10);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
}

/* Individual Plan Card */
.plan-card {
  background:  rgb(250, 250, 250);
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 30px 20px;
  position: relative;
  box-shadow: 4px 4px 3px 5px orangered;
  transition: transform 0.3s, border-color 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInPlan 0.8s ease-out forwards;
}

.plan-card:nth-child(1) { animation-delay: 0.2s; }
.plan-card:nth-child(2) { animation-delay: 0.4s; }
.plan-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInPlan {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-card:hover {
  transform: translateY(-5px);
  /* border-color: #0070f3; */
}

.plan-card .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: orangered;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 4px;
}

/* Plan Header */
.plan-header h3 {
  margin: 0;
  font-size: 1.6rem;
  color: #222;
}

.plan-card .price {
  margin: 15px 0;
  font-size: 1.8rem;
  font-weight: bold;
  color: orangered;
}
.plan-card .price .yearly {
  display: none;
}
.plan-card .billing-note {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

/* Features list */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: #555;
  line-height: 1.5;
}
.plan-features li {
  margin-bottom: 8px;
}

/* CTA button */
.plan-card .btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 1rem;
  color: #fff;
  background: orangered;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.plan-card .btn:hover {
  background: black;
  transform: translateY(-2px);
}

/* Toggle Coverage (Monthly / Yearly) */
/* JS will toggle a class on the body or pricing-section to switch pricing */
.billing-yearly .plan-card .price .monthly {
  display: none;
}
.billing-yearly .plan-card .price .yearly {
  display: inline;
}

/* Media Query for <= 768px */
@media only screen and (max-width: 768px) {
  .pricing-section {
    padding-top: 40px;
  }
  .pricing-section h2 {
    font-size: 1.8rem;
  }
  .plan-card {
    padding: 20px 15px;
  }
  .plan-card .price {
    font-size: 1.5rem;
  }
  .plan-card .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}










/* --- Base styles (your existing CSS) --- */
    .benefits-section {
      /* max-width: 800px; */
      margin: 60px auto;
      padding: 30px 20px;
      background: rgb(250, 250, 250);
      border-radius: 8px;
      text-align: center;

      /* Fade-in animation */
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInBenefits 0.8s ease-out forwards;
    }

    @keyframes fadeInBenefits {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .benefits-section h2 {
      font-size: 2.5rem;
      margin-bottom: 25px;
      color: orangered;
    }

    .benefits-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .benefit-item {
      display: flex;
      align-items: center;
      /* max-width: 200px; */
      background: white;
      padding: 15px 20px;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transform: scale(0.95);
      opacity: 0;
      animation: popIn 0.6s ease-out forwards;
      overflow: hidden; /* needed so sliding text is masked while entering */
    }

    .benefit-item:nth-child(1) { animation-delay: 0.3s; }
    .benefit-item:nth-child(2) { animation-delay: 0.5s; }
    .benefit-item:nth-child(3) { animation-delay: 0.7s; }
    .benefit-item:nth-child(4) { animation-delay: 0.9s; }
    .benefit-item:nth-child(5) { animation-delay: 1.1s; }

    @keyframes popIn {
      from {
        opacity: 0;
        transform: scale(0.95);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .benefit-item .icon {
      font-size: 1.8rem;
      margin-right: 12px;
      flex: 0 0 auto;
    }

    /* Make text an inline-block so transforms animate cleanly */
    .benefit-item .text {
      display: inline-block;
      font-size: 1rem;
      color: #444;
      text-align: left;
      transform: translateX(120%); /* start off-screen to the right */
      /* slide animation applied below with staggered delays */
      white-space: nowrap; /* optional: prevent wrapping for the nameboard effect */
    }

    /* --- Slide-in (nameboard) animation for text --- */
    @keyframes slideInText {
      0% {
        transform: translateX(120%);
        opacity: 0;
      }
      60% {
        transform: translateX(-6%); /* slight overshoot for natural effect */
        opacity: 1;
      }
      80% {
        transform: translateX(2%);  /* settle back */
      }
      100% {
        transform: translateX(0);
      }
    }

    /* apply the slide animation to each text, staggered to match popIn delays */
    .benefit-item:nth-child(1) .text { animation: slideInText 0.9s cubic-bezier(.22,.9,.35,1) 0.3s forwards; }
    .benefit-item:nth-child(2) .text { animation: slideInText 0.9s cubic-bezier(.22,.9,.35,1) 0.5s forwards; }
    .benefit-item:nth-child(3) .text { animation: slideInText 0.9s cubic-bezier(.22,.9,.35,1) 0.7s forwards; }
    .benefit-item:nth-child(4) .text { animation: slideInText 0.9s cubic-bezier(.22,.9,.35,1) 0.9s forwards; }
    .benefit-item:nth-child(5) .text { animation: slideInText 0.9s cubic-bezier(.22,.9,.35,1) 1.1s forwards; }

    /* Respect users who prefer reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .benefit-item,
      .benefit-item .text {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
      }
    }

    /* Media query for mobile / tablet */
    @media only screen and (max-width: 768px) {
      .benefits-section {
        padding: 20px 15px;
      }

      .benefits-section h2 {
        font-size: 1.6rem;
      }

      .benefits-list {
        flex-direction: column;
        gap: 15px;
      }

      .benefit-item {
        max-width: 100%;
        padding: 12px 16px;
      }

      .benefit-item .icon {
        font-size: 1.5rem;
        margin-right: 10px;
      }

      .benefit-item .text {
        font-size: 0.95rem;
        transform: translateX(80%); /* shorter slide distance on small screens */
        white-space: normal; /* allow wrapping on small screens */
      }

      /* different slide keyframes for small screens (using same name but local to media query) */
      @keyframes slideInText {
        0% {
          transform: translateX(80%);
          opacity: 0;
        }
        60% {
          transform: translateX(-4%);
          opacity: 1;
        }
        80% {
          transform: translateX(2%);
        }
        100% {
          transform: translateX(0);
        }
      }

      /* keep the same staggered delays on mobile */
      .benefit-item:nth-child(1) .text { animation: slideInText 0.9s cubic-bezier(.22,.9,.35,1) 0.3s forwards; }
      .benefit-item:nth-child(2) .text { animation: slideInText 0.9s cubic-bezier(.22,.9,.35,1) 0.5s forwards; }
      .benefit-item:nth-child(3) .text { animation: slideInText 0.9s cubic-bezier(.22,.9,.35,1) 0.7s forwards; }
      .benefit-item:nth-child(4) .text { animation: slideInText 0.9s cubic-bezier(.22,.9,.35,1) 0.9s forwards; }
      .benefit-item:nth-child(5) .text { animation: slideInText 0.9s cubic-bezier(.22,.9,.35,1) 1.1s forwards; }
    }















.social-proof-style1 {
  /* max-width: 800px; */
  margin: 60px auto;
  padding: 30px 20px;
  background: orangered;
  border-radius: 8px;
  text-align: center;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeInSP1 0.8s ease-out forwards;
}

@keyframes fadeInSP1 {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.social-proof-style1 h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.proof-item {
  /* background: white; */
  padding: 20px;
  border-radius: 6px;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */

  opacity: 0;
  transform: translateY(10px);
  animation: fadeInItem1 0.8s ease-out forwards;
}

.proof-item:nth-child(1) { animation-delay: 0.3s; }
.proof-item:nth-child(2) { animation-delay: 0.5s; }
.proof-item:nth-child(3) { animation-delay: 0.7s; }
.proof-item:nth-child(4) { animation-delay: 0.9s; }

@keyframes fadeInItem1 {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.proof-item .number {
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

.proof-item .label {
  margin-top: 5px;
  color: white;
}

.proof-item.expert .quote {
  font-style: italic;
  color: white;
}

.proof-item.expert .author {
  margin-top: 10px;
  font-weight: bold;
  color: white;
}

.proof-item.certification img {
  max-width: 60px;
  display: inline-block;
}

.proof-item.certification .cert-label {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #333;
}

/* Responsive for ≤768px */
@media only screen and (max-width: 768px) {
  .social-proof-style1 {
    padding: 20px 15px;
  }

  .social-proof-style1 h2 {
    font-size: 1.6rem;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    padding: 15px;
  }

  .proof-item .number {
    font-size: 1.6rem;
  }

  .proof-item .label,
  .proof-item.expert .author,
  .proof-item.certification .cert-label {
    font-size: 0.9rem;
  }
}










.social-proof-style2 {
  /* max-width: 900px; */
  margin: 0 auto;
  margin-top: -2px;
  padding: 30px 20px;
  background: orangered;
  border-radius: 8px;
  text-align: center;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeInSP2 0.8s ease-out forwards;
}

@keyframes fadeInSP2 {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.social-proof-style2 h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: white;
}

/* Carousel style (simple fade between reviews) */
.carousel {
  position: relative;
  height: 100px; /* fix height if needed */
  overflow: hidden;
}

.review {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: reviewFade 8s infinite;
}

.review:nth-child(1) { animation-delay: 0s; }
.review:nth-child(2) { animation-delay: 4s; }

@keyframes reviewFade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  40% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 0; }
}

.review p {
  font-size: 1rem;
  color: white;
  margin: 0;
}

.review .author {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  color: white;
}

/* Counters */
.counters {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.count-item .count {
  font-size: 2rem;
  color: white;;
}

.count-item .count-label {
  margin-top: 5px;
  color: white;
}

/* Logos wall */
.logo-wall {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.logo-wall img {
  max-height: 40px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInLogo2 0.8s ease-out forwards;
}

.logo-wall img:nth-child(1) { animation-delay: 0.5s; }
.logo-wall img:nth-child(2) { animation-delay: 0.7s; }

@keyframes fadeInLogo2 {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive for <= 768px */
@media only screen and (max-width: 768px) {
  .social-proof-style2 {
    padding: 20px 15px;
  }

  .social-proof-style2 h2 {
    font-size: 1.6rem;
  }

  .counters {
    flex-direction: column;
    gap: 20px;
  }

  .count-item .count {
    font-size: 1.6rem;
  }

  .logo-wall {
    gap: 20px;
  }

  .logo-wall img {
    max-height: 30px;
  }
}













.faq-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);

  /* Fade-in on load */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInFAQ 0.8s ease-out forwards;
}

@keyframes fadeInFAQ {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.faq-item {
  margin-bottom: 15px;
}

.question {
  width: 100%;
  background: rgb(248, 134, 92);
  border: none;
  padding: 12px 16px;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: background 0.3s;
}

.question:hover {
  background:orangered;
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background:black;
  padding: 0 16px;
  border-left: 4px solid red;
  border-radius: 0 0 4px 4px;
}

.answer p {
  margin: 12px 0;
  color: rgb(240, 162, 17);
  line-height: 1.5;
}

/* When .faq-item is “open”, expand answer */
.faq-item.open .answer {
  max-height: 200px; /* adjust as needed */
  padding: 12px 16px;
}

/* Media Query for ≤ 768px */
@media only screen and (max-width: 768px) {
  .faq-section {
    padding: 15px;
  }

  .faq-section h2 {
    font-size: 1.6rem;
  }

  .question {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .answer p {
    font-size: 0.95rem;
  }
}












/* Base reset for footer */
.auto-footer {
  position: relative;
  background:rgb(152, 9, 9);
  /* background: orangered; */
  color: #eee;
  padding-top: 30px; 
  font-family: sans-serif;
  overflow: hidden;
}

.auto-footer .logo{
  display: flex;
  flex-direction: row;
  margin-left: 550px;
  margin-bottom: 30px;
}
.auto-footer .logo button{
  border: none;
  background-color: rgb(152, 9, 9);
}
.auto-footer .logo button h2{
  font-size: 2.5rem;
  color: white;
}

/* Footer content */
.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
  max-width: 1500px;
  margin: auto;
}


.footer-col {
  flex: 1 1 200px;
  margin: 10px;
}
.footer-col h4 {
  margin-bottom: 10px;
  color: #f0a500;
  /* color: #555; */
  text-shadow: 2px 2px 2px;
  font-size: 1.5rem;

  /* Pulse animation */
  animation: pulse 2s infinite ease-in-out;
  transform-origin: center center;
}
/* Define the pulse keyframes */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.footer-content .services{
    padding-left: 100px;
}


.footer-col p,
.footer-col ul {
  font-size: 14px;
  line-height: 1.6;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: #f0a500;
  text-decoration: underline;
}


.social-links {
    margin-top: 30px;
}
.social-links a {
  display: inline-block;
  transition: transform 0.3s, color 0.3s;
  margin: 0 10px;
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
/* Social-links hover animation */
.social-links a {
  display: inline-block;
  transition: transform 0.3s, color 0.3s;
  /* Animation */
  animation: pulse 2s infinite ease-in-out;
  display: inline-block; /* ensures transform works correctly */
  will-change: transform, opacity; /* helps performance */
}
/* Pulse keyframes */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes content-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Footer bottom */
.footer-bottom {
  padding: 15px 100px;
  margin-left: 550px;
  margin-bottom: 20px;
}
.footer-bottom p {
  margin: 0;
  font-size: 13px;
}




/* Responsive for small screens (<= 450px) */
@media (max-width:768px) {
  .auto-footer .logo {
    /* For smaller screens, you probably don't want huge left margin */
    margin-left: 0;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px; /* adjust as needed */
  }

  .auto-footer .logo button {
    width: 100%; /* make button full width or adjust */
    padding: 10px; /* optional padding */
    /* you can change background, border or other styles if needed */
  }

  .auto-footer .logo button h2 {
    font-size: 1.8rem; /* smaller font for smaller screen */
    text-align: center;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  .footer-col {
    margin: 5px 0;
    text-align: center;
  }
  .footer-content .services{
    padding-left: 2px;
    /* margin-bottom: 30px; */
    /* padding-top: -40px; */
    padding-bottom: 40px;
  }
  .footer-col p, .footer-col ul li a {
    font-size: 12px;
  }
  .footer-bottom {
    margin-left: 2px;
  }
  .social-links{
    margin-left:-1px;
  }
  .social-links img{
    /* width: 25px; */
    margin-top: 25px;
    margin-bottom: 15px;
  }
}
