 :root {
        --gold: #d4af37;
        --dark-bg: #000;
    }

    /* --- Hero Section Main --- */
    #hero-bank-section {
        position: relative;
     background:linear-gradient(135deg, #0f172a 0%, #000000 100%);
        color: #fff;
        padding: 180px 0 100px;
        overflow: hidden;
        z-index: 1;
    }

    /* --- Background Effect --- */
    #hero-bank-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(at 10% 20%, rgba(26, 15, 43, 0.4) 0px, transparent 50%),
            url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNTAwIiBoZWlnaHQ9IjEwMDAiPjxwYXRoIGQ9Ik0wLDc1MEMzMDAsNjUwIDYwMCw3NTAgOTAwLDY1MEMxMjAwLDU1MCAxNTAwLDY1MCAxNTAwLDc1MEMxNTAwLDI1MCAxMjAwLDM1MCA5MDAsMjUwQzYwMCwxNTAgMzAwLDI1MCAwLDc1MFoiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIwLjUiLz48L3N2Zz4=');
        background-repeat: repeat;
        background-size: contain;
        z-index: -1;
        opacity: 0.6;
    }

    /* --- Typography --- */
    .hero-pre-title {
        color: var(--gold);
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        margin-bottom: 25px;
        display: block;
    }

    .hero-main-title {
        font-size: 50px;
        font-weight: 600;
        line-height: 1.1;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        color: #ccc;
        font-size: 16px;
        max-width: 480px;
        line-height: 1.6;
        margin-bottom: 50px;
            border-left: 2px solid white;
    padding-left: 20px;
    }

    /* --- CTAs --- */
    .hero-ctas {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .btn-hero-primary {
        background:linear-gradient(
60deg, #44cdc2 0%, #44cdc2 100%);
        color: #ffffff;
      
        font-weight: 700;
        font-size: 14px;
        padding: 12px 35px;
        border-radius: 50px;
        text-transform: uppercase;
        transition: 0.3s;
    }

    .btn-hero-primary:hover {
        background-color: transparent;
        color: #000000;
        cursor: pointer;
    }

    .btn-hero-secondary {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: 0.3s;
    }

    .btn-hero-secondary:hover {
        color: var(--gold);
    }

    /* --- Right Image Container --- */
    .cards-container {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding-right: 50px;
    }

    /* --- Proof Points --- */
    .proof-points-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 50px;
    }

    .user-count-display {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        padding: 20px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .user-stack { display: flex; align-items: center; }

    .user-stack img {
        height: 35px;
        width: 35px;
        border-radius: 50%;
        object-fit: cover;
        margin-left: -12px;
        border: 2px solid #000;
    }

    .count-number {
        font-size: 32px;
        font-weight: 800;
        color: #fff;
        line-height: 1;
    }

    .proof-pre-text { color: #ccc; font-size: 12px; letter-spacing: 1px; }

    .award-badge { display: flex; align-items: center; gap: 10px; opacity: 0.8; }
    .award-badge i { color: var(--gold); font-size: 24px; }

    /* --- Mobile Responsive --- */
    @media (max-width: 991px) {
        #hero-bank-section { padding: 150px 0 80px; text-align: center; }
        .hero-main-title { font-size: 38px; }
        .hero-subtitle { margin: 0 auto 30px; }
        .hero-ctas { justify-content: center; }
        .cards-container { justify-content: center; padding: 0; margin-top: 50px; }
        .proof-points-wrapper { justify-content: center; flex-direction: column; gap: 30px; }
    }

      :root {
        --primary-green: #174269;
        --dark-bg: #000;
        --text-color: #333;
    }

    .features-section {
        padding: 50px 0;
        background: #fff;
    }

    /* Grid Layout */
    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

      .features-section   .feature-card {
        padding: 40px;
        border: 1px solid #eee;
        transition: 0.3s;
        border-radius: 10px;
    }

      .features-section   .feature-card:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* Black Card Style */
    .feature-card.dark-mode {
        background: #000;
        color: #fff;
    }

      .features-section   .feature-card i {
        font-size: 32px;
        margin-bottom: 20px;
        display: block;
        color: var(--primary-green);
    }

      .features-section   .feature-card.dark-mode i { color: #fff; }

    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .feature-card p {
        font-size: 14px;
        line-height: 1.6;
        opacity: 0.8;
    }

    /* Right Text Section */
    .features-content {
        padding-left: 50px;
    }

    .sub-title {
        color: #999;
        font-weight: 700;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
        display: block;
    }

      .features-section   .main-title {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 25px;
    }

      .features-section   .desc-text {
     color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
    border-left: 1px solid black;
    padding-left: 25px;
    }

    /* Buttons (Same as Hero) */
     .features-section    .btn-primary {
         background:linear-gradient(
60deg, #174269  0%, #174269  100%);
        padding: 12px 30px;
        border-radius: 50px;
        border: none;
        font-weight: 700;
        margin-right: 20px;
        color:rgb(255, 255, 255);
    }

      .features-section   .btn-link {
        text-decoration: none;
        color: #000;
        font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .features-grid { grid-template-columns: 1fr; }
        .features-content { padding-left: 0; margin-top: 50px; }
    }

      .section3 { padding: 50px 0; }

    .img-large {
        width: 100%;
     
        object-fit: cover;
        border-radius: 15px;
    }
    .img-small {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 20px;
    }

    /* Right Side Content */
    .about-content-wrapper { padding-left: 50px; }
       .section3 .sub-heading {     color: #999;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block; }
      .section3 .main-heading { font-size: 40px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: #222; }
    .description { color: #666; line-height: 1.7; margin-bottom: 30px; }

    /* Features List */
    .features-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        list-style: none;
        padding: 0;
    }
    .features-list li {
        font-size: 14px;
        color: #444;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .features-list li i { color: #174269 !important; font-size: 16px; }

 
      .feature-section { padding: 50px; }
        .section-header { color: #999;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;}
              .feature-section  .main-title { font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222; }
        .feature-title {    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid lightgray;
    padding-bottom: 15px;
    font-size: 15px  !important;
    }
        .feature-text { color: #666; font-size: 0.95rem; line-height: 1.6; }
        
        /* Placeholder for the left image */
        .image-container {
          
            border-radius: 20px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .image-container img{
            border-radius:10px;
        }
         /* Section ka padding badha diya taaki content saaf dikhe */
    .pricing-section { padding: 50px 0; background-color: #ffffff; }
    
    /* Card design mein thoda extra space aur margin */
    .price-card {
        background: #ffffff;
        border: 1px solid #e0e0e0;
        padding: 50px 40px; /* Padding badha di */
        border-radius: 0px;
        height: 100%;
        transition: all 0.4s ease;
        margin: 0 auto; /* Center alignment */
    }

    /* Cards ke beech mein thoda "breathing room" */
   .pricing-section   .col-lg-4 { padding: 0 15px; } 
.pricing-section h1{
    font-size: 40px;
    font-weight: 800 !important;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222;
}
.pricing-section h6{
     color: #aaaaaa;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.75rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}
    .price-card:hover { 
        transform: translateY(-10px); 
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-color: #007bff;
    }
    
    .price-card.featured {
          background:linear-gradient(135deg, #0f172a 0%, #000000 100%);
        color: #ffffff;
        border: none;
    }

    /* Text spacing */
    .price-val { font-size: 3.5rem; font-weight: 700; margin-bottom: 5px; }
    .price-month { color: #888; margin-bottom: 30px; }
    .featured .price-month { color: #bbb; }
    
    .plan-title { font-weight: 700; font-size: 1.6rem; margin-bottom: 20px; }
    
    /* Button gap */
    .btn-neon {
        margin-top: 20px;
        background-color: #44cdc2;
        color: #fffdfd;
        font-weight: 700;
        padding: 15px 30px;
        border: none;
        width: 100%;
        border-radius: 5px;
    }
    .btn-neon:hover{
        background-color: #174269 !important;
        color: white;
    }
    .how-work-section { padding: 50px 0; background: #eff4f7 !important; }
    
    .how-work-section .small-caps { color: #aaaaaa; font-weight: 600; letter-spacing: 3px; font-size: 0.75rem; margin-bottom: 15px; text-transform: uppercase; }
    .how-work-section .main-heading { font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222; }
    
  .how-work-section  .step-item { display: flex; align-items: flex-start; margin-bottom: 30px; }
    
    /* UPDATED: Flexbox added to align items horizontally */
   .how-work-section .step-left { 
        width: 140px; 
        flex-shrink: 0; 
        display: flex;         /* Icon aur number ko horizontal karne ke liye */
        align-items: center;   /* Vertical alignment */
        gap: 15px;             /* Number aur icon ke beech ka gap */
        padding-top: 5px; 
    }
    
   .how-work-section .step-text { font-weight: 600; color: #333; }
   .how-work-section .step-icon { font-size: 1.5rem; color: #555; }
    
    .how-work-section .step-box { 
        border: 1px solid #e0e0e0; 
        padding: 30px; 
        width: 100%;
        transition: 0.3s;
       
    }
   .how-work-section .step-box:hover { border-color: #007bff; }
  .how-work-section  .step-box h5 { font-weight: 700; margin-bottom: 10px; color: #1a1a1a; }
  .how-work-section  .step-box p { color: #777; font-size: 0.95rem; margin: 0; line-height: 1.6; }


   .nature1 {
        padding: 50px 0;
        background-color: #fbfbfb; /* Crisp White Background */
    }

    .section-title {
        font-weight: 800;
        margin-bottom: 60px;
        text-align: center;
        letter-spacing: -0.5px;
    }

    .nature1 .card {
        border: 1px solid #f0f2f5; /* Very subtle light grey border */
        border-radius: 24px; /* More rounded corners look more modern */
        padding: 40px;
        background-color: #ffffff;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smoother animation */
        box-shadow: 0 10px 20px rgba(0,0,0,0.03); 
        text-align:center;
    }

    .nature1 .card:hover {
      
        box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Shadow deepens on hover */
        border-color: #e0e4ea;
    }

   

   

    .nature1 .card h3 {
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: 10px;
        margin-top:15px;
        color: #1a1a1a;
    }

    .nature1 .card p {
        color: #667085; /* Softer grey text for better readability */
        line-height: 1.7;
        font-size: 1rem;
        margin: 0;
    }
      /* 1. Section Styling with Gradient & Image */
.breadcrumb-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('images/frames.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect ke liye */
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}

/* 2. Heading Style */
.breadcrumb-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
        margin-top: 65px;
}

/* 3. Glassmorphism Effect for Breadcrumb Box */
.breadcrumb-wrapper {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1); /* Transparent white */
    backdrop-filter: blur(10px); /* Blur effect */
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* 4. Breadcrumb Items Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.breadcrumb-item.active {
    color: #ffffff !important;
    font-weight: 600;
}

/* Custom Separator (Icon) */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›"; /* Modern Arrow */
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    padding: 0 10px;
    line-height: 1;
}

  :root {
    --primary-color: #174269;
    --accent-color: #0ea5e9;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --input-bg: #f8fafc;
    --border-color: #e2e8f0;
    --transition: all 0.3s ease;
}

/* 1. Centering & Width */
.contact-form-card {
    background: #ffffff;
    padding: 3.5rem; /* Increased padding for better breathing room */
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    
    /* The 900px constraint */
    max-width: 900px;
    margin: 0 auto; 
    width: 100%;
    margin-bottom:50px;
}

/* 2. Enhanced Floating Inputs */
.floating-group {
    position: relative;
    margin-bottom: 2rem; /* Added spacing */
}

.floating-input {
    width: 100%;
    padding: 1.25rem 1rem;
    background: var(--input-bg);
    border: 2px solid transparent;
    border-radius: 16px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.floating-input:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
}

.floating-group label {
    position: absolute;
    top: 1.25rem;
    left: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
    padding: 0 4px;
}

/* Floating Label Animation */
.floating-input:focus + label,
.floating-input:not(:placeholder-shown) + label {
    top: -10px;
    left: 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    background: #fff;
}

/* 3. Button Polish */
.btn-modern-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-modern-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -5px rgba(37, 99, 235, 0.4);
    background: #1d4ed8;
}
/* Section Typography & Spacing */
.contact-info-section {
    padding: 50px 0;
    background-color: #ffffff;
  
}

.contact-header {
    margin-bottom: 20px;
}

 .contact-info-section .sub-badge {

    color: #44cdc2;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

 .contact-info-section .main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-top: 15px;
    letter-spacing: -1px;
}

.contact-info-section .desc-text {
    color: #666;
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 16px;
}

/* Card Improvements */
.contact-link-wrapper {
    text-decoration: none; /* Link underline hatane ke liye */
    display: block;
    height: 100%;
}

.contact-info-section .contact-card {
    display: flex;
    align-items: center;
    padding: 35px 30px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #f1f1f1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.contact-card:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #FFC107;
}

.contact-info-section .contact-icon {
    width: 65px;
    height: 65px;
    background: #f8f9fa;
    color: #44cdc2;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: 0.4s;
}

.contact-card:hover .contact-icon {
    background: #44cdc2;
    color: #fff;
    /* transform: scale(1.1); */
}

.contact-info-section .contact-details span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #44cdc2;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.contact-info-section .contact-details h5 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    word-break: break-all; /* Mobile pe email wrap karne ke liye */
}

/* Responsive adjustment */
@media (max-width: 768px) {
   .contact-info-section  .main-title { font-size: 32px; }
   .contact-info-section .contact-card { padding: 25px; }
}
/* 4. Responsive Fix */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 2rem;
        border-radius: 16px;
    }
}
    @media screen and (min-width:300px) and (max-width:768px) {
        body,html{
            overflow-y: none !important;
            overflow-x: hidden !important;
        }
            .hero-main-title {
        font-size: 25px;
    }
        #hero-bank-section {
        padding: 90px 0 80px;
        padding-bottom: 0px;
        }
        .features-section .main-title

 {
font-size: 25px; 
}
.features-section .desc-text{
    font-size: 14px;
}
.features-section {
padding: 10px 0px;
}
.section3 {
    padding: 10px 0;
}
.img-large{
    height: auto;
}
.img-small{
    height: auto;
}.about-content-wrapper {
    padding: 10px 0px;
}
.section3 .main-heading{
    font-size: 25px
}
.description{
    font-size: 14px;
    margin-bottom: 10px !important;
}
.features-list li{
        font-size: 12px;
}
.feature-section{
    padding: 10px 10px;
}
.section-header {
margin-bottom: 10px;
}
.feature-section .main-title{
        font-size: 25px;
}
.how-work-section{
    padding: 10px 0px;
}
.how-work-section .step-item {
            flex-direction: column; /* Ye 'Step 01' ko box ke upar le aayega */
            align-items: flex-start;
        }

        .how-work-section .step-left {
            width: 100%; /* Mobile par full width le lega */
            margin-bottom: 10px; /* Box aur number ke beech gap */
        }.how-work-section .main-heading {
        font-size: 25px;
        }
        .testimonial-lead-text h2 {
    font-size: 25px !important; }
    .testimonial-section{
        padding: 20px 0px !important;
    }
    .testimonial-card{
        margin: 0px !important;
            padding: 26px;
    }
    .faq-section .faq-title{
        font-size: 25px !important;
    }
    .accordion-button {
    font-size: 15px !important;
    }
    .pricing-section h1 {
    font-size: 25px !important;
    }
    .pricing-section{
        padding: 10px 0px !important;
    }
    .hero-pre-title {
           padding-top: 50px;
    }
    .feature-text {
    font-size: 13px;
    }
    .price-val {
    font-size: 2.5rem;
    }
    .breadcrumb-title{
        font-size: 2.5rem;
    }
    .breadcrumb-section{
            padding: 73px 0;
                    padding-bottom: 46px;

    }
    .contact-info-section {
    padding: 20px 0px;
    }
    .contact-info-section .main-title {
        font-size: 25px !important;
    }
    .contact-info-section .desc-text {
    font-size: 14px;
    }
  .feature-title{
        font-size: 16px !important;
    }
    .image-container{
        height: auto;
    }
   .price-month {
        margin-bottom: 0px;
        font-size: 14px;
    }
    .price-card {
        padding: 26px 40px;
    }
    .price-val {
        font-size: 35px;
    }
    .plan-title{
            font-size: 1rem;
    }
    }