/* General Styles */
:root {
    --primary-color: #4DEEDC; /* Mint green / Teal color from the app */
    --primary-dark: #33B3A5;
    --primary-light: #A1F4EB;
    --secondary-color: #0A2342; /* Dark blue for text and accents */
    --accent-color: #FFD700; /* Gold accent for highlights */
    --text-color: #333333;
    --text-light: #666666;
    --light-text: #FFFFFF;
    --background-light: #F8F9FA;
    --background-gray: #F0F2F5;
    --border-color: #E1E4E8;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --card-radius: 16px;
    --button-radius: 50px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
}

.QarzMitra-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Section Header */
.QarzMitra-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.QarzMitra-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.QarzMitra-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.QarzMitra-section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Button Styles */
.QarzMitra-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--button-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px var(--shadow-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.QarzMitra-btn-primary {
    background-color: var(--secondary-color);
    color: var(--light-text);
    border: 2px solid var(--secondary-color);
}

.QarzMitra-btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.QarzMitra-btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.QarzMitra-btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.QarzMitra-cta-container {
    text-align: center;
    margin-top: 40px;
}

/* Header Styles */
.QarzMitra-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-text);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 10px 0;
}

.QarzMitra-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.QarzMitra-logo {
    width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.QarzMitra-logo img {
    max-width: 100%;
    height: auto;
    margin-right: 10px;
}

.QarzMitra-menu ul {
    display: flex;
}

.QarzMitra-menu li {
    margin: 0 15px;
}

.QarzMitra-menu a {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 10px 0;
    position: relative;
}

.QarzMitra-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.QarzMitra-menu a:hover::after,
.QarzMitra-menu .active a::after {
    width: 100%;
}

.QarzMitra-language-toggle {
    display: flex;
}

.QarzMitra-lang-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.QarzMitra-lang-btn.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.QarzMitra-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

.QarzMitra-mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.QarzMitra-hero {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.QarzMitra-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.QarzMitra-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.QarzMitra-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.QarzMitra-hero-text {
    flex: 1;
    padding-right: 40px;
}

.QarzMitra-hero-text h1 {
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-size: 3.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.QarzMitra-hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.QarzMitra-hero-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-align: left;
}

.QarzMitra-hero-text p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    line-height: 1.5;
}

.QarzMitra-amount-highlight {
    font-weight: 700;
    color: var(--secondary-color);
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.QarzMitra-hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.QarzMitra-hero-buttons .QarzMitra-btn {
    padding: 15px 30px;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.QarzMitra-hero-buttons .QarzMitra-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.QarzMitra-hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
    padding: 10px;
    max-height: 500px;
    overflow: hidden;
}

.QarzMitra-hero-image img {
    max-height: 420px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    object-fit: contain;
    border: 5px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.QarzMitra-hero-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.QarzMitra-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
    line-height: 0;
}

.QarzMitra-hero-wave img {
    width: 100%;
    display: block;
}

/* Hero Badge Style */
.QarzMitra-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.QarzMitra-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.QarzMitra-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.3);
}

.QarzMitra-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    font-size: 12px;
    margin-right: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.QarzMitra-badge-text {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Hero Image Tags */
.QarzMitra-hero-image-wrap {
    position: relative;
    display: inline-block;
}

.QarzMitra-hero-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.25);
    color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.QarzMitra-hero-tag.tag-top {
    top: 35px;
    right: -20px;
    animation-delay: 0.5s;
}

.QarzMitra-hero-tag.tag-bottom {
    bottom: 85px;
    left: -30px;
    animation-delay: 1s;
}

.QarzMitra-hero-tag.tag-left {
    top: 130px;
    left: -40px;
    animation-delay: 1.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-7px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Hero Wave */
.QarzMitra-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.QarzMitra-hero-wave svg {
    width: 100%;
    height: 50px;
}

/* How to Borrow Money Section */
.QarzMitra-how-to {
    padding: 80px 0;
    background-color: var(--background-light);
}

.QarzMitra-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.QarzMitra-step-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background-color: var(--light-text);
    border-radius: var(--card-radius);
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.QarzMitra-step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.QarzMitra-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.QarzMitra-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.QarzMitra-step-icon img {
    width: 100%;
    height: 100%;
}

.QarzMitra-step-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.QarzMitra-step-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Testimonial Section */
.QarzMitra-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.QarzMitra-testimonial-slider {
    display: flex;
    gap: 30px;
    justify-content: center;
    overflow-x: auto;
    padding: 20px 10px;
    scrollbar-width: none; /* Firefox */
}

.QarzMitra-testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.QarzMitra-testimonial-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 350px;
    background-color: var(--light-text);
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.QarzMitra-testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.QarzMitra-testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-light);
}

.QarzMitra-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.QarzMitra-testimonial-rating {
    text-align: center;
    margin-bottom: 15px;
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.QarzMitra-testimonial-text {
    margin-bottom: 20px;
    text-align: center;
}

.QarzMitra-testimonial-text p {
    font-style: italic;
    color: var(--text-color);
    position: relative;
    padding: 0 15px;
}

.QarzMitra-testimonial-text p::before,
.QarzMitra-testimonial-text p::after {
    content: '"';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.QarzMitra-testimonial-author {
    text-align: center;
}

.QarzMitra-testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.QarzMitra-testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.QarzMitra-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.QarzMitra-testimonial-dots span {
    width: 12px;
    height: 12px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.QarzMitra-testimonial-dots span.active {
    background-color: var(--primary-color);
}

/* Announcement Section */
.QarzMitra-announcement {
    padding: 60px 0;
    background-color: var(--background-light);
}

.QarzMitra-announcement-box {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 40px;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.QarzMitra-announcement-content h3 {
    color: var(--primary-light);
    margin-bottom: 15px;
    font-size: 2rem;
    text-align: center;
}

.QarzMitra-announcement-content h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.QarzMitra-announcement-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.QarzMitra-announcement-contact {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.QarzMitra-announcement-contact p {
    margin-bottom: 10px;
}

.QarzMitra-announcement-contact p:last-child {
    margin-bottom: 0;
}

/* Vision and Mission Section */
.QarzMitra-vision-mission {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.QarzMitra-vision-mission-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.QarzMitra-vision-box,
.QarzMitra-mission-box {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-text);
    border-radius: var(--card-radius);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.QarzMitra-vision-box:hover,
.QarzMitra-mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.QarzMitra-box-header {
    margin-bottom: 20px;
    text-align: center;
}

.QarzMitra-box-header h3 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.QarzMitra-box-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

/* Disclosure Section */
.QarzMitra-disclosure {
    padding: 80px 0;
    background-color: var(--background-light);
}

.QarzMitra-disclosure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.QarzMitra-disclosure-item {
    background-color: var(--light-text);
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    text-align: center;
}

.QarzMitra-disclosure-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.QarzMitra-disclosure-item h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-light);
    display: inline-block;
    position: relative;
}

.QarzMitra-disclosure-item h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50%;
    height: 2px;
    background-color: var(--primary-color);
}

.QarzMitra-disclosure-content {
    text-align: left;
}

/* Calculator Section */
.QarzMitra-calculator {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.QarzMitra-calculator-wrapper {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--light-text);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.QarzMitra-calculator-form {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: var(--primary-color);
}

.QarzMitra-form-group {
    margin-bottom: 30px;
}

.QarzMitra-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--secondary-color);
}

.QarzMitra-form-group input[type="number"],
.QarzMitra-form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--light-text);
}

.QarzMitra-slider-container {
    margin-top: 15px;
}

.QarzMitra-slider-container input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 5px;
    background: var(--light-text);
    outline: none;
    margin-bottom: 10px;
}

.QarzMitra-slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
}

.QarzMitra-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.QarzMitra-calculator-results {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: var(--light-text);
}

.QarzMitra-result-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.QarzMitra-result-label {
    font-weight: 600;
    color: var(--text-color);
}

.QarzMitra-result-value {
    font-weight: 700;
    color: var(--secondary-color);
}

.QarzMitra-repayment-schedule {
    margin-top: 30px;
}

.QarzMitra-repayment-schedule h4 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.QarzMitra-schedule-container {
    max-height: 200px;
    overflow-y: auto;
}

.QarzMitra-schedule-item {
    background-color: var(--background-light);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.QarzMitra-schedule-date,
.QarzMitra-schedule-payment {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.QarzMitra-date-label,
.QarzMitra-payment-label {
    font-weight: 600;
}

/* App Download Section */
.QarzMitra-app-download {
    padding: 80px 0;
    background: var(--gradient-primary);
}

.QarzMitra-download-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.QarzMitra-download-text {
    flex: 1;
}

.QarzMitra-download-text h2 {
    text-align: left;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.QarzMitra-download-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.QarzMitra-download-features {
    margin-bottom: 30px;
}

.QarzMitra-download-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.QarzMitra-feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--secondary-color);
    color: var(--light-text);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.QarzMitra-download-buttons {
    display: flex;
    gap: 15px;
}

.QarzMitra-download-link img {
    height: 60px;
    transition: transform var(--transition-speed) ease;
}

.QarzMitra-download-link img:hover {
    transform: translateY(-5px);
}

.QarzMitra-download-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.QarzMitra-download-image img {
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.QarzMitra-footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.QarzMitra-footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.QarzMitra-footer-logo {
    flex: 1;
    min-width: 300px;
}

.QarzMitra-footer-logo .QarzMitra-logo {
    width: 180px;
    height: 60px;
    margin-bottom: 20px;
}

.QarzMitra-footer-logo .QarzMitra-logo img {
    max-width: 100%;
    height: auto;
}

.QarzMitra-footer-contact {
    margin-top: 20px;
}

.QarzMitra-footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.QarzMitra-footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.QarzMitra-footer-menu {
    flex: 1;
    min-width: 150px;
}

.QarzMitra-footer-menu h4 {
    color: var(--primary-light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.QarzMitra-footer-menu h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.QarzMitra-footer-menu ul li {
    margin-bottom: 10px;
}

.QarzMitra-footer-menu ul li a {
    color: var(--light-text);
    transition: color var(--transition-speed) ease, padding-left var(--transition-speed) ease;
}

.QarzMitra-footer-menu ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.QarzMitra-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.QarzMitra-footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.QarzMitra-footer-bottom p:last-child {
    margin-bottom: 0;
}

/* Animation Classes */
.QarzMitra-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.QarzMitra-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 1100px) {
    .QarzMitra-hero-content {
        flex-direction: column;
    }
    
    .QarzMitra-hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .QarzMitra-hero-text h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .QarzMitra-hero-text h2 {
        text-align: center;
    }
    
    .QarzMitra-hero-buttons {
        justify-content: center;
    }
    
    .QarzMitra-vision-mission-content,
    .QarzMitra-download-content {
        flex-direction: column;
    }
    
    .QarzMitra-download-text {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .QarzMitra-download-text h2 {
        text-align: center;
    }
    
    .QarzMitra-download-feature {
        justify-content: center;
    }
    
    .QarzMitra-download-buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .QarzMitra-menu {
        display: none;
    }
    
    .QarzMitra-menu.active {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--light-text);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .QarzMitra-menu.active ul {
        flex-direction: column;
    }
    
    .QarzMitra-menu.active li {
        margin: 10px 0;
    }
    
    .QarzMitra-mobile-menu-toggle {
        display: flex;
    }
    
    .QarzMitra-mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    .QarzMitra-mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .QarzMitra-mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    .QarzMitra-hero {
        padding: 120px 0 0;
    }
    
    .QarzMitra-announcement-box {
        flex-direction: column;
        text-align: center;
    }
    
    .QarzMitra-box-header {
        flex-direction: column;
        text-align: center;
    }
    
    .QarzMitra-box-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .QarzMitra-disclosure-item {
        text-align: center;
    }
    
    .QarzMitra-disclosure-icon {
        margin: 0 auto 20px;
    }
}

@media screen and (max-width: 480px) {
    .QarzMitra-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .QarzMitra-step-item {
        width: 100%;
        max-width: 100%;
    }
} 