/* =============================
   HERO SECTION (UPDATED)
============================= */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;

    /* Use your existing background image */
    background: url("/assets/img/amazing-balance-blur-boulder.png") center/cover no-repeat;

    display: flex;
    align-items: center;
}

/* Overlay for readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Content Container */
.hero-content {
    position: relative;
    z-index: 2;

    max-width: 1100px;
    margin: auto;
    padding: 0 20px;

    color: #ffffff;
}

/* Headline */
.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Subtext */
.hero-subtext {
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 15px;
    color: #e5e7eb;
}

/* Supporting line */
.hero-support {
    font-size: 16px;
    line-height: 1.6;
    max-width: 680px;
    margin-bottom: 30px;
    color: #cbd5e1;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Primary Button */
.btn-primary {
    padding: 12px 24px;
    background: #0b3d2e;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background: #145c46;
}

/* Secondary Button */
.btn-secondary {
    padding: 12px 24px;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #111;
}

/* =============================
   RESPONSIVE HERO
============================= */
@media (max-width: 900px) {

    .hero {
        height: auto;
        padding: 100px 0;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .hero-support {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}





/* =============================
   PROBLEM SECTION
============================= */
.problem-section {
    padding: 90px 20px;
    background: #ffffff;
}

.container {
    max-width: 1100px;
    margin: auto;
}

/* Header */
.problem-header {
    text-align: center;
    margin-bottom: 50px;
}

.problem-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.problem-header p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

/* Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Cards */
.problem-card {
    background: #f9fafb;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.25s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: #0b3d2e;
}

/* Title */
.problem-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

/* Text */
.problem-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Closing text */
.problem-closing {
    margin-top: 40px;
    text-align: center;
    font-size: 15px;
    color: #444;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================
   RESPONSIVE
============================= */

/* Tablet */
@media (max-width: 900px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .problem-header h2 {
        font-size: 26px;
    }
}

/* Small Mobile */
@media (max-width: 500px) {
    .problem-section {
        padding: 70px 15px;
    }

    .problem-card {
        padding: 22px;
    }
}



/* =============================
   WHAT WE DO SECTION
============================= */
.what-section {
    padding: 90px 20px;
    background: #f8fafc; /* subtle contrast from previous section */
}

.what-header {
    text-align: center;
    margin-bottom: 55px;
}

.what-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.what-header p {
    font-size: 16px;
    color: #555;
    max-width: 720px;
    margin: auto;
    line-height: 1.6;
}

/* Grid Layout */
.what-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Card Style */
.what-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    transition: all 0.25s ease;
}

/* Subtle hover */
.what-card:hover {
    transform: translateY(-4px);
    border-color: #0b3d2e;
}

/* Title */
.what-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

/* Description */
.what-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 900px) {
    .what-grid {
        grid-template-columns: 1fr;
    }

    .what-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 500px) {
    .what-section {
        padding: 70px 15px;
    }

    .what-card {
        padding: 24px;
    }
}





/* =============================
   HOW WE WORK
============================= */
.how-section {
    padding: 90px 20px;
    background: #ffffff;
}

.how-header {
    text-align: center;
    margin-bottom: 50px;
}

.how-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.how-header p {
    font-size: 16px;
    color: #555;
    max-width: 720px;
    margin: auto;
    line-height: 1.6;
}

/* Accordion */
.how-accordion {
    max-width: 800px;
    margin: auto;
}

/* Each item */
.how-item {
    border-bottom: 1px solid #e5e7eb;
}

/* Toggle button */
.how-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    font-size: 17px;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #111;
}

/* Icon */
.how-toggle .icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* Content (hidden by default) */
.how-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.how-content p {
    padding: 0 0 18px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Active state */
.how-item.active .how-content {
    max-height: 200px;
}

.how-item.active .icon {
    transform: rotate(45deg);
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 900px) {
    .how-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 500px) {
    .how-section {
        padding: 70px 15px;
    }

    .how-toggle {
        font-size: 15px;
    }
}












/* =============================
   INDUSTRY SECTION
============================= */
.industry-section {
    padding: 90px 20px;
    background: #f8fafc;
}

.industry-header {
    text-align: center;
    margin-bottom: 50px;
}

.industry-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.industry-header p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

/* Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Cards */
.industry-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.25s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: #0b3d2e;
}

/* Title */
.industry-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

/* Text */
.industry-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Bridge Statement */
.industry-bridge {
    margin-top: 40px;
    text-align: center;
    font-size: 15px;
    color: #444;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 900px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .industry-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 500px) {
    .industry-section {
        padding: 70px 15px;
    }

    .industry-card {
        padding: 22px;
    }
}



/* =============================
   ISLAMIC FINANCE SECTION
============================= */
.islamic-section {
    padding: 100px 20px;
    background: #0b1f1a; /* deep premium green */
    color: #e5e7eb;
}

/* Layout */
.islamic-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Text */
.islamic-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #ffffff;
}

.islamic-lead {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.islamic-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #9ca3af;
}

/* List */
.islamic-list {
    margin-bottom: 25px;
    padding-left: 0;
    list-style: none;
}

.islamic-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Custom bullet */
.islamic-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #10b981; /* emerald accent */
    font-size: 18px;
}

/* Button */
.btn-islamic {
    display: inline-block;
    padding: 12px 22px;
    background: #10b981;
    color: #022c22;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
}

.btn-islamic:hover {
    background: #059669;
    color: #ffffff;
}

/* Image */
.islamic-visual img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 900px) {
    .islamic-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .islamic-text h2 {
        font-size: 26px;
    }

    .islamic-visual img {
        max-height: 300px;
    }
}

@media (max-width: 500px) {
    .islamic-section {
        padding: 70px 15px;
    }
}



/* =============================
   WHY SECTION
============================= */
.why-section {
    padding: 90px 20px;
    background: #ffffff;
}

/* Header */
.why-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.why-header p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Items */
.why-item {
    padding: 25px 0;
    border-bottom: 1px solid #e5e7eb;
}

/* Title */
.why-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

/* Text */
.why-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Closing Statement */
.why-closing {
    margin-top: 45px;
    text-align: center;
    font-size: 15px;
    color: #333;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 500px) {
    .why-section {
        padding: 70px 15px;
    }
}





/* =============================
   FINAL CTA
============================= */
.cta-final {
    padding: 100px 20px;
    background: #0b3d2e; /* brand deep green */
    color: #ffffff;
    text-align: center;
}

/* Content */
.cta-content {
    max-width: 750px;
    margin: auto;
}

/* Heading */
.cta-content h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Text */
.cta-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #d1fae5;
    margin-bottom: 30px;
}

/* Buttons */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Outline button */
.btn-outline {
    padding: 12px 24px;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.btn-outline:hover {
    background: #ffffff;
    color: #0b3d2e;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 900px) {
    .cta-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 500px) {
    .cta-final {
        padding: 70px 15px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}