* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #fff;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Layout */
.page-wrapper {
    width: min(100%, 1100px);
    margin: auto;
    background: #fff;
    padding: 15px;
}

.navbar {
    min-height: 42px;
}

.banner {
    width: 100%;
    padding: 0;
    background: linear-gradient(to bottom,#f8f8f8,#ffffff);
}

.banner img {
    display: block;
    width: 100%;
    max-width: 1000px;
    height: auto;
    object-fit: contain;
}
/* Pattern Section */
.pattern-section {
    position: relative;
    background-image: url('dd.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px,20px;
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
}
.pattern-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,rgba(255,255,255,0) 60%,rgba(255,255,255,1) 100%);
    pointer-events: none;
}

/* الكارت */
.catalog-card {
    width: 180px;
    height: 140px;
    background: #1e8b0256;
    border-radius: 15px;
    text-decoration: none;
    color: #000;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* الأيقونة */
.catalog-card .icon {
    font-size: 35px;
    margin-bottom: 10px;
}

/* النص */
.catalog-card p {
    margin: 0;
    font-size: 16px;
}

/* Hover */
.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgb(9, 90, 27);
}
.section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 35px;
    position: relative;

    /* Gradient Text */
    background: linear-gradient(90deg, #044e2c, #064414);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    letter-spacing: 1px;
}

/* الخط تحت */
.section-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #044927, #014110);
    display: block;
    margin: 12px auto 0;
    border-radius: 10px;

    animation: lineGrow 0.8s ease;
}

/* Contact */
.contact-section {
    text-align: center;
}

.contact-section {
    
    direction: ltr;
    
}
/* الكارت */
.contact-card {
    background: #e9f7ef; /* أخضر فاتح */
    border: 2px solid #198754;
    border-radius: 15px;
    padding: 20px;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* كل سطر */
.contact-row {
    padding: 10px 0;
    border-bottom: 1px solid #d4edda;
    font-size: 15px;
}

/* آخر سطر بدون خط */
.contact-row:last-child {
    border-bottom: none;
}

/* اللينكات */
.link,
.whatsapp-link {
    text-decoration: none;
    color: #000;
}

/* واتساب */
.whatsapp-link {
    color: #25D366;
    font-weight: bold;
}

/* Hover */
.link:hover,
.whatsapp-link:hover {
    text-decoration: underline;
}

.contact-item i {
    margin-right: 8px;
    font-size: 16px;
}

.contact-item:hover i {
    transform: scale(1.1);
}
.contact-item i {
    color: #1877f2;
}
.catalog-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}



/* أنيميشن */
@keyframes lineGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 70px;
        opacity: 1;
    }
}

/* حركة خفيفة */
.section-title {
    animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive */
@media (max-width: 768px) {
    .page-wrapper {
        padding: 10px;
    }

    .navbar {
        min-height: 36px;
    }

    .banner {
        padding: 18px 0 8px;
    }

    .banner img {
        width: 100%;
    }

    .buttons-section {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-main {
        width: min(100%, 320px);
    }

    .contact-item {
        width: 100%;
        margin: 6px 0;
    }
}
