* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #1f1f1f;
    --secondary: #F8F9FF;
    --accent: #1f1f1f;
    --light: #ffffff;
    --dark: #2D2B55;
    --text: #4A4A6A;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
}

body {
    background: var(--secondary);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

.header {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(138, 43, 226, 0.1);
    transition: all 0.4s ease;
}

.header.scrolled {
    padding: 0.8rem 5%;
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    text-decoration: none;
    z-index: 1001;
}

.logo img {
    height: 60px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.nav-menu {
    display: flex;
    gap: 0.8rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transition: all 0.6s ease;
}

.nav-link:hover:before {
    left: 100%;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(138, 43, 226, 0.05);
    transform: translateY(-2px);
}

.nav-link.active {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.user-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.user-dd {
    position: relative;
    display: flex;
    align-items: center;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light);
    color: var(--text);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-trigger:hover {
    color: var(--primary);
    background: rgba(138, 43, 226, 0.06);
    border-color: rgba(138, 43, 226, 0.15);
}

.user-trigger .user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.12);
    color: var(--primary);
}

.user-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(248, 249, 255, 0.97));
    backdrop-filter: blur(16px);
    border: 2px solid rgba(138, 43, 226, 0.1);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.15), 0 8px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3000;
    overflow: hidden;
}

.user-menu-panel::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: inherit;
    border: 2px solid rgba(138, 43, 226, 0.1);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
    border-radius: 3px 0 0 0;
}

.user-dd.open .user-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.user-dd.open .fa-chevron-down {
    transform: rotate(180deg);
}

.user-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transition: all 0.6s ease;
}

.user-link:hover:before {
    left: 100%;
}

.user-link:hover {
    color: var(--primary);
    background: rgba(138, 43, 226, 0.05);
    transform: translateY(-2px);
    border-color: rgba(138, 43, 226, 0.2);
}

.user-link.logged-in {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.user-link.logged-in:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 255, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0;
    min-width: 280px;
    box-shadow:
        0 20px 60px rgba(138, 43, 226, 0.15),
        0 8px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(138, 43, 226, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2000;
    overflow: hidden;
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 255, 0.95));
    border: 2px solid rgba(138, 43, 226, 0.1);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
    border-radius: 3px 0 0 0;
}

.user-link:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.user-link:hover .fa-chevron-down {
    transform: rotate(180deg);
    opacity: 1;
}

.user-link.open .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.user-link.open .fa-chevron-down {
    transform: rotate(180deg);
    opacity: 1;
}

.user-info {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(0, 198, 255, 0.05));
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.user-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 198, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.user-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
}

.user-email {
    color: var(--text);
    font-size: 0.95rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.dropdown-menu {
    padding: 0.8rem;
}

.dropdown-link {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    color: var(--text);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 0.4rem;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(138, 43, 226, 0.05);
}

.dropdown-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transition: all 0.6s ease;
}

.dropdown-link:hover::before {
    left: 100%;
}

.dropdown-link:hover {
    background: rgba(138, 43, 226, 0.08);
    color: var(--primary);
    transform: translateX(8px) scale(1.02);
    border-color: rgba(138, 43, 226, 0.2);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.1);
}

.dropdown-link i {
    margin-right: 12px;
    width: 18px;
    text-align: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.dropdown-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.dropdown-link.admin-link {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border-color: rgba(255, 193, 7, 0.2);
    color: #f39c12;
}

.dropdown-link.admin-link:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.15));
    color: #e67e22;
    border-color: rgba(255, 193, 7, 0.3);
}

.dropdown-link.logout-link {
    background: rgba(231, 76, 60, 0.05);
    border-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    margin-bottom: 0;
    margin-top: 0.5rem;
}

.dropdown-link.logout-link::before {
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
}

.dropdown-link.logout-link:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border-color: rgba(231, 76, 60, 0.2);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    margin: 3px 0;
    transition: all 0.4s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
    z-index: 1050;
    position: fixed;
    top: 0;
    right: -70%;
    width: 70%;
    height: 100vh;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(237, 245, 255, 0.94));
    backdrop-filter: blur(20px);
    padding: 0;
    transition: right 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(24, 34, 53, 0.18);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 2;
}

.mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.4px;
}

.mobile-nav-brand img {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    box-shadow: 0 6px 16px rgba(24, 34, 53, 0.12);
}

.mobile-nav-brand span {
    display: inline-block;
}

.mobile-nav-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.mobile-nav-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(66, 133, 244, 0.08), transparent 55%), radial-gradient(circle at bottom left, rgba(244, 180, 0, 0.08), transparent 45%);
    pointer-events: none;
    z-index: -1;
}

.mobile-user-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 22px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 18px 35px rgba(24, 34, 53, 0.15);
    backdrop-filter: blur(8px);
    transform: translateY(25px);
    opacity: 0;
    animation: slideUpFade 0.6s ease forwards;
}

.mobile-nav.active .mobile-user-card {
    animation-delay: 0.1s;
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.mobile-user-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), rgba(126, 190, 255, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.6);
}

.mobile-user-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mobile-user-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.mobile-user-email {
    font-size: 0.9rem;
    color: rgba(70, 85, 105, 0.7);
}

.mobile-user-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-user-actions form {
    margin: 0;
}

.mobile-user-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: var(--dark);
    text-decoration: none;
    padding: 0.85rem 1rem;
    background: rgba(229, 239, 255, 0.65);
    border: 1px solid rgba(126, 190, 255, 0.5);
    border-radius: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.mobile-user-link i {
    font-size: 1rem;
    opacity: 0.7;
}
.mobile-user-link:hover {
    background: rgba(208, 228, 255, 0.9);
    transform: translateX(-6px);
    box-shadow: 0 12px 26px rgba(24, 34, 53, 0.15);
}

.mobile-user-link.logout {
    background: rgba(255, 242, 240, 0.85);
    border-color: rgba(231, 76, 60, 0.35);
    color: #c0392b;
}
.mobile-user-link.logout i {
    opacity: 0.8;
    color: #c0392b;
}
.mobile-user-link.logout:hover {
    background: rgba(255, 228, 223, 0.95);
}

.mobile-login-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: right;
}

.mobile-login-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
}

.mobile-login-meta h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.mobile-login-meta p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    line-height: 1.6;
}

.mobile-user-login {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    align-self: flex-start;
    padding: 0.75rem 1.4rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), rgba(255, 255, 255, 0.25));
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-user-login i {
    font-size: 0.9rem;
}

.mobile-user-login:hover {
    transform: translateX(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.mobile-nav-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

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

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-list li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav.active .mobile-nav-list li {
    opacity: 1;
    transform: translateX(0);
    text-align: right;
    float: right;
}

.mobile-nav.active .mobile-nav-list li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav.active .mobile-nav-list li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav.active .mobile-nav-list li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav.active .mobile-nav-list li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav.active .mobile-nav-list li:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-nav.active .mobile-nav-list li:nth-child(6) {
    transition-delay: 0.6s;
}

.mobile-nav-link {
    color: var(--dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1.05rem 1.35rem;
    border-radius: 18px;
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    background: rgba(232, 240, 255, 0.75);
    text-align: right;
    border: 1px solid rgba(126, 190, 255, 0.4);
    backdrop-filter: blur(6px);
    transform: translateX(0);
}

.mobile-nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: all 0.6s ease;
}

.mobile-nav-link:hover:before {
    left: 100%;
}

.mobile-nav-link:hover {
    color: var(--primary);
    background: rgba(208, 228, 255, 0.95);
    transform: translateX(-10px) scale(1.02);
    border-color: rgba(126, 190, 255, 0.6);
    box-shadow: 0 14px 24px rgba(24, 34, 53, 0.14);
}

.mobile-nav-link:active {
    transform: translateX(10px) scale(0.98);
}

.close-menu {
    position: relative;
    font-size: 1.5rem;
    color: var(--accent);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(23, 22, 22, 0.1);
    border: 1px solid rgba(21, 20, 20, 0.2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.close-menu:hover {
    transform: rotate(180deg) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.close-menu:active {
    transform: rotate(180deg) scale(0.95);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 968px) {

    .nav-menu,
    .cta-button,
    .user-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

}

@media (max-width: 576px) {
    .main-about .image-container img ,
.main-about .image-container {
     height: 200px !important;
    }
    .logo span {
        display: none;
    }

    .mobile-nav {
        width: 85%;
        min-width: 320px;
        right: -85%;
    }

    .mobile-nav-header {
        padding: 1.5rem;
    }

    .mobile-nav-logo span {
        font-size: 1.2rem;
    }

    .mobile-nav-content {
        padding: 1.5rem;
    }
}

@media (min-width: 969px) {
    .mobile-nav {
        display: none;
    }
}

/* Hero */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    direction: rtl;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;

}

.slide:nth-child(1) .slide-bg {
    background-image: url('../slider/1.jpg');
}

.slide:nth-child(2) .slide-bg {
    background-image: url('../slider/2.jpg');
}

.slide:nth-child(3) .slide-bg {
    background-image: url('../slider/3.jpg');
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.slide-text {
    max-width: 800px;
    animation: slideInUp 1s ease-out;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.4;
}

.slide-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    min-width: 200px;
    z-index: 1050;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.nav-btn i {
    font-size: 1.2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Services */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
    transition: all 0.4s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.25);
    transition: all 0.3s ease-in;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease-out;
    z-index: 1;
    transform: scale(1);
}

.service-card:hover::before {
    transform: scale(1.08);
    transition: transform 0.3s ease-in;
}

.service-card:nth-child(1) {
    background-image: url('../services/out.jpg');
}

.service-card:nth-child(2) {
    background-image: url('../services/in.webp');
}

.service-card:nth-child(3) {
    background-image: url('../services/1.webp');
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    transition: all 0.4s ease;
    z-index: 2;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom,
            rgba(138, 43, 226, 0.2) 0%,
            rgba(138, 43, 226, 0.4) 50%,
            rgba(0, 0, 0, 0.9) 100%);
}

.service-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    text-align: center;
    color: white;
    width: 100%;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.service-card:hover .service-content {
    transform: translateY(0);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
}

.service-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
    background: linear-gradient(45deg, var(--accent), var(--primary));
}

.service-btn:active {
    transform: translateY(0);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 50vh;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-subtitle {
        font-size: 1.2rem;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        min-width: 250px;
    }

    .slider-nav {
        padding: 0 15px;
    }

    .nav-btn {
        width: 30px;
        height: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        height: 350px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px;
        font-size: 1rem;
        min-width: 200px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .service-card {
        height: 300px;
    }

    .service-content {
        padding: 1.2rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .service-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

.hashemi-section {
    padding: 100px 0;
    background-image: url('../imgs/vector-1.webp');
    direction: rtl;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hashemi-intro {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
    margin-bottom: 4rem;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.hashemi-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hashemi-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}

.stone-overview {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.1);
    margin-bottom: 3rem;
    border: 1px solid rgba(138, 43, 226, 0.1);
    text-align: center;
}

.stone-overview h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.stone-overview p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}

.stone-overview p strong {
    color: var(--primary);
    font-weight: 600;
}

.stone-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stone-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.stone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.05), transparent);
    transition: all 0.6s ease;
}

.stone-card:hover::before {
    left: 100%;
}

.stone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.15);
}

.stone-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stone-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stone-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.stone-content p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1rem;
}

.hashemi-features {
    margin-bottom: 4rem;
}

.hashemi-features h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.feature-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.feature-item p {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Uses Section */
.hashemi-uses {
    margin-bottom: 4rem;
}

/* Authentication Pages */

.auth-wrapper {
    min-height: 100vh;
    background: linear-gradient(120deg, rgba(79, 70, 229, 0.08), rgba(236, 72, 153, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
}

.auth-container {
    display: grid;
    grid-template-columns: minmax(320px, 460px) minmax(320px, 460px);
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1100px;
}

.auth-layout {
    width: 100%;
    max-width: 520px;
}

.auth-hero {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    padding: 48px 42px;
    box-shadow: 0 25px 60px rgba(36, 62, 142, 0.12);
    border: 1px solid rgba(79, 70, 229, 0.12);
    text-align: right;
}

.auth-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.16);
    color: #273a74;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.auth-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111f3f;
}

.auth-hero p {
    color: rgba(17, 31, 63, 0.75);
    line-height: 1.9;
    margin-bottom: 28px;
}

.auth-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.auth-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(17, 31, 63, 0.85);
    font-weight: 600;
}

.auth-benefits i {
    color: var(--primary);
    font-size: 1.1rem;
}

.auth-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 28px;
    padding: 44px 42px;
    box-shadow: 0 30px 70px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(79, 70, 229, 0.14);
}

.auth-card--single {
    width: 100%;
    text-align: right;
}

.auth-card-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #161d3a;
    margin-bottom: 10px;
}

.auth-card-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #161d3a;
    margin-bottom: 12px;
}

.auth-card-header p {
    color: rgba(22, 29, 58, 0.65);
    margin-bottom: 28px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-field label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111f3f;
}

.field-control {
    position: relative;
}

.field-control input {
    width: 100%;
    padding: 16px 18px;
    padding-left: 52px;
    border-radius: 16px;
    border: 1px solid rgba(79, 70, 229, 0.16);
    background: rgba(249, 250, 255, 0.92);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field-control input:focus {
    outline: none;
    border-color: rgba(79, 70, 229, 0.55);
    box-shadow: 0 0 0 6px rgba(79, 70, 229, 0.16);
    background: #fff;
}

.field-control i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(79, 70, 229, 0.6);
    font-size: 1.1rem;
}

.field-error {
    display: block;
    margin-top: 10px;
    color: #e74c3c;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.95rem;
}

.remember-me {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1a2345;
    font-weight: 600;
}

.remember-me input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.forgot-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-submit {
    margin-top: 12px;
    width: 100%;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(79, 70, 229, 0.25);
}

.auth-submit:active {
    transform: translateY(0);
}

.auth-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.auth-alert.success {
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #239b56;
}

.auth-alert i {
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .auth-wrapper {
        padding: 100px 30px 70px;
    }

    .auth-card {
        padding: 42px 36px;
    }
}

@media (max-width: 576px) {
    .auth-wrapper {
        padding: 80px 20px 60px;
    }

    .auth-card {
        padding: 36px 28px;
        border-radius: 22px;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-submit {
        font-size: 1rem;
        padding: 14px 16px;
    }
}

.faq-highlight {
    margin-top: 5rem;
    padding: 4.5rem 3.5rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(179, 198, 255, 0.22));
    border-radius: 30px;
    border: 1px solid rgba(79, 70, 229, 0.18);
    box-shadow: 0 24px 60px rgba(36, 62, 142, 0.12);
    position: relative;
    overflow: hidden;
}

.faq-highlight::before {
    content: '';
    position: absolute;
    top: -110px;
    left: -70px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.28), transparent 65%);
    pointer-events: none;
}

.faq-highlight::after {
    content: '';
    position: absolute;
    bottom: -130px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 75%);
    pointer-events: none;
}

.faq-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px auto;
    position: relative;
    z-index: 1;
}

.faq-eyebrow {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(79, 70, 229, 0.18);
    color: #283a72;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.faq-header h3 {
    font-size: 2rem;
    color: #16213c;
    margin-bottom: 16px;
}

.faq-header p {
    color: rgba(22, 33, 60, 0.75);
    line-height: 1.8;
    font-size: 1.05rem;
}


.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.faq-entry {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 22px;
    border: 1px solid rgba(79, 70, 229, 0.14);
    box-shadow: 0 18px 32px rgba(36, 62, 142, 0.08);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-entry.is-open {
    border-color: rgba(79, 70, 229, 0.35);
    box-shadow: 0 28px 48px rgba(36, 62, 142, 0.14);
}

.faq-item {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 22px 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: right;
    font: inherit;
    color: inherit;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: rgba(79, 70, 229, 0.08);
}

.faq-entry.is-open .faq-item {
    background: rgba(79, 70, 229, 0.08);
}

.faq-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(79, 70, 229, 0.85);
    background: rgba(79, 70, 229, 0.12);
    border-radius: 14px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1e36;
    line-height: 1.5;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: relative;
    background: rgba(79, 70, 229, 0.1);
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: rgba(79, 70, 229, 0.8);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.faq-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-entry.is-open .faq-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-panel {
    padding: 0 26px;
    color: rgba(20, 28, 52, 0.82);
    line-height: 1.85;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
}

.faq-entry.is-open .faq-panel {
    padding: 20px 32px 38px 32px;
    max-height: 400px;
    opacity: 1;
}

.faq-panel p + p {
    margin-top: 12px;
}

.faq-panel a {
    color: #283a72;
    font-weight: 600;
    text-decoration: none;
}

.faq-panel a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .faq-highlight {
        padding: 3.5rem 2.8rem;
        border-radius: 26px;
    }

    .faq-header h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .faq-highlight {
        padding: 3rem 2.2rem;
        border-radius: 22px;
    }

    .faq-card {
        padding: 22px;
    }

    .faq-number {
        width: 44px;
        height: 44px;
        font-size: 1.35rem;
    }
}

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

    .faq-header h3 {
        font-size: 1.6rem;
    }

    .faq-highlight::before,
    .faq-highlight::after {
        opacity: 0.4;
    }
}

.hashemi-uses h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
}

.uses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.use-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.use-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.15);
}

.use-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.use-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.use-item p {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Shapes and Sizes */
.stone-shapes-sizes {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
    margin-bottom: 4rem;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.shapes-section,
.sizes-section {
    margin-bottom: 2rem;
}

.shapes-section h3,
.sizes-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.shapes-section p,
.sizes-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
    text-align: center;
}

.sizes-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.size-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.size-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
}

.size-item i {
    font-size: 1.2rem;
}

/* Call to Action */
.hashemi-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hashemi-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 198, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.hashemi-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hashemi-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* Responsive Design for Hashemi Section */
@media (max-width: 768px) {
    .hashemi-section {
        padding: 60px 0;
    }

    .hashemi-intro {
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .hashemi-intro h3 {
        font-size: 1.6rem;
    }

    .stone-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stone-overview {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .stone-card {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .uses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stone-shapes-sizes {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .sizes-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .method-card {
        padding: 2rem;
    }

    .hashemi-cta {
        padding: 2rem;
    }

    .hashemi-cta h3 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hashemi-intro h3 {
        font-size: 1.4rem;
    }

    .hashemi-features h3,
    .installation-methods h3 {
        font-size: 1.6rem;
    }

    .stone-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .stone-header h4 {
        font-size: 1.1rem;
    }

    .hashemi-cta h3 {
        font-size: 1.5rem;
    }

    .hashemi-cta p {
        font-size: 1rem;
    }

    .stone-overview h3 {
        font-size: 1.4rem;
    }

    .stone-overview {
        padding: 1.5rem;
    }

    .stone-shapes-sizes {
        padding: 1.5rem;
    }

    .shapes-section h3,
    .sizes-section h3 {
        font-size: 1.4rem;
    }

    .hashemi-uses h3 {
        font-size: 1.6rem;
    }

    .size-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/*  Articles */
.blog.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.blog-title {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.blog-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.search-input {
    width: 100%;
    padding: 1.5rem 4rem 1.5rem 2rem;
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 255, 0.9));
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.1);
    outline: none;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.2);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--primary);
    pointer-events: none;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.article-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 255, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

.article-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.3);
}

.article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(0, 198, 255, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.article-card:hover .article-image::before {
    opacity: 1;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

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

.article-content {
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.article-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.article-card:hover .article-title {
    color: var(--primary);
}

.article-description {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 4;
}

.article-card:hover .article-overlay {
    transform: translateY(0);
}

.article-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.article-card:hover {
    transform: translateY(-15px) scale(1.02) rotateX(5deg);
}

.article-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: all 0.6s ease;
    z-index: 5;
}

.article-card:hover::after {
    left: 100%;
}

.article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.article-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top,
            rgba(255, 255, 255, 0.8) 0%,
            transparent 100%);
    z-index: 3;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 255, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.1);
    margin: 2rem 0;
}

.no-results h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.no-results p {
    font-size: 1.1rem;
    color: var(--text);
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(138, 43, 226, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.load-more-container {
    text-align: center;
    margin: 3rem 0;
}

.load-more-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.load-more-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: all 0.6s ease;
}

.load-more-btn:hover::before {
    left: 100%;
}

.load-more-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
}

.load-more-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Additional Creative Effects */
.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(138, 43, 226, 0.02) 0%,
            rgba(0, 198, 255, 0.02) 50%,
            rgba(138, 43, 226, 0.02) 100%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 1;
}

.article-card:hover::before {
    opacity: 1;
}


/* Pulse Effect for Search Icon */
.search-icon {
    animation: pulse-search 2s ease-in-out infinite;
}

@keyframes pulse-search {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.1);
    }
}


.article-card:nth-child(1) {
    animation-delay: 0.1s;
}

.article-card:nth-child(2) {
    animation-delay: 0.2s;
}

.article-card:nth-child(3) {
    animation-delay: 0.3s;
}

.article-card:nth-child(4) {
    animation-delay: 0.4s;
}

.article-card:nth-child(5) {
    animation-delay: 0.5s;
}

.article-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Enhanced Hover Effects */
.article-card:hover .article-content {
    transform: translateY(-5px);
}

/* Glowing Border Effect */
.search-input:focus {
    box-shadow:
        0 12px 35px rgba(138, 43, 226, 0.2),
        0 0 0 3px rgba(138, 43, 226, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Morphing Button Effect */
.load-more-btn {
    position: relative;
    overflow: hidden;
}

.load-more-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.load-more-btn:hover::after {
    width: 300px;
    height: 300px;
}


.no-results {
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.loader {
    position: relative;
}

.loader::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 198, 255, 0.2);
    border-left: 2px solid #00c6ff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 1.5s linear infinite reverse;
}

/* Responsive Design for Articles Page */
@media (max-width: 768px) {
    .blog.container {
        padding: 1rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .article-card {
        margin: 0 0.5rem;
    }

    .search-input {
        padding: 1.2rem 3.5rem 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .search-icon {
        right: 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .article-content {
        padding: 1.5rem;
    }

    .article-title {
        font-size: 1.2rem;
    }

    .load-more-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .blog.container::before {
        animation: none;
    }
}

@media (prefers-contrast: high) {
    .article-card {
        border-width: 3px;
        border-color: var(--primary);
    }

    .search-input {
        border-width: 3px;
        border-color: var(--primary);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Show Article Page Styles */
.show-article {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    min-height: 100vh;
    direction: rtl;
}

.show-article .main-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.show-article .main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.show-article .article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(138, 43, 226, 0.1);
}

.show-article .article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.show-article .article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.show-article .article-content h1,
.show-article .article-content h2,
.show-article .article-content h3,
.show-article .article-content h4,
.show-article .article-content h5,
.show-article .article-content h6 {
    color: var(--dark);
    font-weight: 600;
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.show-article .article-content h2 {
    font-size: 2rem;
    border-right: 4px solid var(--primary);
    padding-right: 1rem;
}

.show-article .article-content h3 {
    font-size: 1.6rem;
}

.show-article .article-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.show-article .article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
}

.show-article .article-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.15);
}

.show-article .article-content ul,
.show-article .article-content ol {
    margin: 1.5rem 0;
    padding-right: 2rem;
}

.show-article .article-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.show-article .article-content blockquote {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(0, 198, 255, 0.05));
    border-right: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    font-style: italic;
    position: relative;
}

.show-article .article-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    position: absolute;
    top: -10px;
    right: 10px;
    opacity: 0.3;
}

/* Sidebar Styles */
.show-article .sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.show-article .sidebar-section {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
}

.show-article .sidebar-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.15);
}

.show-article .sidebar-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.show-article .sidebar-content {
    padding: 1.5rem;
}

/* Table of Contents */
.show-article #tableOfContents {
    list-style: none;
    padding: 0;
    margin: 0;
}

.show-article #tableOfContents li {
    margin-bottom: 0.5rem;
}

.show-article #tableOfContents a {
    display: block;
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
}

.show-article #tableOfContents a:hover,
.show-article #tableOfContents a.active {
    color: var(--primary);
    background: rgba(138, 43, 226, 0.05);
    padding-right: 1rem;
    transform: translateX(-5px);
}

.show-article #tableOfContents a.toc-level-h2 {
    font-weight: 600;
}

.show-article #tableOfContents a.toc-level-h3 {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Related Articles */
.show-article .related-article {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 1rem;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.show-article .related-article:last-child {
    margin-bottom: 0;
}

.show-article .related-article:hover {
    background: rgba(138, 43, 226, 0.05);
    transform: translateX(-5px);
    border-color: rgba(138, 43, 226, 0.2);
}

.show-article .related-article-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.show-article .related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.show-article .related-article:hover .related-article-image img {
    transform: scale(1.1);
}

.show-article .related-article-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.show-article .related-article-content p {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.4;
    margin: 0;
}

/* Mobile TOC Toggle */
.toc-toggle {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.toc-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.4);
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(138, 43, 226, 0.1);
    z-index: 1001;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 0%;
    transition: width 0.3s ease;
}

/* Responsive Design for Show Article */
@media (max-width: 1024px) {
    .show-article {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .show-article .sidebar {
        order: -1;
    }

    .toc-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .show-article .sidebar-section {
        display: none;
    }

    .show-article .sidebar-section.active {
        display: block;
        position: fixed;
        top: 50%;
        right: 1rem;
        left: 1rem;
        transform: translateY(-50%);
        z-index: 1002;
        max-height: 80vh;
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .show-article {
        padding: 1rem;
    }

    .show-article .main-content {
        padding: 2rem;
    }

    .show-article .article-title {
        font-size: 2rem;
    }

    .show-article .article-content {
        font-size: 1rem;
    }

    .show-article .article-content h2 {
        font-size: 1.6rem;
    }

    .show-article .related-article {
        flex-direction: column;
        text-align: center;
    }

    .show-article .related-article-image {
        width: 100%;
        height: 150px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .show-article .article-title {
        font-size: 1.6rem;
    }

    .show-article .main-content {
        padding: 1.5rem;
    }

    .show-article .sidebar-content {
        padding: 1rem;
    }

    .toc-toggle {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1.2rem;
    }
}

/* Portfolio Page Styles */
.portfolio-page {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    min-height: 100vh;
}

/* Hero Section */
.portfolio-hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 198, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.portfolio-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.portfolio-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.portfolio-hero .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.portfolio-hero .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.portfolio-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-hero .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: white;
}

.about-section .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-section .about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-section .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.about-section .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-section .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-section .feature-item:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateX(5px);
}

.about-section .feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.about-section .feature-item span {
    font-weight: 500;
    color: var(--dark);
}

.about-section .about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.15);
}

.about-section .about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.about-section .about-image:hover img {
    transform: scale(1.05);
}

/* Portfolio Filter Section */
.portfolio-filter-section {
    padding: 4rem 0 2rem;
    text-align: center;
}

.portfolio-filter-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.portfolio-filter-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-filter-section .filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.portfolio-filter-section .filter-btn {
    padding: 0.8rem 2rem;
    background: white;
    color: var(--text);
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-filter-section .filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transition: all 0.6s ease;
}

.portfolio-filter-section .filter-btn:hover::before {
    left: 100%;
}

.portfolio-filter-section .filter-btn:hover,
.portfolio-filter-section .filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
}

/* Portfolio Gallery */
.portfolio-gallery {
    padding: 4rem 0 6rem;
}

.portfolio-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-gallery .gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
    transition: all 0.5s ease;
    cursor: pointer;
}

.portfolio-gallery .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.portfolio-gallery .gallery-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-gallery .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-gallery .gallery-item:hover .gallery-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.portfolio-gallery .gallery-info {
    text-align: center;
    margin: 2rem 0 1rem;
    padding: 1rem;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.portfolio-gallery .gallery-info p {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
}

.portfolio-gallery .gallery-info span {
    color: var(--primary);
    font-weight: 600;
}

.portfolio-gallery .load-more-container {
    text-align: center;
}

.portfolio-gallery .load-more-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.portfolio-gallery .load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.4);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-modal .lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-modal .lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-modal .lightbox-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.lightbox-modal .lightbox-prev,
.lightbox-modal .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-modal .lightbox-prev {
    left: 1rem;
}

.lightbox-modal .lightbox-next {
    right: 1rem;
}

.lightbox-modal .lightbox-prev:hover,
.lightbox-modal .lightbox-next:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-modal .lightbox-image-container {
    display: flex;
    flex-direction: column;
}

.lightbox-modal .lightbox-image-container img {
    width: 100%;
    height: 80vh;
    object-fit: contain;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 198, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-cta-section .cta-content {
    position: relative;
    z-index: 2;
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-cta-section .cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.contact-cta-section .cta-btn.primary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.contact-cta-section .cta-btn.primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.contact-cta-section .cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.contact-cta-section .cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Responsive Design for Portfolio */
@media (max-width: 1024px) {
    .portfolio-hero .hero-stats {
        gap: 2rem;
    }

    .about-section .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-section .features-list {
        grid-template-columns: 1fr;
    }

    .portfolio-gallery .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .portfolio-hero {
        padding: 4rem 0 3rem;
    }

    .portfolio-hero .hero-title {
        font-size: 2.5rem;
    }

    .portfolio-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .portfolio-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .portfolio-hero .stat-item {
        padding: 1rem;
    }

    .about-section {
        padding: 4rem 0;
    }

    .about-section .about-text h2 {
        font-size: 2rem;
    }

    .portfolio-filter-section .filter-buttons {
        gap: 0.5rem;
    }

    .portfolio-filter-section .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .portfolio-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-gallery .gallery-image {
        height: 250px;
    }

    .contact-cta-section h2 {
        font-size: 2rem;
    }

    .contact-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .lightbox-modal .lightbox-image-container img {
        height: 50vh;
    }

    .lightbox-modal .lightbox-prev,
    .lightbox-modal .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .portfolio-hero .hero-title {
        font-size: 2rem;
    }

    .portfolio-hero .stat-number {
        font-size: 2rem;
    }

    .about-section .about-text h2 {
        font-size: 1.6rem;
    }

    .portfolio-filter-section .section-title {
        font-size: 2rem;
    }

    .portfolio-gallery .gallery-content {
        padding: 1.5rem;
    }

    .portfolio-gallery .gallery-content h3 {
        font-size: 1.2rem;
    }

    .contact-cta-section h2 {
        font-size: 1.6rem;
    }

    .contact-cta-section p {
        font-size: 1rem;
    }

    .lightbox-modal .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .lightbox-modal .lightbox-info {
        padding: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-page {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    min-height: 100vh;
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 198, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-methods {
    padding: 6rem 0;
}

.contact-methods .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-methods .contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease forwards;
}

.contact-methods .contact-card:hover {
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.15);
}

.contact-methods .contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.contact-methods .phone-card .contact-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.contact-methods .instagram-card .contact-icon {
    background: linear-gradient(135deg, #E1306C, #E1306C);
}

.contact-methods .whatsapp-card .contact-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.instagram-btn {
    background-color: #E1306C;
    color: white;
}

.contact-methods .facebook-card .contact-icon {
    background: linear-gradient(135deg, #1877F2, #166FE5);
}

.contact-methods .tiktok-card .contact-icon {
    background: linear-gradient(135deg, #000000, #333333);
}

.contact-methods .contact-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.contact-methods .contact-content p {
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-methods .contact-info {
    margin-bottom: 2rem;
}

.contact-methods .contact-number,
.contact-methods .contact-handle {
    display: inline-block;
    background: rgba(138, 43, 226, 0.05);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.contact-methods .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-methods .phone-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.contact-methods .whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.contact-methods .facebook-btn {
    background: linear-gradient(135deg, #1877F2, #166FE5);
    color: white;
}

.contact-methods .tiktok-btn {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
}

.contact-methods .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-methods .card-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background:var(--accent);
    border-radius: 50%;
    z-index: 1;
}

.quick-actions {
    background: white;
    padding: 4rem 0;
}

.quick-actions .actions-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quick-actions h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.quick-actions p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 3rem;
}

.quick-actions .quick-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.quick-actions .quick-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: white;
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.quick-actions .quick-btn:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.quick-actions .call-btn:hover {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.quick-actions .whatsapp-btn:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.quick-actions .btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.quick-actions .call-btn .btn-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.quick-actions .whatsapp-btn .btn-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.quick-actions .btn-content {
    text-align: right;
}

.quick-actions .btn-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.quick-actions .btn-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}
.services-cta .container{
    background: var(--accent);
    color: white;
    margin-bottom: 20px;
    padding: 3rem 15px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}


.services-cta .cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta>p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.services-cta .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.services-cta .service-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.services-cta .service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.services-cta .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.services-cta .service-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.services-cta .service-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.services-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.services-cta .cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.services-cta .cta-btn.primary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.services-cta .cta-btn.primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.services-cta .cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.services-cta .cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0;
    }

    .contact-hero .hero-title {
        font-size: 2.5rem;
    }

    .contact-methods {
        padding: 4rem 0;
    }

    .contact-methods .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-methods .contact-card {
        padding: 2rem;
    }

    .quick-actions .quick-buttons {
        flex-direction: column;
        align-items: center;
    }

    .quick-actions .quick-btn {
        min-width: 280px;
    }

    .working-hours .hours-card {
        padding: 2rem;
        margin: 0 1rem;
    }

    .services-cta {
        padding: 4rem 0;
    }

    .services-cta h2 {
        font-size: 2rem;
    }

    .services-cta .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .services-cta .service-item {
        padding: 1.5rem;
    }

    .services-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-hero .hero-title {
        font-size: 2rem;
    }

    .contact-methods .contact-card {
        padding: 1.5rem;
    }

    .contact-methods .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .working-hours .hours-card {
        padding: 1.5rem;
    }

    .working-hours .hour-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .services-cta .services-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-page {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    min-height: 100vh;
    direction: rtl;
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.about-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-hero .hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.about-hero .decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.about-hero .circle-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.about-hero .circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.about-hero .circle-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Main About Section */
.main-about {
    padding: 6rem 0;
    background: white;
}

.main-about .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: right;
}

.main-about .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(138, 43, 226, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.main-about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.main-about .lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.main-about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
}

.main-about .about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-about .highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
}

.main-about .highlight-item:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateX(-10px);
}

.main-about .highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.main-about .highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.main-about .highlight-content p {
    font-size: 0.95rem;
    color: var(--text);
    margin: 0;
}

.main-about .about-image {
    position: relative;
}

.main-about .image-container {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.15);
}

.main-about .image-container img {
    width: 100%;
    height: 400px;
    /* object-fit: cover; */
    transition: all 0.3s ease;
}

.main-about .floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    direction: rtl;
}

.main-about .floating-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.main-about .floating-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.main-about .floating-card p {
    font-size: 0.9rem;
    color: var(--text);
    margin: 0;
}

/* Services Section */
.our-services {
    padding: 6rem 0;
    direction: rtl;
}

.our-services .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.our-services .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(138, 43, 226, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.our-services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.our-services .section-header p {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
}

.our-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.our-services .service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: right;
}

.our-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.our-services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.15);
}

.our-services .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.our-services .service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.our-services .service-card p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.our-services .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.our-services .service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text);
    direction: rtl;
    text-align: right;
}

.our-services .service-features i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Stone Types Section */
.stone-types {
    padding: 6rem 0;
    background: white;
    direction: rtl;
}

.stone-types .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stone-types .stones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.stone-types .stone-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.4s ease;
}

.stone-types .stone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.15);
}

.stone-types .stone-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.stone-types .stone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.stone-types .stone-card:hover .stone-image img {
    transform: scale(1.1);
}

.stone-types .stone-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.stone-types .stone-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stone-types .stone-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.stone-types .stone-content {
    padding: 2rem;
    text-align: right;
}

.stone-types .stone-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.stone-types .stone-content p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.stone-types .stone-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-start;
    direction: rtl;
}

.stone-types .feature-tag {
    background: rgba(138, 43, 226, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    direction: rtl;
}

.why-choose-us .choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: right;
}

.why-choose-us .reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-choose-us .reason-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.why-choose-us .reason-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.why-choose-us .reason-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.why-choose-us .reason-content p {
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.why-choose-us .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.why-choose-us .stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
}

.why-choose-us .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.15);
}

.why-choose-us .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.why-choose-us .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.why-choose-us .stat-label {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

/* About  */
.about-cta .container {
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 198, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-cta .cta-content {
    position: relative;
    z-index: 2;
}

.about-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.about-cta .cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.about-cta .cta-btn.primary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.about-cta .cta-btn.primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.about-cta .cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.about-cta .cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {

    .main-about .about-content,
    .why-choose-us .choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-us .stats-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }

    .about-hero .hero-title {
        font-size: 2.5rem;
    }

    .main-about,
    .our-services,
    .stone-types,
    .why-choose-us {
        padding: 4rem 0;
    }

    .main-about h2,
    .our-services h2,
    .stone-types h2,
    .why-choose-us h2,
    .about-cta h2 {
        font-size: 2rem;
    }

    .our-services .services-grid,
    .stone-types .stones-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .main-about .about-highlights {
        gap: 1rem;
    }

    .main-about .highlight-item {
        padding: 1rem;
    }

    .main-about .floating-card {
        position: static;
        margin-top: 2rem;
        justify-content: center;
        text-align: center;
    }

    .why-choose-us .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-cta {
        padding: 4rem 0;
    }

    .about-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }

    .main-about .lead-text {
        font-size: 1.1rem;
    }

    .our-services .service-card,
    .stone-types .stone-content {
        padding: 2rem;
    }

    .why-choose-us .reason-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }

    .why-choose-us .stat-item {
        padding: 1.5rem;
    }

    .about-cta h2 {
        font-size: 1.6rem;
    }
}

/* Footer */
.footer {
    background: var(--accent);
    color: var(--light);
    direction: rtl;
    text-align: right;
}

.footer-top {
    padding: 60px 0 40px;
    position: relative;
}


.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    margin: 0;
}

.company-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.footer .social-links {
    display: flex;
    gap: 1rem;
}

.footer .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .social-link:hover {
    background: var(--light);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.footer .social-link.facebook:hover {
    background: #3b5998;
    color: white;
}

.footer .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.footer .social-link.tiktok:hover {
    background: #000000;
    color: white;
}

.footer .social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

.footer .social-link.whatsapp:hover {
    background: #25d366;
    color: white;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--light), transparent);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-right: 1rem;
}

.footer-links a::before {
    content: '◀';
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-size: 0.7rem;
}

.footer-links a:hover {
    color: var(--light);
    padding-right: 1.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer .contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer .contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1rem;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .contact-details span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 0.3rem;
}

.footer .contact-details p {
    font-size: 1rem;
    color: var(--light);
    margin: 0;
    font-weight: 500;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

a {
    text-decoration: none;
}

.copyright a {
    margin-right: 10px !important;
}

.copyright a,
.copyright p {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    word-spacing: 3px !important;
}

.copyright img {
    margin-right: 15px;
    width: 30px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 40px 0 30px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer .social-links {
        flex-wrap: wrap;
    }
}