body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
}

/* ================= NAVBAR ================= */

.navbar {
    width: 92%;
    margin: 30px auto;
    padding: 15px 30px;
    background: #ffffff;
    border: 2px solid #1ea7d8;
    border-radius: 25px 0 25px 0;
    box-shadow: 0 15px 35px rgba(30, 167, 216, 0.35);

    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 20px;
    color: #1ea7d8;
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #1ea7d8;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    right: 0;
    background-color: #ffd84d;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* زر اللغة */

.lang-btn {
    background: transparent;
    border: 2px solid #1ea7d8;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #1ea7d8;
    transition: 0.3s;
}

.lang-btn:hover {
    background: #1ea7d8;
    color: white;
}

/* زر الانضمام */

.join-btn {
    padding: 10px 22px;
    background: #ffd84d;
    color: #333;
    text-decoration: none;
    border-radius: 14px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(255, 216, 77, 0.5);
}

.join-btn:hover {
    background: #1ea7d8;
    color: white;
    transform: translateY(-3px);
}

/* هامبرغر */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #1ea7d8;
}

/* Dropdown */

.dropdown {
    position: relative;
}

.drop-btn {
    background: none;
    border: none;
    font-weight: 600;
    color: #1ea7d8;
    cursor: pointer;
    font-size: 16px;
}

.dropdown-menu {
    position: absolute;
    top: 40px;
    right: 0;
    background: #ffffff;
    border: 2px solid #1ea7d8;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(30, 167, 216, 0.25);
    list-style: none;
    padding: 10px 0;
    width: 220px;
    display: none;
    z-index: 1000;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu a {
    text-decoration: none;
    color: #000;
}

/* ================= HERO ================= */

.hero {
    width: 92%;
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    border: 2px solid #1ea7d8;
    border-radius: 25px 0 25px 0;
    box-shadow: 0 15px 35px rgba(30, 167, 216, 0.35);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.6;
}

.brand-name {
    color: #1ea7d8;
}

.hero-content p {
    font-size: 18px;
    color: #000;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.secondary-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #1ea7d8;
    border-radius: 14px;
    text-decoration: none;
    color: #1ea7d8;
    font-weight: 600;
    transition: 0.3s;
}

.secondary-btn:hover {
    background: #1ea7d8;
    color: white;
}

.hero-image {
    width: 40%;
    display: flex;
}

.hero-image img {
    width: 100%;
    object-fit: contain;
    border-radius: 20px;
}

/* ================= CARDS ================= */

.audience {
    width: 92%;
    margin: 60px auto;
    padding: 50px 30px;
    background: #ffffff;
    border: 2px solid #1ea7d8;
    border-radius: 25px 0 25px 0;
    box-shadow: 0 15px 35px rgba(30, 167, 216, 0.35);
    text-align: center;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.card {
    padding: 25px;
    border-radius: 20px;
    border: 2px solid #789c3e; /* عدلي اللون حسب هويتك */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;   
    text-align: center;
    background: #fff;
}

/* تأثير أنيق عند المرور */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* الأيقونة */
.card-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}
.card.yellow {
    background: #ffd84d;
    border-color: #1ea7d8;
}

.card.blue {
    background: #1ea7d8;
    border-color: #ffd84d;
    color: white;
}
/* Responsive */
@media (max-width: 768px) {
    .card {
        padding: 20px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 18px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
    }
}



/* ================= ABOUT ================= */

.about-barq {
    width: 92%;
    margin: 80px auto;
    padding: 50px 40px;
    background: #ffffff;
    border: 2px solid #1ea7d8;
    border-radius: 25px 0 25px 0;
    box-shadow: 0 15px 35px rgba(30, 167, 216, 0.35);
    display: flex;
    gap: 40px;
}

.about-video {
    width: 45%;
   
}

.about-video video {
    width: 100%;
     height: auto;
    border-radius: 20px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .hero,
    .about-barq {
        flex-direction: column;
        text-align: center;
    }

    .hero-image,
    .about-video {
        width: 100%;
        margin-top: 30px;
    }

    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        flex-direction: column;
        background: #ffffff;
        display: none;
        padding: 20px 0;
        border-radius: 20px;
        border: 2px solid #1ea7d8;
        box-shadow: 0 15px 35px rgba(30, 167, 216, 0.25);
    }

    .nav-links.active {
        display: flex;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    /* أهم تعديل: لا نخفي زر الانضمام */
    .join-btn {
        display: inline-block;
    }
}
/* ================= AMBASSADOR SECTION ================= */

.ambassador-section {
    width: 92%;
    margin: 80px auto;
    padding: 60px 40px;
    background: #ffffff;
    border: 2px solid #1ea7d8;
    border-radius: 25px 0 25px 0;
    box-shadow: 0 15px 35px rgba(30, 167, 216, 0.35);
    text-align: center;
}

.section-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #000;
}

.main-heading {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sub-text {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 40px auto;
}

.video-wrapper video {
    width: 100%;
    border-radius: 20px;
    border: 2px solid #1ea7d8;
    box-shadow: 0 10px 30px rgba(30, 167, 216, 0.3);
}

/* CTA Button */

.cta-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #ffd84d;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    border-radius: 14px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(255, 216, 77, 0.5);
}

.cta-btn:hover {
    background: #1ea7d8;
    color: white;
    transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .ambassador-section {
        padding: 40px 20px;
    }

    .main-heading {
        font-size: 22px;
    }

    .sub-text {
        font-size: 16px;
    }

    .cta-btn {
        width: 100%;
        padding: 14px;
    }
}

/* ===== Footer ===== */

.footer {
    width: 92%;
    margin: 70px auto 40px;
    padding: 50px 30px 20px;
    background: #ffffff;
    border: 2px solid #1ea7d8;
    border-radius: 25px 0 25px 0;
    box-shadow: 0 15px 35px rgba(30,167,216,0.3);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer h3 {
    color: #1ea7d8;
    margin-bottom: 15px;
}

.footer h4 {
    margin-bottom: 15px;
    color: #000;
}

.footer p {
    line-height: 1.7;
    font-size: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #1ea7d8;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer {
        padding: 40px 20px 20px;
    }
}