/* Start custom CSS for html, class: .elementor-element-eddafd8 *//* =========================================
   VISION & MISSION SECTION
========================================= */

.vprime-vm-wrapper {
    box-sizing: border-box;
    width: 100%;
    padding: 8px 20px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden; /* यसले अनावश्यक दायाँ ग्याप आउन दिँदैन */
}

.vprime-vm-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Header Styling --- */
.vprime-vm-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vprime-vm-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #111827;
    margin: 0 0 15px 0;
}

.vprime-vm-divider {
    width: 60px;
    height: 4px;
    background-color: #0A4BCB; /* ब्रान्डको निलो रङ */
    border-radius: 2px;
    margin-bottom: 20px;
}

.vprime-vm-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
}

/* --- Grid Layout for Cards --- */
.vprime-vm-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

/* --- Card Styling --- */
.vprime-vm-card {
    box-sizing: border-box;
    flex: 1; /* दुवै कार्डले बराबर ठाउँ लिन्छन् */
    max-width: 500px;
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.vprime-vm-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 75, 203, 0.08);
    border-bottom-color: #FFD54A; /* Hover गर्दा तल पहेंलो लाइन आउँछ */
}

/* --- Icons --- */
.vprime-vm-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(10, 75, 203, 0.1);
    color: #0A4BCB;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.vprime-vm-card:hover .vprime-vm-icon-box {
    background: #0A4BCB;
    color: #ffffff;
}

/* --- Card Text --- */
.vprime-vm-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 15px 0;
}

.vprime-vm-card-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   RESPONSIVE DESIGN (Mobile & Tablet)
========================================= */
@media (max-width: 768px) {
    .vprime-vm-wrapper {
        padding: 60px 15px;
    }

    .vprime-vm-grid {
        flex-direction: column; /* मोबाइलमा कार्डहरू तल-माथि बस्छन् */
        align-items: center;
        gap: 30px;
    }

    .vprime-vm-card {
        width: 100%;
        max-width: 100%; /* एलिमेन्टरमा स्क्रोल नआउन */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5327f00 *//* =========================================
   OUR IMPACTS IN NUMBERS SECTION
========================================= */

.vprime-impact-wrapper {
    box-sizing: border-box;
    width: 100%;
    padding: 60px 20px; 
    background: linear-gradient(135deg, #0A4BCB 0%, #062b7a 100%);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.vprime-impact-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header Styling --- */
.vprime-impact-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* टाइटललाई सानो बनाइएको छ */
.vprime-impact-title {
    font-size: clamp(22px, 3vw, 28px); 
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

/* पहेंलो हटाएर सेतो लाइन राखिएको छ */
.vprime-impact-divider {
    width: 50px;
    height: 3px;
    background-color: #ffffff; 
    border-radius: 2px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.vprime-impact-subtitle {
    font-size: 15px;
    color: #e0e7ff;
    max-width: 600px;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

/* --- Grid Layout --- */
.vprime-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* डेस्कटपमा ४ वटा कोलम */
    gap: 25px;
    width: 100%;
}

/* --- Impact Item Styling (Icon Left, Text Right) --- */
.vprime-impact-item {
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    flex-direction: row; /* आइकन देब्रेपट्टि राख्न */
    align-items: center;
    justify-content: flex-start;
    gap: 20px; /* आइकन र टेक्स्ट बिचको दुरी */
    transition: all 0.3s ease;
}

.vprime-impact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: #ffffff;
}

/* --- Icons --- */
.vprime-impact-icon {
    font-size: 40px;
    color: #ffffff; /* पहेंलो हटाएर सेतो राखिएको */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

/* --- Text Content Wrapper --- */
.vprime-impact-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* टेक्स्टलाई देब्रे (Left) ढल्काउन */
}

/* --- Numbers --- */
.vprime-impact-number {
    font-size: 32px; 
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
    line-height: 1;
}

/* '+' र '%' साइनको लागि हल्का निलो रङ (पहेंलोको सट्टा) */
.vprime-impact-number span {
    color: #93c5fd; 
}

/* --- Labels --- */
.vprime-impact-label {
    font-size: 14px;
    font-weight: 400;
    color: #e0e7ff;
    margin: 0;
    line-height: 1.3;
}

/* =========================================
   RESPONSIVE DESIGN (Tablet & Mobile)
========================================= */
@media (max-width: 1024px) {
    .vprime-impact-grid {
        grid-template-columns: repeat(2, 1fr); /* ट्याब्लेटमा २ वटा कोलम */
    }
}

@media (max-width: 600px) {
    .vprime-impact-wrapper {
        padding: 50px 15px;
    }
    
    .vprime-impact-grid {
        /* आइकन र टेक्स्ट देब्रेपट्टि राख्दा मोबाइलमा ठाउँ साँघुरो हुने भएकोले १ कोलम राम्रो देखिन्छ */
        grid-template-columns: 1fr; 
        gap: 15px;
    }
    
    .vprime-impact-item {
        padding: 20px 20px;
        gap: 15px;
    }

    .vprime-impact-icon {
        font-size: 32px;
    }

    .vprime-impact-number {
        font-size: 28px;
    }

    .vprime-impact-label {
        font-size: 13px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e220488 *//* =========================================
   NEWSLETTER SUBSCRIPTION SECTION
========================================= */

.vprime-newsletter-wrapper {
    box-sizing: border-box;
    width: 100%;
    background-color: #f8fafc; /* सफा हल्का ब्याकग्राउन्ड */
    padding: 70px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid #e5e7eb; /* माथितिर सानो लाइन */
}

.vprime-newsletter-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.vprime-newsletter-title {
    font-size: clamp(26px, 4vw, 32px);
    font-weight: 700;
    color: #111827;
    margin: 0 0 15px 0;
}

.vprime-newsletter-desc {
    font-size: 16px;
    color: #4b5563;
    margin: 0 0 35px 0;
    line-height: 1.6;
}

/* --- Form and Input Layout --- */
.vprime-newsletter-form {
    width: 100%;
    max-width: 550px;
    margin-bottom: 20px;
}

.vprime-input-group {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
}

.vprime-newsletter-input {
    flex: 1;
    padding: 16px 25px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 50px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.vprime-newsletter-input:focus {
    border-color: #0A4BCB;
    box-shadow: 0 0 0 3px rgba(10, 75, 203, 0.1);
}

.vprime-newsletter-btn {
    background-color: #0A4BCB; /* ब्रान्डको निलो रङ */
    color: #ffffff;
    border: none;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    box-sizing: border-box;
}

.vprime-newsletter-btn:hover {
    background-color: #062b7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(10, 75, 203, 0.2);
}

/* --- Disclaimer Text --- */
.vprime-newsletter-disclaimer {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    max-width: 500px;
}

.vprime-newsletter-disclaimer a {
    color: #0A4BCB;
    text-decoration: none;
    font-weight: 600;
}

.vprime-newsletter-disclaimer a:hover {
    text-decoration: underline;
}

/* =========================================
   RESPONSIVE DESIGN (Mobile adjustments)
========================================= */
@media (max-width: 600px) {
    .vprime-newsletter-wrapper {
        padding: 50px 15px;
    }

    .vprime-input-group {
        flex-direction: column; /* मोबाइलमा इमेल र बटन तल-माथि बस्ने */
        gap: 12px;
    }

    .vprime-newsletter-btn {
        width: 100%; /* मोबाइलमा बटन फुल विथ हुने */
    }
}/* End custom CSS */