@font-face{font-family:coconnextarabic-regular;font-style:normal;font-weight:600;src:url(fonts/CoconNextArabic-Regular.woff2) format('woff2')}
body {
      font-family: 'CoconNextArabic-Regular', sans-serif!important;
	  background: #3f51b529;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

:root {
    --primary-blue: #3b82f6;
    --primary-blue-dark: #2563eb;
    --primary-blue-light: #60a5fa;
    --secondary-green: #10b981;
    --secondary-orange: #f59e0b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}



.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 7px;
}

.box {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.box:hover {
    box-shadow: var(--shadow-md);
}

/* HEADER */
.header {
    background: var(--bg-white);
    padding: 8px 25px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo a {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.logo a:hover {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    gap: 5px;
}

.nav-link {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
}

.nav-link.active {
    background: var(--primary-blue);
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    padding: 20px;
    transform: translateY(-100%);
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
}

.mobile-nav-link {
    display: block;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 500;
}

.mobile-nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-align: center;
    border-radius: var(--radius);
    margin: 20px 15px;
    padding: 60px 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section p {
    font-size: 20px;
    opacity: 0.95;
    font-weight: 400;
}

/* SEARCH BOX */
.search-box {
    margin: 25px 20px;
    background: var(--bg-white);
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    background: transparent;
    color: var(--text-dark);
    font-family: 'Tajawal', sans-serif;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box form {
    width: 100%;
    display: flex;
}

/* FOLDERS SECTION */
.folders-section {
    padding: 0 10px 30px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.folders-container {
    margin-top: 20px;
}

.folders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.folder-item,.folder-item10 {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.folder-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
    transform: scaleX(0);
    transition: var(--transition);
}
.folder-item10::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,#d29405, #daa325);
    transform: scaleX(0);
    transition: var(--transition);
}
.folder-item:hover::before {
    transform: scaleX(1);
}
.folder-item10:hover::before {
    transform: scaleX(1);
}
.folder-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue-light);
}
.folder-item10:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #d29405;
}
.folder-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
    transition: var(--transition);
}

.folder-item:hover .folder-icon {
    transform: scale(1.1) rotate(5deg);
}

.folder-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.3));
}

.item-count {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--primary-blue);
    color: white;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}
.item-count10 {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #d29405;
    color: white;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}
.folder-name {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
}

/* STATS SECTION */
.stats-section {
    background: var(--bg-white);
    margin: 50px 20px 30px;
    padding: 50px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.stat-icon.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.stat-icon.green { background: linear-gradient(135deg, #10b981, #059669); }
.stat-icon.orange { background: linear-gradient(135deg, #f59e0b, #d97706); }

.stat-number {
    font-size: 40px;
    font-weight: 800;
    margin-top: 15px;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
}

/* BREADCRUMB */
.breadcrumb-box {
    border-radius: var(--radius);
    margin: 10px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.breadcrumb-box a {
    display: block;
    transition: var(--transition);
}

.breadcrumb-box a:hover {
    transform: translateX(-3px);
}

.t1, .t2, .t3, .t4, .t5 {
    padding: 15px 20px;
    color: white;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.t {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
    padding: inherit;
    gap: 8px;
}

.t1 { background: linear-gradient(135deg, #3f51b5, #3F51B5); }
.t2 { background: linear-gradient(135deg, #3f51b5a1, #3f51b5e3); }
.t3 { background: linear-gradient(135deg, #3f51b5a1, #3f51b5d6); }
.t4 { background: linear-gradient(135deg, #4caf50, #4caf50); }
.t5 { background: linear-gradient(135deg, #7db198, #4caf50bf); }

/* SIDEBAR */
.sidebar-right {
    position: fixed;
    top: 95px;
    right: 25px;
    width: 240px;
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 999;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.sidebar-right h3 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #1d4ed8;
    text-align: center;
}

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

.sidebar-right ul li {
    margin-bottom: 8px;
}

.sidebar-right ul li a {
    display: block;
    padding: 8px 10px;
    background: #f1f5f9;
    border-radius: 8px;
    color: #1e293b;
    font-size: 14px;
    transition: 0.3s;
}

.sidebar-right ul li a:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateX(-5px);
}

/* FOOTER */
.site-footer {
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #cbd5e1;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    color: #94a3b8;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul a {
    color: #cbd5e1;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul a:hover {
    color: var(--primary-blue-light);
    transform: translateX(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 20px;
    font-size: 14px;
    background: #020617;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .sidebar-right {
        display: none;
    }

    #main-content {
        margin-right: 0;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (min-width: 993px) {
    #main-content {
        margin-right: 270px;
    }
}

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

    .hero-section h1 {
        font-size: 26px;
    }
 
    .hero-section p {
        font-size: 16px;
    }

    .folders-grid {
        grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
        gap: 10px;
    }

    .folder-item {
        padding: 25px 15px;
    }

    .folder-icon {
        width: 70px;
        height: 70px;
    }

    .folder-name {
        font-size: 15px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .header h1 {
        font-size: 18px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 22px;
    }

    .hero-section p {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .stat-number {
        font-size: 32px;
    }

    .search-box {
        padding: 12px 20px;
    }
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.folder-item,
.stat-card {
    animation: fadeIn 0.5s ease-out forwards;
}

.folder-item:nth-child(1) { animation-delay: 0.1s; }
.folder-item:nth-child(2) { animation-delay: 0.2s; }
.folder-item:nth-child(3) { animation-delay: 0.3s; }
.folder-item:nth-child(4) { animation-delay: 0.4s; }
.folder-item:nth-child(5) { animation-delay: 0.5s; }
.folder-item:nth-child(6) { animation-delay: 0.6s; }

/* UTILITIES */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}
