 /* रङ्गको लागि CSS Variables */
        :root {
            --primary-blue: #083486;
            --accent-orange: #F78801;
            --light-blue: #F0F5FF;
            --light-orange: #FFF4E8;
            --text-dark: #333;
            --text-light: #f8f9fa;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: #fff;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-blue), #0b47a9);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://placehold.co/1920x1080/083486/F78801?text=Nepal+Landscape+with+Amrit+Shree+Policy+Graphics') no-repeat center center/cover;
            opacity: 0.1;
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-heading {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: #F78801; 
             text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    
           
        }
        .hero-subheading {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .btn-main-cta {
            background-color: var(--accent-orange);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-main-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background-color: #e67d00;
        }

        /* Video Section */
        .video-section {
            padding: 60px 0;
            background-color: var(--light-blue);
            text-align: center;
        }
        .video-wrapper {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .video-wrapper iframe {
            width: 100%;
            height: 500px;
        }

        /* Policy Details Section */
        .policy-details-section {
            padding: 60px 0;
            background-color: white;
        }
        .policy-details-section h2 {
            color: var(--primary-blue);
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
        }
        .details-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .details-item {
            background-color: #f8f9fa;
            border-left: 5px solid var(--accent-orange);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            max-width: 350px;
            flex: 1 1 300px;
        }
        .details-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .details-item h4 {
            font-weight: 600;
            color: var(--primary-blue);
        }

        /* Tips and Why Choose Section */
        .tips-section {
            padding: 60px 0;
            background-color: var(--light-orange);
        }
        .tips-section h2 {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 20px;
        }
        .tips-section p {
            font-size: 1.1rem;
            margin-bottom: 25px;
        }
        .tips-list li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .tips-list li strong {
            color: var(--accent-orange);
        }
        .check-icon {
            color: green;
            margin-right: 10px;
        }

        /* Final CTA Section (from your content) */
        .final-cta-section {
            padding: 60px 0;
            text-align: center;
            background-color: var(--primary-blue);
            color: white;
        }
        .final-cta-section h2 {
            font-weight: 700;
            margin-bottom: 15px;
        }
        .final-cta-section p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        .final-cta-btn {
            background-color: var(--accent-orange);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .final-cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background-color: #e67d00;
        }

        @media (max-width: 768px) {
            .hero-heading {
                font-size: 2rem;
            }
            .hero-subheading {
                font-size: 1rem;
            }
            .video-wrapper iframe {
                height: 300px;
            }
            .details-item {
                flex-basis: 100%;
            }
            .final-cta-btn {
                font-size: 1rem;
                padding: 12px 30px;
            }
        }
        
        
        
        
        
        /* Example Section */
        /* Global styles for a clean, modern look */
    :root {
        --light-blue: #F0F8FF;
        --primary-blue: #083486;
        --accent-orange: #F78801;
        --text-color: #333;
    }
    body {
        background-color: #F8F9FA;
        font-family: 'Inter', sans-serif;
    }
    
    .amrit-shree-promo {
        background-color: var(--light-blue);
        color: var(--text-color);
        padding: 80px 20px;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        max-width: 1200px;
        margin: 40px auto;
    }
    .amrit-shree-promo h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary-blue);
        margin-bottom: 25px;
        line-height: 1.3;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    }
    .amrit-shree-promo p {
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto 20px;
        line-height: 1.8;
        color: #555;
    }
    .amrit-shree-promo .highlight {
        color: var(--primary-blue);
        font-weight: 700;
        font-size: 1.2rem;
    }

    /* Financial Example Card - Clean and professional */
    .financial-card {
        background-color: white;
        border: 2px solid var(--primary-blue);
        border-radius: 20px;
        padding: 40px;
        margin-top: 40px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        position: relative;
        text-align: left;
    }
    .financial-card .card-heading {
        color: var(--primary-blue);
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-align: center;
    }
    .financial-card p {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    .financial-card strong.value {
        font-size: 1.3rem;
        color: var(--accent-orange);
        text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    }
    .final-return-box {
        background-color: var(--accent-orange);
        color: white;
        padding: 25px;
        border-radius: 15px;
        margin-top: 30px;
        box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
    }
    .final-return-box h3 {
        font-size: 2rem;
        font-weight: 800;
        margin: 0;
    }
    .final-return-box .sub-text {
        font-size: 1.1rem;
        font-weight: 600;
        margin-top: 5px;
    }

    /* Key Benefits List - Clean and trustworthy design */
    .benefit-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }
    .benefit-item {
        background-color: white;
        color: var(--primary-blue);
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        border: 2px solid var(--primary-blue);
    }
    .benefit-item:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 20px rgba(0,0,0,0.2);
    }
    .benefit-item i {
        font-size: 2.5rem;
        color: var(--accent-orange);
        margin-bottom: 15px;
    }
    .benefit-item p {
        font-size: 1.1rem;
        font-weight: 600;
        line-height: 1.5;
        color: #333;
    }

    /* Call to Action - Attractive but not aggressive */
    .cta-button-promo {
        background-color: var(--accent-orange);
        color: white;
        padding: 18px 50px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.3rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: inline-block;
        margin-top: 40px;
        animation: pulse-animation 2s infinite;
    }
    .cta-button-promo:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        background-color: #e67d00;
    }

    @keyframes pulse-animation {
        0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(247, 136, 1, 0.4); }
        70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(247, 136, 1, 0); }
        100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(247, 136, 1, 0); }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .amrit-shree-promo h2 {
            font-size: 2rem;
        }
        .financial-card {
            padding: 25px;
        }
        .cta-button-promo {
            font-size: 1.1rem;
            padding: 15px 40px;
        }
    }
      
      
      
      
      
      
      
      
      
      
      
          /* New Global Styles for clean and bold sections */
    /* New Global Styles for clean and bold sections */
    :root {
        --light-blue: #E3F2FD;
        --light-red: #FFF2F2;
        --light-gold: #FFFBEA;
        --primary-blue: #083486;
        --accent-orange: #F78801;
        --text-dark: #222;
        --text-light: #555;
        /* Custom Branding Colors */
        --brand-background-new: #FFF4E8;
        --brand-heading-new: #5B4634;
        --section-three-bg: #E0F7FA; /* Light blue for third section */
        --section-four-bg: #EAF4DC; /* Light green for fourth section */
        --new-section-one-bg: #D9EAF8; /* A new light blue for a fresh look */
        --new-section-two-bg: #F0E8FF; /* A new light purple for a fresh look */
        --icon-color: #8C52FF; /* Purple for icons */
    }
    .amrit-shree-section {
        font-family: 'Inter', sans-serif;
        color: var(--text-dark);
        margin: 40px auto;
        max-width: 1200px;
        padding: 80px 20px;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        position: relative;
        overflow: hidden;
    }

    /* Common Section Styles */
    .amrit-shree-section h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 25px;
        line-height: 1.3;
    }
    .amrit-shree-section p {
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto 20px;
        line-height: 1.8;
    }

    /* Call to Action Button */
    .amrit-shree-section .cta-button {
        background-color: var(--accent-orange);
        color: white;
        padding: 18px 50px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.3rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: inline-block;
        margin-top: 40px;
    }
    .amrit-shree-section .cta-button:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        background-color: #e67d00;
    }

    /* Section 1: Problem and Solution (New Branding Colors) */
    .problem-solution-section {
        background-color: var(--brand-background-new);
        border: 2px solid var(--brand-heading-new);
        color: var(--text-dark);
    }
    .problem-solution-section h2 {
        color: var(--brand-heading-new);
    }
    .problem-solution-section .benefits-list {
        list-style-type: none;
        padding: 0;
        margin: 30px auto 20px;
        max-width: 800px;
        text-align: left;
    }
    .problem-solution-section .benefits-list li {
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 15px;
        position: relative;
        padding-left: 30px;
    }
    .problem-solution-section .benefits-list li::before {
        content: '✓'; /* Checkmark Unicode */
        font-size: 1.5rem;
        color: var(--brand-heading-new);
        position: absolute;
        left: 0;
        top: -5px;
    }

    /* Section 2: Trust and Social Proof */
    .trust-proof-section {
        background-color: var(--light-blue);
        border: 2px solid var(--primary-blue);
    }
    .trust-proof-section h2 {
        color: var(--primary-blue);
    }
    .trust-proof-section .proof-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    .trust-proof-section .proof-item {
        background-color: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        text-align: center;
        border-bottom: 5px solid var(--accent-orange);
    }
    .trust-proof-section .proof-item .number {
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--primary-blue);
        line-height: 1;
    }
    .trust-proof-section .proof-item .sub-text {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--accent-orange);
        margin-top: 10px;
    }
    .trust-proof-section .quote-text {
        font-style: italic;
        margin-top: 40px;
        max-width: 700px;
        font-size: 1.1rem;
        color: #444;
    }
    /* New Section 3: Key Features */
    .key-features-section {
        background-color: var(--new-section-one-bg);
        border: 2px solid var(--primary-blue);
    }
    .key-features-section h2 {
        color: var(--primary-blue);
    }
    .key-features-section .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }
    .key-features-section .feature-card {
        background-color: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }
    .key-features-section .feature-card .icon {
        font-size: 2.5rem;
        color: var(--primary-blue);
        flex-shrink: 0;
    }
    .key-features-section .feature-card h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-top: 0;
        margin-bottom: 5px;
    }
    .key-features-section .feature-card p {
        font-size: 1rem;
        margin: 0;
        line-height: 1.6;
    }

    /* New Section 4: FAQ */
    .faq-section {
        background-color: var(--new-section-two-bg);
        border: 2px solid var(--icon-color);
    }
    .faq-section h2 {
        color: var(--icon-color);
    }
    .faq-section .faq-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    .faq-section .faq-item {
        background-color: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        text-align: left;
    }
    .faq-section .faq-item h3 {
        font-size: 1.3rem;
        color: var(--text-dark);
        margin-bottom: 10px;
    }
    .faq-section .faq-item p {
        font-size: 1rem;
        margin: 0;
        color: var(--text-light);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .amrit-shree-section h2 {
            font-size: 2rem;
        }
        .amrit-shree-section .cta-button {
            font-size: 1.1rem;
            padding: 15px 40px;
        }
    }
      
      
      
      
      
      
      
        