/* ================= GLOBAL ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* Brand Colors */
:root {
  --red: #D81F26;
  --orange: #F59E0B;
  --gradient: linear-gradient(90deg, #D81F26, #F59E0B);
  --text-dark: #1F2937;
}



/* ================= HEADER ================= */

.header {
  width: 100%;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */

.logo img {
  width: 90px;
  height: auto;
}

/* Navigation */

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover {
  color: #D81F26;
}

.nav a.active {
  color: #D81F26;
  font-weight: 600;
}

/* Apply Button */

.btn-apply {
  padding: 8px 20px;
  border-radius: 30px;
  background: linear-gradient(90deg, #D81F26, #F59E0B);
  color: #fff !important;
}

/* Hamburger */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  margin-bottom: 5px;
  border-radius: 3px;
  transition: 0.3s;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }

  .nav.active {
    display: flex;
  }

}
/* ================= HERO ================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fff5f5, #fffaf0);
  padding: 4rem 2rem;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

/* LEFT CONTENT */

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #D81F26, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: linear-gradient(90deg, #D81F26, #F59E0B);
  color: #fff;
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #D81F26;
  color: #D81F26;
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #D81F26;
  color: #fff;
}

/* FORM */

.hero-form {
  background: #fff;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 320px;
}

.hero-form h4 {
  margin-bottom: 1rem;
}

.hero-form input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
}

.hero-form button {
  width: 100%;
  padding: 10px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #D81F26, #F59E0B);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* RIGHT SIDE */

.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.card-mockup {
  width: 320px;
  height: 200px;
  background: linear-gradient(135deg, #D81F26, #F59E0B);
  border-radius: 20px;
  padding: 1.5rem;
  color: #fff;
  box-shadow: 0 15px 40px rgba(216,31,38,0.3);
}

.card-mockup span {
  font-size: 1.5rem;
  font-weight: bold;
}

.stat {
  position: absolute;
  background: #fff;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
}

.stat1 {
  top: -20px;
  right: -40px;
}

.stat2 {
  bottom: -20px;
  left: -40px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-visual {
    margin-top: 3rem;
  }

  .stat1,
  .stat2 {
    display: none;
  }
}
/* ================= FLOATING RUPEES ================= */

.hero {
  position: relative;
  overflow: hidden;
}

.rupee-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 0;
}

.rupee-bg span {
  position: absolute;
  font-size: 60px;
  font-weight: 700;
  color: rgba(216, 31, 38, 0.08);
  animation: floatRupee 12s linear infinite;
}

/* Individual positioning */

.rupee-bg span:nth-child(1) {
  left: 10%;
  animation-duration: 18s;
}

.rupee-bg span:nth-child(2) {
  left: 25%;
  font-size: 40px;
  animation-duration: 14s;
  animation-delay: 2s;
}

.rupee-bg span:nth-child(3) {
  left: 50%;
  font-size: 70px;
  animation-duration: 20s;
  animation-delay: 4s;
}

.rupee-bg span:nth-child(4) {
  left: 75%;
  font-size: 45px;
  animation-duration: 16s;
  animation-delay: 1s;
}

.rupee-bg span:nth-child(5) {
  left: 90%;
  font-size: 55px;
  animation-duration: 22s;
  animation-delay: 3s;
}

/* Floating animation */

@keyframes floatRupee {
  0% {
    bottom: -100px;
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(20px) rotate(180deg);
  }
  100% {
    bottom: 110%;
    transform: translateX(-20px) rotate(360deg);
  }
}

/* about stat  */
/* ================= NEW ABOUT SECTION ================= */

.about-new {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f1dac1, #fffdf6);
}

.about-wrapper {
  max-width: 1100px;
  margin: auto;
}

/* Heading */

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-header h2 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.about-header p {
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
  opacity: 0.85;
}

/* Feature Cards */

.about-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.feature-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  border: 1px solid rgba(216,31,38,0.08);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(216,31,38,0.15);
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h4 {
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Stats Bar */

.about-stats {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(90deg, #D81F26, #F59E0B);
  color: #fff;
  text-align: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-stats h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.about-stats span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive */

@media (max-width: 900px) {

  .about-features {
    flex-direction: column;
    align-items: center;
  }

  .about-stats {
    flex-direction: column;
  }

  .about-header h2 {
    font-size: 1.9rem;
  }

}
/* about end  */

/* What We Offer start  */
/* ================= SERVICES SECTION ================= */

.services {
  padding: 6rem 2rem;
  background: #ffffff;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-header p {
  max-width: 650px;
  margin: auto;
  opacity: 0.8;
  line-height: 1.6;
}

/* GRID */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* CARD */

.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(216,31,38,0.15);
  border-top: 4px solid #D81F26;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h4 {
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.service-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

/* BUTTON */

.service-btn {
  text-decoration: none;
  font-weight: 600;
  color: #D81F26;
  position: relative;
}

.service-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #D81F26, #F59E0B);
  bottom: -4px;
  left: 0;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 1.8rem;
  }
}
/* What We Offer” end */
/* How It Works start */
/* ================= HOW IT WORKS ================= */

.how-it-works {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #fff5f5, #fffaf0);
}

.how-container {
  max-width: 1200px;
  margin: auto;
}

.how-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.how-header p {
  max-width: 600px;
  margin: auto;
  opacity: 0.85;
  line-height: 1.6;
}

/* Steps Layout */

.steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  flex-wrap: wrap;
}

/* Connecting Line (Desktop Only) */

.steps::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 8%;
  width: 84%;
  height: 4px;
  background: linear-gradient(90deg, #D81F26, #F59E0B);
  z-index: 0;
}

/* Step Card */

.step {
  flex: 1;
  min-width: 220px;
  text-align: center;
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
  transition: 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(216,31,38,0.15);
}

/* Step Number Circle */

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #D81F26, #F59E0B);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -50px auto 1.5rem auto;
  box-shadow: 0 8px 20px rgba(216,31,38,0.3);
}

.step h4 {
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.step p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .steps::before {
    display: none;
  }

  .step {
    width: 100%;
    max-width: 400px;
  }
}
/* How It Works end */

/* WHY CHOOSE US :start */
/* ================= WHY CHOOSE US ================= */

.why-choose {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f1dac1, #fff5f5);
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT SIDE */

.why-left {
  flex: 1;
}

.why-left h2 {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.why-left p {
  margin-bottom: 2rem;
  opacity: 0.85;
  line-height: 1.6;
}

.why-highlight {
  background: #ffffff;
  padding: 1.5rem;
  border-left: 5px solid #D81F26;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.why-btn {
  display: inline-block;
  background: linear-gradient(90deg, #D81F26, #F59E0B);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.why-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(216,31,38,0.3);
}

/* RIGHT GRID */

.why-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(216,31,38,0.15);
}

.why-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.why-card h4 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.why-card p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .why-container {
    flex-direction: column;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-left h2 {
    font-size: 1.9rem;
  }
}
/* WHY CHOOSE US end */

/*  EMI Calculator Section :start */
/* ================= PREMIUM EMI SECTION ================= */

.emi-section {
  padding: 7rem 2rem;
  background: #111111;
  color: #ffffff;
}

.emi-wrapper {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.emi-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.emi-wrapper p {
  margin-bottom: 4rem;
  opacity: 0.8;
}

/* Main Box */

.emi-box {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 3rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  flex-wrap: wrap;
}

/* LEFT INPUTS */

.emi-inputs {
  flex: 1;
  text-align: left;
}

.emi-field {
  margin-bottom: 1.5rem;
}

.emi-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.emi-field input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  background: #1e1e1e;
  color: #fff;
}

.emi-field input:focus {
  outline: none;
  border: 1px solid #F59E0B;
}

/* BUTTON */

.emi-inputs button {
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg, #D81F26, #F59E0B);
  color: #fff;
  transition: 0.3s;
}

.emi-inputs button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(216,31,38,0.5);
}

/* RIGHT DISPLAY */

.emi-display {
  flex: 1;
  text-align: center;
  padding: 2rem;
}

.emi-display h3 {
  margin-bottom: 1rem;
}

.emi-value {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #D81F26, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.emi-note {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .emi-box {
    flex-direction: column;
  }

  .emi-wrapper h2 {
    font-size: 2rem;
  }

  .emi-value {
    font-size: 2.2rem;
  }
}
/*  EMI Calculator Section end  */

/* Eligibility Checker START */
/* ================= NEW ELIGIBILITY SECTION ================= */

.eligibility-section {
  padding: 7rem 2rem;
  background: #ffffff;
}

.eligibility-container {
  max-width: 900px;
  margin: auto;
}

.eligibility-header {
  text-align: center;
  margin-bottom: 3rem;
}

.eligibility-header h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.eligibility-header p {
  opacity: 0.8;
}

/* Main Card */

.eligibility-card {
  background: #f9fafc;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 5px solid #D81F26;
}

/* FORM */

.eligibility-form {
  flex: 1;
}

.field {
  margin-bottom: 1.5rem;
}

.field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.field input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #ffffff;
}

.eligibility-form button {
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg, #D81F26, #F59E0B);
  color: #fff;
  transition: 0.3s;
}

.eligibility-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(216,31,38,0.3);
}

/* RESULT */

.eligibility-result {
  flex: 1;
  text-align: center;
}

.eligible-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
  background: linear-gradient(90deg, #D81F26, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Progress Meter */

.eligibility-meter {
  height: 12px;
  background: #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.meter-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #D81F26, #F59E0B);
  transition: width 0.5s ease;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .eligibility-card {
    flex-direction: column;
  }
}
/* Eligibility Checker end */

/* TESTIMONIAL SECTION start  */
.testimonial-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #fff5f5, #fffaf0);
}

.testimonial-container {
  max-width: 1100px;
  margin: auto;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonial-header h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.testimonial-header p {
  opacity: 0.8;
}

/* GRID */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* CARD */

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  position: relative;
  border-bottom: 4px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(216,31,38,0.15);
  border-bottom: 4px solid #D81F26;
}

.stars {
  color: #F59E0B;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.client-info h4 {
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.client-info span {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
/* TESTIMONIAL SECTION end  */

/* FAQ :start */
.faq-section {
  padding: 6rem 2rem;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.faq-header p {
  opacity: 0.8;
}

/* FAQ LIST */

.faq-item {
  border-radius: 15px;
  background: #f9fafc;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: 0.3s;
}

.faq-item.active {
  border-left: 4px solid #D81F26;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
}

.faq-question h4 {
  font-weight: 600;
}

.faq-question span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #D81F26;
  transition: 0.3s;
}

/* ANSWER */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 1.8rem;
  }
}
/* Faq end  */

/* CTA :start */
/* ================= ADVISOR MODAL ================= */

.advisor-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.advisor-modal.active {
  display: flex;
}

.advisor-box {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  position: relative;
  animation: popupFade 0.3s ease;
}

.advisor-box h3 {
  margin-bottom: 1rem;
}

.advisor-box p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.advisor-number {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.call-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(90deg, #D81F26, #F59E0B);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(216,31,38,0.3);
}

/* Close Button */

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Animation */

@keyframes popupFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ================= STRONG CTA SECTION ================= */

.cta-section {
  position: relative;
  padding: 7rem 2rem;
  background: linear-gradient(135deg, #a71015, #ebb04b);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Optional overlay effect */

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.1), transparent 50%);
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.cta-container h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-container p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

/* BUTTONS */

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-primary {
  background: #ffffff;
  color: #D81F26;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.cta-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.cta-secondary:hover {
  background: #ffffff;
  color: #D81F26;
  transform: translateY(-4px);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 2rem;
  }

  .cta-container p {
    font-size: 1rem;
  }
}
/* CTA end */

/* FOOTER   */
/* ================= ENHANCED FOOTER ================= */

.footer {
  background: #0f0f0f;
  color: #ffffff;
  position: relative;
}

/* Gradient top divider */

.footer-top-line {
  height: 4px;
  background: linear-gradient(90deg, #D81F26, #F59E0B);
}

/* Container */

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

/* Columns */

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #F59E0B;
  padding-left: 5px;
}

/* Social */

.footer-social a {
  margin-right: 1rem;
  color: #ccc;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #F59E0B;
}

/* Newsletter */

.newsletter h5 {
  margin: 1rem 0 0.5rem 0;
  font-size: 0.9rem;
}

.newsletter input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  margin-bottom: 0.7rem;
  font-size: 0.85rem;
}

.newsletter button {
  width: 100%;
  padding: 10px;
  border-radius: 30px;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(90deg, #D81F26, #F59E0B);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(216,31,38,0.3);
}

/* Trust Row */

.footer-trust {
  text-align: center;
  padding: 1.5rem;
  background: #141414;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Bottom */

.footer-bottom {
  text-align: center;
  padding: 1rem;
  background: #0a0a0a;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Responsive */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* about us page start  */
/* ================= ENTERPRISE ABOUT HERO ================= */

.about-hero {
  position: relative;
  padding: 9rem 2rem 6rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #fdf4ef 100%);
  overflow: hidden;
}

/* Watermark */

.about-watermark {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle at center,
      rgba(216,31,38,0.08),
      rgba(245,158,11,0.05),
      transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Container */

.about-hero-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Grid */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
}

/* LEFT */

.about-left {
  max-width: 650px;
}

.about-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(216,31,38,0.08);
  color: #D81F26;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.about-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
}

.about-breadcrumb {
  font-size: 0.9rem;
  color: #777;
}

.about-breadcrumb a {
  color: #D81F26;
  text-decoration: none;
  font-weight: 500;
}

.about-breadcrumb span {
  margin: 0 5px;
}

/* RIGHT PANEL */

.about-right {
  display: flex;
  justify-content: center;
}

.institution-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.07);
  width: 100%;
  max-width: 380px;
  border-top: 4px solid #D81F26;
}

.institution-item h4 {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.institution-item p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
}

.divider {
  height: 1px;
  background: #eee;
  margin: 1.8rem 0;
}

/* Responsive */

@media (max-width: 992px) {

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-right {
    justify-content: flex-start;
  }

}

@media (max-width: 768px) {

  .about-hero {
    padding: 7rem 1.5rem 4rem 1.5rem;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

}
/* our vision :start */
/* ================= OUR VISION (CENTERED DESIGN) ================= */

.vision-section {
  padding: 8rem 2rem;
  background: #f9fafb;
}

.vision-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* HEADER */

.vision-header {
  max-width: 750px;
  margin: auto;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(216,31,38,0.08);
  color: #D81F26;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.vision-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.vision-header p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

/* PILLARS */

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.pillar {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  text-align: left;
  transition: 0.3s ease;
  border-top: 4px solid transparent;
}

.pillar:hover {
  border-top: 4px solid #D81F26;
  transform: translateY(-5px);
}

.pillar-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: #D81F26;
  margin-bottom: 1rem;
}

.pillar h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #1f2937;
}

.pillar p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .vision-pillars {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {

  .vision-section {
    padding: 6rem 1.5rem;
  }

  .vision-header h2 {
    font-size: 2rem;
  }

}
/* ================= OUR MISSION SECTION ================= */

.mission-section {
  padding: 8rem 2rem;
  background: #ffffff;
}

.mission-container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

/* LEFT */

.mission-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #D81F26;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.mission-left h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1f2937;
}

/* RIGHT */

.mission-right p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  border-left: 4px solid #D81F26;
  padding-left: 1.5rem;
}

/* FOCUS POINTS */

.mission-focus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.focus-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #1f2937;
}

.focus-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-focus {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

}

@media (max-width: 768px) {

  .mission-section {
    padding: 6rem 1.5rem;
  }

  .mission-left h2 {
    font-size: 2rem;
  }

}
/* ================= LEADERSHIP SECTION ================= */

.leadership-section {
  padding: 8rem 2rem;
  background: #f9eeda;
}

.leadership-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */

.leadership-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 4rem;
}

.leadership-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.leadership-header p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* Grid */

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

/* Card */

.leader-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-6px);
}

/* Image */

.leader-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* Info */

.leader-info {
  padding: 2rem;
}

.leader-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.leader-info span {
  display: block;
  font-size: 0.9rem;
  color: #D81F26;
  font-weight: 600;
  margin-bottom: 1rem;
}

.leader-info p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 992px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {

  .leadership-section {
    padding: 6rem 1.5rem;
  }

  .leadership-header h2 {
    font-size: 2rem;
  }

}
/* ================= COMPANY TIMELINE ================= */

.timeline-section {
  padding: 8rem 2rem;
  background: #ffffff;
}

.timeline-container {
  max-width: 1100px;
  margin: auto;
}

.timeline-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 4rem;
}

.timeline-header h2 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.timeline-header p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Timeline Core */

.timeline {
  position: relative;
  padding: 2rem 0;
}

/* Vertical Line */

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #e5e7eb;
  transform: translateX(-50%);
}

/* Timeline Item */

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem 3rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

/* Dot */

.timeline-item::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  width: 14px;
  height: 14px;
  background: #D81F26;
  border-radius: 50%;
  z-index: 2;
}

.timeline-item:nth-child(odd)::before {
  right: -7px;
}

.timeline-item:nth-child(even)::before {
  left: -7px;
}

/* Content */

.timeline-content {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #D81F26;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 992px) {

  .timeline::before {
    left: 8px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 3rem;
    padding-right: 1rem;
    margin-bottom: 2rem;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
    text-align: left;
  }

  .timeline-item::before {
    left: 0;
  }

}
/* ================= CERTIFICATIONS SECTION ================= */

.certification-section {
  padding: 8rem 2rem;
  background: #f1e9de;
}

.certification-container {
  max-width: 1200px;
  margin: auto;
}

.certification-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 4rem;
}

.certification-header h2 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.certification-header p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* GRID */

.certification-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
}

/* CARD */

.cert-card {
  background: #ffffff;
  padding: 2.5rem 1.5rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  border-top: 3px solid transparent;
}

.cert-card:hover {
  transform: translateY(-6px);
  border-top: 3px solid #D81F26;
}

/* ICON */

.cert-icon {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: rgba(216,31,38,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon i {
  font-size: 22px;
  color: #D81F26;
}

/* TEXT */

.cert-card h4 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #1f2937;
}

.cert-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .certification-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .certification-section {
    padding: 6rem 1.5rem;
  }

  .certification-header h2 {
    font-size: 2rem;
  }

  .certification-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 8rem 2rem;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  color: #1f2937;
}

.faq-header p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* Accordion */

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  color: #D81F26;
  transition: 0.3s ease;
}

/* Answer */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Active State */

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Responsive */

@media (max-width: 768px) {

  .faq-section {
    padding: 6rem 1.5rem;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

}
/* ================= BRAND ALIGNED ABOUT CTA ================= */

.about-cta {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #D81F26, #F59E0B);
  position: relative;
  overflow: hidden;
}

/* Subtle Background Glow */

.about-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.about-cta-container {
  max-width: 850px;
  margin: auto;
  background: #ffffff;
  padding: 4rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

.about-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
  line-height: 1.3;
}

.about-cta p {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  color: #555;
  line-height: 1.7;
}

/* Buttons */

.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-primary {
  background: #D81F26;
  color: #ffffff;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-primary:hover {
  background: #b91c1c;
  transform: translateY(-3px);
}

.cta-secondary {
  border: 2px solid #D81F26;
  color: #D81F26;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-secondary:hover {
  background: #D81F26;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 768px) {

  .about-cta {
    padding: 6rem 1.5rem;
  }

  .about-cta-container {
    padding: 2.5rem;
  }

  .about-cta h2 {
    font-size: 1.8rem;
  }

}
/* about us page end  */

/* Products page start  */
/* ================= PRODUCTS HERO ================= */

.products-hero {
  padding: 9rem 2rem 6rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #fdf4ef 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle watermark glow */

.products-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(216,31,38,0.08),
      rgba(245,158,11,0.05),
      transparent 70%);
  border-radius: 50%;
}

/* Container */

.products-hero-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Grid */

.products-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
}

/* LEFT */

.hero-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(216,31,38,0.08);
  color: #D81F26;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.products-hero-left h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.products-hero-left p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
}

/* Buttons */

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-primary-btn {
  background: #D81F26;
  color: #ffffff;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-primary-btn:hover {
  background: #b91c1c;
}

.hero-secondary-btn {
  border: 2px solid #D81F26;
  color: #D81F26;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-secondary-btn:hover {
  background: #D81F26;
  color: #ffffff;
}

/* RIGHT VISUAL CARD */

.products-hero-right {
  display: flex;
  justify-content: center;
}

.hero-visual-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.07);
  width: 100%;
  max-width: 380px;
  border-top: 4px solid #D81F26;
}

.visual-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.visual-item p {
  font-size: 0.9rem;
  color: #666;
}

.visual-divider {
  height: 1px;
  background: #eee;
  margin: 1.5rem 0;
}

/* Responsive */

@media (max-width: 992px) {
  .products-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .products-hero {
    padding: 7rem 1.5rem 4rem 1.5rem;
  }

  .products-hero-left h1 {
    font-size: 2rem;
  }
}

/* ================= ENHANCED DETAILED PRODUCTS ================= */

.detailed-products {
  padding: 8rem 2rem;
  background: #f1e9de;
}

.products-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 5rem;
}

.products-header h2 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.products-header p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

.product-row {
  padding: 4rem 0;
  border-left: 4px solid transparent;
  transition: 0.3s ease;
}

.product-row:hover {
  border-left: 4px solid #D81F26;
}

.product-row.alt {
  background: #f9fafb;
  padding: 4rem 2rem;
  border-radius: 20px;
}

.product-content {
  max-width: 900px;
  margin: auto;
}

.product-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.product-title i {
  font-size: 22px;
  color: #D81F26;
}

.product-title h3 {
  font-size: 1.8rem;
  color: #1f2937;
}

.product-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.product-content li {
  margin-bottom: 0.6rem;
  color: #444;
  font-size: 0.95rem;
}

.product-content li i {
  color: #D81F26;
  margin-right: 8px;
}

/* CTA Button */

.apply-btn {
  background: #D81F26;
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.apply-btn:hover {
  background: #b91c1c;
  transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 768px) {
  .detailed-products {
    padding: 6rem 1.5rem;
  }

  .product-title h3 {
    font-size: 1.5rem;
  }
}

/* ================= CREDIT CARDS SECTION ================= */

.credit-cards-section {
  padding: 8rem 2rem;
  background: #f9fafb;
}

.credit-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 4rem;
}

.credit-header h2 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.credit-header p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* Rows */

.credit-container {
  max-width: 1000px;
  margin: auto;
}

.credit-card-row {
  padding: 3rem 0;
  border-bottom: 1px solid #eee;
}

.credit-card-row:last-child {
  border-bottom: none;
}

.credit-card-row.alt {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 20px;
}

.bank-title h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.credit-card-row p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.credit-card-row ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.8rem;
}

.credit-card-row li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #444;
}

.credit-card-row li i {
  color: #D81F26;
  margin-right: 8px;
}

/* Responsive */

@media (max-width: 768px) {
  .credit-cards-section {
    padding: 6rem 1.5rem;
  }

  .credit-header h2 {
    font-size: 2rem;
  }

  .bank-title h3 {
    font-size: 1.5rem;
  }
}
/* ================= CARD SELECTOR ================= */

.card-selector {
  padding: 8rem 2rem;
  background: #faebcc;
}

.selector-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.selector-header h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.selector-header p {
  color: #555;
  margin-bottom: 2.5rem;
}

/* Buttons */

.selector-options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.selector-options button {
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  border: 2px solid #D81F26;
  background: #ffffff;
  color: #D81F26;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.selector-options button:hover {
  background: #D81F26;
  color: #ffffff;
}

/* Result */

.selector-result {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  min-height: 120px;
}

.selector-result h3 {
  margin-bottom: 1rem;
  color: #1f2937;
}

.selector-result p {
  color: #555;
  margin-bottom: 1.5rem;
}

.selector-result a {
  background: #D81F26;
  color: #ffffff;
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 8rem 2rem;
  background: #f9fafb;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.faq-header p {
  color: #555;
  line-height: 1.6;
}

/* Accordion */

.faq-item {
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  color: #D81F26;
  transition: 0.3s ease;
}

/* Answer */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 2rem;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: #555;
  line-height: 1.6;
}

/* Active */

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Responsive */

@media (max-width: 768px) {
  .faq-section {
    padding: 6rem 1.5rem;
  }

  .faq-header h2 {
    font-size: 2rem;
  }
}
/* ================= CONVERSION CTA ================= */

.conversion-cta {
  background: #eed2b3;
  padding: 4rem 2rem;
  color: #b91c1c;
}

.conversion-cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Text */

.conversion-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.conversion-text p {
  color: #b91c1c;
  font-size: 1rem;
}

/* Button */

.conversion-action {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.conversion-btn {
  background: #D81F26;
  color: #ffffff;
  padding: 0.8rem 2.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.conversion-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

.conversion-link {
  color: #F59E0B;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.conversion-link:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 768px) {

  .conversion-cta-container {
    flex-direction: column;
    text-align: center;
  }

  .conversion-action {
    justify-content: center;
  }

}
/* products page end  */

/* terms page start  */
.terms-section {
  padding: 6rem 2rem;
  background: #ffffff;
}

.terms-wrapper {
  max-width: 900px;
  margin: auto;
}

.terms-wrapper h1 {
  font-size: 2.6rem;
  margin-bottom: 2rem;
  color: #1f2937;
}

.terms-wrapper h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #D81F26;
}

.terms-wrapper p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #444;
}

.terms-wrapper ul {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.terms-wrapper li {
  margin-bottom: 0.5rem;
}
/* terms page end  */

/* Privacy page :start */
.privacy-section {
  padding: 6rem 2rem;
  background: #ffffff;
}

.privacy-wrapper {
  max-width: 900px;
  margin: auto;
}

.privacy-wrapper h1 {
  font-size: 2.6rem;
  margin-bottom: 2rem;
  color: #1f2937;
}

.privacy-wrapper h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #D81F26;
}

.privacy-wrapper p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #444;
}

.privacy-wrapper ul {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.privacy-wrapper li {
  margin-bottom: 0.5rem;
}
/* Privacy page end */

/* Contactus page  */
/* ===============================
   CONTACT PAGE - HRD FINTECH
================================= */

/* Prevent header overlap (if header is fixed) */
body {
  margin: 0;
  padding-top: 90px; /* Adjust if header height differs */
  font-family: 'Poppins', sans-serif;
  background: #f8f9fb;
}

/* ===============================
   HERO SECTION
================================= */

.contact-hero {
  background: linear-gradient(135deg, #da7d33, #e34511);
  color: #fff;
  padding: 120px 20px 80px;
  text-align: center;
}

.contact-hero-container {
  max-width: 900px;
  margin: auto;
}

.contact-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 18px;
  opacity: 0.95;
  line-height: 1.6;
}

/* ===============================
   CONTACT SECTION
================================= */

.contact-section {
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* ===============================
   LEFT SIDE - CONTACT INFO
================================= */

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 16px;
}

.info-item i {
  color: #D81F26;
  font-size: 18px;
}

.trust-box {
  margin-top: 35px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.trust-box h4 {
  margin-bottom: 15px;
}

.trust-box ul {
  list-style: none;
  padding: 0;
}

.trust-box li {
  margin-bottom: 10px;
  font-size: 15px;
}

.trust-box i {
  color: #28a745;
  margin-right: 8px;
}

/* ===============================
   RIGHT SIDE - FORM
================================= */

.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.contact-form-box h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #D81F26;
  box-shadow: 0 0 0 3px rgba(216, 31, 38, 0.1);
}

/* Consent Checkbox */

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 20px;
}

.form-consent input {
  margin-top: 4px;
}

/* Submit Button */

.contact-btn {
  width: 100%;
  background: linear-gradient(45deg, #D81F26, #ff7b00);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(216, 31, 38, 0.3);
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

@media (max-width: 1024px) {
  .contact-container {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 80px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-form-box {
    padding: 30px;
  }
}

@media (max-width: 500px) {
  .contact-hero {
    padding: 100px 20px 60px;
  }

  .contact-hero h1 {
    font-size: 26px;
  }
}
/* ===============================
   PARTNER LOGOS SECTION
================================= */

.partner-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.partner-container {
  max-width: 1200px;
  margin: auto;
}

.partner-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.partner-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: center;
}

.partner-item {
  background: #f8f9fb;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.partner-item img {
  max-width: 120px;
  height: auto;
  transition: 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.partner-item:hover img {
  filter: grayscale(0%);
}

/* Responsive */

@media (max-width: 1024px) {
  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ===============================
   SMALL CTA SECTION
================================= */

.mini-cta {
  padding: 60px 20px;
  background: linear-gradient(45deg, rgb(216, 31, 38), rgb(255, 123, 0));
  text-align: center;
  color: #fff;
}

.mini-cta-container {
  max-width: 700px;
  margin: auto;
}

.mini-cta h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.mini-cta p {
  font-size: 15px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.mini-cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #D81F26;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.mini-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
/* ===============================
   BECOME A PARTNER SECTION
================================= */

.lt-finance-section {
  padding: 100px 20px;
  background: #f4f6f9;
}

.partner-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT SIDE */

.partner-left h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.partner-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.partner-benefits {
  list-style: none;
  padding: 0;
}

.partner-benefits li {
  margin-bottom: 12px;
  font-size: 15px;
}

.partner-benefits i {
  color: #D81F26;
  margin-right: 8px;
}

/* RIGHT FORM */

.partner-form-box {
  background: #f26b1d;
  padding: 40px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.partner-form-box h3 {
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row input,
.form-row select {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
}

.partner-submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  background: #1f2b37;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s ease;
}

.partner-submit-btn:hover {
  background: #111;
}

/* Responsive */

@media (max-width: 900px) {
  .partner-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}
#ltFinanceSection {
  display: none;
}