/* header section  */
.header__section {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__sticky {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

/* Hamburger Styles */
.hamburger__menu__inner {
    position: relative;
    width: 24px;
    height: 24px;
}

.line_one,
.line_two,
.line_three {
    transform-origin: center;
}

/* Custom indicator for menu items with children */
.menu-item-has-children>a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 8px;
    opacity: 0.6;
}

/* Mega menu content base - Full-width breakout */
.mega-menu-content {
    display: none;
    position: fixed;
    left: 0;
    width: 100vw;
    background: #ffffff;
    z-index: 9999;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f1f5f9;
    padding: 30px 0;
}

.has-mega-menu:hover .mega-menu-content {
    display: block;
}

/* Position it exactly below the header */
.header__section+* .mega-menu-content,
.header__sticky .mega-menu-content {
    top: 70px;
    /* Adjust based on header height */
}

/* Adjust top for non-sticky state if needed */
.header__section:not(.header__sticky) .mega-menu-content {
    top: 90px;
}

/* Ensure the whole page can't scroll horizontally if mega menu is slightly off */
body {
    overflow-x: hidden;
    padding-top: 80px; /* Offset for fixed header */
}


/* footer start */
.footer__area {
    background-color: #fafafa;
    border-top: 1px solid #f1f5f9;
    padding: 60px 0 20px 0;
    font-family: "Myriad Pro Cond", "Myriad Pro", Arial, sans-serif;
    color: #475569;
}

.footer__container {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 20px;
    }
}

.footer__brand img {
    max-height: 28px;
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 24px 0;
    line-height: 1.6;
    max-width: 250px;
}

.footer__social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.footer__social-links a {
    color: #64748b;
    font-size: 18px;
    transition: color 0.2s;
}

.footer__social-links a:hover {
    color: #0f172a;
}

.footer__status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.footer__status-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
}

.footer__nav h4 {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
    margin-top: 0;
}

.footer__nav h4.mt-6 {
    margin-top: 32px;
}

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

.footer__nav ul li {
    margin-bottom: 12px;
}

.footer__nav ul li a {
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.footer__nav ul li a:hover {
    color: #2563eb;
}

.badge-new {
    background-color: #dcfce7;
    color: #15803d;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    font-size: 13px;
    color: #64748b;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
    }
}

.footer__bottom-links {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    list-style: none;
    padding: 0;
}

@media (min-width: 768px) {
    .footer__bottom-links {
        margin-top: 0;
    }
}

.footer__bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer__bottom-links a:hover {
    color: #0f172a;
}

/* footer end */