@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
    --primary-color: #1A5632;
    --primary-light: #2B7237;
    --secondary-color: #D8E45A;
    --accent-color: #F58A22;
    --dark-bg: #023118;
    --light-bg: #F4F7F5;
    --white: #ffffff;
    --text-dark: #1C293F;
    --text-light: #5C6356;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--text-dark);
    direction: rtl;
}

.hero-logo {
    margin-bottom: 30px;
}
.hero-logo img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}
@media (max-width: 768px) {
    .hero-logo img {
        max-width: 140px;
    }
}
@keyframes rotate-loading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.vl-header-area {
    padding: 20px 0;
    transition: all 0.4s;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: fadeInDown 0.7s;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 999;
}

@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-100%); }
    100% { opacity: 1; transform: translateY(0); }
}

.vl-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.vl-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.vl-main-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.vl-main-menu ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s;
    position: relative;
}

.vl-main-menu ul li a:hover,
.vl-main-menu ul li a.active {
    color: var(--primary-color);
}

/* Buttons */
.btnhm9 {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 200px;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary-color) 100%);
    text-decoration: none;
    transition: all 0.4s;
    border: none;
    cursor: pointer;
}

.btnhm9:hover {
    transform: translateY(-3px);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(26,86,50,0.3);
}

.btnhm9-2 {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid var(--primary-light);
    padding: 12px 24px;
    border-radius: 200px;
    text-decoration: none;
    transition: all 0.4s;
    background: transparent;
}

.btnhm9-2:hover {
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--white);
    transform: translateY(-3px);
}


.hero-description {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-description strong {
    color: #ffffff;
    font-weight: 700;
}


.vl-hero9-area {
    position: relative;
    padding: 150px 0 250px;
    overflow: hidden;
}

.hero9-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero9-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero9-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.vl-hero9-info {
    position: relative;
    z-index: 2;
}

.hero9-author h3 {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--white);
    font-size: 16px;
}

.hero9-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .hero9-title { font-size: 32px; }
}

/* Stats Section */
.stats-box {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    transition: all 0.4s;
    text-align: center;
}

.stats-box:hover {
    transform: translateY(-8px);
}

.stats-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stats-icon i {
    font-size: 30px;
    color: var(--white);
}

.stats-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

/* President Message - New Styles */
.president-message {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.president-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
}

.president-content {
    flex: 1;
    padding: 40px;
}

.president-image {
    flex: 0.8;
    height: 100%;
    min-height: 400px;
}

.president-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .president-wrapper {
        flex-direction: column;
    }
    .president-image {
        width: 100%;
        min-height: 300px;
    }
    .president-content {
        padding: 30px;
    }
}

.president-content .lead {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.president-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.signature h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 40px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    color: var(--accent-color);
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px 15px 5px;
    font-size: 20px;
}

.product-card p {
    padding: 0 15px 20px;
    color: var(--text-light);
}

/* Mission & Vision */
.mission-box {
    background: var(--primary-color);
    padding: 35px;
    border-radius: 20px;
    color: var(--white);
    height: 100%;
}

.mission-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-box h3 i {
    font-size: 32px;
}

.mission-box p {
    font-size: 18px;
    line-height: 1.7;
}


.vision-box {
    background: var(--primary-color);
    padding: 35px;
    border-radius: 20px;
    color: var(--white);
    height: 100%;
}

.vision-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision-box h3 i {
    font-size: 32px;
}

.vision-box p {
    font-size: 18px;
    line-height: 1.7;
}



/* CTA Section */
.cta-wrapper {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    padding: 50px;
    border-radius: 20px;
    color: var(--white);
}

.cta-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Footer */
.vl-footer2-area {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
}

.footer-logo img {
    width: 80px;
    margin-bottom: 15px;
}

.footer-links h3, .footer-contact h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li, .footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links ul li a, .footer-contact ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links ul li a:hover, .footer-contact ul li a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.footer-contact ul li i {
    width: 25px;
    margin-left: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--white);
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
}

/* Responsive */
@media (max-width: 991px) {
    .vl-main-menu { display: none; }
    .cta-wrapper { text-align: center; }
    .cta-wrapper .text-lg-end { text-align: center !important; margin-top: 20px; }
}

/* Spacing */
.space24 { height: 24px; }
.space30 { height: 30px; }
.space60 { height: 60px; }
.sp1 { padding: 60px 0; }
.sp2 { padding: 80px 0; }
.sp6 { padding: 100px 0; }

/* Animation */
.text-effect {
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


.goals-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.goals-header {
    text-align: center;
    margin-bottom: 50px;
}

.goals-subtitle {
    display: inline-block;
    background: rgba(26,86,50,0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.goals-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.goal-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.goal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.goal-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(26,86,50,0.08);
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: 'Tajawal', sans-serif;
}

.goal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.goal-icon i {
    font-size: 32px;
    color: var(--white);
}

.goal-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.goal-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.president-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
}

.president-content {
    flex: 1;
    padding: 40px;
}

.president-image {
    flex: 0.8;
    height: 100%;
    min-height: 400px;
}

.president-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .president-wrapper {
        flex-direction: column;
    }
    .president-image {
        width: 100%;
        min-height: 300px;
    }
    .president-content {
        padding: 30px;
    }
}



.value-card-modern {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.value-card-modern:hover {
    transform: translateY(-8px);
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s;
}

.value-card-modern:hover .value-icon-wrapper {
    transform: scale(1.05);
}

.value-icon-wrapper i {
    font-size: 38px;
    color: var(--white);
}

.value-card-modern h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card-modern p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}

.value-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(26,86,50,0.06);
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: 'Tajawal', sans-serif;
    line-height: 1;
}

.vl-values-area .section-subtitle img {
    max-width: 30px;
    margin-left: 8px;
}




.product-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s;
    height: 100%;
}
.product-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.product-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-detail-card:hover .product-detail-img img {
    transform: scale(1.05);
}
.product-detail-info {
    padding: 25px;
    text-align: center;
}
.product-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}
.category-title {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}
.category-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto;
}

.product-card img {
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    object-position: center; 
    max-width: 100%; 
}
