body {
    padding-top: 50px;
}
.announcement-content {
    padding: var(--spacing-md);
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.footer-column {
    min-width: var(--col-min-width);
}

.s-hd {
    width: 95%;
    margin: auto;
    text-align: center;
}

.s-grd,
.section-grid,
footer .container {
    max-width: var(--max-width);
    width: 95%;
    display: flex;
    margin: auto;
    flex-direction: column;
    padding: var(--spacing-lg) 0;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}
footer h3 {
    color: white;
}
.footer-links a {
    color: var(--white);
}
.footer-links a:hover {
    color: var(--primary-color);
}

.s-grd > div {
    flex: 1;
    min-width: var(--col-min-width);
}

.s-grd li {
    list-style: initial;
}

.flex-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Footer */
footer {
    padding: var(--spacing-lg) 0;
    background-color: var(--dark);
    color: var(--white);
}

footer .container li {
    list-style: none;
    padding: var(--spacing-sm) 0;
}
footer img.logo {
    max-width: 150px;
}

.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    color: var(--white);
    font-size: var(--medium-font);
    opacity: 0;
    transform: translateY(calc(var(--spacing-md) * -1));
    transition: var(--transition);
    z-index: 9999;
}

.alert.show {
    opacity: 1;
    transform: translateY(var(--spacing-md));
}

.alert.success {
    background: var(--success);
}

.alert.error {
    background: var(--danger);
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--dark);
    box-shadow: var(--box-shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.6s ease;
    will-change: opacity, transform;
    filter: saturate(0.98) contrast(1.03);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-slideshow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2));
    pointer-events: none;
    z-index: 0;
}

.slide-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: clamp(14px, 2.4vw, 26px);
    display: flex;
    gap: var(--spacing-md);
    z-index: 5;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
    pointer-events: auto;
}

.slide-dot {
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 2px 6px rgba(2, 6, 23, 0.18);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.95;
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.slide-dot:hover {
    transform: scale(1.12);
    opacity: 1;
}

.slide-dot.active {
    background: var(--white);
    width: var(--dot-active-size);
    height: var(--dot-active-size);
    box-shadow: var(--box-shadow);
    opacity: 1;
}

.s-con {
    margin: var(--spacing-lg) 0;
    width: 100%;
    padding: 1rem;
}

.s-con * {
    box-sizing: border-box;
}

.s-grd {
    display: grid;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.s-grd {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.s-con:not(.gallery):not(.officies):not(.careers) .s-grd:first-of-type {
    grid-template-columns: 1fr;
}

.s-con.gallery .s-grd,
.s-con.officies .s-grd {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* Careers grid */
.s-con.careers .s-grd {
    grid-template-columns: 1fr;
    max-width: 800px;
}

/* Content Modules */
.md-con.txt-con {
    padding: 1.5rem;
}

.md-con.img-con {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.md-con.img-con img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.md-con.img-con:hover img {
    transform: scale(1.05);
}

 
.s-con.how {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.s-con.how h1,
.s-con.how h2,
.s-con.how h3,
.s-con.how p {
    color: var(--white);
}

.s-con.how .md-con.txt-con {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* FAQ Section */
.s-con.faq .s-grd {
    grid-template-columns: 1fr;
    max-width: 900px;
    overflow: hidden;
}

.s-con.faq .itm {
    border-bottom: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    transition: var(--transition);
}

.s-con.faq .itm:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.s-con.faq .itm:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.s-con.faq .md-con.txt-con:first-child {
    font-weight: 600;
    color: #2d2d2d;
    font-size: 1.25rem;
    padding: 20px 25px;
    background-color: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    margin-top: 0;
}

.s-con.faq .itm .txt-con:first-child:hover {
    background-color: #edf2f7;
}

.s-con.faq .itm .txt-con:first-child i {
    transition: transform 0.3s ease;
}

.s-con.faq .itm.active .txt-con:first-child i {
    transform: rotate(180deg);
}

.s-con.faq .md-con.txt-con:last-child {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.s-con.faq .itm.active .txt-con:nth-child(2) {
    padding: 20px 25px;
    max-height: 500px;
}

/* Offices Section */
.s-con.officies .itm {
    text-align: center;
}

.s-con.officies .md-con.img-con {
    margin-bottom: 1.5rem;
}

/* E-commerce Sections */
.s-con.e-cm1,
.s-con.e-cm2 {
    background: #f8f9fa;
}

.s-con.success-stories {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: var(--white);
}

.s-con.success-stories h1,
.s-con.success-stories h2,
.s-con.success-stories h3,
.s-con.success-stories p {
    color: var(--white);
}

/* Careers Section */
.s-con.careers .itm {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary);
}

/* Gallery Styles */
.s-con.gallery {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.gallery .s-grd {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery .itm {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.gallery .itm:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery .itm .img-con {
    height: 200px;
    overflow: hidden;
}

.gallery .itm:hover .img-con img {
    transform: scale(1.05);
}

.gallery .itm .txt-con {
    padding: 20px;
}

.gallery .itm .txt-con h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.gallery .itm .txt-con p {
    color: #4a5568;
    margin-bottom: 15px;
}

.gallery .itm .txt-con .btn {
    display: inline-block;
    padding: 8px 16px;
    background: #9b59b6;
    color: var(--white);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.gallery .itm .txt-con .btn:hover {
    background: #8e44ad;
}

/* Horizontal Cards */
.s-con.cards {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.s-con.cards .s-grd {
    display: flex;
    overflow-x: auto;
    padding: 30px 40px;
    gap: 25px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-wrap: unset;
    flex-direction: row;
}

.s-con.cards .s-grd::-webkit-scrollbar {
    display: none;
}

.s-con.cards .itm {
    min-width: 200px;
    flex-shrink: 0;
    display: flex;
    flex: none;
    flex-direction: column;
}

.s-con.cards .itm .img-con {
    width: 250px;
    overflow: hidden;
}

.s-con.cards .itm .txt-con {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.s-con.cards .itm .txt-con .rating {
    margin-top: auto;
    color: #f39c12;
    font-size: 0.9rem;
}

.s-con.cards .itm .txt-con .price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #e74c3c;
    margin-top: 10px;
}

/* Support Section */
.support-section .container {
    max-width: 800px;
    margin: 2rem auto;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: #333;
    padding: 1rem;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
    cursor: pointer;
    list-style: none;
    margin: 0;
    text-transform: capitalize;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    margin: 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4CAF50;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #8b8b8b;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.dropdown-menu .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu .nav-link:hover {
    background: #f5f5f5;
    color: #4CAF50;
}

.dropdown-menu .nav-link:last-child {
    border-bottom: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cta-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    text-transform: capitalize;
}
.cta-btn:hover {
    background-color: #276cda;
    color: var(--white);
    text-decoration: none;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0 5px;
    color: var(--white) !important;
    font-size: 25px;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}
.input-group {
    display: flex;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}
#black-shadow {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}
#black-shadow.active {
    display: block;
}
/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 800px) {
    .s-grd,
    footer .container {
        flex-direction: row;
    }

    .s-con:not(.gallery):not(.officies):not(.careers) .s-grd:first-of-type {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .input-group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .s-con {
        padding: 2rem 1rem;
    }
    
    .s-grd {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .md-con.txt-con {
        padding: 1rem;
    }
    
    .s-con.careers .itm {
        padding: 1.5rem;
    }

    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: -100%;
        transform: translateY(-100%);
        left: 0;
        width: 100%;
        /* height: 50vh; */
        background: #333;
        flex-direction: column;
        align-items: center;
        /* padding-top: 2rem; */
        transition: var(--transition);
        gap: 0;
        z-index: 999;
        font-size: 23px;
    }
    .footer-links li {
        font-size: 16px;
    }

    .nav-menu.active {
        top: 60px;
        transform: translateY(0);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid #444;
    }

    .dropdown-menu {
        position: static;
        background: #444;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .dropdown-menu.active {
        max-height: 300px;
    }

    .nav-item:hover .dropdown-menu {
        transform: none;
    }

    /* FAQ Mobile */
    .faq .itm .txt-con:first-child {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .faq .itm .txt-con:nth-child(2) {
        padding: 0 20px;
    }

    .faq .itm.active .txt-con:nth-child(2) {
        padding: 15px 20px;
    }

    /* Gallery Mobile */
    .gallery .s-grd {
        padding: 20px;
        grid-template-columns: 1fr;
    }

    .s-con.cards .s-grd {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .s-con {
        padding: 1.5rem 1rem;
    }
}

/* ===== ACCESSIBILITY ===== */
.s-con a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .md-con.img-con img {
        transition: none;
    }
}

/* Animation */
@keyframes flyInTop {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}