﻿/*
* Template Name: Codesigners
* Template URL: https://codesigners.net/
* Updated: Aug 26 2025 with Codesigners
* Author: Codesigners
* License: https://codesigners.net/
*/

/************************************************************************************************************************/

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=El+Messiri:wght@400..700&family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');


/************************************************************************************************************************/


:root {
    --primary-color: #ffffff;
    --secoundary-color: #000201;
    --accent-color: #580029;
    --bg-color: #f1f1f1;
    --shadow: 0 8px 16px rgba(104, 7, 60, 0.048);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'zain',sans-serif;
    /*font-family: TheSans !important;*/
    font-weight: 500;
}

body {
    background-color: var(--bg-color);
    color: var(--secoundary-color);
}

.container {
    justify-self: center;
    max-width: 1100px;
    margin: 0px 100px;
    position: relative;
    z-index: 1;
}


.header {
    background-color: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo :hover {
        transform: scale(1.05);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .logo img {
        height: 50px;
        width: auto;
    }

.logo-text {
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
    color: var(--secoundary-color);
}

    .logo-text span {
        color: var(--accent-color);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .nav-links a {
        text-decoration: none;
        color: var(--secoundary-color);
        font-weight: 800;
        font-size: 16px;
        transition: color 0.3s ease;
        position: relative;
    }

        .nav-links a i {
            text-decoration: none;
            color: var(--accent-color);
            font-weight: 800;
            font-size: 18px;
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--primary-color);
    min-width: 200px;
    box-shadow: var(--shadow);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    top: 100%;
    right: 0;
}

    .dropdown-content a {
        font-weight: 500;
        font-size: 20px;
        display: block;
        padding: 12px 16px;
        color: var(--secoundary-color);
        text-decoration: none;
        transition: background-color 0.3s;
    }

        .dropdown-content a:hover {
            background-color: var(--accent-color);
            color: var(--secoundary-color);
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-btn {
    text-decoration: none;
    font-size: 14px;
    background: none;
    border: 1px solid var(--accent-color);
    color: var(--secoundary-color);
    padding: 8px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 800;
}

    .language-btn:hover {
        background-color: var(--accent-color);
        color: var(--primary-color);
    }

    .language-btn.active {
        font-weight: 800;
        background-color: var(--accent-color);
        color: var(--primary-color);
    }

.mobile-menu-btn {
    border-radius: 15%;
    padding: 5px 10px;
    box-shadow: var(--shadow);
    display: none;
    font-size: 20px;
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .mobile-menu-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .mobile-menu-btn:hover::before {
        left: 100%;
    }

    .mobile-menu-btn:hover {
        transform: scale(1.1);
    }

    .mobile-menu-btn i {
        transition: transform 0.3s ease;
    }

.mobile-language-btn {
    border-radius: 15%;
    padding: 5px 10px;
    box-shadow: var(--shadow);
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--accent-color);
    cursor: pointer;
}

/* تصميم للشاشات الصغيرة */
@media (max-width: 992px) {
    .nav-links {
        position: absolute;
        top: 85px;
        right: 0;
        width: 100%;
        background: linear-gradient(to bottom, var(--primary-color), var(--bg-color));
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 30px;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

        .nav-links.active {
            opacity: 1;
            max-height: 500px;
        }

    .dropdown-content {
        position: static;
        box-shadow: var(--shadow);
        display: none;
        width: 100%;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .language-switcher {
        display: none;
    }

    .mobile-language-btn {
        display: block;
    }

    .header-container {
        padding: 0 15px;
    }
}

/* hero-section  */
.hero-section {
    background: linear-gradient(to bottom, var(--primary-color), var(--bg-color));
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
        border-radius: 50%;
        top: -150px;
        right: -150px;
        opacity: 0.15;
        animation: float 8s ease-in-out infinite;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, var(--secoundary-color) 0%, transparent 70%);
        border-radius: 50%;
        bottom: -200px;
        left: -200px;
        opacity: 0.1;
        animation: float 10s ease-in-out infinite reverse;
    }

.container-hero {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.content {
    animation: slideInRight 1s ease-out;
}

    .content h1 {
        font-size: 2rem;
        color: var(--gray-dark);
        margin-bottom: 25px;
        line-height: 1.3;
        font-weight: 900;
        animation: fadeIn 1s ease-out 0.3s both;
    }

        .content h1 .gold-text {
            color: var(--accent-color);
            display: block;
            margin-top: 15px;
            font-size: 2rem;
            background: var(--accent-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    .content > p {
        font-size: 1rem;
        color: var(--gray-dark);
        line-height: 1.9;
        margin-bottom: 35px;
        opacity: 0.85;
        animation: fadeIn 1s ease-out 0.6s both;
    }

.motivation-box {
    background: var(--primary-color);
    padding: 25px 30px;
    border-right: 5px solid var(--accent-color);
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    animation: fadeIn 1s ease-out 0.9s both;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .motivation-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
        animation: shimmer 3s infinite;
    }

    .motivation-box:hover {
        transform: translateX(-5px);
        box-shadow: var(--shadow);
    }

    .motivation-box i {
        color: var(--accent-color);
        font-size: 1.5rem;
        margin-left: 15px;
        vertical-align: middle;
    }

    .motivation-box p {
        display: inline;
        margin: 0;
        font-size: 1.15rem;
        color: var(--gray-dark);
        font-weight: 500;
        line-height: 1.7;
    }

.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.2s both;
    margin-top: 40px;
}

.btn {
    padding: 5px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

    .btn i {
        font-size: 1.3rem;
        transition: transform 0.3s ease;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn:hover::before {
        width: 400px;
        height: 400px;
    }

    .btn:hover i {
        transform: translateX(-3px);
    }

.btn-hero {
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    border: none !important;
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

    .btn-hero:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.btn-secondary {
    display: none;
    background: transparent;
    color: var(--gray-dark);
    border: 2px solid var(--accent-color);
}

    .btn-secondary:hover {
        background: var(--accent-color);
        color: var(--primary-color);
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.image-container {
    position: relative;
    animation: slideInLeft 1s ease-out;
}



.image-wrapper img {
    border-radius: 25px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-placeholder {
    text-align: center;
    color: var(--gray-dark);
    padding: 40px;
    z-index: 1;
}

    .image-placeholder i {
        font-size: 5rem;
        color: var(--accent-color);
        margin-bottom: 20px;
        animation: bounce 2s ease-in-out infinite;
    }

    .image-placeholder p {
        font-size: 1.3rem;
        color: var(--secoundary-color);
    }

.decorative-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--accent-color);
    z-index: 3;
}

.corner-top-left {
    border-radius: 0 25px;
    top: 10px;
    right: 10px;
    border-bottom: none;
    border-left: none;
    animation: fadeIn 1.5s ease-out 1s both;
}

.corner-bottom-right {
    border-radius: 0 25px;
    bottom: 10px;
    left: 10px;
    border-top: none;
    border-right: none;
    animation: fadeIn 1.5s ease-out 1.2s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) rotate(5deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes shine {
    0% {
        transform: rotate(0deg) translate(-50%, -50%);
    }

    100% {
        transform: rotate(360deg) translate(-50%, -50%);
    }
}

@media (max-width: 968px) {
    .container-hero {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .content h1 {
        font-size: 2.5rem;
    }

        .content h1 .gold-text {
            font-size: 3rem;
        }

    .content > p {
        font-size: 1rem;
    }

    .image-wrapper {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 15px;
    }

    .content h1 {
        font-size: 2rem;
    }

        .content h1 .gold-text {
            font-size: 2.3rem;
        }

    .btn {
        padding: 5px 20px;
        font-size: 1rem;
    }

    .image-wrapper {
        height: 250px;
    }

    .motivation-box {
        padding: 20px;
    }

        .motivation-box i {
            font-size: 1.3rem;
        }

        .motivation-box p {
            font-size: 1.05rem;
        }
}

/*footer style*/
.footer {
    background: linear-gradient(to bottom, var(--primary-color), var(--bg-color));
    padding: 3rem 1.5rem 0;
}

.footer-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-color);
}

.brand-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--gray-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

    .brand-section h2 span {
        color: var(--accent-color);
    }

.brand-section p {
    color: var(--gray-dark);
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: var(--bg-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: var(--accent-color);
        color: var(--primary-color);
        transform: translateY(-3px);
    }

.footer-section h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

    .footer-section h4::before {
        content: '';
        position: absolute;
        bottom: 0;
        width: 40px;
        height: 3px;
        background: var(--accent-color);
    }

.footer-list {
    list-style: none;
}

    .footer-list li {
        margin-bottom: 0.875rem;
    }

    .footer-list a {
        color: var(--gray-dark);
        text-decoration: none;
        opacity: 0.7;
        font-size: clamp(0.9rem, 1.5vw, 1rem);
        transition: all 0.3s ease;
        display: inline-block;
    }

        .footer-list a:hover {
            opacity: 1;
            color: var(--accent-color);
            transform: translateX(-3px);
        }

.contact-list {
    list-style: none;
}

    .contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .contact-list i {
        color: var(--accent-color);
        font-size: 1.2rem;
        margin-top: 0.2rem;
    }

    .contact-list span {
        color: var(--gray-dark);
        opacity: 0.8;
        font-size: clamp(0.9rem, 1.5vw, 1rem);
        line-height: 1.6;
    }

    .contact-list a {
        color: var(--gray-dark);
        text-decoration: none;
        opacity: 0.8;
        transition: all 0.3s ease;
    }

        .contact-list a:hover {
            color: var(--accent-color);
            opacity: 1;
        }

.subscribe-box {
    text-align: center;
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

    .subscribe-box p {
        color: var(--gray-dark);
        opacity: 0.7;
        margin-bottom: 1rem;
        font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    }

.subscribe-form {
    display: flex;
    gap: 0.5rem;
}

.subscribe-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--gray-dark);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

    .subscribe-input:focus {
        outline: none;
        border-color: var(--accent-color);
    }

.subscribe-btn {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

    .subscribe-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--gray-dark);
    opacity: 0.6;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

    .copyright a {
        text-decoration: none;
        color: var(--secoundary-color);
        font-weight: 900;
    }

        .copyright a:hover {
            transform: scale(1.1);
            text-decoration: underline;
            transition: all 0.3s ease;
            text-underline-offset: 0.2rem;
            text-decoration-thickness: 0.1rem;
            text-decoration-color: var(--accent-color);
            text-decoration-style: dotted;
            text-decoration-skip-ink: none;
            text-decoration-line: underline;
            text-decoration-skip: none;
            color: var(--accent-color);
        }

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

    .footer-links a {
        color: var(--gray-dark);
        text-decoration: none;
        opacity: 0.6;
        font-size: clamp(0.85rem, 1.5vw, 0.95rem);
        transition: all 0.3s ease;
    }

    .footer-links button {
        border: none;
        color: var(--gray-dark);
        text-decoration: none;
        opacity: 0.6;
        font-size: clamp(0.85rem, 1.5vw, 0.95rem);
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        opacity: 1;
        color: var(--accent-color);
    }

    .footer-links button:hover {
        opacity: 1;
        color: var(--accent-color);
    }

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 1.25rem 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 0;
    }

    .footer-links {
        justify-content: center;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-input,
    .subscribe-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 1rem 0;
    }

    .footer-main {
        gap: 1.5rem;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    .footer-links {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
}


.dx9_interactive-ctrl-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.zx7_primary-action-trigger {
    background: var(--primary-color);
    color: var(--secoundary-color);
    border: 2px solid var(--accent-color);
    padding: 16px 45px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

    .zx7_primary-action-trigger:hover {
        background: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.qw3_viewport-overlay-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .qw3_viewport-overlay-container.kp8_state-visible {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
    }

.lm4_content-display-panel {
    background: var(--primary-color);
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.qw3_viewport-overlay-container.kp8_state-visible .lm4_content-display-panel {
    transform: scale(1);
    opacity: 1;
}

.rt5_panel-header-section {
    background: var(--accent-color);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .rt5_panel-header-section h2 {
        color: var(--primary-color);
        font-size: 24px;
        font-weight: 700;
    }

.bn2_dismiss-action-ctrl {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color);
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

    .bn2_dismiss-action-ctrl:hover {
        transform: rotate(90deg);
    }

.yh6_scrollable-content-area {
    padding: 35px;
    overflow-y: auto;
    max-height: calc(85vh - 80px);
}

    .yh6_scrollable-content-area::-webkit-scrollbar {
        width: 6px;
    }

    .yh6_scrollable-content-area::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 10px;
    }

.vf9_info-block-container {
    margin-bottom: 30px;
}

    .vf9_info-block-container h3 {
        color: var(--secoundary-color);
        font-size: 20px;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .vf9_info-block-container p {
        color: #555;
        line-height: 1.8;
        font-size: 15px;
        margin-bottom: 10px;
    }

    .vf9_info-block-container ul {
        padding-right: 25px;
        margin-top: 10px;
    }

        .vf9_info-block-container ul li {
            color: #555;
            line-height: 1.7;
            font-size: 15px;
            margin-bottom: 8px;
        }

.op1_emphasis-content-box {
    background: rgba(199, 171, 102, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-right: 3px solid var(--accent-color);
    margin: 15px 0;
}

.gh7_communication-details-panel {
    background: var(--secoundary-color);
    color: var(--primary-color);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
}

    .gh7_communication-details-panel h4 {
        color: var(--accent-color);
        font-size: 18px;
        margin-bottom: 10px;
    }

    .gh7_communication-details-panel a {
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 600;
    }

@media (max-width: 768px) {
    .dx9_interactive-ctrl-wrapper {
        flex-direction: column;
    }

    .zx7_primary-action-trigger {
        width: 100%;
    }

    .lm4_content-display-panel {
        width: 95%;
    }

    .yh6_scrollable-content-area {
        padding: 25px;
    }
}
/*Status - Modern Minimal Design*/
.stats-section {
    background: linear-gradient(to bottom, var(--primary-color), var(--bg-color));
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.4;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent);
    animation: float 25s infinite ease-in-out;
    filter: blur(40px);
}

.circle-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    right: 15%;
}

.circle-2 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    left: 10%;
    animation-delay: -10s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 45%;
    animation-delay: -5s;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.header-section {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

    .header-section h2 {
        font-size: clamp(1.4rem, 3vw, 2rem);
        color: var(--primary-color);
        font-weight: 700;
        margin-bottom: 0.6rem;
        letter-spacing: 0.5px;
    }

    .header-section .gold {
        background: var(--accent-color);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .header-section p {
        font-size: clamp(0.8rem, 1.5vw, 0.95rem);
        color: rgba(255, 255, 255, 0.6);
        max-width: 550px;
        margin: 0 auto;
        line-height: 1.6;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 40px;
    padding: 1.8rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

    .stat-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }

    .stat-box:hover::before {
        transform: translateX(100%);
    }

    .stat-box:hover {
        transform: translateY(-8px);
        border-color: rgba(212, 175, 55, 0.4);
        background: rgba(255, 255, 255, 0.05);
        box-shadow: var(--shadow);
    }

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.stat-box:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.15));
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.number-container {
    margin-bottom: 0.6rem;
}

.stat-number {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--gray-dark);
    display: inline-block;
    line-height: 1;
}

.plus-sign {
    display: inline-block;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--gray-dark);
    margin-right: 0.2rem;
    animation: plusPulse 2s infinite;
}

.plus-badge {
    display: inline-block;
    margin-right: 0.2rem;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--accent-color);
}

.stat-label {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 0.3px;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes plusPulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .stats-section {
        padding: 2.5rem 1.2rem;
    }

    .header-section {
        margin-bottom: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9rem;
    }

    .stat-box {
        padding: 1.5rem 0.8rem;
        border-radius: 10px;
    }

    .icon-wrapper {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
        border-radius: 8px;
    }

        .icon-wrapper i {
            font-size: 1.3rem;
        }

    .stat-number {
        font-size: clamp(1.4rem, 4vw, 1.9rem);
    }

    .plus-badge, .plus-sign {
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    }

    .stat-label {
        font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .stats-section {
        padding: 2rem 1rem;
    }

    .header-section {
        margin-bottom: 1.5rem;
    }

    .stats-grid {
        gap: 0.8rem;
    }

    .stat-box {
        padding: 1.3rem 0.7rem;
        border-radius: 8px;
    }

    .icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 0.7rem;
    }

        .icon-wrapper i {
            font-size: 1.2rem;
        }

    .stat-number {
        font-size: clamp(1.3rem, 4vw, 1.7rem);
    }

    .plus-badge, .plus-sign {
        font-size: clamp(1.1rem, 3.5vw, 1.4rem);
    }

    .stat-label {
        font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    }
}
/*Designs Styles*/
.designs-section {
    background: linear-gradient(to bottom, var(--primary-color), var(--bg-color));
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}




.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--gray-dark);
    font-weight: 800;
    margin-bottom: 2rem;
}

    .section-title span {
        color: var(--accent-color);
    }

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-dark);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem;
    flex-wrap: wrap;
}

.design-image {
    width: 100%;
    aspect-ratio: 9/16; /* ارتفاع الصورة ضعف العرض */
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.slide-content {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

.slide-content:hover .design-image {
    transform: scale(1.05);
}

.tab-btn {
    padding: 5px 20px;
    background: var(--primary-color);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 700;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

    .tab-btn i {
        font-size: 1rem;
        color: var(--accent-color);
        transition: transform 0.3s ease;
    }

    .tab-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

    .tab-btn.active {
        background: var(--accent-color);
        color: var(--primary-color);
        box-shadow: var(--shadow);
    }

        .tab-btn.active i {
            color: var(--primary-color);
        }

.gallery-content {
    display: none;
}

    .gallery-content.active {
        display: block;
    }

/* تصميم Swiper المخصص */
.swiper-container {
    padding: 20px 0 60px;
    position: relative;
}

.swiper {
    width: 100%;
    height: 490px;
    border-radius: 20px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    position: unset !important;
    overflow: hidden;
    list-style: none;
    padding: 40px !important;
    z-index: 1;
    display: block;
}

.swiper-reviews {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    position: unset !important;
    overflow: hidden;
    list-style: none;
    padding: 15px !important;
    z-index: 1;
    display: block;
}

.swiper-slide {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
}

.swiper-slide-bundle {
    position: relative !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    box-shadow: none !important;
}

.swiper-slide-active {
    transform: scale(1.05);
    box-shadow: var(--shadow);
    z-index: 1 !important;
}

.swiper-slide-prev, .swiper-slide-next {
    opacity: 0.8;
}

.slide-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .slide-placeholder i {
        font-size: 4rem;
        color: var(--accent-color);
        margin-bottom: 1.5rem;
        opacity: 0.5;
    }

    .slide-placeholder p {
        font-size: 1.4rem;
        color: var(--gray-dark);
        opacity: 0.6;
        text-align: center;
        padding: 0 1rem;
    }

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.swiper-slide-active .slide-overlay {
    transform: translateY(0);
}

.slide-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
}

.slide-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.swiper-button-next, .swiper-button-prev {
    width: 55px;
    height: 55px;
    background: none !important;
    transition: all 0.3s ease;
}

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 1.3rem !important;
        color: var(--secoundary-color) !important;
        font-weight: bold;
    }

    .swiper-button-next:hover, .swiper-button-prev:hover {
        color: var(--accent-color);
        transform: scale(1.15);
    }

        .swiper-button-next:hover:after, .swiper-button-prev:hover:after {
            color: var(--primary-color);
        }

.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: var(--secoundary-color) !important;
    opacity: 0.5 !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    width: 35px !important;
    border-radius: 6px !important;
    background: linear-gradient(90deg, var(--accent-color), var(--secoundary-color)) !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .designs-section {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .category-tabs {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .tab-btn {
        padding: 0.875rem 2rem;
    }

    .swiper {
        height: 450px;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 48px;
        height: 48px;
    }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.4rem;
        }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .designs-section {
        padding: 3rem 1rem;
    }

    .category-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .swiper {
        height: 500px;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 42px;
        height: 42px;
    }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.2rem;
        }

    .slide-title {
        font-size: 1.3rem;
    }

    .slide-description {
        font-size: 0.95rem;
    }

    .slide-overlay {
        padding: 1.5rem;
    }
}

/* why us Style - Compact Version */
.why-us-section {
    padding: 3.5rem 2rem;
    background: linear-gradient(to bottom, var(--primary-color), var(--bg-color));
    position: relative;
    overflow: hidden;
}


.decorative-shape {
    position: absolute;
    opacity: 0.03;
    pointer-events: none;
}

.shape-1 {
    top: 10%;
    right: 5%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--accent-color), transparent);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

.shape-2 {
    bottom: 15%;
    left: 8%;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, var(--secoundary-color), transparent);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out reverse;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: none;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    color: var(--secoundary-color);
    font-size: clamp(0.75rem, 1.3vw, 0.85rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--gray-dark);
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

    .section-title span {
        background: var(--accent-color);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.section-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: var(--gray-dark);
    opacity: 0.7;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.3rem;
}

.faq-item {
    background: var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: fit-content;
}

    .faq-item:hover {
        box-shadow: var(--shadow);
        border-color: var(--accent-color);
    }

    .faq-item.active {
        border: 1px solid var(--accent-color);
        box-shadow: var(--shadow);
    }

.faq-question {
    padding: 1.3rem 1.5rem;
    cursor: pointer;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
}



.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-question:hover {
    background: linear-gradient(to left, transparent, rgba(212, 175, 55, 0.05));
}

.question-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.q-icon {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
}




.faq-item.active .question-icon {
    color: var(--accent-color);
}

.question-icon i {
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}


.question-text {
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
}

.toggle-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .toggle-icon {
    background: var(--accent-color);
    transform: rotate(180deg);
}

.toggle-icon i {
    font-size: 1.1rem;
    color: var(--gray-dark);
    transition: color 0.3s ease;
}

.faq-item.active .toggle-icon i {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.answer-content {
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-color), var(--primary-color));
    border-radius: 12px;
    border-right: 3px solid var(--accent-color);
}

    .answer-content p {
        font-size: clamp(0.85rem, 1.3vw, 0.95rem);
        color: var(--gray-dark);
        line-height: 1.7;
        opacity: 0.85;
    }

.answer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.9rem;
}

.feature-tag {
    padding: 0.4rem 0.9rem;
    background: var(--primary-color);
    border: 1px solid var(--accent-color);
    border-radius: 18px;
    font-size: 0.8rem;
    color: var(--secoundary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

    .feature-tag i {
        font-size: 0.75rem;
        color: var(--accent-color);
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-25px) scale(1.08);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-us-section {
        padding: 3rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .faq-question {
        padding: 1.2rem 1.3rem;
    }

    .question-icon {
        width: 36px;
        height: 36px;
    }

        .question-icon i {
            font-size: 1.1rem;
        }

    .toggle-icon {
        width: 30px;
        height: 30px;
    }

        .toggle-icon i {
            font-size: 1rem;
        }

    .faq-answer {
        padding: 0 1.3rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.3rem 1.3rem 1.3rem;
    }

    .answer-content {
        padding: 1.1rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.8rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .why-us-section {
        padding: 2.5rem 1rem;
    }

    .faq-container {
        gap: 1rem;
    }

    .faq-question {
        padding: 1.1rem 1.2rem;
    }

    .question-content {
        align-items: flex-start;
    }

    .q-icon {
        width: 100%;
    }

    .toggle-icon {
        align-self: flex-end;
    }

    .faq-answer {
        padding: 0 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }

    .answer-content {
        padding: 1rem;
    }

    .answer-features {
        gap: 0.5rem;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
    }
}
/*try envtion style - Compact Version*/
.invitation-section {
    background: linear-gradient(to bottom, var(--primary-color), var(--bg-color));
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}


.background-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.03;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-color), transparent);
}

.circle-one {
    width: 350px;
    height: 350px;
    top: -100px;
    right: -100px;
    animation: floatAnimation 15s infinite ease-in-out;
}

.circle-two {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
    animation: floatAnimation 12s infinite ease-in-out reverse;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.invitation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.visual-side {
    position: relative;
    height: 450px;
    min-height: 320px;
    overflow: hidden;
}

    .visual-side img {
        width: 400px;
        height: 100%;
        object-fit: cover;
    }

.visual-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    opacity: 0.9;
    animation: bounceAnimation 2s infinite;
}

.placeholder-text {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    padding: 0 2rem;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 1.8rem;
}

.overlay-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.overlay-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-side {
    padding: 2.5rem 2.5rem;
}

.form-header {
    margin-bottom: 1.2rem;
}

.form-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    color: var(--secoundary-color);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.form-title {
    font-size: 1.3rem;
    color: var(--gray-dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

    .form-title span {
        color: var(--accent-color);
    }

.form-subtitle {
    display: none;
    font-size: 0.95rem;
    color: var(--gray-dark);
    opacity: 0.75;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.invitation-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-label {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

    .input-label i {
        color: var(--accent-color);
        font-size: 1rem;
    }

    .input-label .required {
        color: #e74c3c;
        font-size: 1.1rem;
    }

.form-input {
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--bg-color);
    border-radius: 10px !important;
    font-size: 0.9rem;
    color: var(--gray-dark);
    transition: all 0.3s ease;
    background: var(--primary-color);
}

    .form-input:focus {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: var(--shadow);
    }

.phone-input-group {
    display: flex;
    gap: 0.7rem;
}

.country-select {
    width: 130px;
    padding: 0.85rem 0.7rem;
    border: 2px solid var(--bg-color);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--gray-dark);
    background: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .country-select:focus {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: var(--shadow);
    }

.phone-number-input {
    flex: 1;
}

.verification-group {
    display: none;
    animation: slideDownAnimation 0.5s ease;
}

    .verification-group.active {
        display: flex;
    }

.submit-button {
    padding: 1rem 1.8rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    box-shadow: var(--shadow);
}

    .submit-button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    .submit-button:active {
        transform: translateY(0);
    }

    .submit-button i {
        font-size: 1.2rem;
    }

    .submit-button:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

.success-message {
    display: none;
    padding: 1.2rem;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 2px solid #28a745;
    border-radius: 10px;
    color: #155724;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    animation: slideDownAnimation 0.5s ease;
}

    .success-message.active {
        display: block;
    }

    .success-message i {
        font-size: 1.3rem;
        margin-left: 0.5rem;
        color: #28a745;
    }

.features-list {
    padding-top: 1.5rem;
    display: none;
    border-top: 2px solid var(--bg-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .feature-icon i {
        color: var(--accent-color);
        font-size: 1rem;
    }

.feature-text {
    font-size: 0.85rem;
    color: var(--gray-dark);
    opacity: 0.8;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes bounceAnimation {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.08);
    }
}

@keyframes slideDownAnimation {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */
@media (max-width: 480px) {
    .invitation-container {
        grid-template-columns: 1fr;
    }

    .visual-side {
        min-height: 100%;
        height: 100%;
    }

        .visual-side img {
            width: 100%;
        }

    .form-side {
        padding: 2.2rem 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .invitation-section {
        padding: 2.5rem 1.2rem;
    }

    .visual-side {
        min-height: 100%;
        height: 100%;
    }

    .placeholder-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .placeholder-text {
        font-size: 1rem;
    }

    .overlay-title {
        font-size: 1.2rem;
    }

    .overlay-description {
        font-size: 0.85rem;
    }

    .form-side {
        padding: 2rem 1.5rem;
    }

    .form-badge {
        font-size: 0.7rem;
        padding: 0.45rem 1rem;
    }

    .form-title {
        font-size: 1.2rem;
    }

    .invitation-form {
        gap: 1rem;
    }

    .form-input {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .country-select {
        padding: 0.8rem 0.65rem;
        font-size: 0.85rem;
    }

    .submit-button {
        padding: 0.95rem 1.6rem;
        font-size: 0.95rem;
    }

    .phone-input-group {
        flex-direction: column;
    }

    .country-select {
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .invitation-section {
        padding: 2rem 1rem;
    }

    .invitation-container {
        border-radius: 15px;
    }

    .visual-side {
        min-height: 100%;
        height: 100%;
    }

    .placeholder-icon {
        font-size: 3rem;
    }

    .placeholder-text {
        font-size: 0.95rem;
    }

    .visual-overlay {
        padding: 1.3rem;
    }

    .overlay-title {
        font-size: 1.1rem;
    }

    .overlay-description {
        font-size: 0.8rem;
    }

    .form-side {
        padding: 1.8rem 1.3rem;
    }

    .form-header {
        margin-bottom: 1rem;
    }

    .form-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 0.8rem;
    }

    .form-title {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }

    .invitation-form {
        gap: 0.9rem;
    }

    .form-input {
        padding: 0.75rem 0.95rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    .country-select {
        padding: 0.75rem 0.6rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    .submit-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .success-message {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
    }

        .feature-icon i {
            font-size: 0.9rem;
        }

    .feature-text {
        font-size: 0.8rem;
    }
}



/*About-us Page Style*/
.company-profile {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, var(--primary-color), var(--bg-color), var(--primary-color));
    position: relative;
    overflow: hidden;
}

    .company-profile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-color), var(--secoundary-color), var(--accent-color));
    }

.background-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-element {
    position: absolute;
    opacity: 0.04;
}

.bg-element-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-color), transparent);
    border-radius: 50%;
    animation: floatAnimation 12s infinite ease-in-out;
}

.bg-element-2 {
    bottom: 20%;
    left: 8%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--secoundary-color), transparent);
    border-radius: 50%;
    animation: floatAnimation 15s infinite ease-in-out reverse;
}

.bg-element-3 {
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-color), transparent);
    border-radius: 50%;
    animation: floatAnimation 10s infinite ease-in-out;
    animation-delay: -5s;
}

.bg-element-4 {
    top: 70%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--secoundary-color), transparent);
    border-radius: 50%;
    animation: floatAnimation 14s infinite ease-in-out;
    animation-delay: -2s;
}

.page-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.page-badge {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    color: var(--secoundary-color);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

    .page-badge::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.7s ease;
    }

    .page-badge:hover::before {
        left: 100%;
    }

.page-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: var(--gray-dark);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

    .page-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-color), var(--secoundary-color));
        border-radius: 2px;
    }

    .page-title span {
        background: var(--accent-color);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.page-subtitle {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: var(--gray-dark);
    opacity: 0.75;
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.9;
}

.company-intro {
    max-width: 1100px;
    margin: 0 auto 5rem;
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

    .company-intro:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .company-intro::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--accent-color), var(--secoundary-color));
    }

.intro-text {
    color: var(--gray-dark);
    line-height: 2;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

    .intro-text strong {
        color: var(--accent-color);
        font-weight: 700;
        position: relative;
    }

        .intro-text strong::after {
            content: '';
            position: absolute;
            bottom: -2px;
            right: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-color);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

    .intro-text:hover strong::after {
        transform: scaleX(1);
    }

.mission-statement {
    background: var(--secoundary-color);
    padding: 2rem;
    border-radius: 15px;
    border-right: 4px solid var(--accent-color);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

    .mission-statement p {
        font-weight: 800;
        color: var(--accent-color);
        line-height: 1.9;
        font-style: italic;
        opacity: 0.9;
        position: relative;
        z-index: 1;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.feature-card {
    justify-items: center;
    text-align: center;
    background: var(--primary-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow);
        border-color: var(--accent-color);
    }

        .feature-card:hover::before {
            opacity: 1;
        }

.feature-icon {
    width: 55px;
    height: 55px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .feature-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
}

    .feature-card:hover .feature-icon::before {
        opacity: 1;
    }

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    z-index: 1;
}

.feature-title {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: var(--gray-dark);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

    .feature-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        right: 0;
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: width 0.4s ease;
    }

.feature-card:hover .feature-title::after {
    width: 100%;
}

.feature-description {
    color: var(--gray-dark);
    line-height: 1.9;
    opacity: 0.85;
}

.principles-section {
    margin-bottom: 5rem;
}

.principles-header {
    text-align: center;
    margin-bottom: 3rem;
}

.principles-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--gray-dark);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

    .principles-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 0;
        width: 50%;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-color), var(--secoundary-color));
        border-radius: 2px;
    }

    .principles-title span {
        color: var(--accent-color);
    }

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.principle-card {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .principle-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .principle-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent-color);
        box-shadow: var(--shadow);
    }

        .principle-card:hover::before {
            opacity: 1;
        }

.principle-icon {
    width: 60px;
    height: 60px;
    background: var(--secoundary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.principle-card:hover .principle-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.principle-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: color 0.3s ease;
    z-index: 1;
}

.principle-card:hover .principle-icon i {
    color: var(--primary-color);
}

.principle-name {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    color: var(--gray-dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.principle-description {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: var(--gray-dark);
    line-height: 1.7;
    opacity: 0.8;
}

.company-history {
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.history-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.history-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--gray-dark);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

    .history-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 0;
        width: 50%;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-color), var(--secoundary-color));
        border-radius: 2px;
    }

    .history-title span {
        color: var(--accent-color);
    }

.timeline {
    position: relative;
    padding: 2rem 0;
}

    .timeline::before {
        content: '';
        position: absolute;
        right: 50%;
        transform: translateX(50%);
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--accent-color), var(--secoundary-color));
        border-radius: 2px;
    }

.timeline-event {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .timeline-event.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .timeline-event:nth-child(odd) {
        flex-direction: row-reverse;
    }

.timeline-content {
    flex: 1;
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .timeline-content::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .timeline-content:hover {
        border-color: var(--accent-color);
        transform: scale(1.03);
        box-shadow: var(--shadow);
    }

        .timeline-content:hover::before {
            opacity: 1;
        }

.timeline-marker {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 2;
    flex-shrink: 0;
    transition: var(--transition);
}

.timeline-event:hover .timeline-marker {
    transform: scale(1.1);
    box-shadow: var(--shadow);
}

.timeline-marker i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.timeline-year {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 800;
    margin-bottom: 0.8rem;
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
}

.timeline-event-title {
    font-size: 1.4rem;
    color: var(--gray-dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.timeline-event-description {
    font-size: 1.05rem;
    color: var(--gray-dark);
    line-height: 1.8;
    opacity: 0.85;
}

.company-stats {
    margin: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 4rem 2rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

    .company-stats::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--accent-color), var(--secoundary-color));
    }

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    position: relative;
}

.stat-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label-about-about {
    font-size: 1.1rem;
    color: var(--gray-dark);
    font-weight: 600;
}

.call-to-action {
    text-align: center;
    background: var(--accent-color);
    padding: 4rem 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

    .call-to-action::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
        animation: rotateAnimation 20s linear infinite;
    }

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--gray-dark);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
        transition: left 0.7s ease;
    }

    .cta-button:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
        background: var(--accent-color);
    }

        .cta-button:hover::before {
            left: 100%;
        }

    .cta-button i {
        font-size: 1.3rem;
        color: var(--accent-color);
    }

@keyframes floatAnimation {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes rotateAnimation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline::before {
        right: 25px;
        transform: none;
    }

    .timeline-event,
    .timeline-event:nth-child(odd) {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .company-profile {
        padding: 4rem 1.5rem;
    }

    .page-header {
        margin-bottom: 3.5rem;
    }

    .company-intro {
        padding: 2rem 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .call-to-action {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .company-profile {
        padding: 3rem 1rem;
    }

    .company-intro {
        padding: 1.5rem 1rem;
    }

    .mission-statement {
        padding: 1.5rem 1rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

        .feature-icon i {
            font-size: 1.8rem;
        }

    .timeline-event {
        gap: 1rem;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
    }

        .timeline-marker i {
            font-size: 1.2rem;
        }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .call-to-action {
        padding: 2.5rem 1.5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
}

/*contact us style*/

.reach-out-section {
    background: linear-gradient(to bottom, var(--primary-color), var(--bg-color));
    padding: 3rem 1rem;
}

.main-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.heading-block {
    text-align: center;
    margin-bottom: 2.5rem;
}

.primary-heading {
    font-size: 1.6rem;
    color: var(--gray-dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

    .primary-heading .accent-text {
        color: var(--accent-color);
    }

.sub-heading {
    font-size: 0.85rem;
    color: var(--gray-dark);
    opacity: 0.7;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-side {
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 148, 30, 0.3));
}

.form-side {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}

.message-box {
    background: var(--primary-color);
    padding: 1.5rem;
    border-radius: 12px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
}

.field-wrapper {
    margin-bottom: 0.7rem;
}

    .field-wrapper.span-all {
        grid-column: 1 / -1;
    }

.text-field,
.text-box {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #DDD;
    border-radius: 8px;
    font-size: 0.8rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

    .text-field:focus,
    .text-box:focus {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: var(--shadow);
        background: var(--primary-color);
    }

.text-box {
    resize: vertical;
    min-height: 85px;
}

.action-button {
    width: 100%;
    padding: 0.7rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

    .action-button:hover {
        background: var(--secoundary-color);
        transform: translateY(-1px);
    }

    .action-button:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

.notification-box {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 0.7rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 0.7rem;
    font-size: 0.8rem;
    border: 1px solid #28a745;
}

    .notification-box.active {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }

.connection-links {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.link-circle {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

    .link-circle:hover {
        background: var(--accent-color);
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .image-side {
        min-height: 300px;
        order: 1;
    }

    .form-side {
        order: 2;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .input-row {
        grid-template-columns: 1fr;
    }

    .primary-heading {
        font-size: 1.4rem;
    }

    .connection-links {
        gap: 0.6rem;
    }

    .link-circle {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .image-side {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .reach-out-section {
        padding: 2rem 0.8rem;
    }

    .message-box {
        padding: 1.2rem;
    }

    .form-side {
        padding: 1.2rem;
    }

    .image-side {
        min-height: 200px;
    }
}


/* App Section style */
.download-container {
    background: linear-gradient(to bottom, var(--primary-color), var(--bg-color));
    border-radius: 20px;
    padding: 40px;
    width: 100%;
}

.download-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.download-info {
    justify-items: center;
    text-align: center;
}

.download-header {
    justify-items: center;
    margin-bottom: 30px;
}

.download-heading {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--secoundary-color);
}

    .download-heading .highlight {
        color: var(--accent-color);
    }

.download-text {
    font-size: 1rem;
    color: var(--secoundary-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Download Buttons */
.store-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 180px;
}

.ios-btn {
    background: var(--secoundary-color);
    color: var(--primary-color);
}

.android-btn {
    background: var(--accent-color);
    color: var(--primary-color);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.store-icon {
    font-size: 1.5rem;
}

.store-text {
    gap: 10px;
    display: flex;
    align-items: center;
}

.store-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.store-name {
    font-size: 1rem;
    font-weight: 700;
}

/* Swiper Styles */
.app-showcase {
    text-align: center;
}

.image-slider {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.slider-slide {
    position: relative;
}

.slide-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.slider-dots {
    position: relative;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    opacity: 0.5;
}

.slider-dot-active {
    background: var(--accent-color);
    opacity: 1;
}

/* Responsive */
@media (max-width: 968px) {
    .download-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .download-info {
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .download-container {
        padding: 30px 20px;
    }

    .download-heading {
        font-size: 1.5rem;
    }

    .download-text {
        font-size: 1.1rem;
    }

    .image-slider {
        max-width: 250px;
    }

    .slide-image {
        height: 400px;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .download-heading {
        font-size: 1.8rem;
    }

    .download-text {
        font-size: 1rem;
    }

    .image-slider {
        max-width: 250px;
    }

    .slide-image {
        height: 350px;
    }
}


/* reviews section style*/
.reviews-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, var(--primary-color), var(--bg-color));
    position: relative;
    overflow: hidden;
}


.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.header-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gray-dark);
    font-weight: 800;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.header-logo {
    background: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--accent-color);
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: var(--primary-color);
    padding: 0.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--accent-color);
    margin-bottom: 3rem;
    max-width: 703px;
    margin-left: auto;
    margin-right: auto;
}

.google-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -2px;
}

.rating-info {
    display: flex;
    gap: 0.4rem;
}

.stars {
    align-items: center;
    display: flex;
    gap: 0.25rem;
}

.star {
    color: var(--secoundary-color);
    font-size: 0.6rem;
}

.rating-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gray-dark);
}

.rating-count {
    font-size: 1rem;
    color: var(--gray-dark);
    opacity: 0.7;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: .5rem 1rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

    .google-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

    .google-btn i {
        font-size: 14px;
    }

.swiper-container {
    width: 100%;
    padding: 0rem 0 1rem;
}

.swiper-slide {
    height: auto;
}

.review-card {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
}

    .review-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow);
    }

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.reviewer-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.reviewer-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-dark);
}

.reviewer-subtitle {
    font-size: 0.9rem;
    color: var(--gray-dark);
    opacity: 0.6;
}

.google-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4285F4;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
}

.review-star {
    color: #fbbc04;
    font-size: 14px;
}

.review-text {
    font-size: 13px;
    color: var(--gray-dark);
    line-height: 1.85;
    opacity: 0.85;
}

.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--gray-dark);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--accent-color), var(--secoundary-color));
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: var(--accent-color);
        transform: scale(1.1);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.2rem;
        font-weight: 900;
        color: var(--accent-color);
    }

    .swiper-button-next:hover::after,
    .swiper-button-prev:hover::after {
        color: var(--primary-color);
    }

.view-all-btn {
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

    .view-all-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

    .view-all-btn i {
        font-size: 1.4rem;
    }

@media (max-width: 768px) {
    .reviews-section {
        padding: 4rem 1.5rem;
    }

    .google-rating {
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
    }

    .header-title {
        flex-direction: column;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .review-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 3rem 1rem;
    }

    .google-btn,
    .view-all-btn {
        width: 100%;
        justify-content: center;
    }
}

/*invtion page style*/
.page-container-inv {
    min-height: 15h;
    padding: 2rem 2rem;
}



.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.left-side {
    position: relative;
}

.image-showcase {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    animation: slideFromLeft 0.8s ease;
}

    .image-showcase::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
        animation: rotate 20s linear infinite;
    }

.image-content {
    text-align: center;
    z-index: 1;
}

    .image-content i {
        font-size: 5rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        opacity: 0.9;
        animation: bounce 2s infinite;
    }

    .image-content p {
        font-size: 1.5rem;
        color: var(--primary-color);
        font-weight: 700;
    }

.right-side {
    animation: slideFromRight 0.8s ease;
}

.content-section {
    background: var(--primary-color);
    padding: 1rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

    .content-section:hover {
        box-shadow: var(--shadow);
        border-color: var(--accent-color);
    }

.section-header1 {
    justify-content: space-between;
    font-weight: 600 !important;
    display: flex;
    text-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--accent-color);
}

.section-title1 {
    font-size: 18px;
    font-weight: 600;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

    .section-icon i {
        font-size: 1.8rem;
        color: var(--primary-color);
    }

.section-title {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-dark);
}

.section-arrow {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.content-section.expanded .section-arrow {
    transform: rotate(180deg);
}

.section-content {
    display: none;
    animation: slideDown 0.3s ease;
}

.content-section.expanded .section-content {
    display: block;
}

.event-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.info-content h4 {
    font-size: 0.9rem;
    color: var(--secoundary-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.info-content p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-main {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-accept {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

    .btn-accept:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

.btn-decline {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

    .btn-decline:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 0.75rem;
}

    .form-label i {
        color: var(--accent-color);
        font-size: 1.1rem;
    }

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--bg-color);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--gray-dark);
    transition: all 0.3s ease;
    font-family: inherit;
}

    .form-control:focus {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: var(--shadow);
    }

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

.link-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-btn {
    margin: 10px;
    padding: 1rem;
    border: 1px solid var(--accent-color);
    background: var(--primary-color);
    border-radius: 10px;
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

    .link-btn:hover {
        background: var(--accent-color);
        color: var(--primary-color);
        transform: translateY(-3px);
    }

    .link-btn i {
        font-size: 1.3rem;
    }

.notification {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--primary-color);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: none;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    animation: slideInUp 0.5s ease;
    max-width: 400px;
}

    .notification.show {
        display: flex;
    }

    .notification i {
        font-size: 1.8rem;
        flex-shrink: 0;
    }

.notification-text {
    flex: 1;
}

.notification-title {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.notification-message {
    font-size: 0.95rem;
    opacity: 0.95;
}

.close-notification {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

    .close-notification:hover {
        background: rgba(255, 255, 255, 0.3);
    }

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-showcase {
        aspect-ratio: 16/9;
        max-height: 400px;
    }

    .event-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-container {
        padding: 2rem 1.5rem;
    }

    .content-section {
        padding: 2rem;
    }

    .section-header1 {
        padding-bottom: 1rem;
    }


    .notification {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 1.5rem 1rem;
    }

    .content-section {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .image-showcase {
        border-radius: 20px;
    }
}
/* Bundeles section style*/
.main-pricing-wrapper {
    padding: 40px 20px;
    background: linear-gradient(to bottom, var(--primary-color), var(--bg-color));
    position: relative;
    min-height: 7%;
}



.hero-title-block {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

    .hero-title-block h2 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 900;
        background: var(--accent-color);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

.title-icons-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero-title-block .animated-icon {
    font-size: 2.8rem;
    background: var(--accent-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-title-block p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    max-width: 650px;
    margin: 0 auto;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.description-icon {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.navigation-tabs-wrapper {
    max-width: 600;
    padding: 15px 6px;
    display: flex;
    justify-self: center;
    gap: 12px;
    margin: 5px 0 0;
    overflow-x: auto;
    position: relative;
    z-index: 2;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--bg-color);
    flex-wrap: wrap;
}

    /* تصميم شريط التمرير للمتصفحات التي تدعم WebKit */
    .navigation-tabs-wrapper::-webkit-scrollbar {
        height: 8px;
    }

    .navigation-tabs-wrapper::-webkit-scrollbar-track {
        background: var(--bg-color);
        border-radius: 10px;
    }

    .navigation-tabs-wrapper::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 10px;
    }

.category-tab-button {
    background: var(--secoundary-color);
    color: var(--primary-color);
    padding: 7px 20px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    font-weight: 600;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 0 auto;
    min-width: 140px;
    justify-content: center;
    white-space: nowrap;
}

    .category-tab-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s;
    }

    .category-tab-button:hover::before {
        left: 100%;
    }

    .category-tab-button.is-active,
    .category-tab-button:hover {
        background: var(--accent-color);
        color: var(--secoundary-color);
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

.tab-button-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.category-tab-button:hover .tab-button-icon {
    transform: scale(1.2);
}

/* تصميم متجاوب للشاشات الصغيرة */
@media (max-width: 768px) {
    .navigation-tabs-wrapper {
        gap: 8px;
        padding: 15px 10px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .category-tab-button {
        padding: 10px 16px;
        min-width: 120px;
        font-size: 0.85rem;
    }

    .tab-button-icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .navigation-tabs-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .category-tab-button {
        flex: 1 1 calc(50% - 8px);
        min-width: calc(50% - 8px);
        max-width: calc(50% - 8px);
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .category-tab-button {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

.swiper {
    max-width: 1200px;
    padding: 30px 10px;
    position: relative;
    z-index: 2;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

/* Split Design Card */
.package-card-container {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 250px;
    position: relative;
}

    .package-card-container:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: var(--shadow);
    }

.card-top-section {
    background: var(--accent-color);
    padding: 30px 20px 40px;
    position: relative;
    text-align: center;
}

    .card-top-section h3 {
        color: white;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 8px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

.top-section-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.label-icon {
    font-size: 1.1rem;
}

.card-icon-middle {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent-color);
    transition: all 0.5s ease;
    z-index: 3;
}

.package-card-container:hover .card-icon-middle {
    transform: translateX(-50%) rotate(360deg) scale(1.05);
    box-shadow: var(--shadow);
}

.middle-main-icon {
    font-size: 1.5rem;
    background: var(--accent-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-bottom-section {
    padding: 25px 0px 25px;
    background: white;
    text-align: center;
    position: relative;
}

.invites-count-text {
    font-size: 1.2rem;
    color: var(--secoundary-color);
    font-weight: 700;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.count-icon {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.decorative-divider {
    width: 70px;
    height: 3px;
    background: var(--accent-color);
    margin: 0px auto;
    border-radius: 3px;
    box-shadow: var(--shadow);
}

.price-display {
    font-size: 25px;
    font-weight: 900;
    background: var(--accent-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
}

    .price-display span {
        Color: var(--secoundary-color) !important;
        font-size: 1.2rem;
        font-weight: 600;
    }

.currency-symbol {
    font-size: 1.8rem;
}

.supervisor-info {
    color: var(--accent-color);
    margin: 10px 0 10px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.supervisor-icon {
    font-size: 1.2rem;
}

.details-action-button {
    background: var(--secoundary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

    .details-action-button::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: var(--accent-color);
        transform: translate(-50%, -50%);
        transition: width 0.5s, height 0.5s;
    }

    .details-action-button:hover::before {
        width: 300px;
        height: 300px;
    }

    .details-action-button:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
        color: var(--secoundary-color);
    }

.button-icon {
    font-size: 1.15rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.details-action-button:hover .button-icon {
    transform: scale(1.2) rotate(15deg);
}

.details-action-button span {
    position: relative;
    z-index: 1;
}

.overlay-modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 26, 23, 0.88);
    backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.popup-content-box {
    background: var(--primary-color);
    border-radius: 24px;
    width: 95%;
    max-width: 700px;
    max-height: 85vh;
    box-shadow: var(--shadow);
    animation: modalEntrance 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--accent-color);
}

@keyframes modalEntrance {
    from {
        opacity: 0;
        transform: translateY(-60px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-header-bar {
    background: var(--accent-color);
    padding: 15px 20px;
    text-align: center;
    color: var(--primary-color);
    border-radius: 22px 22px 0 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    font-weight: 700;
    font-size: 1.1rem;
}

.modal-header-icon {
    font-size: 2rem;
    animation: iconRotate 3s linear infinite;
}

@keyframes iconRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.dismiss-modal-btn {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

    .dismiss-modal-btn:hover {
        transform: translateY(-50%) scale(1.15) rotate(90deg);
    }

.features-list-container {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    margin-top: 0;
    max-height: 40rem;
}

.feature-row-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    border-bottom: 1px solid var(--bg-color);
    transition: all 0.3s ease;
    border-radius: 8px;
}

    .feature-row-item:last-child {
        border-bottom: none;
    }

    .feature-row-item:hover {
        background: var(--bg-color);
        transform: translateX(-8px);
        padding-right: 20px;
    }

.feature-label-text {
    font-size: 0.95rem;
    color: var(--secoundary-color);
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-label-icon {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.availability-icon {
    font-size: 1.6rem;
    min-width: 26px;
}

.available-marker {
    color: #28a745;
}

.unavailable-marker {
    color: #dc3545;
}

.features-list-container::-webkit-scrollbar {
    width: 10px;
}

.features-list-container::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-radius: 10px;
}

.features-list-container::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
    transition: background 0.3s;
}

    .features-list-container::-webkit-scrollbar-thumb:hover {
        background: var(--secoundary-color);
    }

/* log page style*/
.xk9p2_authentication_container_wrapper {
    text-align: center;
    margin: 30px;
    justify-self: center;
    max-width: 800px;
    width: 100%;
    background: var(--primary-color);
    padding: 40px 60px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.zm4t7_corporate_brand_identity_emblem {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .zm4t7_corporate_brand_identity_emblem i {
        font-size: 24px;
        color: var(--primary-color);
    }

.hv8n3_primary_heading_textual_content {
    text-align: center;
    color: var(--secoundary-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.qw5r1_secondary_descriptive_paragraph {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.pl6k8_navigation_toggle_interface_panel {
    display: flex;
    background: var(--bg-color);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 25px;
}

.dn2m5_switchable_navigation_control_element {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

    .dn2m5_switchable_navigation_control_element.jt7f4_currently_selected_active_state {
        background: var(--accent-color);
        color: var(--primary-color);
    }

.bs9w2_credential_submission_form_structure {
    display: none;
}

    .bs9w2_credential_submission_form_structure.yr3h6_displayed_visibility_status {
        display: block;
    }

.lc4x1_responsive_field_arrangement_matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.mt8d9_individual_input_field_enclosure {
    margin-bottom: 15px;
}

    .mt8d9_individual_input_field_enclosure.fz5p3_full_width_spanning_modifier {
        grid-column: 1 / -1;
    }

.vb1q7_character_entry_interactive_element {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: #fafafa;
}

    .vb1q7_character_entry_interactive_element:focus {
        outline: none;
        border-color: var(--accent-color);
        background: var(--primary-color);
    }

.ng6k2_primary_form_submission_trigger {
    width: 100%;
    padding: 12px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 5px;
}

    .ng6k2_primary_form_submission_trigger:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.wu3s8_horizontal_content_dividing_boundary {
    text-align: center;
    color: #999;
    margin: 20px 0 18px;
    font-size: 0.85rem;
    position: relative;
}

    .wu3s8_horizontal_content_dividing_boundary::before,
    .wu3s8_horizontal_content_dividing_boundary::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40%;
        height: 1px;
        background: #ddd;
    }

    .wu3s8_horizontal_content_dividing_boundary::before {
        left: 0;
    }

    .wu3s8_horizontal_content_dividing_boundary::after {
        right: 0;
    }

.oe7j9_external_provider_authentication_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.rx4n1_third_party_login_service_connector {
    padding: 11px 18px;
    border: 2px solid;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

    .rx4n1_third_party_login_service_connector:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    .rx4n1_third_party_login_service_connector.ap8m6_google_oauth_integration_variant {
        background: #ffffff;
        border-color: #dadce0;
        color: #3c4043;
    }

        .rx4n1_third_party_login_service_connector.ap8m6_google_oauth_integration_variant:hover {
            background: #f8f9fa;
            border-color: #c6c6c6;
        }

        .rx4n1_third_party_login_service_connector.ap8m6_google_oauth_integration_variant i {
            background: linear-gradient(to right, #4285f4 0%, #34a853 33%, #fbbc05 66%, #ea4335 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 18px;
        }

    .rx4n1_third_party_login_service_connector.ct2y5_facebook_social_network_variant {
        background: #1877f2;
        border-color: #1877f2;
        color: #ffffff;
    }

        .rx4n1_third_party_login_service_connector.ct2y5_facebook_social_network_variant:hover {
            background: #166fe5;
            border-color: #166fe5;
        }

        .rx4n1_third_party_login_service_connector.ct2y5_facebook_social_network_variant i {
            font-size: 18px;
        }

.gh9v4_supplementary_navigation_hyperlinks {
    justify-content: center;
    text-align: center;
    margin-top: 18px;
    color: #666;
    font-size: 0.85rem;
}

    .gh9v4_supplementary_navigation_hyperlinks a {
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 600;
    }

        .gh9v4_supplementary_navigation_hyperlinks a:hover {
            text-decoration: underline;
        }

@media (max-width: 480px) {
    .xk9p2_authentication_container_wrapper {
        padding: 40px 30px;
        max-width: 450px;
    }

    .lc4x1_responsive_field_arrangement_matrix {
        grid-template-columns: 1fr;
    }

    .oe7j9_external_provider_authentication_layout {
        grid-template-columns: 1fr;
    }
}


/*  PROFILE PAGE STYLE */
.usr-prof-main-wrapper {
    padding: 50PX 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--bg-color));
}

.usr-prof-main-wrapper-container {
    max-width: 1100px;
    margin: 10px auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
}

/* Profile Sidebar */
.usr-identity-sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.usr-identity-card-display-section {
    background: var(--primary-color);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.usr-profile-avatar-img-element {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    border: 4px solid var(--accent-color);
    object-fit: cover;
}

.usr-identity-card-display-section h1 {
    font-size: 1.6em;
    margin-bottom: 8px;
    font-weight: 600;
}

.usr-identity-card-display-section p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 25px;
}

.usr-statistics-metrics-stack-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.usr-single-stat-metric-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.usr-stat-label-text-descriptor {
    font-size: 0.9em;
    color: #888;
}

.usr-stat-numeric-value-display {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--accent-color);
}

/* Events Section */
.evt-main-content-area-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.evt-category-filter-section-wrapper {
    background: var(--primary-color);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.evt-filter-buttons-group-container {
    justify-self: center;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.evt-filter-toggle-btn-element {
    padding: 10px 24px;
    border: 2px solid #ddd;
    background: var(--primary-color);
    color: var(--secoundary-color);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s;
}

    .evt-filter-toggle-btn-element:hover {
        border-color: var(--accent-color);
        color: var(--accent-color);
    }

    .evt-filter-toggle-btn-element.active-filter-state {
        background: var(--accent-color);
        color: var(--primary-color);
        border-color: var(--accent-color);
    }

.evt-items-listing-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.evt-single-card-horizontal-layout {
    background: var(--primary-color);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

    .evt-single-card-horizontal-layout:hover {
        transform: translateX(-5px);
        box-shadow: 0 12px 24px rgba(104, 7, 60, 0.1);
    }

.evt-type-icon-visual-indicator {
    font-size: 2.5em;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-color);
}

.evt-main-content-info-wrapper {
    flex: 1;
}

.evt-title-status-header-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.evt-primary-title-heading-text {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.evt-status-badge-label-component {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7em;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-upcoming-event-state {
    background: #dbeafe;
    color: #1e40af;
}

.badge-completed-event-state {
    background: #dcfce7;
    color: #166534;
}

.badge-cancelled-event-state {
    background: #fee2e2;
    color: #991b1b;
}

.evt-datetime-schedule-info-text {
    color: #666;
    font-size: 0.85em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.evt-meta-details-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.evt-meta-single-detail-unit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85em;
    color: #666;
}

    .evt-meta-single-detail-unit i {
        color: var(--accent-color);
    }

/* Pagination */
.evt-pagination-controls-wrapper {
    background: var(--primary-color);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.evt-page-number-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    background: var(--primary-color);
    color: var(--secoundary-color);
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .evt-page-number-btn:hover {
        border-color: var(--accent-color);
        color: var(--accent-color);
    }

    .evt-page-number-btn.active-page-state {
        background: var(--accent-color);
        color: var(--primary-color);
        border-color: var(--accent-color);
    }

/* Empty State */
.evt-empty-state-message-block {
    text-align: center;
    padding: 60px 20px;
    background: var(--primary-color);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.evt-empty-icon-visual-placeholder {
    font-size: 3.5em;
    margin-bottom: 20px;
    opacity: 0.3;
}

.evt-empty-state-message-block h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 600;
}

.evt-empty-state-message-block p {
    color: #888;
    font-size: 0.95em;
}

/* Responsive */
@media (max-width: 1024px) {
    .usr-prof-main-wrapper-container {
        grid-template-columns: 1fr;
        max-width: 700px;
    }

    .usr-identity-sidebar-section {
        order: -1;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }

    .usr-identity-card-display-section {
        padding: 30px 20px;
    }

        .usr-identity-card-display-section h1 {
            font-size: 1.4em;
        }

    .evt-single-card-horizontal-layout {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .evt-title-status-header-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .evt-meta-details-grid-layout {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .evt-meta-single-detail-unit {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .evt-filter-buttons-group-container {
    }

    .evt-filter-toggle-btn-element {
        width: 100%;
    }

    .usr-stat-numeric-value-display {
        font-size: 1.2em;
    }

    .evt-meta-details-grid-layout {
        gap: 8px;
    }
}