*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#050816;
  color:#fff;
  overflow-x:hidden;
}

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

img{
  width:100%;
  display:block;
}

section{
  padding:100px 0;
  position:relative;
}

.bg-blur{
  position:fixed;
  width:350px;
  height:350px;
  background:#caa646;
  filter:blur(160px);
  opacity:0.12;
  z-index:-1;
}

.blur1{
  top:-120px;
  left:-120px;
}

.blur2{
  bottom:-120px;
  right:-120px;
}

.section-title span,
.section-tag,
.tag{
  color:#d8b455;
  font-weight:600;
  margin-bottom:12px;
  display:inline-block;
}

.section-title h2,
.about-content h2,
.trust-content h2,
.cta h2{
  font-size:42px;
  line-height:1.2;
}

.center{
  text-align:center;
  margin-bottom:60px;
}

/* HEADER */
.header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:999;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(10px);
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.nav-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 0;
}

.logo img{
  width:150px;
}

.navbar{
  display:flex;
  gap:35px;
}

.navbar a{
  color:#111;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

.navbar a:hover{
  color:#c79d2d;
}

.header-btn,
.primary-btn{
  background:linear-gradient(135deg,#f5d16c,#c89f35);
  color:#111;
  padding:14px 30px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:0.4s;
  display:inline-block;
}

.header-btn:hover,
.primary-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(202,166,70,0.4);
}

.secondary-btn{
  border:1px solid rgba(255,255,255,0.2);
  padding:14px 30px;
  border-radius:50px;
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.secondary-btn:hover{
  background:#fff;
  color:#111;
}

.menu-btn{
  display:none;
  color:#111;
  font-size:25px;
  cursor:pointer;
}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:140px;
}

.hero-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.hero-content h1{
  font-size:62px;
  line-height:1.15;
  margin-bottom:25px;
}

.hero-content h1 span{
  color:#d8b455;
}

.hero-content p{
  color:#c8c8c8;
  font-size:18px;
  line-height:1.8;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-bottom:50px;
}

.hero-stats{
  display:flex;
  gap:50px;
}

.hero-stats h3{
  color:#d8b455;
  font-size:32px;
}

.hero-image{
  position:relative;
}

.hero-image img{
  border-radius:30px;
  height:650px;
  object-fit:cover;
}

.floating-card{
  position:absolute;
  background:rgba(12,17,39,0.95);
  border:1px solid rgba(255,255,255,0.08);
  padding:16px 24px;
  border-radius:18px;
  display:flex;
  gap:10px;
  align-items:center;
  animation:float 4s ease-in-out infinite;
}

.card1{
  top:40px;
  left:-40px;
}

.card2{
  bottom:40px;
  right:-40px;
}

.floating-card i{
  color:#d8b455;
}

@keyframes float{
  0%,100%{transform:translateY(0px)}
  50%{transform:translateY(-10px)}
}

/* PARTNERS */
.partner-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:25px;
}

.partner-card{
  background:#0c1127;
  border-radius:20px;
  padding:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.4s;
}

.partner-card:hover{
  transform:translateY(-10px);
  background:#131a38;
}

.partner-card img{
  max-height:50px;
  object-fit:contain;
}
/* =========================
   BANK PARTNER SLIDER
========================= */

.partners {
    position: relative;
    overflow: hidden;
}

/* Slider Wrapper */
.bank-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Slider */
.bank-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    width: max-content;
    animation: autoScroll 18s linear infinite;
}

/* Pause auto scroll on hover */
.bank-slider:hover {
    animation-play-state: paused;
}

/* Auto Scroll Animation */
@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Partner Card */
.partner-card {
    min-width: 210px;
    height: 120px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
}

/* Logo */
.partner-card img {
    max-width: 140px;
    max-height: 65px;
    object-fit: contain;
    transition: 0.3s ease;
}

/* Hover */
.partner-card:hover img {
    transform: scale(1.05);
}

/* Arrow Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 22px;
    font-weight: bold;
    transition: 0.3s ease;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.08);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

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

    .partner-card {
        min-width: 170px;
        height: 100px;
    }

    .partner-card img {
        max-width: 110px;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

/* ABOUT */
.about-container,
.trust-container,
.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image img,
.trust-image img{
  border-radius:30px;
  height:550px;
  object-fit:cover;
}

.about-content p,
.trust-content p{
  color:#c8c8c8;
  line-height:1.9;
  margin:25px 0;
}

.about-features{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.feature-box{
  display:flex;
  gap:20px;
  background:#0c1127;
  padding:25px;
  border-radius:20px;
  transition:0.4s;
}

.feature-box:hover{
  transform:translateX(8px);
}

.feature-box i{
  color:#d8b455;
  font-size:24px;
}

/* =========================
   FOUNDER SECTION
========================= */

.founder-section {
    padding: 100px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 50%;
    top: -200px;
    right: -150px;
    filter: blur(120px);
}

.founder-container {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

/* =========================
   IMAGE SIDE
========================= */

.founder-image {
    flex: 1;
    position: relative;
}

.founder-image-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.founder-image-wrapper img {
    width: 100%;
    display: block;
    transition: 0.5s ease;
}

.founder-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Experience Card */
.experience-card {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #1e293b;
    padding: 20px 28px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.06);
}

.experience-card h3 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.experience-card span {
    color: #cbd5e1;
    font-size: 14px;
}

/* =========================
   CONTENT SIDE
========================= */

.founder-content {
    flex: 1;
}

.section-badge {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 50px;
    color: #e6c15a;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.founder-content h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.founder-content h4 {
    color: #e6c15a;
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 600;
}

.founder-content p {
    color: #cbd5e1;
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 16px;
}

.founder-desc {
    font-size: 18px;
    color: #e2e8f0;
}

/* =========================
   HIGHLIGHTS
========================= */

.founder-highlights {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e293b;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: #243244;
}

.highlight-item i {
    color: #f4d03f;
    font-size: 18px;
}

.highlight-item span {
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 500;
}

/* =========================
   BUTTONS
========================= */

.founder-buttons {
    margin-top: 35px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.founder-btn {
    padding: 15px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.primary-btn {
    background: #d4af37;
    color: #ffffff;
}

.primary-btn:hover {
    transform: translateY(-4px);
    background: #c59b2b;
}

.call-btn {
    background: #1e293b;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
}

.call-btn:hover {
    transform: translateY(-4px);
    background: #334155;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .founder-container {
        flex-direction: column;
    }

    .founder-content h2 {
        font-size: 38px;
    }

    .founder-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .founder-section {
        padding: 70px 0;
    }

    .founder-content h2 {
        font-size: 30px;
    }

    .experience-card {
        left: 10px;
        bottom: 10px;
        padding: 15px 20px;
    }

    .founder-buttons {
        flex-direction: column;
    }

    .founder-btn {
        text-align: center;
    }
}

/* SOLUTIONS */
.solution-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.solution-card{
  background:#0c1127;
  border-radius:30px;
  overflow:hidden;
  transition:0.5s;
}

.solution-card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 40px rgba(0,0,0,0.35);
}

.solution-card img{
  height:270px;
  object-fit:cover;
}

.solution-content{
  padding:35px;
}

.solution-content h3{
  font-size:36px;
  margin-bottom:18px;
}

.solution-content p{
  color:#d6d6d6;
  margin-bottom:25px;
  line-height:1.7;
}

.solution-content a{
  color:#d8b455;
  text-decoration:none;
  font-weight:600;
}

/* PROCESS */
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.process-card{
  background:#0c1127;
  padding:40px 30px;
  border-radius:25px;
  text-align:center;
  transition:0.4s;
}

.process-card:hover{
  transform:translateY(-10px);
}

.process-icon{
  width:70px;
  height:70px;
  margin:auto;
  border-radius:50%;
  background:linear-gradient(135deg,#f5d16c,#c89f35);
  color:#111;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:25px;
}

.process-card p{
  color:#c8c8c8;
  line-height:1.8;
  margin-top:15px;
}

/* TRUST */
.trust-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:30px;
}

.trust-points div{
  background:#0c1127;
  padding:20px;
  border-radius:16px;
}

.trust-points i{
  color:#d8b455;
  margin-right:10px;
}

/* REVIEWS */
.google-rating{
  background:#0c1127;
  padding:35px;
  border-radius:25px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:50px;
}

.google-rating h3{
  font-size:52px;
}

.stars{
  color:#f7c948;
  margin:10px 0;
}

.google-rating a{
  background:#fff;
  color:#111;
  padding:14px 28px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.review-card{
  background:#0c1127;
  padding:35px;
  border-radius:25px;
  transition:0.4s;
}

.review-card:hover{
  transform:translateY(-10px);
}

.review-top{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:25px;
}

.review-top img{
  width:70px;
  height:70px;
  border-radius:50%;
}

.review-card p{
  color:#d4d4d4;
  line-height:1.9;
}

/* CTA */
.cta-container{
  background:linear-gradient(135deg,#f5d16c,#c89f35);
  border-radius:35px;
  padding:70px;
  text-align:center;
  color:#111;
}

.cta p{
  margin:20px 0 35px;
  font-size:18px;
}

.cta .primary-btn{
  background:#111;
  color:#fff;
}

/* CONTACT */
.contact-info,
.contact-form{
  background:#0c1127;
  padding:50px;
  border-radius:30px;
}

.contact-info h3{
  font-size:34px;
  margin-bottom:40px;
}

.info-item{
  display:flex;
  gap:18px;
  margin-bottom:35px;
  line-height:1.7;
}

.info-item i{
  color:#d8b455;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:18px 24px;
  background:#111836;
  border:none;
  border-radius:18px;
  color:#fff;
  font-size:16px;
}

.contact-form button{
  padding:18px;
  border:none;
  border-radius:50px;
  background:linear-gradient(135deg,#f5d16c,#c89f35);
  color:#111;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}
.contact-map{
  margin-top:40px;
  border-radius:20px;
  overflow:hidden;
}

/* FOOTER */
.footer{
  background:#070b1c;
  padding-top:80px;
}

.footer-container{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:50px;
}

.footer-logo img{
  width:180px;
  margin-bottom:20px;
}

.footer-logo p,
.footer-links a{
  color:#bdbdbd;
  line-height:1.8;
  text-decoration:none;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-links h4{
  margin-bottom:15px;
}

.footer-bottom{
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.08);
  padding:25px 0;
  margin-top:60px;
  color:#a0a0a0;
}

/* WHATSAPP */
.whatsapp-btn{
  position:fixed;
  right:25px;
  bottom:105px;
  width:65px;
  height:65px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  text-decoration:none;
  z-index:999;
  box-shadow:0 10px 30px rgba(37,211,102,0.4);
}
/* Call Float */
.call-float-btn{
  position:fixed;
  right:25px;
  bottom:185px;
  width:65px;
  height:65px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  text-decoration:none;
  z-index:999;
  box-shadow:0 10px 30px rgba(37,211,102,0.4);
}
/* Instagram Float */
.instagram-float-btn{
  position:fixed;
  right:25px;
  bottom:25px;
  width:65px;
  height:65px;
  border-radius:50%;
  background: #f09433; 
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
  background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  text-decoration:none;
  z-index:999;
  box-shadow:0 10px 30px rgba(37,211,102,0.4);
}

/* RESPONSIVE */
@media(max-width:992px){

  .hero-container,
  .about-container,
  .trust-container,
  .contact-wrapper,
  .solution-grid,
  .review-grid,
  .process-grid,
  .partner-grid,
  .footer-container{
    grid-template-columns:1fr;
  }

  .hero-content h1{
    font-size:44px;
  }

  .section-title h2,
  .about-content h2,
  .trust-content h2{
    font-size:34px;
  }

  .navbar{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    padding:25px;
    display:none;
  }

  .navbar.active{
    display:flex;
  }

  .menu-btn{
    display:block;
  }

  .header-btn{
    display:none;
  }

  .hero-image img,
  .about-image img,
  .trust-image img{
    height:auto;
  }

  .floating-card{
    display:none;
  }

  .hero-stats{
    flex-wrap:wrap;
    gap:20px;
  }
}
.cibil-inline{
text-align:left;
margin-top:10px;
}

.cibil-btn{
color:#d4af37;
font-weight:600;
text-decoration:none;
}