html {
    font-size: 100%;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #ffffff;
    color: #333;
}

header {
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* ✅ الخلفية وارتفاع الترويسة فقط للصفحة الرئيسية */
header.homepage {
    background: url('/img/intro.jpg') center/cover no-repeat;
}

/* ✅ الترويسة الطويلة فقط لصفحة الهوم */
header.homepage .header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 2rem;
    margin-top: 80px;
}

/* ✅ ترويسة بسيطة للصفحات الداخلية */
.header-content {
    padding: 2rem;
}

.header-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.header-logos img {
    height: 80px;
    max-width: 220px;
    object-fit: contain;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(5px);
}

.navbar-center {
    display: flex;
    justify-content: center;
    flex: 1;
}

.navbar-links {
    display: flex;
    gap: 2rem;
}

.navbar-links a {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
}

.navbar-icons {
    display: flex;
    align-items: center;
}

.navbar-icons i {
    color: white;
    margin-right: 1rem;
    cursor: pointer;
}

.logo {
    width: 220px;
    height: auto;
    padding: 0.25rem 0.5rem;
}

footer {
    background-color: #1b6b71;
    color: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    padding: 3rem 1.5rem 1rem;
}

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
}

.footer-logo img {
    width: 190px;
    margin-bottom: 1rem;
}

.footer-social i {
    margin-left: 1rem;
    font-size: 1.25rem;
    cursor: pointer;
}

.section-green {
    background-color: #1b6b71;
    color: white;
}

.section-golden {
    background-color: #a87d2d;
    color: #fff;
}

.section-white {
    background-color: #ffffff;
}

.section {
    padding: 4rem 1rem;
}

.section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: #1b6b71;
    color: #fff;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #15595d;
}

.icon {
    margin-left: 0.5rem;
}

.card {
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    background: white;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
}

.partners-logos img {
    max-width: 120px;
    height: auto;
}

.navbar-icons i {
    @apply text-white dark:text-white;
}

.dark .bg-none {
    background-image: none !important;
}
.page-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(3px);
    padding: 3rem 1rem 2rem;
     border-bottom: 1px solid #ddd;
    text-align: center;
}

.page-header h1 {
    font-size: 1.875rem; /* text-3xl */
    font-weight: bold;
 }
.section-green {
    background-color: #1b6b71;
    color: white;

}
/* ✅ خلفية للصفحات العادية */
header.page-header {
    background: url('/img/page-intro.jpg') center/cover no-repeat;
    height: 260px;

    color: white;
}

/* ✅ محتوى الترويسة */
.page-header .header-content {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 3rem;
     text-align: center;

}
