.video-container {
    position: relative;
    width: 100%; /* Full width */
    max-width: 1080px; /* Maximum width */
    height: 0; /* Set height to zero for aspect ratio */
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin: 0 auto; /* Center the element horizontally */
}

    .video-container iframe {
        position: absolute; /* Position the iframe absolutely */
        top: 0; /* Align to the top */
        left: 0; /* Align to the left */
        width: 100%; /* Full width of the container */
        height: 100%; /* Full height of the container */
        border-radius: 15px; /* Rounded corners */
    }

.map-inner {
    display: flex;
    justify-content: center;
}

.google-map-iframe {
    width: 100%; /* Make iframe take full width */
    height: 450px; /* Default height */
    border-radius: 15px;
}

@media (max-width: 600px) { /* For small screens like phones */
    .google-map-iframe {
        height: 300px; /* Adjust height for smaller screens */
    }
}

/* Font and text direction for Persian content */
:lang(fa) {
    font-family: 'Rubik', sans-serif; /* Persian font */
    direction: rtl; /* Right-to-left text direction */
    text-align: right; /* Right-align Persian text */
}

    /* Additional RTL support for headers in Persian */
    :lang(fa) h1, :lang(fa) h2, :lang(fa) h3, :lang(fa) h4, :lang(fa) h5, :lang(fa) h6 {
        text-align: right; /* Right-align headers in Persian */
    }

    /* Additional RTL support for paragraphs, links, spans, and divs in Persian */
    :lang(fa) p, :lang(fa) a, :lang(fa) span, :lang(fa) div {
        text-align: right; /* Right-align paragraphs, links, spans, and divs in Persian */
    }






.main-menu .navigation > li.dropdown > .megamenu {
    position: absolute;
    width: 100%;
    padding: 25px 30px;
    left: 0px;
    right: 0px;
    background: #343a40;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.rtl .main-menu .navigation > li.dropdown > .megamenu {
    direction: rtl;
    text-align: right;
}

.megamenu .row {
    margin: 0;
}

.megamenu [class*="col-md-"] {
    padding: 0 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.rtl .megamenu [class*="col-md-"] {
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.rtl .megamenu [class*="col-md-"]:first-child {
    border-right: none;
}

.megamenu [class*="col-md-"]:first-child {
    border-left: none;
}

.megamenu h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    display: block;
    text-align: center;
}

.megamenu h4 i {
    margin-left: 6px;
    font-size: 14px;
    opacity: 0.8;
}

.rtl .megamenu h4 i {
    margin-right: 0;
    margin-left: 6px;
}

.megamenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu ul li {
    position: relative;
    text-align: right !important;
}

.megamenu ul li a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 0;
    font-size: 13px;
    line-height: 22px;
    transition: all 300ms ease;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: right !important;
}

.megamenu ul li:last-child a {
    border-bottom: none;
}

.megamenu ul li a:hover {
    color: #ffffff;
    padding-right: 8px;
}

.rtl .megamenu ul li a:hover {
    padding-right: 8px;
    padding-left: 0;
}

@media (max-width: 991px) {
    .main-menu .navigation > li.dropdown > .megamenu {
        position: relative;
        width: 100%;
        padding: 10px 15px;
        box-shadow: none;
        border-radius: 0;
    }

    .megamenu [class*="col-md-"] {
        border-left: none;
        border-right: none;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .rtl .megamenu [class*="col-md-"] {
        border-right: none;
    }

    .megamenu [class*="col-md-"]:last-child {
        border-bottom: none;
    }
}

/* ===== Daily Verse Section ===== */
.daily-verse-section {
    background: linear-gradient(135deg, #f8f4ef 0%, #f0ebe3 50%, #e8e0d5 100%);
    padding: 40px 0 80px;
    position: relative;
}

.daily-verse-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a96e, transparent);
}

.daily-verse-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 40px;
    position: relative;
}

.daily-verse-icon {
    font-size: 28px;
    color: #c9a96e;
    margin-bottom: 10px;
}

.daily-verse-label {
    display: inline-block;
    background: #c9a96e;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 20px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.daily-verse-text {
    font-size: 20px;
    line-height: 1.9;
    color: #3a3024;
    font-weight: 500;
    margin: 0 0 14px;
    padding: 0;
    border: none;
}

.daily-verse-ref {
    display: block;
    font-size: 15px;
    color: #8a7a65;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 18px;
}

.daily-verse-history-link {
    display: inline-block;
    font-size: 13px;
    color: #c9a96e;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #c9a96e;
    padding: 6px 18px;
    border-radius: 20px;
    transition: all 0.3s;
}

.daily-verse-history-link:hover {
    background: #c9a96e;
    color: #fff;
}

@media (max-width: 768px) {
    .daily-verse-card {
        padding: 20px 15px;
    }

    .daily-verse-text {
        font-size: 17px;
        line-height: 1.8;
    }
}

