*{
    text-decoration: none;
    font-family: 'Nunito', 'Quicksand', 'tajawal', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

/* WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #F5FAF7;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #1C8F5A;
    border-radius: 6px;
    border: 2.5px solid #F5FAF7;
    transition: all 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    cursor: grab;
    background: #157648;
} 

/* Firefox */
body {
    scrollbar-width: thin;
    scrollbar-color: #1C8F5A #F5FAF7;
}


html{
    scroll-behavior: smooth;
}

body {
    color: #1A2E25;
    min-height: 100vh;
    background: #F5FAF7;
    text-align: center;
    line-height: 1.6;
}

/* Transparent/Light navbar */
.navbar {
    cursor: default;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(28, 143, 90, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 24px;
    color: #1C8F5A;
    font-family: 'Nunito', sans-serif;
}

.logo-icon img {
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Right icons */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

a{
    text-decoration: none;

}

.nav-icon {
    height: 40px;
    background: rgba(28, 143, 90, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(28, 143, 90, 0.2);
    color: #1A2E25;
    font-weight: 600;
}

.nav-icon:hover {
    background: #1C8F5A;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 143, 90, 0.3);
}

/* Optional: Add a very subtle top highlight */
.navbar::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

nav.navbar div.dropdown{
    display: none;
    height: 32px;
    width: 32px;
    position: relative;
    z-index: 1001;
}

nav.navbar div.dropdown div.dropdownContent{
    display: none;
}

nav.navbar div.dropdown div.slideMenu{
    position: absolute;
    cursor: pointer;
}

/* Footer styling */
footer{
    width: 90%;
    max-width: 1200px;
    height: 70px;
    margin: auto;
    display: flex;
    font-size: 1em;
    padding-bottom: 5px;
    border-radius: 20px 20px 0 0;
    border: 1px solid rgba(28, 143, 90, 0.1);
    border-bottom: none;
    background: rgba(28, 143, 90, 0.05);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.05);
    padding: 0 30px;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    overflow: hidden;
}

footer div.contact a{
    text-decoration: none;
}

footer div.contact a:hover{
    color: #1C8F5A;
}

footer div.contact a i{
    color: #1C8F5A;
    font-size: 28px;
    margin: 0px 12px;
    transition: all 0.3s ease;
}

footer div.contact a i:hover{
    color: #157648;
    transform: translateY(-2px);
}

footer div.copyright p{
    font-size: 16px;
    position: relative;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #4E6B5A;
}


/* ===== MAIN LAYOUT ===== */
main {
    margin-top: 70px;
}

/* ===== SECTION SHARED ===== */
.section-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 30px;
}

.details {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(28, 143, 90, 0.12);
    color: #1C8F5A;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.details span.header {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #1A2E25;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: #4E6B5A;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== HERO ===== */
main section.first-head {
    background: linear-gradient(135deg, #e8f5ee 0%, #f5faf7 60%, #d4eddf 100%);
    border-bottom: 1px solid rgba(28, 143, 90, 0.08);
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    text-align: right;
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(28, 143, 90, 0.12);
    color: #1C8F5A;
    font-size: 14px;
    font-weight: 700;
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 18px;
    border: 1px solid rgba(28, 143, 90, 0.2);
}

main section.first-head .hero-text span.header {
    display: block;
    font-size: 64px;
    font-weight: 900;
    color: #1C8F5A;
    font-family: 'Nunito', sans-serif;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-sub {
    font-size: 22px;
    font-weight: 700;
    color: #1A2E25;
    margin-bottom: 14px;
    line-height: 1.5;
}

.hero-desc {
    font-size: 17px;
    color: #4E6B5A;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1C8F5A;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(28, 143, 90, 0.3);
}

.cta-btn:hover {
    background: #157648;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(28, 143, 90, 0.4);
    color: #fff;
}

.hero-img {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img img {
    border-radius: 20px;
    width: 320px;
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(28, 143, 90, 0.2));
}

/* ===== OUR PROJECT ===== */
main section.first-body {
    background: #fff;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: #F5FAF7;
    border: 1px solid rgba(28, 143, 90, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(28, 143, 90, 0.12);
    border-color: rgba(28, 143, 90, 0.25);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(28, 143, 90, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: #1C8F5A;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1A2E25;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: #4E6B5A;
    line-height: 1.7;
}

/* ===== VISION ===== */
main section.second-body {
    background: linear-gradient(135deg, #1C8F5A 0%, #157648 100%);
    color: #fff;
}

main section.second-body .details span.header {
    color: #fff;
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 860px;
    margin: 0 auto;
}

.vision-icon-wrap {
    flex: 0 0 auto;
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vision-text {
    flex: 1;
    text-align: right;
}

.vision-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
}

/* ===== OUR TEAM ===== */
main section.third-body {
    background: #F5FAF7;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.team-card {
    background: #fff;
    border: 1px solid rgba(28, 143, 90, 0.1);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.team-card.ceo {
    grid-column: span 3;
    justify-content: center;
    background: linear-gradient(135deg, #edf8f2, #dff2ea);
    border-color: rgba(28, 143, 90, 0.2);
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(28, 143, 90, 0.1);
    border-color: rgba(28, 143, 90, 0.3);
}

.team-avatar {
    width: 52px;
    height: 52px;
    background: rgba(28, 143, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1C8F5A;
    flex-shrink: 0;
}

.team-card.ceo .team-avatar {
    width: 64px;
    height: 64px;
    background: #1C8F5A;
    font-size: 26px;
    color: #fff;
}

.team-info {
    text-align: right;
}

.team-role {
    font-size: 12px;
    color: #1C8F5A;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.team-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1A2E25;
}

.team-card.ceo h3 {
    font-size: 20px;
}

/* ===== GALLERY ===== */
main section.gallery-section {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #e8f5ee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 24px 14px 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: right;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

@keyframes lb-img-fade {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}

.lightbox-inner {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-inner img {
    max-width: 88vw;
    max-height: 80vh;
    border-radius: 12px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: lb-img-fade 0.25s ease;
}

.lightbox-caption {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 600;
    margin-top: 14px;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    left: 24px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.3); }

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 36px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.3); }

.lightbox-prev { right: 20px; }
.lightbox-next { left: 20px; }


/* ===== ACHIEVEMENTS ===== */
main section.achievements-section {
    background: #F5FAF7;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.achievement-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(28, 143, 90, 0.1);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.achievement-card.gold { border-top: 4px solid #F59E0B; }
.achievement-card.bronze { border-top: 4px solid #CD7C3A; }
.achievement-card.green { border-top: 4px solid #1C8F5A; }
.achievement-card.blue { border-top: 4px solid #3B82F6; }

.achievement-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.achievement-card.gold .achievement-icon { background: rgba(245,158,11,0.12); color: #F59E0B; }
.achievement-card.bronze .achievement-icon { background: rgba(205,124,58,0.12); color: #CD7C3A; }
.achievement-card.green .achievement-icon { background: rgba(28,143,90,0.12); color: #1C8F5A; }
.achievement-card.blue .achievement-icon { background: rgba(59,130,246,0.12); color: #3B82F6; }
.achievement-card.purple { border-top: 4px solid #8B5CF6; }
.achievement-card.purple .achievement-icon { background: rgba(139,92,246,0.12); color: #8B5CF6; }
.achievement-card.orange { border-top: 4px solid #F97316; }
.achievement-card.orange .achievement-icon { background: rgba(249,115,22,0.12); color: #F97316; }

.achievement-body {
    text-align: right;
    flex: 1;
}

.achievement-year {
    font-size: 12px;
    font-weight: 700;
    color: #9CA3AF;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.achievement-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1A2E25;
    margin-bottom: 8px;
    line-height: 1.4;
}

.achievement-card p {
    font-size: 14px;
    color: #4E6B5A;
    line-height: 1.7;
}

/* Media Coverage */
.media-section {
    text-align: center;
}

.media-title {
    font-size: 14px;
    font-weight: 700;
    color: #4E6B5A;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.media-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.media-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(28, 143, 90, 0.15);
    border-radius: 30px;
    padding: 12px 24px;
    color: #1A2E25;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.media-card i {
    color: #1C8F5A;
    font-size: 16px;
}

.media-card:hover {
    background: #1C8F5A;
    color: #fff;
    border-color: #1C8F5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28,143,90,0.25);
}

.media-card:hover i {
    color: #fff;
}

/* Podcast embed */
.podcast-wrap {
    margin-top: 32px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.podcast-label {
    font-size: 14px;
    font-weight: 700;
    color: #4E6B5A;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.podcast-label i {
    color: #1C8F5A;
    font-size: 16px;
}

.podcast-player {
    width: 100%;
    height: 166px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(28, 143, 90, 0.12);
}


/* ===== INQUIRE ===== */
main section.fourth-body {
    background: #fff;
}

/* Contact Form Card */
.contact-form-card {
    background: #F5FAF7;
    border: 1px solid rgba(28, 143, 90, 0.12);
    border-radius: 20px;
    padding: 32px 32px 28px;
    max-width: 900px;
    margin: 0 auto 20px;
}

.contact-form-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    text-align: right;
}

.contact-form-head .contact-icon {
    flex-shrink: 0;
}

.contact-form-head .contact-label {
    display: block;
    margin-bottom: 3px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-input {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(28, 143, 90, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    font-family: inherit;
    color: #1A2E25;
    transition: all 0.25s ease;
    outline: none;
    direction: auto;
}

.form-input:focus {
    border-color: #1C8F5A;
    box-shadow: 0 0 0 3px rgba(28, 143, 90, 0.1);
}

.form-input::placeholder {
    color: #9CA3AF;
    direction: rtl;
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.form-submit {
    align-self: flex-start;
    background: #1C8F5A;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #157648;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 143, 90, 0.3);
}

.form-sent {
    font-size: 14px;
    color: #1C8F5A;
    font-weight: 600;
    margin-top: 4px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #F5FAF7;
    border: 1px solid rgba(28, 143, 90, 0.1);
    border-radius: 20px;
    padding: 28px 24px;
    color: #1A2E25;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(28, 143, 90, 0.12);
    border-color: #1C8F5A;
    background: #fff;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(28, 143, 90, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1C8F5A;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: #1C8F5A;
    color: #fff;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.contact-label {
    font-size: 12px;
    font-weight: 700;
    color: #4E6B5A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 15px;
    font-weight: 600;
    color: #1A2E25;
}

.contact-card-phone {
    cursor: default;
}

.contact-card-phone:hover {
    transform: translateY(-3px);
}

.contact-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.call-btn {
    background: rgba(28, 143, 90, 0.1);
    color: #1C8F5A;
    border: 1px solid rgba(28, 143, 90, 0.25);
}

.call-btn:hover {
    background: #1C8F5A;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 143, 90, 0.3);
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}


@media screen and (max-width: 768px){
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    main section.first-head div.details span.header,
    main section.first-head .hero-text span.header{
        font-size: 36px;
    }

    main section.first-body div.details span.header,
    main section.third-body div.details span.header{
        font-size: 28px;
    }

    main section.second-body div.details span.header{
        font-size: 32px;
    }

    .vision-content {
        flex-direction: column;
        text-align: center;
    }

    .vision-text {
        text-align: center;
    }

    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-card.ceo {
        grid-column: span 2;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 22px 18px;
    }
}

@media screen and (max-width: 1250px){

    nav.navbar{
        padding-left: 18px;
        padding-right: 18px;
    }

    nav.navbar div.nav-right{
        display: none;
    }

    nav.navbar div.dropdown{
        display: block;
    }

    nav.navbar div.dropdown div.slideMenu{
        font-size: 22px;
        width: auto;
        border: none;
        cursor: pointer;
        text-align: right;
        transition: 0.8s;
      }

      nav.navbar div.dropdown div.slideMenu:hover i{
        transform: translateX(-2px);
      }

    
    nav.navbar div.dropdown div.dropdownContent {
        display: flex;
        flex-direction: column;
        position: absolute;
        transform: translateX(100%);
        top: 80px;
        width: 90%;
        right: 0px;
        max-width: 300px;
        min-width: 230px;
        min-height: 230;
        max-height: 400px;
        overflow-y: auto;
        user-select: none;
        border: none;
        border-top: none;
        visibility: hidden;
        padding: 12px;
        transition: 0.5s;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.1);
        box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 0 30px rgba(0, 0, 0, 0.05),
        0 0 30px rgba(28, 143, 90, 0.05);
        background: rgba(101, 101, 101, 0.15);
        z-index: -1;
        transition: 0.5s;
        opacity: 0;
    }
    
    nav.navbar div.dropdown div.dropdownContent a{
        color: #FFFFFF;
        background: #1C8F5A;
        margin-top: 12px;
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 20px;
        font-weight: 600;
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
    }

    nav.navbar div.dropdown div.dropdownContent a:first-child{
        margin-top: 0px;
    }
    
    nav.navbar div.dropdown div.dropdownContent a:hover {
        background-color: #157648;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(28, 143, 90, 0.3);
    }

    .team-container {
        grid-template-columns: 1fr;
    }

    .team-card.ceo {
        grid-column: span 1;
    }

    .hero-img img {
        width: 200px;
    }

    .section-wrapper {
        padding: 60px 20px;
    }
}

/* ===== SYMPTOM CHECKER ===== */
main section.symptom-section {
    background: linear-gradient(135deg, #f0faf5 0%, #e8f5ee 100%);
    border-top: 1px solid rgba(28, 143, 90, 0.08);
}

.symptom-form {
    max-width: 760px;
    margin: 0 auto;
}

.symptom-group {
    background: #fff;
    border: 1px solid rgba(28, 143, 90, 0.12);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 20px;
    text-align: right;
}

.symptom-question {
    font-size: 17px;
    font-weight: 700;
    color: #1A2E25;
    margin-bottom: 16px;
}

.symptom-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.sym-btn {
    padding: 10px 22px;
    border: 2px solid rgba(28, 143, 90, 0.2);
    border-radius: 30px;
    background: #F5FAF7;
    color: #1A2E25;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Tajawal', sans-serif;
}

.sym-btn:hover {
    border-color: #1C8F5A;
    background: rgba(28, 143, 90, 0.08);
}

.sym-btn.selected {
    background: #1C8F5A;
    color: #fff;
    border-color: #1C8F5A;
    box-shadow: 0 4px 14px rgba(28, 143, 90, 0.3);
}

.symptom-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.sym-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #1A2E25;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1.5px solid rgba(28, 143, 90, 0.12);
    background: #F5FAF7;
    transition: all 0.2s ease;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.sym-check:hover {
    border-color: #1C8F5A;
    background: rgba(28, 143, 90, 0.06);
}

.sym-check input[type="checkbox"] {
    accent-color: #1C8F5A;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.sym-submit {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px auto 0;
    background: #1C8F5A;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(28, 143, 90, 0.3);
    font-family: 'Tajawal', sans-serif;
}

.sym-submit:hover {
    background: #157648;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28, 143, 90, 0.4);
}

.sym-result {
    margin-top: 28px;
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 600;
    animation: fadeInUp 0.4s ease;
}

.sym-result.mild {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.4);
    color: #166534;
}

.sym-result.moderate {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.4);
    color: #92400E;
}

.sym-result.severe {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.4);
    color: #7F1D1D;
}

.sym-result .result-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.sym-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #9CA3AF;
    margin-top: 18px;
    font-weight: 500;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== CHATBOT ===== */
.chatbot-wrapper {
    max-width: 760px;
    margin: 50px auto 0;
    background: #F5FAF7;
    border: 1px solid rgba(28, 143, 90, 0.15);
    border-radius: 24px;
    overflow: hidden;
}

.chatbot-header {
    background: #1C8F5A;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-direction: row-reverse;
    text-align: right;
}

.chatbot-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.chatbot-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.chatbot-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.chatbot-messages {
    padding: 20px;
    min-height: 220px;
    max-height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.7;
    word-break: break-word;
    animation: fadeInUp 0.25s ease;
}

.chat-bubble.bot {
    background: #fff;
    border: 1px solid rgba(28, 143, 90, 0.15);
    color: #1A2E25;
    align-self: flex-start;
    border-bottom-left-radius: 6px;
}

.chat-bubble.user {
    background: #1C8F5A;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}

.chatbot-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-top: 1px solid rgba(28, 143, 90, 0.1);
    background: #fff;
    direction: rtl;
}

.chat-input {
    flex: 1;
    border: 1.5px solid rgba(28, 143, 90, 0.2);
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 15px;
    font-family: 'Tajawal', sans-serif;
    background: #F5FAF7;
    color: #1A2E25;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input:focus {
    border-color: #1C8F5A;
    background: #fff;
}

.chat-send {
    width: 44px;
    height: 44px;
    background: #1C8F5A;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.chat-send:hover {
    background: #157648;
    transform: scale(1.08);
}

@media screen and (max-width: 768px) {
    .symptom-checks {
        grid-template-columns: 1fr;
    }

    .symptom-options {
        justify-content: center;
    }
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.stat-card {
    background: #F5FAF7;
    border: 1px solid rgba(28, 143, 90, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(28, 143, 90, 0.12);
}

.stat-card-accent {
    background: #1C8F5A;
    border-color: #1C8F5A;
}

.stat-card-accent .stat-icon,
.stat-card-accent .stat-number,
.stat-card-accent .stat-unit,
.stat-card-accent .stat-label {
    color: #fff;
}

.stat-card-region {
    background: linear-gradient(135deg, #1A2E25 0%, #1C8F5A 100%);
    border-color: transparent;
}

.stat-card-region .stat-icon,
.stat-card-region .stat-number,
.stat-card-region .stat-unit,
.stat-card-region .stat-label {
    color: #fff;
}

.stat-icon {
    font-size: 1.9rem;
    color: #1C8F5A;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1A2E25;
    font-family: 'Nunito', sans-serif;
    line-height: 1;
}

.stat-unit {
    font-size: 0.82rem;
    color: #4E6B5A;
    margin: 6px 0 10px;
    font-weight: 600;
}

.stat-label {
    font-size: 0.9rem;
    color: #4E6B5A;
    font-family: 'Tajawal', sans-serif;
    line-height: 1.5;
}

/* Interactive Scorpion Map */
.map-wrapper {
    margin-top: 36px;
}

#scorpion-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-svg-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(28, 143, 90, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.map-country {
    cursor: pointer;
    stroke: rgba(255, 255, 255, 0.7);
    stroke-width: 1.5;
    stroke-linejoin: round;
    transition: filter 0.2s ease, stroke-width 0.2s ease;
}

.map-country:hover,
.map-country.map-active {
    stroke: #fff;
    stroke-width: 3;
    filter: brightness(1.22) drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}

.map-legend {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding: 12px 18px;
    background: #F5FAF7;
    border-radius: 14px;
    border: 1px solid rgba(28, 143, 90, 0.1);
}

.legend-title {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1A2E25;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.legend-title i { color: #1C8F5A; }

.legend-items {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.82rem;
    color: #4E6B5A;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    display: inline-block;
    flex-shrink: 0;
}

/* Map tooltip */
.map-tooltip {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(28, 143, 90, 0.12);
    min-width: 180px;
    max-width: 240px;
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    text-align: right;
    pointer-events: none;
    line-height: 1.4;
    transition: opacity 0.2s ease;
}

.map-hint-text {
    font-size: 0.85rem;
    color: #4E6B5A;
    margin: 0;
}
.map-hint-text i {
    color: #1C8F5A;
    margin-left: 4px;
}

.map-country-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1A2E25;
    margin-bottom: 4px;
}

.map-country-cases {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1C8F5A;
    margin-bottom: 6px;
}

.map-country-desc {
    font-size: 0.82rem;
    color: #4E6B5A;
    line-height: 1.6;
}

/* Source note */
.stats-source {
    margin-top: 26px;
    padding: 16px 20px;
    background: #F5FAF7;
    border-radius: 14px;
    border-inline-end: 4px solid #1C8F5A;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.87rem;
    color: #4E6B5A;
    line-height: 1.8;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.stats-source i {
    color: #1C8F5A;
    margin-top: 3px;
    flex-shrink: 0;
}


@media screen and (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media screen and (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 400px) {
    .stats-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ===== PRODUCTS ===== */
main section.products-section {
    background: linear-gradient(160deg, #f8fdf9 0%, #eef7f3 100%);
    border-top: 1px solid rgba(28, 143, 90, 0.06);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(28, 143, 90, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 44px rgba(28, 143, 90, 0.14);
}

.product-canvas-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle at 50% 38%, #f0faf5 0%, #dff0e8 100%);
    cursor: grab;
    display: block;
}

.product-canvas-wrap:active {
    cursor: grabbing;
}

.product-canvas-wrap canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.product-info {
    padding: 22px 24px 28px;
    text-align: right;
}

.product-badge {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 3px 14px;
    border-radius: 30px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.product-badge-green {
    background: rgba(28, 143, 90, 0.11);
    color: #1C8F5A;
}

.product-badge-blue {
    background: rgba(74, 156, 196, 0.13);
    color: #2975a6;
}

.product-name {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A2E25;
    margin-bottom: 8px;
}

.product-desc {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.93rem;
    color: #4E6B5A;
    line-height: 1.75;
    margin-bottom: 14px;
}

.product-features {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.product-features span {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.8rem;
    color: #1C8F5A;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.products-note {
    text-align: center;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.86rem;
    color: #4E6B5A;
    margin-top: 18px;
    opacity: 0.7;
}

.products-note i {
    margin-left: 5px;
    color: #1C8F5A;
}

@media screen and (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}