/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Enable smooth scroll for all anchor jumps */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  display: block;
}

/* Navigation */
.nav-list {
  list-style: none;
  display: flex;
}
.nav-list li {
  margin-left: 20px;
}
.nav-list li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  margin-bottom: 4px;
  border-radius: 3px;
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, #cc0000 0%, #951088 100%);
  color: #fff;
  text-align: center;
  padding: 60px 0;
}


.hero-container h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}
.hero-container p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.cta-btn {
  background: linear-gradient(135deg, #FFEB3B 0%, #FBC02D 100%);
  color: #000000;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* Slightly deepen the gradient on hover */
  background: linear-gradient(135deg, #FDD835 0%, #F9A825 100%);
}


/* Sections */
section {
  padding: 20px 0 0 ;
}
section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
}

/* Service Overview */
#service ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

#testimonial p {
margin-bottom: 20px;
}

.testimonial-figure {
  margin: 0 auto 10px;
  max-width: 400px;
}

.testimonial-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto 20px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .testimonial-figure {
    max-width: 100%;
    padding: 0 20px;
  }
  .testimonial-section {
    padding: 40px 0;
  }
}

.secondary-cta {
  display: inline-block;
  background: #555;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

/* How It Works */
.steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  max-width: 300px;
  margin: 20px;
  text-align: center;
}
.step img {
  width: 80px;
  margin-bottom: 10px;
}

/* Benefits Section */
#benefits ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#benefits ul li {
  flex: 1;
  max-width: 300px;
  margin: 10px 20px;
  padding: 20px;
  background: #f4f4f4;
  border-radius: 5px;
  text-align: center;
}

/* Testimonials */
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial {
  max-width: 400px;
  background: #f4f4f4;
  margin: 10px;
  padding: 20px;
  border-radius: 5px;
}

/* Links in the testimonial text */
.testimonial a:link,
.testimonial a:visited {
  color: #951088;       /* brand purple */
  text-decoration: underline;
}

/* Optional hover/focus state */
.testimonial a:hover,
.testimonial a:focus {
  color: #cc0000;       /* complementary red on hover */
}

.testimonial h4 {
margin-top: 10px;
}

/* FAQ */
.faq-item {
  margin-bottom: 20px;
}
.faq-item h3 {
  cursor: pointer;
  padding: 10px;
  background: #eee;
  border-radius: 5px;
}
.faq-item p {
  padding: 10px;
  display: none; /* Add JS for toggle functionality if desired */
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.contact-form input,
.contact-form button {
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.contact-form button {
  background: #e8491d;
  color: #fff;
  border: none;
  cursor: pointer;
}

#contact {
  text-align: center;
  padding-bottom: 60px; 
}


/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
.footer-container .social a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #ccc; /* or any lighter shade to contrast with the background */
}


/* Responsive Styles */
@media (max-width: 768px) {

  #hero {
    padding: 30px 0; /* Reduced from 100px to 60px */
  }
  
  .hero-container h1 {
  font-size: 2.0em;
  margin-bottom: 20px;
}
.hero-container p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.cta-btn {
  background-color: #FFC107;
  color: #000000;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  margin-top: 0px;
}

  .header-container {
    flex-direction: column;
    padding: 10px 20px; /* Adds overall padding to the header */
  }
  .nav-list {
    flex-direction: column;
    display: none; /* Will be toggled via JavaScript */
  }
  .hamburger {
    display: flex;
    margin-left: 20px; /* Increases space between the logo and hamburger */
    margin-top: 20px; /* Adds space between the logo and the hamburger */
  }
  .steps {
    flex-direction: column;
    align-items: center;
  }
  #benefits ul {
    flex-direction: column;
    align-items: center;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

/* Ensure the PNG is displayed at your desired size */
.whatsapp-float img {
  width: 64px;
  height: 64px;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  /* only hide on pages marked with .hide-hero-mobile */
  body.hide-hero-mobile #hero {
    display: none;
  }
}



/* Car Loan Calculator Styles */

#calculator h2 {
  text-align: center;
  margin-bottom: 30px;
}
.calculator-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.calculator-form label {
  margin-top: 15px;
  font-weight: bold;
}
.calculator-form input {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.calculator-form button {
  margin-top: 20px;
  padding: 12px;
  background: linear-gradient(135deg, #cc0000 0%, #951088 100%);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}
.calculator-form button:hover {
  transform: scale(1.00);
  /* optional: slightly shift the gradient on hover */
  background: linear-gradient(135deg, #b30000 0%, #7d0d75 100%);
}

#payment-result {
  margin-top: 20px;
  text-align: center;
  font-size: 1.2em;
  color: #951088;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #calculator {
    padding: 40px 0;
  }
  .calculator-form {
    padding: 0 20px;
  }
}

