/* Al Khair Islamic Finance - Main Stylesheet */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #1a472a;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.social-links a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Main Navigation */
.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #1a472a;
    font-size: 16px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2d8659;
}

.btn-check {
    background: #2d8659;
    color: white !important;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-check:hover {
    background: #236b47;
}

/* Hero Slider */
.hero-slider {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 60px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-left {
    text-align: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

.hero-right {
    text-align: center;
}

.logo-badge {
    margin-bottom: 20px;
}

.hero-right h1 {
    font-size: 4rem;
    color: #1a472a;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.loans-text {
    font-size: 3rem;
    color: #d32f2f;
    font-weight: bold;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.2rem;
    color: #555;
}

/* Apply Buttons */
.apply-buttons {
    text-align: center;
    padding: 30px 20px;
    background: white;
}

.btn-primary, .btn-secondary {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s;
}

.btn-primary {
    background: #2d8659;
    color: white;
}

.btn-primary:hover {
    background: #236b47;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #4285f4;
    color: white;
}

.btn-secondary:hover {
    background: #3367d6;
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 60px 20px;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.islamic-banking-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.islamic-banking-card h3 {
    color: #1565c0;
    margin-bottom: 10px;
}

.islamic-banking-card p {
    margin-bottom: 15px;
    color: #666;
}

.btn-learn {
    background: #1565c0;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

.about-content h2 {
    color: #1a472a;
    font-size: 2rem;
    margin-bottom: 10px;
}

.about-content h3 {
    color: #2d8659;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    text-align: justify;
    color: #555;
    line-height: 1.8;
}

/* Islamic Finance Banner */
.islamic-finance-banner {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 165px 20px;
}

.banner-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.banner-text h2 {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 900;
    text-align: center;
}

/* Loan Types Cards */
.loan-types {
    padding: 60px 20px;
    background: white;
}

.loan-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.loan-type-card {
    background: #2d8659;
    color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.loan-type-card:hover {
    transform: translateY(-10px);
}

.loan-type-card .card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.loan-type-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.loan-type-card p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-apply {
    background: white;
    color: #2d8659;
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-apply:hover {
    background: #f5f5f5;
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a472a;
    margin-bottom: 50px;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-image {
    height: 310px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: #1a472a;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-content ul li {
    padding: 8px 0;
    color: #2d8659;
    font-weight: 500;
}

.btn-apply-green {
    background: #2d8659;
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-apply-green:hover {
    background: #236b47;
    transform: translateY(-2px);
}

/* Calculator Section */
.calculator-section {
    padding: 60px 20px;
    background: white;
}

.calculator-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.calculator-box {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.form-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}

.form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2d8659;
    cursor: pointer;
}

.value-display {
    margin-top: 10px;
    font-size: 1.5rem;
    color: #2d8659;
    font-weight: bold;
}

.btn-calculate {
    width: 100%;
    padding: 15px;
    background: #2d8659;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-calculate:hover {
    background: #236b47;
}

/* Result Box */
.result-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.result-box h3 {
    color: #1a472a;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.emi-amount {
    font-size: 3rem;
    color: #2d8659;
    font-weight: bold;
    margin-bottom: 30px;
}

.chart-container {
    margin: 30px auto;
    max-width: 200px;
}

.breakdown {
    margin-top: 30px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breakdown-item .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.dot.principal {
    background: #2d8659;
}

.dot.total {
    background: #ffa726;
}

.breakdown-item .label {
    color: #666;
}

.breakdown-item .value {
    font-weight: bold;
    color: #333;
}

/* Halal Banner */
.halal-banner {
    background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%);
    padding: 80px 20px;
    text-align: center;
}

.halal-banner h2 {
    font-size: 2.5rem;
    color: #1a472a;
    margin-bottom: 40px;
    font-weight: bold;
}

.halal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 30px;
}

.halal-badge {
    text-align: center;
}

.halal-badge p {
    color: #2d8659;
    font-weight: bold;
    margin-top: 10px;
}

.zero-percent {
    display: flex;
    align-items: baseline;
}

.zero {
    font-size: 8rem;
    color: #2d8659;
    font-weight: 900;
}

.percent {
    font-size: 4rem;
    color: #2d8659;
    font-weight: 900;
}

.halal-text {
    font-size: 1.3rem;
    color: #555;
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 60px 20px;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.process-card h3 {
    color: #1a472a;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.process-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-learn-more {
    background: #2d8659;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-learn-more:hover {
    background: #236b47;
}

/* Documents Section */
.documents-section {
    padding: 60px 20px;
    background: #f5f5f5;
}

.documents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.documents-image {
    position: relative;
}

.documents-image img {
    width: 100%;
    border-radius: 10px;
}

.doc-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(45, 134, 89, 0.9);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.doc-overlay h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

.documents-content h2 {
    color: #1a472a;
    font-size: 2rem;
    margin-bottom: 10px;
}

.documents-content h3 {
    color: #2d8659;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.documents-content p {
    color: #666;
    margin-bottom: 20px;
}

.documents-list {
    list-style: none;
    margin-bottom: 30px;
}

.documents-list li {
    padding: 10px 0;
    color: #333;
    font-weight: 500;
}

.btn-download {
    background: #2d8659;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-download:hover {
    background: #236b47;
    transform: translateY(-2px);
}

/* Footer Banner */
.footer-banner {
    background: linear-gradient(135deg, #1a472a 0%, #2d8659 100%);
    padding: 80px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.banner-overlay {
    position: relative;
    z-index: 1;
}

.banner-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-words {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: bold;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: #2d8659;
}

.footer-col p {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #2d8659;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a472a 0%, #2d8659 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Status Check Section */
.status-check-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.status-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.form-icon {
    margin-bottom: 20px;
}

.status-form-wrapper h2 {
    color: #1a472a;
    margin-bottom: 10px;
}

.sub-text {
    color: #666;
    margin-bottom: 40px;
}

.status-form-wrapper .form-group {
    position: relative;
    margin-bottom: 30px;
}

.status-form-wrapper input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.status-form-wrapper input:focus {
    outline: none;
    border-color: #2d8659;
}

.input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #2d8659;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #236b47;
    transform: translateY(-2px);
}

.help-text {
    margin-top: 20px;
    color: #666;
}

.help-text a {
    color: #2d8659;
    text-decoration: none;
    font-weight: 600;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 50px auto 0;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #1a472a;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
}

/* How it Works */
.how-it-works {
    padding: 80px 20px;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    color: #1a472a;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2d8659;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #1a472a;
    margin-bottom: 15px;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Apply Section */
.apply-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.apply-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #1a472a;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.apply-form-wrapper .form-group {
    margin-bottom: 0;
}

.apply-form-wrapper label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.apply-form-wrapper input,
.apply-form-wrapper select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.apply-form-wrapper input:focus,
.apply-form-wrapper select:focus {
    outline: none;
    border-color: #2d8659;
}

.form-footer {
    text-align: center;
    margin-top: 30px;
}

/* Benefits Section */
.benefits-section {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.benefits-section h3 {
    text-align: center;
    color: #1a472a;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 15px;
}

.benefit-icon {
    font-size: 2rem;
}

.benefit-item h4 {
    color: #1a472a;
    margin-bottom: 5px;
}

.benefit-item p {
    color: #666;
    font-size: 14px;
}

/* Dashboard Section */
.dashboard-section {
    padding: 60px 20px;
    background: #f5f5f5;
}

.dashboard-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.dashboard-header h2 {
    color: #1a472a;
    font-size: 1.8rem;
}

.user-name {
    color: #2d8659;
}

.btn-back {
    background: #f5f5f5;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back:hover {
    background: #e0e0e0;
}

/* Dashboard Table */
.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.dashboard-table tr {
    border-bottom: 1px solid #eee;
}

.dashboard-table td {
    padding: 20px 15px;
}

.dashboard-table td.label {
    font-weight: 600;
    color: #555;
    width: 40%;
}

.dashboard-table td.value {
    color: #333;
}

.status-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

/* Continued from style.css Part 1 */

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.btn-upload {
    background: #4caf50;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-upload:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* File List */
.file-list {
    margin-top: 20px;
}

.uploaded-files {
    list-style: none;
    margin-top: 15px;
}

.uploaded-files li {
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-icon {
    font-size: 1.2rem;
}

.file-name {
    flex: 1;
    color: #333;
}

.file-size {
    color: #999;
    font-size: 0.9rem;
}

.btn-upload-submit {
    margin-top: 15px;
    background: #2d8659;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.success-msg {
    color: #4caf50;
    font-weight: 600;
    margin-top: 15px;
}

/* Status Timeline */
.status-timeline {
    margin: 40px 0;
}

.status-timeline h3 {
    color: #1a472a;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-icon {
    position: absolute;
    left: -38px;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.timeline-item.completed .timeline-icon {
    background: #4caf50;
    border-color: #4caf50;
    color: white;
}

.timeline-item.active .timeline-icon {
    background: #ffa726;
    border-color: #ffa726;
    color: white;
}

.timeline-content h4 {
    color: #1a472a;
    margin-bottom: 5px;
}

.timeline-content p {
    color: #666;
    font-size: 0.95rem;
}

/* Documents Info */
.documents-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.documents-info h3 {
    color: #1a472a;
    margin-bottom: 20px;
}

.doc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.doc-list li {
    color: #333;
    font-weight: 500;
}

.note {
    color: #d32f2f;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .loan-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .hero-right h1 {
        font-size: 2.5rem;
    }
    
    .loans-text {
        font-size: 2rem;
    }
    
    .loan-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-text h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .zero {
        font-size: 5rem;
    }
    
    .percent {
        font-size: 3rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .doc-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar {
        font-size: 12px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        font-size: 14px;
    }
    
    .nav-menu {
        font-size: 13px;
    }
    
    .hero-slider {
        padding: 30px 15px;
    }
    
    .hero-right h1 {
        font-size: 2rem;
    }
    
    .loans-text {
        font-size: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .islamic-banking-card {
        padding: 20px;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
    }
    
    .banner-text h2 {
        font-size: 1.5rem;
    }
    
    .loan-type-card {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .calculator-box {
        padding: 25px;
    }
    
    .result-box {
        padding: 25px;
    }
    
    .emi-amount {
        font-size: 2rem;
    }
    
    .halal-banner h2 {
        font-size: 1.8rem;
    }
    
    .zero {
        font-size: 4rem;
    }
    
    .percent {
        font-size: 2rem;
    }
    
    .process-card {
        padding: 30px 20px;
    }
    
    .banner-words {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .status-form-wrapper {
        padding: 30px 20px;
    }
    
    .apply-form-wrapper {
        padding: 30px 20px;
    }
    
    .dashboard-wrapper {
        padding: 25px 15px;
    }
    
    .dashboard-table td {
        padding: 15px 10px;
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .btn-check, .btn-apply, .btn-upload, .btn-back {
        display: none;
    }
    
    .dashboard-wrapper {
        box-shadow: none;
    }
}





























/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.call-float {
    background: linear-gradient(135deg, #2d8659 0%, #1e5c3f 100%);
    color: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(45, 134, 89, 0.6), 0 0 0 10px rgba(45, 134, 89, 0.1);
    }
}

/* WhatsApp Button in Header */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
    }
    
    .float-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .btn-whatsapp {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .btn-whatsapp svg {
        width: 16px;
        height: 16px;
    }
}