﻿/* Modal Background */
.cm_modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
}

/* Scroll lock */
body.cm_modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Modal Box */
.cm_modal-box {
    width: 600px;
    max-height: 85vh;
    background: #fff;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ✅ Fixed Header */
.cm_modal-header {
    position: sticky;
    top: 0;
    background: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

/* Close Button */
.cm_close-btn {
    font-size: 24px;
    cursor: pointer;
}

/* Scrollable Body */
.cm_modal-body {
    padding: 20px;
    overflow-y: auto;
}

    /* Content */
    .cm_modal-body p {
        line-height: 1.6;
    }

    .cm_modal-body ul {
        padding-left: 20px;
    }

    /* Quote FIX (your bug) */
    .cm_modal-body blockquote {
        margin-top: 20px;
        padding: 15px;
        background: #f5f5f5;
        border-left: 4px solid #cc9355;
        font-style: italic;
    }




.hero-right {
    width: 100%;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.hero-right-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Quote */
.quote {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 00px;
}

    .quote strong {
        font-weight: 700;
    }

/* Arrow */
.arrow-icons {
    margin: 00px 0;
}

    .arrow-icons img {
        width: 100%;
        height: auto;
    }

/* Profile */
.profile {
    margin-top: 10px;
}

.name {
    font-size: 20px;
    font-weight: 600;
}

.designation {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

.btn2 {
    border: 1px solid #999;
    padding: 12px 25px;
    background: white;
    cursor: pointer;
    border-radius: 6px;
    font-size: 15px;
    transition: 0.3s;
}

    .btn2:hover {
        background: #eee;
    }

@media (max-width: 1024px) {
    .hero-right {
        height: auto;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .hero-right {
        padding: 40px 25px;
        min-height: auto;
        justify-content: flex-start;
    }

    .quote {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .arrow-icons {
        margin: 15px 0;
    }
}