@font-face {
    font-family: "DanaFaNum";
    src: url("../font/DanaFaNum-Regular.woff2") format("woff2"),
         url("../font/DanaFaNum-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root {
    --primary-dark: #12223a;
    --primary: #1e355a;
    --primary-light: #2b4b7c;
    --secondary: #376a9e;
    --accent: #a57f50;
    --accent-hover: #8e6c43;
    
    --table-header-dark: #1e3b64;
    --table-header-mid: #264f83;
    --table-header-light: #376a9e;
    
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #999999;
    
    --bg-page: #f4f6f9;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DanaFaNum', sans-serif;
    /* background-color: var(--bg-page); */
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}
#off_message{
    position: fixed;
    top: 300px;
    z-index: 200;
    left: -90px;
    transform: rotate(-90deg);
    font-size: 20px;
    color: var(--table-header-light);
    background-color: white; 
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 10px;

}
#just-off_message{
    color: red;
    font-size: 25px;
    font-weight: bold;
}
/* #exp-off_message {
    color: var(--accent-hover);
    animation: pulseOpacity 1.5s ease-in-out infinite;
} */

/* @keyframes pulseOpacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
} */


/* #exp-off_message {
    font-weight: bold;
        color: red;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(0.4);
    }

    50% {
        opacity: 0.4;
        transform: scale(8.33);
    }
} */

#exp-off_message {
    font-weight: bold;
    /* color: red; */
    display: inline-block;
    transform-origin: center;
    animation: pulseText 1s ease-in-out infinite;
}

@keyframes pulseText {
    0%, 100% {
        opacity: 1;
        transform: scale(0.92);
    }

    50% {
        opacity: .5;
        transform: scale(1);
    }
}


a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img {
    height: 45px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    color: var(--primary);
    font-size: 14px ;
}

.logo-text span {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 300;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-gold {
    background-color: var(--accent);
    color: var(--bg-white);
}

.btn-gold:hover {
    background-color: var(--accent-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--bg-white);
}

.hero {
    position: relative;
    background-color: var(--primary-dark);
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* Gradient to mimic the image - dark blue on right, transparent on left */
    background: linear-gradient(to left, rgba(18, 34, 58, 0.95) 0%, rgba(18, 34, 58, 0.8) 40%, rgba(18, 34, 58, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    color: var(--bg-white);
}

.hero-text-box {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.hero-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
}

.hero-feature-item span {
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.9;
}

.main-content {
    position: relative;
    z-index: 20;
    background-color: var(--bg-white);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    margin-top: -60px; /* Overlap */
    padding: 60px 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.08);
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
}

/* Custom Scrollbar for tables */
.table-responsive::-webkit-scrollbar { height: 6px; }
.table-responsive::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
.table-responsive::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

table {
    width: 100%;
    min-width: 900px; /* Force scroll on small screens */
    border-collapse: collapse;
    text-align: center;
}

th, td {
    padding: 15px;
    border-left: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

th:last-child, td:last-child {
    border-left: none;
}

th {
    color: var(--bg-white);
    font-weight: 500;
    font-size: 1rem;
}

/* Table 1 Specifics */
.table-1 th.th-dark { background-color: var(--table-header-dark); }
.table-1 th.th-mid { background-color: var(--table-header-mid); }
.table-1 th.th-light { background-color: var(--table-header-light); }

.table-1 tbody tr { background-color: var(--bg-white); }
.table-1 tbody td { color: var(--text-main); font-weight: 500; }

.dark_cel_head{ background-color: var(--table-header-dark);}
.dark_cel_ch{background-color: #f0f4f8;    color: var(--text-main);}
.table-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 60px;
}

.middle-banner {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.middle-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.middle-banner-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(to left, rgba(30,59,100,0.9) 0%, rgba(30,59,100,0.7) 60%, transparent 100%);
}

.middle-banner-content {
    position: relative;
    z-index: 10;
    padding-right: 50px;
    color: var(--bg-white);
    max-width: 600px;
}

.middle-banner-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.middle-banner-content p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
}

.table-2 th.th-dark { background-color: var(--table-header-dark); }
.table-2 th.th-mid { background-color: var(--table-header-mid); }
.table-2 th.th-light { background-color: var(--table-header-light); }


.table-2 tbody tr:nth-child(even) td:first-child {
    background-color: #f9fbfd;
}

.table-2 tbody tr:nth-child(odd) {
    background-color: var(--bg-white);
}

.table-2 tbody td.text-right {
    text-align: right;
    padding-right: 20px;
    font-weight: 500;
}

.table-section {
    margin-bottom: 80px;
}

.conditions-section {
    margin-bottom: 80px;
}

.conditions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.condition-card {
    flex: 1 1 200px;
    max-width: 230px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.condition-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.condition-card h4 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.condition-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cta-bottom {
    background-color: var(--primary-dark);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

/* Decorative Background Elements for CTA */
.cta-bg-shape {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    opacity: 0.3;
    pointer-events: none;
}
.cta-bg-left { left: -50px; }
.cta-bg-right { right: -50px; }

.cta-content {
    position: relative;
    z-index: 10;
    color: var(--bg-white);
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* --- شروع استایل‌های جدید فوتر --- */
.footer {
    background: var(--bg-white);
    /* border-top: 4px solid var(--accent); */
    /* padding: 70px 0 0; */
    position: relative;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-title {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Trust Logos Area */
.footer-logos {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.trust-badge {
    aspect-ratio: 1;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.02);
}

.trust-badge:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.trust-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.trust-badge-fotter img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* transition: filter 0.3s;
    margin: 0 auto;
    display: block; */
    /* transition: all 0.3s ease; */
}
/* .trust-badge-fotter:hover img {
    background-color: var(--primary);
    color: var(red);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(30,53,90,0.2);
} */

.trust-badge:hover img {
    filter: grayscale(0%);
}

.trust-badge i {
    font-size: 1.8rem;
    color: var(--text-light);
    transition: color 0.3s;
}

.trust-badge:hover i {
    color: var(--primary);
}

/* Contact Info Area */
.footer-contact {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    height: 55px;
    margin-bottom: 25px;
    align-self: flex-start;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.contact-item i {
    color: var(--accent);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.contact-address {
    margin-top: 5px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-address i {
    margin-top: 6px;
    color: var(--accent);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background-color: var(--bg-white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(30,53,90,0.2);
}

/* Footer Links Area */
.footer-links {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--text-muted);
    transition: all 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '\f104'; /* FontAwesome angle-left */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    font-weight: 500;
    transform: translateX(-5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Copyright Area */
.copyright-wrapper {
    background-color: var(--primary-dark);
    padding: 20px 0;
    margin-top: 20px;
}

.copyright {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.copyright strong {
    color: var(--bg-white);
    font-weight: 400;
}
/* --- پایان استایل‌های جدید فوتر --- */

/* Laptop & Large Tablets */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.5rem; }
    .middle-banner { padding-right: 30px; }
    .middle-banner-content h3 { font-size: 1.5rem; }
}

/* Tablets */
@media (max-width: 895px) {    .main-nav { display: none; } /* Hide menu on tablet/mobile, usually replaced by hamburger menu */}
@media (max-width: 768px) {

    
    .hero { height: 500px; }
    .hero-overlay {
        background: linear-gradient(to top, rgba(18, 34, 58, 0.95) 0%, rgba(18, 34, 58, 0.6) 100%);
    }
    .hero-bg {
        object-position: center;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    
    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .middle-banner-overlay {
        width: 100%;
        background: linear-gradient(to top, rgba(30,59,100,0.9) 0%, rgba(30,59,100,0.4) 100%);
    }
    
    .middle-banner-content {
        padding: 0 20px;
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }

    .footer-grid {
        flex-direction: column;
        gap: 50px;
    }
    
    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-logos, .footer-contact, .footer-links {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo-img {
        align-self: center;
    }
    
    .contact-item, .contact-address {
        justify-content: center;
        text-align: center;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .trust-badges-grid {
        width: 100%;
        max-width: 400px;
    }
    
    .copyright {
        flex-direction: column;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    
    .section-title { font-size: 1.5rem; }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .cta-bg-shape {
        display: none; /* Hide background decorative images on small mobile */
    }
    
    .header-inner .btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* Utility */
.text-center { text-align: center; }

/* AI Chatbot Styles */
.chat-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(165, 127, 80, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s, background-color 0.3s;
    border: none;
    outline: none;
}

.chat-fab:hover {
    transform: scale(1.05);
    background-color: var(--accent-hover);
}

.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    border: 1px solid var(--border-color);
}

.chat-widget.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.chat-header {
    background-color: var(--primary);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header-icon {
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-header-title {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.2;
}

.chat-header-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chat-close {
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 5px;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #f9fbfd;
}

.message {
    max-width: 85%;
    padding: 12px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
}

.message-bot {
    background-color: var(--bg-white);
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.message-user {
    background-color: var(--primary-light);
    color: white;
    align-self: flex-end;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 5px rgba(43, 75, 124, 0.2);
}

.chat-input-area {
    padding: 15px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.chat-input:focus {
    border-color: var(--primary);
}

.chat-send-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.chat-send-btn:hover {
    background-color: var(--primary-light);
}

.chat-send-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 5px 10px;
    align-items: center;
    height: 20px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--text-light);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@media (max-width: 768px) {
    .main-content{margin-top: 10px !important;}
}
@media (max-width: 576px) {
    .chat-widget {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        z-index: 1001; /* Above FAB */
    }
    .chat-fab {
        bottom: 20px;
        right: 20px;
    }
    /* .header-inner {

        padding-top: 40px !important;
    } */
    #off_message {
        font-size: 13px;
        top: 434px;
        left: -59px;
    }
    #just-off_message {
        font-size: 14px;
    }
    /* .hero{overflow: visible;} */
    .hero-bg{
        height: 700px;
        object-fit: cover ;
        object-position: center;
    }

}

@media (max-width: 390px) {



    .logo-text strong {
    /* color: red !important; */
        font-size: 10px ;
}
    .header a {
        text-align: center;
        font-size: 9px !important;
        /* padding-top: 40px !important; */
    }



}
