
/* Base Styles */
body {
  margin: 0;
   font-family: "Overpass", sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
   font-family: "Overpass", sans-serif;
}

/* Top Contact Bar */
.top-contact-bar {
  background-color: #7a0c0c;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img{
 width: 150px;

}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Hero Section */
.hero {
  position: relative;
  background: url('https://plus.unsplash.com/premium_photo-1677865215414-f78e263f7c85?q=80&w=1374&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 0, 0, 0.8);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.hero button {
  padding: 12px 28px;
  background-color: #7a0c0c;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.hero button:hover {
  background-color: #640707;
}

/* About Section */
.about {
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
}
.about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #7a0c0c;
  margin: 5px auto;
}
/* Services Section */
.services {
 
  padding: 20px 20px;
  text-align: center;
  width: 70%;
    margin: auto;
}
.services h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #7a0c0c;
  margin: 5px auto;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Mini Hero */
.mini-hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1598690042638-1b9844b7ef83?q=80&w=1465&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 50px 20px;
  overflow: hidden;
}
.mini-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.mini-hero-content{
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: auto;
}
.mini-hero h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
}

.mini-hero p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.mini-hero button {
  padding: 12px 28px;
  background-color: #7a0c0c;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  width: 80%;
  margin: auto;
}
.contact h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #7a0c0c;
  margin: 5px auto;
  
}
.contact h2 {
  text-align: center;
  margin-bottom: 40px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.contact-column ul {
  list-style: none;
  padding: 0;
}

.contact-column ul li {
  margin-bottom: 10px;
}

.contact-column ul li a {
  text-decoration: none;
  color: #333;
}

.contact-column form input,
.contact-column form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact-column form button {
  padding: 10px 24px;
  background-color: #7a0c0c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Footer */
footer {
  background: #f1f1f1;
  padding: 20px;
  border-top: 1px solid #ddd;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-content p {
  margin: 0;
}

.social-icons a {
  margin-left: 10px;
  color: #7a0c0c;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }

  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* cookies */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1e1e1e;
  color: white;
  padding: 20px;
  z-index: 10000;
  display: none;
  font-family: sans-serif;
  font-size: 14px;
}

.cookie-options {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.cookie-buttons {
  margin-top: 10px;
}

.cookie-buttons button {
  background: #00c896;
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
  cursor: pointer;
}

/* Testimonials */
.testimonials {
  text-align: center;
  padding: 60px 20px;
  background-color: #f7f7f7;
}
.testimonials h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #7a0c0c;
  margin: 5px auto;
  
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.testimonial-card {
  max-width: 300px;
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-style: italic;
}
.testimonial-card strong {
  display: block;
  margin-top: 10px;
  color: #333;
}

/* Certifications */
.certifications {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}
.certifications h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #7a0c0c;
  margin: 5px auto;
  
}
.cert-grid img {
  opacity: 0;
  transform: translateY(20px);
  animation: certFadeIn 0.8s forwards;
}

.cert-grid img:nth-child(1) { animation-delay: 0.3s; }
.cert-grid img:nth-child(2) { animation-delay: 0.6s; }
.cert-grid img:nth-child(3) { animation-delay: 0.9s; }

@keyframes certFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.certifications h2 {
  text-align: center;
  margin-bottom: 40px;
}
.cert-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cert-grid img {
  height: 60px;
  object-fit: contain;
}
/* whatsapp CTA */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 24px;
padding:7px 15px;
 border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
}
.whatsapp-float:hover {
  background-color: #1ebd5a;
}
.whatsapp-float {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}


/* trust badge */
.trust-badges {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.trust-badges h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #7a0c0c;
  margin: 5px auto;
  
}
.trust-badges h2 {
  text-align: center;
  margin-bottom: 40px;
}
.trust-heading {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #333;
}

.trust-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width:120px;
}

.trust-item img {
  height: 60px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.trust-item p {
  font-size: 1.2rem;
  color: #555;
  margin: 0;
}

.trust-item:hover img {
  transform: scale(1.1);
}

/* Lead Capture Section */
.lead-capture {
  text-align: center;
  padding: 50px 20px;
  background-color: #f1f1f1;
}

.lead-capture h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #7a0c0c;
  margin: 5px auto;
  
}
.lead-capture h2 {
  text-align: center;
  margin-bottom: 40px;
}

.lead-capture p {
  margin-bottom: 30px;
}

.lead-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lead-form input,
.lead-form button {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.lead-form button {
  padding: 12px 28px;
  background-color: #7a0c0c;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.lead-form button:hover {
  background-color: #7a0c0c;
}


/* Exit Popup */
.hidden {
  display: none !important;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}


/* Success Page Styles */

.success-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  padding: 1rem;
}

.success-container {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 480px;
  width: 100%;
  text-align: center;
}


.success-container h1 {
  color: #7a0c0c;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.success-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.success-container a {
  padding: 12px 28px;
  background-color: #7a0c0c;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.success-container a:hover {
  background-color: #7a0c0c;
}


/* Team Section */
.team {
  padding: 3rem 1rem;
  background: #f9f9f9;
  text-align: center;
}
.team h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #7a0c0c;
  margin: 5px auto;
  
}
.team-member {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team h2 {
  text-align: center;
  margin-bottom: 40px;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 280px;
  flex: 1 1 280px;
}

.team-member img {
  width: 100%;

  object-fit: cover;

  margin-bottom: 1rem;
}

.team-member .role {
  font-weight: 600;
  color: #7a0c0c;
  margin-bottom: 0.75rem;
}


/* FAQ Section */
.faq {
  max-width: 700px;
  margin: 0 auto 4rem auto;
}
.faq h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #7a0c0c;
  margin: 5px auto;
  
}
.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}
.accordion-item {
  border-bottom: 1px solid #ddd;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-header[aria-expanded="true"] + .accordion-body {
  max-height: 200px; /* or auto with JS */
}

.accordion-header {
  background: #7a0c0c;
  color: white;
  cursor: pointer;
  padding: 1rem 1.5rem;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.accordion-header:hover,
.accordion-header[aria-expanded="true"] {
  background: #af1111;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  background: #f7f9fc;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-body p {
  margin: 1rem 0;
}

/* When expanded */
.accordion-header[aria-expanded="true"] + .accordion-body {
  max-height: 200px; /* Adjust if needed */
  padding: 1rem 1.5rem;
}

/*animations*/
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
