:root {
    --primary: #6366f1;
    --dark: #0f172a;
    --light: #f8fafc;
    --grey: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navbar --- */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
}

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
}

/* --- Hero Section --- */
.hero {
    padding: 80px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-btns {
    margin-top: 30px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    margin-right: 15px;
    display: inline-block;
}

/* --- Card Visual --- */
.card-visual {
    width: 100%;
    max-width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border-radius: 20px;
    position: relative;
    padding: 30px;
    color: white;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--dark);
        transition: 0.3s;
    }

    .nav-links {
        position: absolute;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        padding: 40px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
}
.logo img {
    height: 40px;          
    width: auto;
    object-fit: contain;
}
@media (max-width: 768px) {
    .logo img {
        height: 38px;
    }
}
.categories {
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
}

.disclaimer {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #2563eb;
  margin-bottom: 15px;
}

.categories h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.categories h2 span {
  color: #1d4ed8;
}

.subtitle {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 50px;
}

/* GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

.category-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
}

.category-card img {
  width: 36px;
  margin-bottom: 15px;
}

.category-card p {
  font-weight: 600;
  color: #0f172a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .categories h2 {
    font-size: 2rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}
.category-card i {
  font-size: 32px;
  color: #1d4ed8;
  margin-bottom: 15px;
}
.banks-section {
  padding: 90px 0;
  background: #f8fafc;
  text-align: center;
}

.banks-section h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.banks-subtitle {
  color: #64748b;
  margin-bottom: 50px;
}

/* GRID */
.banks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.bank-card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
  cursor: pointer;
}

.bank-card:hover {
  transform: translateY(-6px);
}

.bank-card img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.bank-card span {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .banks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .banks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .banks-grid {
    grid-template-columns: 1fr;
  }
}
.enquiry-section {
  padding: 90px 0;
  background: #ffffff;
}

.enquiry-section h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.enquiry-subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 50px;
}

/* FORM */
.enquiry-form {
  max-width: 600px;
  margin: auto;
  background: #f8fafc;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.form-group input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 0.95rem;
}

.form-group small {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: #64748b;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #6366f1;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #4f46e5;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .enquiry-form {
    padding: 25px;
  }

  .enquiry-section h2 {
    font-size: 2rem;
  }
}
.footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 70px 0 0;
    padding-bottom: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.brand-col {
  text-align: left;
}

.footer-logo {
  height: 45px;
  width: auto;
  margin-bottom: 15px;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.footer-col ul li a {
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #6366f1;
}

/* COPYRIGHT */
.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #1e293b;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-col {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}

.card-visual {
    width: 100%;
    max-width: 500px;
    height: 250px;
    background: transparent;
    box-shadow: none;
    margin-top: auto;
    
}

.card-img {
    width: 200px;
    height: auto;
    object-fit: contain; 
    margin-top: auto;
}
@media (max-width: 768px) {
    .card-visual {
        height: 220px;
        margin: 0 auto;
    }
}
.benefit-section {
  padding: 100px 0;
  background: #ffffff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.benefit-icon {
  width: 48px;
  height: 48px;
  background: #e0f7ec;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.benefit-content h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: #0f172a;
}

.benefit-content p {
  color: #64748b;
  margin-bottom: 25px;
  line-height: 1.6;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.benefit-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #0f172a;
}

.benefit-link {
  font-weight: 600;
  color: #4f46e5;
  text-decoration: none;
}

/* RIGHT IMAGE */
.benefit-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin-left: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .benefit-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefit-image img {
    margin: 30px auto 0;
  }

  .benefit-icon {
    margin: 0 auto 20px;
  }
}
.security-section {
  padding: 80px 0;
  background: #ffffff;
}

.security-box {
    max-width: 1000px;
     margin: 0 auto;  
  background: #f6f3ff;
  border-radius: 24px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  gap: 30px;
}

/* ICON */
.security-icon {
  width: 90px;
  height: 90px;
  background: #e9ddff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #6d28d9;
  flex-shrink: 0;
}

/* CONTENT */
.security-content h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.security-content p {
  color: #475569;
  line-height: 1.6;
  max-width: 700px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .security-box {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
  }

  .security-icon {
    width: 75px;
    height: 75px;
    font-size: 30px;
  }
}

.hero {
  padding: 90px 0;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  
}

.hero-slide {
  display: none;
  animation: fade 0.6s ease-in-out;
}

.hero-slide.active {
  display: block;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .card-visual {
    margin: 30px auto 0;
    max-width: 360px;
  }
}
.hero {
  padding: 90px 0;
  overflow: hidden;
}

.hero-slider {
  position: relative;
}

/* SLIDES */
.hero-slide {
  display: none;
  animation: fade 0.7s ease-in-out;
}

.hero-slide.active {
  display: block;
}

/* GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  font-size: 3rem;
}

.hero-text span {
  color: #6366f1;
}

.hero-img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin-left: auto;
  filter: drop-shadow(0 30px 45px rgba(99,102,241,0.35));
}

/* ANIMATION */
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-img {
    margin: 30px auto 0;
    max-width: 360px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }
}
/* Reverse grid for alternate slide */
.hero-grid.reverse {
  grid-template-columns: 1fr 1fr;
}

.hero-grid.reverse .hero-image {
  order: 1;
}

.hero-grid.reverse .hero-text {
  order: 2;
}

/* Icon circle */
.icon-circle {
  width: 48px;
  height: 48px;
  background: #e0e7ff;
  color: #4f46e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .hero-grid.reverse {
    grid-template-columns: 1fr;
  }

  .hero-grid.reverse .hero-image,
  .hero-grid.reverse .hero-text {
    order: unset;
    text-align: center;
  }
}
.customer-care {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999; /* slider se upar rahe */
}

.customer-care a {
  width: 70px;
  height: 70px;
  background: #4f46e5;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 15px 30px rgba(79,70,229,0.4);
  text-decoration: none;
  transition: 0.3s;
}

.customer-care a:hover {
  background: #4338ca;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .customer-care a {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}
/* HEADER */
.modal-header-custom {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  padding: 18px 20px;
  border-bottom: none;
}

/* BODY */
.modal-body-custom {
  background: #f8fafc;
}

/* FOOTER */
.modal-footer-custom {
  background: #f1f5f9;
  border-top: none;
}

/* INPUT FOCUS */
.modal-body .form-control:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 0.15rem rgba(99,102,241,0.25);
}

/* BUTTON */
.modal-footer .btn-primary {
  background: #4f46e5;
  border: none;
}

.modal-footer .btn-primary:hover {
  background: #4338ca;
}
