/* --- Global Settings --- */
body {
    font-family: var(--font-main);
    background-color: #fff;
    color: #1a1a1a;
}

body.no-scroll {
    overflow: hidden;
}

.top-scroll {
    width: 45px;
    height: 45px;
    line-height: 45px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    border-radius: 12px;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

/* --- Socials & Sticky Items --- */
.sticky-social {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.sticky-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #fff !important;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-social a:hover {
    width: 55px;
}

.sticky-social .fb {
    background: #3b5998;
}

.sticky-social .yt {
    background: #ff0000;
}

.sticky-social .ig {
    background: #e4405f;
}

.sticky-social .li {
    background: #0077b5;
}

@media screen and (max-width: 768px) {
    .sticky-social {
        display: none !important;
    }


}

/* --- Modern Header Styles --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 15px 0;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.header.header-fixed {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 1 0 auto;

}

.nav-link {
    font-family: var(--font-acc);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-wrap: nowrap;
    padding: 13px;
    border-radius: 30px;
    transition: all 0.3s ease;

}

.header.header-fixed .nav-link {
    color: #1a1a1a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    color: var(--dark);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
  
}

.nav-link:hover::after {
    width: 100%;
}

.logo-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-size: 30px;
}

.logo-box:hover {
    transform: scale(1.05);
    color: var(--primary);
}

.logo-box img {
    height: 65px;
    transition: transform 0.3s ease;
}

/* .header:not(.header-fixed) .logo-box img {
    filter: brightness(0) invert(1);
} */

.company-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
    transition: color 0.4s ease;
}



.header.header-fixed .company-name {
    color: #1a1a1a;
}

.login-btn {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: var(--primary-dark);
}

/* --- Desktop Default Settings --- */
.mobile_nav,
.mobile-menu {
    display: none;
    /* Hidden on PC by default */
}

/* --- Mobile Logic (Screens smaller than 991px) --- */
@media (max-width: 991px) {

    .mobile_nav,
    .mobile-menu {
        display: block
            /* Hidden on PC by default */
    }

    /* 1. Hide the desktop linkfs */
    .nav-left,
    .nav-right {
        display: none !important;
    }

    /* 2. Show the mobile toggle area */
    .mobile_nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    /* 3. Ensure the container spreads out logo and hamburger */
    .header-container {
        padding: 0 20px;
    }

    /* 4. Hamburger Icon Styling */
    .nav-toggle {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 30px;
    }

    .nav-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #1a1a1a;
        /* Change to white if header is transparent */
        transition: 0.3s;
    }

    /* 5. Mobile Menu Overlay Styling */
    /* --- Modern Mobile Menu --- */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden off-screen */
        width: 100%;
        height: 100vh;
        background: var(--white);
        z-index: 9999;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        visibility: hidden;
    }

    .mobile-menu.active {
        right: 0;
        visibility: visible;
    }

    .mobile-menu-inner {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 30px 25px;
    }

    /* Header Section */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--dash-border);
    }

    .mobile-menu-header .logo-box img {
        height: 40px;
    }

    .close-menu {
        width: 45px;
        height: 45px;
        background: var(--bg-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        font-size: 20px;
        cursor: pointer;
        transition: 0.3s;
    }

    .close-menu:hover {
        background: var(--primary-soft);
        color: var(--primary);
    }

    /* Content Section */
    .mobile-menu-content {
        flex: 1;
        padding-top: 40px;
        overflow-y: auto;
    }

    .menu-label {
        font-family: var(--font-acc);
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 2px;
        color: var(--text-muted);
        font-weight: 700;
        margin-bottom: 20px;
    }

    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-list li {
        margin-bottom: 10px;
    }

    .mobile-nav-list .nav-link {
        font-family: var(--font-main);
        font-size: 24px;
        font-weight: 600;
        color: var(--dark) !important;
        text-decoration: none;
        display: flex;
        align-items: center;
        padding: 10px 0;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .mobile-nav-list .nav-link:hover {

        transform: translateX(10px);
    }

    /* Footer Section */
    .mobile-menu-footer {
        padding-top: 20px;
        border-top: 1px solid var(--dash-border);
    }

    .login-btn-mobile {
        background: var(--primary);
        color: white !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 25px;
        border-radius: 15px;
        text-decoration: none;
        font-family: var(--font-main);
        font-weight: 600;
        font-size: 18px;
        box-shadow: 0 10px 20px rgba(9, 173, 255, 0.2);
        margin-bottom: 25px;
    }

    .menu-contact-info p {
        font-family: var(--font-acc);
        font-size: 14px;
        color: var(--text-muted);
        margin-bottom: 5px;
    }

    /* Blur effect on body when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* --- Sub-page Header (Solid by default) --- */
.header.header-sub {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.header-sub .nav-link,
.header.header-sub .company-name {
    color: #1a1a1a !important;
}

.header-sub .mobile_nav .nav-toggle span {
    background: #1a1a1a;
}

/* --- Modern Footer (Matching Image) --- */
.modern-footer {
    background: #0a0a1a;
    padding: 80px 0 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
}

.footer-top {
    padding-bottom: 60px;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    margin-bottom: 25px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: #FF9009;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 144, 9, 0.3);
}

.footer-brand-name {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-brand-name span {
    color: #FF9009;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    max-width: 300px;
    margin-bottom: 0;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 15px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none !important;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links-list a:hover {
    color: #FF9009;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: #FF9009;
    font-size: 18px;
    margin-top: 4px;
}

.footer-contact-text {
    font-size: 15px;
    line-height: 1.6;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
}

.footer-bottom-row {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 0;
}

.license-text {
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    .footer-column {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Nav Dropdown Styles --- */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border-radius: 20px;
    padding: 15px 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.nav-dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.nav-dropdown-content a {
    color: #1a1a1a !important;
    padding: 12px 25px;
    text-decoration: none;
    display: block;
    font-family: var(--font-acc);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-dropdown-content a:hover {
    background-color: var(--primary-soft);
    color: var(--primary) !important;
    padding-left: 30px;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
    animation: navFadeInDown 0.3s ease forwards;
}

@keyframes navFadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.header.header-fixed .nav-dropdown-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

/* --- Shared Hero Section --- */
.about-hero {
    padding: 180px 0;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-hero h1 {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #ffffff;
}

.about-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 20px;
    }

    .about-hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }
}

/* --- Service Bento Grid --- */
.service-bento-section {
    padding: 80px 0;
    background: #fff;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 12px;
}

.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none !important;
    display: block;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-card.top-left {
    border-top-left-radius: 100px !important;
}

.bento-card.bottom-left {
    border-bottom-left-radius: 100px !important;
}

.bento-card.top-right {
    border-top-right-radius: 100px !important;
}

.bento-card.bottom-right {
    border-bottom-right-radius: 100px !important;
}

.bento-card:hover {
    transform: scale(1.01) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bento-card.tall {
    grid-row: span 2;
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.bento-card:hover img {
    transform: scale(1.1);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    padding: 30px;
    color: #fff;
    z-index: 2;
}

.bento-card:hover .bento-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.bento-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
    opacity: 0.9;
}

.bento-title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
    line-height: 1.2;
}

.bento-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.more-details {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.play-icon {
    font-size: 18px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-card.tall {
        grid-row: span 1;
        height: 350px;
    }

    .bento-card {
        height: 280px;
        border-radius: 30px !important;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Section Tag & Checklist --- */
.section-tag-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-tag {
    font-size: 14px;
    font-weight: 700;
    color: #FF9204;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: #FF9204;
}

.story-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.story-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
    color: #2D3954;
}

.story-checklist li i {
    color: #FF9204;
    font-size: 18px;
}