
* {
    scroll-margin-top: 160px;
}

/* ========== Hero Section - معرفی شرکت ========== */
.company-hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #0f3460 70%, #16213e 100%);
}

.company-hero-section .hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(14, 165, 234, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(11, 209, 209, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.company-hero-section .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.company-hero-section .hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px 80px;
    width: 100%;
}

.company-hero-section .hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(14, 165, 234, 0.2);
    border: 1px solid rgba(14, 165, 234, 0.4);
    border-radius: 50px;
    font-size: 0.9rem;
    color: #7dd3fc;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.company-hero-section .hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, rgb(14, 165, 234), rgb(11, 209, 209) 51%, rgb(14, 165, 234)) var(--x, 0)/200%;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.2;
}

.company-hero-section .hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #b9e0f2;
    margin-bottom: 15px;
    font-weight: 600;
}

.company-hero-section .hero-description {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.company-hero-section .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.company-hero-section .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: linear-gradient(90deg, rgb(14, 165, 234), rgb(11, 209, 209));
    border: none;
    border-radius: 12px;
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 234, 0.4);
}

.company-hero-section .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 234, 0.5);
    color: #fff !important;
}

.company-hero-section .btn-hero-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid rgba(14, 165, 234, 0.6);
    border-radius: 12px;
    color: #7dd3fc !important;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.company-hero-section .btn-hero-outline:hover {
    background: rgba(14, 165, 234, 0.15);
    border-color: rgb(14, 165, 234);
    transform: translateY(-3px);
    color: #b9e0f2 !important;
}

.company-hero-section .hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.company-hero-section .hero-stat-item {
    text-align: center;
}

.company-hero-section .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7dd3fc;
    background: linear-gradient(90deg, rgb(14, 165, 234), rgb(11, 209, 209));
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.company-hero-section .stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
}

.company-hero-section .hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(148, 163, 184, 0.3);
}

.company-hero-section .hero-scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(148, 163, 184, 0.8);
    font-size: 0.8rem;
}

.company-hero-section .scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(148, 163, 184, 0.5);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.company-hero-section .scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(14, 165, 234, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: heroScroll 2s infinite;
}

@keyframes heroScroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

@media (max-width: 768px) {
    .company-hero-section {
        min-height: 450px;
    }
    .company-hero-section .hero-content-wrapper {
        padding: 40px 15px 70px;
    }
    .company-hero-section .hero-stat-divider {
        display: none;
    }
    .company-hero-section .hero-stats {
        gap: 15px;
        padding: 20px;
    }
}

/* Feature icons with Font Awesome inside */
.box-features .item-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* About Us Section Styles */
.section-box {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: #fff;
    border-radius: 15px;
    margin-bottom: 50px;
}

.box-inner-activity {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.box-inner-activity:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.box-inner-activity .color-linear {
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.list-checked {
    list-style: none;
    padding-left: 0;
}

.list-checked li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.list-checked li:last-child {
    margin-bottom: 0;
}

.list-checked li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    color: #667eea; /* Primary color for checkmark */
    font-size: 1.1rem;
}

.list-checked li h5 {
    margin-bottom: 5px;
    font-size: 1.25rem;
    font-weight: 600;
}

/* About Us Section Styles */
.section-box {
    padding: 15px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
}

.box-inner-activity {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.box-inner-activity:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.box-inner-activity .color-linear {
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.list-checked {
    list-style: none;
    padding-left: 0;
}

.list-checked li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.list-checked li:last-child {
    margin-bottom: 0;
}

.list-checked li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    color: #667eea; /* Primary color for checkmark */
    font-size: 1.1rem;
}

.list-checked li h5 {
    margin-bottom: 5px;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.arrow {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.arrow span {
    width: 2px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    display: block;
    animation: arrowDown 1.5s infinite;
}

.arrow span:nth-child(1) { animation-delay: 0s; }
.arrow span:nth-child(2) { animation-delay: 0.2s; }
.arrow span:nth-child(3) { animation-delay: 0.4s; }

@keyframes arrowDown {
    0% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px); }
}


.list-checked li::before {
    content: unset;
}