/* ============================================
   Mobile-First CSS for Dehat Tech India
   Green-White Theme
   ============================================ */

/* Reset & Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;600;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Mulish', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #8976a8;
    font-family: 'Unbounded', sans-serif;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
}

a:hover {
    color: #000;
}

/* ============================================
   Header & Navigation (Mobile-First)
   ============================================ */
.header {
    
    background: linear-gradient(135deg, rgb(27, 12, 40) 0%, rgb(206, 184, 248) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d5016;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.heroulli {display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: disc;
    margin-top: 20px;
    gap: 10px;
    color: #ffffff;
    font-size: 1.1rem;
    flex-wrap: nowrap; }

/* Hamburger Menu Button */
.hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2d5016;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 5rem 2rem 2rem;
    z-index: 1000;
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-menu ul {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-menu a {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 0;
    color: #2d5016;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4a7c26;
    border-bottom-color: #4a7c26;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background:  url('../images/hero-banner.webp') no-repeat center center;
    color: #ffffff;
    padding: 3rem 1rem;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Unbounded', sans-serif;
}
span.brand-color {
    background: linear-gradient(90deg, #c5a7ff 0%, #ceb8f8 50%, #bc99ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-family: inherit;
  font-size: inherit;
}

.hero p {
    color: #f0f8f0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #2d5016;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    touch-action: manipulation;
}


.heroulli li {
        display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
    border: none;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(90deg, #c5a7ff 0%, #ceb8f8 50%, #bc99ff 100%);
    border: solid 1px rgb(180 108 255 / 41%);   
    padding: 5px 20px;
}
.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:active {
    transform: translateY(0);
}

 

/* overlay for visibility */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* adjust opacity */
    backdrop-filter: blur(2px);       /* optional subtle blur */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}


.hero {
    position: relative;
    background: url('../images/hero-banner.webp') center/cover no-repeat;
    color: #ffffff;
    padding: 3rem 1rem;
    text-align: center;
}

/* sunlight overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
        background: radial-gradient(circle at 80% 20%, rgb(55 39 73) 0%, rgba(255, 255, 255, 0.18) 35%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0) 100%), rgb(31 16 45 / 71%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}


/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 3rem 1rem;
    background-color: #f8fbf8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
        font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #8976a8;
    font-family: 'Unbounded', sans-serif
  
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4a7c26;
}

.service-card h3 {
    color: #2d5016;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   Partnerships Section
   ============================================ */
.partnerships {
    padding: 3rem 1rem;
    background-color: #ffffff;
}

.partnerships-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.partnerships-content p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.partnership-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    gap: 2rem;
    flex-wrap: wrap;
}

  

.partnership-logo img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partnership-logo-placeholder {
    color: #999;
    font-size: 0.9rem;
    text-align: center;
}

.partnership-link {
    color: #2d5016;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.partnership-link:hover {
    color: #4a7c26;
    text-decoration: underline;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 3rem 1rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-list {
    list-style: none;
    margin: 2rem 0;
}

.about-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.about-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c26;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   Products Section
   ============================================ */
.products {
    padding: 3rem 1rem;
    background-color: #f8fbf8;
}

.product-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.product-item h3 {
    color: #2d5016;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4a7c26;
}

.product-features {
    list-style: none;
    margin: 1.5rem 0;
}

.product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.product-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a7c26;
    font-weight: bold;
    font-size: 1.2rem;
}

.product-section {
    margin: 2rem 0;
}

.product-section h4 {
    color: #2d5016;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 3rem 1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background-color: #f8fbf8;
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3 {
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-details strong {
    color: #2d5016;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d5016;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c26;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #2d5016;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    touch-action: manipulation;
    font-family: inherit;
}

.submit-btn:hover {
    background-color: #4a7c26;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #111;
  padding: 30px 20px;
  color: #ddd;
  text-align: center;
}

.footer-bottom-content p {
  margin: 6px 0;
  font-size: 0.95rem;
  color: #bbb;
}

.footer-bottom-content a {
  color: #c5a7ff;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom-content a:hover {
  opacity: 0.8;
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    
    bottom: 20px;
    right: 20px;
   
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    
    
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    touch-action: manipulation;
}

.whatsapp-float:hover {
    transform: scale(1.1);
   
}

.whatsapp-float:active {
    transform: scale(1.0);
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ============================================
   Tablet Styles (768px and up)
   ============================================ */
@media (min-width: 768px) {
    html {
        font-size: 17px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .nav-menu {
        position: static;
        right: auto;
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        display: block;
    }

    .hamburger {
        display: none;
    }

    .nav-menu ul {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .nav-menu li {
        margin-bottom: 0;
    }

    .nav-menu a {
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    .map-placeholder {
        height: 400px;
    }
}

/* ============================================
   Desktop Styles (1024px and up)
   ============================================ */
@media (min-width: 1024px) {


    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero {
        padding: 10rem 1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 2rem;
    }

    .about-section,
    .services,
    .products,
    .contact {
        padding: 4rem 1rem;
    }

    .map-placeholder {
        height: 450px;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .header,
    .whatsapp-float,
    .overlay {
        display: none;
    }

    body {
        color: #000;
    }
}


.rural-section {
    position: relative;
    padding: 70px 0;
    background: #fff;
    font-family: 'Mulish', sans-serif;
    overflow: hidden;
  }
  
  .rural-bg {
    position: absolute;
    top: -80px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at center, #c4a4ff 0%, #F4FAF4 70%);
    filter: blur(40px);
    border-radius: 50%;
    opacity: .6;
  }
  
  .container {
        width: 58%;
    margin: auto;
    max-width: 1200px;
  }
  
  .section-title {
    text-align: center;
    color: #8976a8;
    font-size: 28px;
    font-weight: 700;
  }
  
  .section-sub {
    text-align: center;
    font-size: 16px;
    color: #4A4A4A;
    max-width: 640px;
    margin: 12px auto 40px;
  }
  
  .rural-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(1, 1fr);
  }
  
  .rural-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    text-align: center;
    transition: .25s ease;
    border: 1px solid transparent;
  }
  
  .rural-card:hover {
    transform: translateY(-4px);
    border-color: #8976a8;
  }
  
  .icon-box {
    font-size: 36px;
    margin-bottom: 12px;
    background: #E6F4E8;
    width: 64px;
    height: 64px;
    margin-inline: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .rural-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #8976a8;
    margin-bottom: 6px;
  }
  
  .rural-card p {
    font-size: 14px;
    color: #595959;
  }
  
  /* Responsive */
  @media (min-width: 600px) {
    .rural-grid { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (min-width: 992px) {
    .rural-grid { grid-template-columns: repeat(3, 1fr); }
  }
/* 2-column row service box */

 
 
  /* Partnerships Section - CashPey Style */
.partnerships {
     
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(86deg, rgb(226 220 255) 0%, rgba(255, 255, 255, 1) 67%);
 
  }
  
  .services-section {    padding: 50px 0;
    text-align: center;}
  


  
  
  /* title style like fintech headings */
  .partnerships-content .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #8976a8;
    margin-bottom: 15px;

    font-family: 'Unbounded', sans-serif;
    text-transform: uppercase;
  }
  
  /* text style */
  .partnerships-content p {
    font-size: 16px;
    color: #3b3b3b;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  /* link style like CashPey buttons */
  .partnership-link {
    font-weight: 700;
    color: #0064d9;
    text-decoration: underline;
    transition: .25s ease;
  }
  .partnership-link:hover {
    color: #004299;
  }
  
  /* logo container */
  .partnership-logo-container {
    display: flex;
    justify-content: center;
  }
  
  /* glass logo pill box */
  .partnership-logo-placeholder {
    width: 160px;
    height: 80px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: .3s ease;
    border: 1px solid rgba(255,255,255,0.5);
  }
  
  
  
  /* hover animation */
  .partnership-logo-placeholder:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  }
  
  .inner-hero {
    position: relative;
    background: linear-gradient(130deg, #8976a8 0%, #14592B 45%, #0A3E1B 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* light sun haze top corner */
.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 5%, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 60%);
}

/* bottom soft white curve */
.inner-hero::after {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    height: 70px;
    background: #ffffff;
    border-radius: 50% 50% 0 0;
}

/* text */
.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.inner-hero h1 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.inner-hero p {
    font-size: 1.05rem;
    font-weight: 500;
    color: #e8f8e8;
}

/* mobile */
@media(max-width: 600px) {

    .heroulli {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: disc;
    margin-top: 20px;
    gap: 10px;
    color: #ffffff;
    font-size: 1.1rem;
    flex-wrap: nowrap;
    flex-direction: column;
}
    .inner-hero {
        padding: 65px 18px;
    }
    .inner-hero h1 {
        font-size: 1.75rem;
    }
}

.about-modern {
  padding: 80px 20px;
  background: linear-gradient(180deg,#F6FFF6 0%,#FFFFFF 100%);
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 420px;
}

.tag-pill {
  display:inline-block;
  background:#E6F5EA;
  padding:6px 14px;
  font-size:13px;
  color:#8976a8;
  border-radius:30px;
  font-weight:600;
  margin-bottom:8px;
}

.about-text h2 {
  font-size:32px;
  color:#14592B;
  margin-bottom:10px;
}

.about-text p {
  font-size:15.5px;
  color:#444;
  margin-bottom:20px;
  line-height:1.6;
}

.about-icons {
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin:22px 0;
}

.a-item {
  background:#fff;
  border:1px solid #E0EFE2;
  padding:12px 16px;
  border-radius:12px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14.5px;
  color:#14592B;
  box-shadow:0 4px 10px rgba(0,0,0,.06);
}

.a-item img {
  width:28px;
  height:28px;
}

.partner-box {
  margin-top:20px;
  padding:12px 18px;
  background:#E8F7EB;
  border-left:4px solid #8976a8;
  border-radius:6px;
  font-size:14.5px;
}

.partner-box a {
  font-weight:600;
  color:#14592B;
  text-decoration:none;
}

.about-media {
  flex:1 1 420px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.img-main img {
  width:100%;
  border-radius:14px;
  object-fit:cover;
}

.img-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.img-grid img {
  width:100%;
  height:90px;
  object-fit:cover;
  border-radius:10px;
}

/* responsiveness */
@media(max-width:768px){
  .about-flex {flex-direction:column;}
  .img-grid img {height:80px;}
}
/* ============================================
   About Section – Fade Image Slider
   ============================================ */

   .about-fade-slider {
    width: 100%;
    max-width: 500px; /* aligned with text column */
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* stack images */
.about-fade-slider img.fade-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

/* visible image */
.about-fade-slider img.fade-slide.active {
    opacity: 1;
}

/* mobile responsive heights */
@media(max-width: 768px){
    .about-fade-slider { height: 300px; }
}
@media(max-width: 480px){
    .about-fade-slider { height: 230px; }
}


.loan-products {
    padding: 50px 0;
}

.lp-row {
    display: flex;
    align-items: center;
    padding: 60px 0;
    gap: 40px;
}

.lp-row.reverse {
    flex-direction: row-reverse;
}

.lp-img {
    flex: 1;
}

.lp-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.lp-content {
    flex: 1;
}

.lp-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #14592B;
    margin-bottom: 12px;
}

.lp-content p {
    color: #444;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
}

.lp-content ul {
    margin-bottom: 22px;
}

.lp-content ul li {
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
    position: relative;
    padding-left: 18px;
}

.lp-content ul li::before {
    content: "✓";
    color: #8976a8;
    position: absolute;
    left: 0;
    font-size: 14px;
}

.lp-btn {
    display: inline-block;
    background: #8976a8;
    color: #fff;
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 8px;
    transition: .3s;
}

.lp-btn:hover {
    background: #14592B;
    transform: translateY(-2px);
}

/* Mobile */
@media(max-width:768px) {
    .lp-row {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 35px 0;
    }
    .lp-row.reverse {
        flex-direction: column;
    }
    .lp-img img{
        height:240px;
    }
}

.lp-content ul {
    margin-bottom: 22px;
    list-style: none;
}

.heroulli li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.302), transparent);
    animation: shine 3s infinite;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
    border: none;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(90deg, #c5a7ff 0%, #ceb8f8 50%, #bc99ff 100%);
    border: solid 1px rgb(180 108 255 / 41%);
}

.btn {
    padding: 4px 4px 4px 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 13px;
}

/* CTA Button (Contact Us) */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
    border: none;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(90deg, #c5a7ff 0%, #ceb8f8 50%, #bc99ff 100%);
    border: solid 1px rgb(180 108 255 / 41%);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.302), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.btn-cta:hover {
    background: linear-gradient(135deg, #ceb8f8 0%, #c6abff 40%, #ceb8f8 100%) !important;
}
.btn-cta .play {
  width: 30px;
  height: 30px;
  background: var(--bg-light);
  color: var(--bg-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  /* padding: 10px; */
  position: relative;
  overflow: hidden;
}

/* Icon sizing and default transition */
.btn-cta .btn-icon {
  height: 12px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

/* Ghost icon that slides in from the left on hover */
.btn-cta .play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 12px;
    transform: translate(-250%, -50%);
    background: url('../images/nbb-btn-arrow.webp') center / 14px 14px no-repeat;
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

/* Hover animation: current icon slides right, clone slides in from left */
.btn-cta:hover .play .btn-icon {
    transform: translateX(180%);
    opacity: 0;
}

.btn-cta:hover .play::before {
    transform: translate(-50%, -50%);
    opacity: 1;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .btn-cta .btn-icon,
    .btn-cta .play::before {
        transition: none;
    }
}


.btn-cta .play {
    width: 30px;
    height: 30px;
    background:#f8f9fa;
    color: #060606;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    /* padding: 10px; */
    position: relative;
    overflow: hidden;
}

.form-box {
    background-color: #fff;
    z-index: 999;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.mb12 {
    margin-bottom: 5px;
}
.styled-form {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/contct-fm.webp");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  max-width: 860px;
  margin: auto;
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 1rem;
  color: #fff;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.form-control::placeholder {
  color: #ccc;
}

.form-control:focus {
  outline: none;
  border-color: #c5a7ff;
  background-color: rgba(255,255,255,0.12);
}

.file-upload {
  padding: 12px 10px;
  background-color: rgba(255,255,255,0.05);
  color: #aaa;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #c5a7ff, #bc99ff);
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  color: #fff;
  border-radius: 40px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  opacity: 0.95;
}

.cta-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #ddd;
}

@media (max-width: 768px) {

    .container {
    width: 95%;
    margin: auto;
    max-width: 1200px;
}


  .form-grid {
    grid-template-columns: 1fr;
  }
}


.cta-row  {display: inline-flex;
  align-items: center;
  gap: 8px;
  
  border: none;
  padding: 0px 28px;
  font-weight: 600;
  color: #fff;
  border-radius: 40px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;}


  .how-it-works-section {
  position: relative;
  padding: 80px 20px;
  background: #f8f6ff;
  overflow: hidden;
}

.how-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c5a7ff20, #ffffff00);
  z-index: 0;
}

.how-it-works-section .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.mb-10 { margin-bottom: 30px!important;}


.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
 
}

.section-sub {
  color: #555;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 1rem;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.step-box {
     display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    width: 100%;
    text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #c5a7ff, #bc99ff);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-box h4 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  color: #333;
}

.step-box p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cta-step {
  margin-top: 24px;
}

.btn-cta {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(to right, #c5a7ff, #bc99ff);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .step-box {
    flex-direction: column;
    
  }

  .step-number {
    margin-bottom: 8px;
  }
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}

.step-box {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  height: 100%;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #c5a7ff, #bc99ff);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-box h4 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  color: #333;
}

.step-box p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
}

.benefits-section {
  padding: 80px 20px;
  background: #f7f6ff;
}

.benefits-section .container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
   
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  text-align: left;
}

.benefit-icon {
  font-size: 28px;
  margin-bottom: 12px;
  color: #8e5dfb;
}

.benefit-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
 
}

.benefit-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}


.calendar-cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #c5a7ff15, #bc99ff08);
  text-align: center;
}

.calendar-cta-section .container {
  max-width: 900px;
  margin: auto;
}

.cta-heading {
  font-size: 2rem;
  font-weight: 700;
 
  margin-bottom: 20px;
}

.cta-subtext {
  font-size: 1rem;
 
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(to right, #c5a7ff, #bc99ff);
  color: #fff;
  font-weight: 600;
  border-radius: 32px;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-button:hover {
  opacity: 0.95;
}


.faq-section {
  padding: 80px 20px;
  background: #fdfdff;
}

.faq-section .container {
  max-width: 800px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
 
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 16px;
  cursor: pointer;
  position: relative;
      font-family: 'Poppins';
  
}

.accordion-button::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.25rem;
  
  transition: transform 0.3s ease;
}

.accordion-button.active::after {
  content: '-';
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
  background: #f7f6ff;
}

.accordion-content p {
  margin: 0;
  padding: 12px 0 20px;
   
  font-size: 0.95rem;
}
