@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-gold: #EF7F1A;
  --accent-orange: #f58220;
  --dark-navy: #0F1828;
  --text-light: #f8f8f8;
  --text-muted: #888;
  --green-success: #4b7a1a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #333;
  overflow-x: hidden;
}

.td-none{
  text-decoration: none;
  color: inherit;
}

/* Mobile Menu */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-navy);
  z-index: 1000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.close-menu {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.overlay-links a {
  display: block;
  color: white;
  font-size: 2rem;
  text-decoration: none;
  margin: 20px 0;
  font-weight: 700;
}

/* Hero Section */
.hero-section {
  background-image: url('../images/header.png');
  background-size: cover;
  background-position: inherit;
  min-height: 100vh;
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
}

.nav-logo-img { height: 54px; }

.btn-earn {
  background: var(--accent-orange);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  height: 48px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  margin-right: 25px;
  transition: opacity 0.3s;
  width: 200px;
}

.menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  vertical-align: middle;
}

.menu-icon img {
  width: 48px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 100px;
}

.main-logo-center img { height: 170px; margin-bottom: 10px; opacity: 0.9; }

.main-logo-center h1 {
  font-size: 3.5rem;
  letter-spacing: 12px;
  margin: 0;
  color: var(--primary-gold);
  font-weight: 800;
}

.main-logo-center .subtitle {
  letter-spacing: 6px;
  font-size: 0.85rem;
  color: var(--primary-gold);
  margin-top: 5px;
  font-weight: 500;
}

.service-cards {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  width: 80% !important;
}

.s-card {
  width: 260px;
  height: 200px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
}
.s-card a{
  text-decoration: none;
  color: inherit;
}
.s-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }

.s-card-label {
  position: relative;
  bottom: 48px;
  left: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #2f32385c;
  color: #ffffff;
  padding: 16px;
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 3px;
  opacity: 0.8;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp-float img { width: 30px; }

/* Vision Section */
.vision-section { padding: 60px 20px; text-align: center; }

.vision-text-mask img {
  background-size: cover;
  background-position: center;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  width: 70%;
}

.vision-desc {
  max-width: 750px;
  margin: 50px auto 0;
  color: #777;
  line-height: 1.8;
  font-size: 1rem;
}

/* Business Solutions */
.business-solutions { padding: 40px 20px; background: #fff; text-align: center; }

.section-tag {
  color: var(--primary-gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.section-tag::before, .section-tag::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background: var(--primary-gold);
}
.section-tag::before { right: 115%; }
.section-tag::after { left: 115%; }

.section-title { font-size: 52px; margin-bottom: 60px; font-weight: 700; color: #010101; }

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 50px;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: #ccc;
}

.slide {
  width: 700px;
  height: 450px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.slide img { width: 100%; height: 100%; object-fit: cover; }

.slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: white;
  text-align: left;
}

.slide-info h3 { font-size: 1.8rem; margin: 0 0 10px; }

/* About Section */
.about-section { padding: 60px 50px; text-align: center; }

.hindi-text {
  margin-bottom: 40px;
  width: 100%;
}

.tag-line{
  color: #EF7F1A;
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
}

.about-card {
  background-image: url('../images/about-section.png');
  background-size: cover;
  border-radius: 15px;
  display: flex;
  color: white;
  text-align: left;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.about-content { padding: 80px; flex: 1.2; }

.about-content h2 { font-size: 2.5rem; margin: 15px 0 25px; font-weight: 800; }

.about-content p { color: #bbb; line-height: 1.8; margin-bottom: 20px; font-size: 0.95rem; }

.about-logo-side {
  flex: 0.8;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-side img { width: 280px; opacity: 0.9; }

/* Feature Section */
.feature-section {
  background: url('../images/feature-section.png');
  background-size: cover;
  padding: 60px 60px;
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.4s ease-in-out;
}

.feature-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-info h2 { font-size: 51.79px; margin: 10px 0 25px; font-weight: 400; }

.feature-info p { font-size: 1.1rem; line-height: 1.8; color: #fff; font-weight: 500; margin-bottom: 50px; }

.visit{
  width: 100%;
}

.btn-visit {
  background: var(--accent-orange);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 4px;
  margin-top: 40px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.feature-list { display: flex; flex-direction: column; gap: 12px; }

.f-item {
  background: rgba(255,255,255,0.05);
  padding: 20px 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border: 1px solid #fdc99b96;
  font-weight: 600;
  transition: all 0.3s;
}

.f-item  img{
  width: 35px;
}

.f-item .arrow{
  font-size: 25px;
}

.f-item.active { background: #EA580C; border-color: #EA580C; }

.f-left { display: flex; align-items: center; gap: 15px; }

.f-left a {
  text-decoration: none;
  color: inherit;
}

/* QR Section */
.qr-section { padding: 60px 60px; background: #fff; }

.qr-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.qr-visual { position: relative; }

.family-img { width: 100%; border-radius: 12px; }

.qr-box {
  position: absolute;
  bottom: -40px;
  right: -40px;
  background: white;
  padding: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border-radius: 12px;
}

.qr-box img { width: 160px; }

.qr-content h2 { font-size: 42px; font-weight: 700; margin-bottom: 25px; line-height: 1.2; color: #010101; }

.qr-intro { color: #666; line-height: 1.8; margin-bottom: 30px; }

.qr-steps { list-style: none; padding: 0; margin-bottom: 40px; }

.qr-steps li { margin-bottom: 18px; font-size: 0.95rem; color: #444; line-height: 1.6; }

.qr-steps strong { color: #222; }

.qr-steps strong img{
  position: relative;
  top: 4px;
}

.green-banner {
  background: var(--green-success);
  color: white;
  padding: 18px 35px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* Footer */
.main-footer { background: var(--dark-navy); color: white; padding: 100px 60px 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-brand{
  text-align: center;
}
.footer-brand img { width: 145px; margin-bottom: 30px; opacity: 0.9; }

.social-links { display: flex; gap: 12px;     align-items: center; justify-content: center; }

.social-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
}

.social-icon:hover{
  background-color: #CF5D3B;
}

.footer-links h4 { color: #ffffff; margin-bottom: 25px; font-size: 1.1rem; font-weight: 700; }

.footer-links a {
  display: block;
  color: #999;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: white; }

.contact-item { color: #999; font-size: 0.85rem; margin-bottom: 15px; }

.copyright {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  font-size: 15px;
  color: #999;
}

.mobile-slider-nav{
  display: none;
}

.steps-section {
  padding: 60px 40px;
  background: #ffffff;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: #fff;
  border-radius: 22px;
  padding: 50px 35px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Number Circle */
.step-number {
  width: 42px;
  height: 42px;
  background: #fde6d2;
  color: #ef7f1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 25px;
  font-size: 16px;
}

.step-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f1828;
  margin-bottom: 18px;
}

.step-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #777;
}

/* Hover effect */
.step-card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}

.leader-section {
  background: linear-gradient(180deg, #0b1630, #081225);
  padding: 80px 40px;
}

.leader-card {
  max-width: 1200px;
  margin: auto;
  background: #13244a;
  border-radius: 20px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  position: relative;
  color: #fff;
}

/* Image */
.leader-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* Content */
.leader-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leader-text {
  font-size: 16px;
  line-height: 1.9;
  color: #d6def2;
  margin-bottom: 35px;
  text-align: right;
}

/* Name */
.leader-name {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-align: right;
}

.leader-name span {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #ef7f1a;
  margin-top: 6px;
}

/* Decorative dots */
.dots {
  position: absolute;
  width: 110px;
  height: 60px;
  background-image: radial-gradient(#ffffff 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.35;
}

.dots.top {
  top: 20px;
  left: 35%;
}

.dots.bottom {
  bottom: 30px;
  left: 25%;
}

.testimonial-section {
  padding: 0px 40px;
  background: #ffffff;
}

.testimonial-container {
  max-width: 1300px;
  margin: auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 22px;
  padding: 45px 35px;
  box-shadow: 0 1px 9px #95959542;
  height: 100%;
}

.stars {
  color: #ff8a1d;
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: #667085;
  margin-bottom: 30px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-user img {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  object-fit: cover;
}

.testimonial-user h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: #101828;
}

.testimonial-user span {
  font-size: 13px;
  color: #667085;
}

/* Swiper spacing */
.testimonialSwiper .swiper-slide {
  height: auto;
}

/* brand upload section */
.brand-upload-section {
    padding: 40px 0;
    background: #f9fafb;
    text-align: center;
}

.brand-upload-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin: 16px 0 48px;
    color: #103c3b;
}
.brand-upload-section .section-eyebrow {
  color: #e4683c;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Cards */
.brand-upload-section .side-card,
.brand-upload-section .video-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 440px;
}

.brand-upload-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Side images */
.brand-upload-section .side-card {
  filter: blur(2px);
  opacity: 0.75;
}

.brand-upload-section .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Text */
.brand-upload-section .card-text h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.brand-upload-section .card-text span {
  font-size: 13px;
  color: #888;
}

.brand-upload-section .brand-container {
    margin: 0 auto;
    width: 100%;
    padding: 30px 50px;
}

.text-center {
    text-align: center;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}
.brand-upload-section .row {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 6fr 1fr;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 50px 20px;
  }
  .brand-upload-section .video-card {
    height: 260px;
  }
  

  .brand-upload-section .row{
    grid-template-columns: 1fr;
  }

  .d-md-none {
      display: none !important;
  }
}


/* Mobile */
@media (max-width: 900px) {
  .leader-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .leader-text {
    font-size: 15px;
    text-align: left;
  }

  .leader-name
  {
    text-align: left;
  }

  .dots {
    display: none;
  }
  
  .steps-wrapper {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr; gap: 0px !important; }
  .vision-text-mask { font-size: 8rem; }
}

@media (max-width: 768px) {
  .section-title{
    font-size: 2.5rem;
  }
  .s-card img{
    height: inherit;
  }
  .main-logo-center img {
    height: 150px;
  }
  .service-cards{
    padding-bottom: 0 !important;
  }
  .btn-earn{width: auto; padding: 0 20px; margin-right: 2px !important}
  .navbar { padding: 20px 30px; }
  .main-logo-center h1 { font-size: 2.2rem; letter-spacing: 6px; }
  .service-cards { flex-wrap: wrap; justify-content: center; }
  .s-card { width: 160px; height: 110px; border: unset !important;}
  .vision-text-mask img {width: 100%};
  .footer-grid { grid-template-columns: 1fr; gap: 0px !important; }
  .about-card { grid-template-columns: 1fr; }
  .qr-container { grid-template-columns: 1fr; }
  .feature-grid{ grid-template-columns: 1fr; }
  .feature-grid .btn-visit{
    width: 100%;
  }
  .visit{
    margin: auto;
    text-align: center;
  }
  .about-logo-side { display: none; }
  .qr-box { position: static; margin-top: 20px; text-align: center; }
  .vision-text-mask { font-size: 5rem; }

  .slider-container{
    display: block;
    padding: unset;
    gap: unset;
  }
  .vision-section
  .qr-section,
  .business-solutions,
  .about-section,
  .feature-section{
    padding: 40px 20px;
  }  
  
  .about-section .about-card{
    display: block;
  }

  .about-section .about-content{
    padding: 20px;
  }

  .hindi-text img{
    width: inherit;
  }

  .swiper {
    width: 100%;
    padding-top: 10px !important;
    padding-bottom: inherit;
  }

  .swiper-slide img {        
      border-radius: 5px !important;
  }
  
  .mySwiper .swiper-slide {
      box-shadow: unset !important;
  }

  .mySwiper .swiper-slide-active {
      box-shadow: unset !important;
  }

  .mobile-slider-nav{
    display: inline-flex;
    gap: 20px;
    margin-top: 20px;
  }

  .nav-button-next,
  .nav-button-prev{
    display: none;
  }
  .leader-section {
    padding: 0px;
  }
}

.swiper-pagination-bullet{
  background: #ea580c !important;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  opacity: 1 !important;
}

.header-slider-nav{
  display: inline-flex;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}