@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap');

body {
    background-color: #121212;
    color: #fff;
    font-family: 'El Messiri', sans-serif;
    line-height: 1.6;
}


::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-thumb {
    background-color: #16800b;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #0c7500;
}
::-webkit-scrollbar-track {
    background-color: #aaa;
    border-radius: 3px;
}


    :root{
      --accent-green: #22aa22;
      --panel-width: 340px;
      --bg: #fff;
      --text: #222;
      --muted: #666;
      --bubble: #f1fdf1;
    }

    *{box-sizing:border-box;}

/* --- CSS Variables for Dark Mode --- */
:root {
    --bg: #1e1e1e;           /* Darkest background */
    --text: #f0f0f0;         /* Light text for readability */
    --muted: #c5c5c5;        /* Muted/Secondary text */
    --accent-green: #16800b; /* Primary accent color */
    --bubble: #282828;       /* Bot message bubble background */
    --panel-width: 340px;
}

#chat-widget {
    position: fixed;
    bottom: 30px; /* move above the WhatsApp button (30px + button height + gap) */
    right: 30px;  /* same as WhatsApp button for alignment */
    z-index: 9999999999;
}
#chat-widget #close-btn:hover{
background-color: transparent;
color: var(--accent-green);
}
/* --- Chat Toggle Button (#chat-toggle) --- */
#chat-toggle {
    /* Updated gradient for dark mode and new green accent */
    background: linear-gradient(180deg, var(--accent-green), #106008); 
    border: none;
    color: var(--text); /* Use light text on dark button */
    width: 64px;
    height: 64px;
    border-radius: 50%;
    /* Subtle shadow change for dark theme */
    box-shadow: 0 6px 18px rgba(0,0,0,0.4); 
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

#chat-widget.open #chat-toggle { display: none; }

#chat-toggle .dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 16px;
    height: 16px;
    /* Keeping the notification dot bright red for visibility */
    background: #ff3b30; 
    border-radius: 50%;
    /* Adjusted box-shadow opacity */
    box-shadow: 0 0 0 2px rgba(255,59,48,0.3); 
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    display: none;
    align-items: center;
    justify-content: center;
}

/* --- Chat Panel (#chat-panel) --- */
#chat-panel {
    width: var(--panel-width);
    max-height: 520px;
    height: 400px;
    background: var(--bg); /* Dark background */
    border-radius: 12px;
    /* Stronger shadow for contrast */
    box-shadow: 0 12px 40px rgba(0,0,0,0.5); 
    overflow: hidden;
    margin-bottom: 12px;
    display: none;
    flex-direction: column;
    transform-origin: bottom right;
}

#chat-widget.open #chat-panel { display: flex; border-radius: 15px; animation: fadeIn .18s ease; }

/* --- Chat Header (.chat-header) --- */
.chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    /* Subtle gradient for header background */
    background: linear-gradient(90deg, rgba(22,128,11,0.12), rgba(22,128,11,0.02)); 
    border-bottom: 1px solid rgba(255,255,255,0.08); /* Light border for separation */
}
.chat-header .logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--accent-green);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.chat-header .title {
    font-weight: 700;
    color: var(--text); /* Light text */
    flex: 1;
    text-align: right;
}
#close-btn {width:30px;}
.chat-header button {
    background: transparent;
    border: 0;
    font-size: 18px;
    cursor: pointer;
    color: var(--muted); /* Muted color for the close icon */
}

/* --- Welcome Message (.welcome) --- */
.welcome {
    padding: 12px 16px;
    color: var(--muted);
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04); /* Light border for separation */
    text-align: right
}

/* --- Chat Window (.chat-window) --- */
.chat-window {
    padding: 12px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    /* Lighter dark background for the chat area */
    background: linear-gradient(180deg, var(--bg), #1a1a1a); 
}

/* --- Messages (.msg) --- */
.msg {
    max-width: 86%;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.45;
}

/* User Message */
.msg.user {
    margin-left: auto;
    /* Light green background with dark green text for user */
    background: #1a4f1a; 
    color: #f0fff0;
    border-bottom-right-radius: 6px;
    text-align: right;
}

/* Bot Message */
.msg.bot {
    margin-right: auto;
    background: var(--bubble); /* Slightly lighter dark background for bot bubble */
    color: var(--text);
    border-bottom-left-radius: 6px;
    text-align: right;
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

/* --- Typing Indicator (.typing) --- */
.typing {
    display: flex;
    gap: 6px;
    align-items: center;
}
.typing .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--muted);
    opacity: 0.6; /* Increased opacity for visibility */
    animation: blink 1s infinite;
}
.typing .dot:nth-child(2) { animation-delay: .15s }
.typing .dot:nth-child(3) { animation-delay: .3s }

@keyframes blink {
    0% { transform: translateY(0); opacity: 0.3 }
    50% { transform: translateY(-4px); opacity: 1 }
    100% { transform: translateY(0); opacity: 0.3 }
}

/* --- Chat Form (#chat-form) --- */
#chat-form {
    display: flex;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid rgba(255,255,255,0.05); /* Light border for separation */
    background: var(--bg); /* Dark background */
}
#user-input {
    background: #282828; /* Slightly lighter input background */
    color: var(--text);
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06); /* Light border */
    outline: none;
    font-size: 14px;
    direction: rtl;
}
#send-btn {
    background: var(--accent-green);
    color: var(--text);
    border: 0;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    width: 20%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px) scale(.98) }
    to { opacity: 1; transform: none }
}

/* --- Mobile Styles --- */
@media (max-width:420px){
    #chat-panel{ width:100%; height: 500px;  right:0; left:0; border-radius:0; bottom:0; max-height:70vh; }
    #chat-widget{ right:8px; bottom:8px; }
}
@media (max-width: 420px) {
    #chat-widget {
        right: 30px;
        bottom: 30px;
    }
}

/* --- AI Popup (#ai-popup) --- */
#ai-popup {
    position: fixed;
    /* Light background with green tint for popup */
    background: #282828; 
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text);
    direction: rtl;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.6s ease;
    z-index: 99999;
}

/* --- Suggestions (.suggestions-list / .suggestion-btn) --- */
.suggestions-list {
    display: flex;
    gap: 10px; 
    justify-content: center; 
}

.suggestion-btn {
    /* Set border to accent green */
    border: 2px solid var(--accent-green); 
    border-radius: 10px; 
    padding: 5px;
    width: fit-content;
    background-color: transparent; 
    /* Text color is accent green */
    color: var(--accent-green); 
    font-size: 13px; 
    cursor: pointer;
    display: inline-block;
    transition: ease-in-out color 0.3s, ease-in-out background 0.3s;
}
.suggestion-btn:hover {
    /* Hover state is filled accent green with light text */
    background: var(--accent-green);
    color: var(--text);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #181818;
    padding: 20px; 
    height: 100px;
    border-bottom: 3px solid #16800b;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

header .logo {
    width: 130px;
    height: auto;
    padding: 10px;
    margin-top: 10px;
}


header .nav {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 30px;
    flex-direction: row-reverse;
}

header .nav a {
    position: relative; 
    color: #16800b;
    font-size: 20px;
    padding: 10px;
    transition: color ease-in-out 0.3s, background-color ease-in-out 0.3s;
    font-weight: 700;
    border-radius: 5px;
}

header .nav a:hover {
    background-color: #0c7500;
    color: #fff;
}


.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}


.nav-item .dropdown {
    visibility: hidden; 
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1e1e1e;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 100;
    width: 200px;
    opacity: 0;
    transform: translateY(-50px); 
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 1.5, 0.5, 1), visibility 0s 0.3s; 
}


.nav-item:hover .dropdown {
    visibility: visible; 
    opacity: 1;
    transform: translateY(0); 
    transition-delay: 0s; 
}

.dropdown a {
    display: block;
    color: #fff;
    padding: 8px 10px;
    text-decoration: none;
    font-size: 13px;
    transition: background-color 0.3s ease;
    text-align: end;
}

.dropdown a:hover {
    background-color: #0c7500;
    border-radius: 5px;
}


.spsn,.sps {
    display: flex;
    gap: 15px;
}

.spsn a,.sps a {
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    background-color: #16800b;
    transition: background-color ease-in-out 0.3s, transform 0.3s;
    font-size: 15px;
    font-weight: 700;
}

.spsn a i,.sps a i {
    margin-left: 8px; 
}

.spsn a:hover,.sps a:hover {
    background-color: #0c7500;
    transform: scale(1.05);
}

.swiper-container {
    width: 100%;
    height: 500px;
    margin-top: 0;
    overflow: hidden;
    cursor: grab;
}

.swiper-wrapper {
    display: flex;
    flex-direction: row; 
}

.swiper-slide {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slide-text {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center;
    color: #fff;
    padding: 10px 20px;
    font-size: 40px;
    font-weight: bold;
    z-index: 2; 
    cursor: default;
    width: 820px;
}

.fade-in {
    opacity: 1; 
}

.boxes-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; 
    padding: 20px;
}

.box {
    background-color: #1e1e1e; 
    border-radius: 10px;
    padding: 20px;
    width: 300px; 
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    margin: 10px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.box:hover{
    box-shadow: 0 4px 8px rgba(0, 255, 13, 0.2); 
    transform: translateY(-5px);
}

.box i {
    font-size: 40px;
    color: #16800b; 
    margin-bottom: 10px;
}

.box h2 {
    font-size: 18px; 
    margin: 10px 0; 
    cursor: default;
}

.box p {
    font-size: 14px;
    color: #16800b;
    cursor: default;
}

.services-section, .MT-section,.BM-section {
    text-align: center;
    margin: 40px 0;
}

.services-section h2, .MT-section h2, .BM-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
    cursor: default;
    color: #16800b;
}

.services-section p, .MT-section p, .BM-section p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto; 
    margin-right: auto;
    cursor: default;
}



.services-container, .MT-container, .BM-container  {
    background-color: #121212;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 20px;
    padding: 20px;
    border-radius: 10px;
}

.BM-box{
    background-color: #181818;
    border-radius: 10px;
    padding: 20px;
    width: calc(32% - 10px);
    text-align: center;
    margin: 19px 0;
    box-shadow: 0 4px 8px rgba(22, 128, 11, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
}

.service-box, .MT-box {
    background-color: #181818;
    border-radius: 10px;
    padding: 20px;
    width: calc(50% - 10px);
    text-align: center;
    margin: 10px 0;
    box-shadow: 0 4px 8px rgba(22, 128, 11, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
}

.service-box:hover, .MT-box:hover, .BM-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(22, 128, 11, 0.4);
}

.service-box i {
    font-size: 40px;
    color: #16800b; 
    margin-bottom: 10px;
}

.BM-box img{
    width: 350px;
    height: 200px;
    border-radius: 10px;
}

.MT-box img{
    width: 100px;
    height: auto;
    border-radius: 50%;
}

.service-box p, .MT-box p, .BM-box p {
    font-size: 18px; 
    margin: 10px 0; 
    color: #16800b; 
    cursor: default;
    font-weight: 600;
}

.service-box span, .MT-box span, .BM-box span {
    display: block;
    font-size: 14px; 
    color: #fff;
    margin-bottom: 15px; 
    cursor: default;
}

.service-box a, .MT-box a, .BM-box a {
    display: inline-block; 
    margin-top: 10px; 
    color: #16800b; 
    text-decoration: none; 
    font-weight: bold; 
}

.service-box a:hover,.MT-box a:hover, .BM-box a:hover {
    text-decoration: underline; 
}


.features-container {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.features-image {
    width: 800px;
    height: auto;
    margin-left: -250px;
}

.features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    width: 100%;
}

.features li {
    color: #ffffff;
    padding: 15px;
    margin: 10px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.features li:hover {
    transform: translateY(-5px);
}

.features li i {
    color: #16800b;
    margin-left: 10px;
    font-size: 18px;
}

.features li span {
    text-align: right;
    font-size: 16px;
    cursor: default;
}




/* Modal background */
.modal, .vfeModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden; /* Prevent scrolling on the background */
}

/* Modal content */
.modal-content, .vfeModal-content {
    background-color: #1e1e1e;
    margin: auto;
    padding: 40px 20px; /* Normal padding */
    border-radius: 10px;
    width: 100%;
    max-width: 400px; /* As before */
    max-height: 90vh; /* Maximum height set to 90% of the viewport height */
    overflow-y: auto; /* Enable scrolling if content exceeds height */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-family: 'El Messiri', sans-serif;
}

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* Input box styling */
.input-box {
    position: relative;
    margin-bottom: 30px;
}

/* Input fields */
.input-box input {
    width: 100%;
    padding: 10px 10px;
    background: #333;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

/* Input focus styling */
.input-box input:focus {
    border-color: #16800b;
    box-shadow: 0 0 8px rgba(0, 179, 0, 0.5);
}

/* Input labels */
.input-box label {
    position: absolute;
    color: #16800b;
    font-size: 16px;
    pointer-events: none;
    transition: 0.3s;
    direction: rtl;
    text-align: right;
    top: -25px;
    right: 10px;
    left: auto;
}

/* Phone input layout */
.phone-input {
    display: flex;
    align-items: center;
}

/* Country code dropdown */
.phone-input select {
    margin-right: 10px;
    padding: 10px;
    background: #333;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    appearance: none;
    outline: none;
    max-width: 100px;
}

/* Phone number input */
.phone-input input[type="tel"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 14px;
}

/* Toggle password icon */
.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Toggle password icon size */
.toggle-password i {
    font-size: 18px;
    color: #16800b;
    transform: translateY(2px);
}

/* Submit button styling */
button {
    width: 100%;
    padding: 10px;
    background-color: #16800b;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover effect for button */
button:hover {
    background-color: #0c7500;
}

/* Paragraph for links */
p {
    text-align: center;
    margin-top: 10px;
    cursor: default;
}

/* Links inside paragraphs */
p a {
    color: #16800b;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    margin-left: 5px;
}

/* Hover effect for links */
p a:hover {
    color: #0c7500;
}

/* Modal header */
.modal-content h2 {
    font-size: 24px;
    color: #16800b;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'El Messiri', sans-serif;
    cursor: default;
}

/* Scrollbar styling (optional) */
.modal-content::-webkit-scrollbar {
    width: 8px;
}










.social-login {
    margin-top: 10px;
    text-align: center;
    cursor: default;
}

.google-btn,
.apple-btn {
    display: inline-flex; 
    justify-content: center;
    align-items: center; 
    width: 40px; 
    height: 40px;
    border-radius: 50%;
    margin: 5px;
    text-decoration: none;
    color: #fff; 
    font-size: 20px; 
    transition: transform 0.3s ease;
    cursor: pointer;
}


.google-btn:hover,
.apple-btn:hover{
    transform: translateY(-5px);
}

.google-btn {
    background-color: #16800b; 
}

.apple-btn {
    background-color: #000; 
}
footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0;
    font-size: 14px;
    padding-bottom: 5px;
}

.footer-container {
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
}

.footer-logo {
    grid-column: span 1;
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.footer-logo-img {
    width: 150px;
    height: auto;
}

.footer-links,
.footer-contact,
.footer-social {
    grid-column: span 1; 
    margin: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 5px 0;
}

.footer-links a,
.footer-contact p {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s; 
    cursor: pointer;
}

.footer-links a:hover,
.footer-contact p:hover {
    color: #0c7500; 
}

.footer-social a {
    color: #fff;
    margin-right: 10px;
    font-size: 18px; 
    transition: color 0.3s; 
}

.footer-social a:hover {
    color: #0c7500; 
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px; 
    margin-bottom: 0;
}


.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 10px;
    font-size: 16px; 
    color: #ddd; 
    text-align: center;
    cursor: default;
}

.MTA-container, .about-container { 
    padding: 20px; 
    max-width: 800px; 
    margin: 20px auto; 
    cursor: default;
}

.MTA-container h2, .about-container h2 {
    text-align: center;
    color: #16800b; 
    font-size: 4em; 
    margin-bottom: 10px; 
}

.MTA-container h3,.about-container h3 {
    color: #16800b; 
    font-size: 1.5em; 
    margin-top: 20px;
    text-align: right; 
}

.MTA-container p,.about-container p {
    color: #fff; 
    line-height: 1.6;
    text-align: right; 
}

.MTA-container img {
    width: 200px; 
    height: auto; 
    border-radius: 10px; 
    margin: 20px auto; 
    display: block; 
}


.SRA-container { 
    padding: 20px; 
    max-width: 800px; 
    margin: 20px auto; 
    margin-bottom: 0;
    cursor: default;
}

.SRA-container h2 {
    text-align: center;
    color: #16800b; 
    font-size: 4em; 
    margin-bottom: 10px; 
}



.SRA-container h3 {
    color: #16800b; 
    font-size: 1.5em; 
    margin-top: 20px;
    text-align: right; 
}

.SRA-container p {
    color: #fff; 
    line-height: 1.6;
    text-align: right; 
}

.SRA-Courses,
.SRA-boxes {
    display: flex;
    justify-content: center; 
    margin-top: 0;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.SRA-boxes .box {
background-color: #181818;
cursor: default;
}

.SRA-Courses .box{
    background-color: #16800b;
    cursor: pointer;    
}
.SRA-Courses .box,
.SRA-boxes .box {
    color: #fff;
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.SRA-p{
margin-top: -5px;
color: #16800b;
font-weight:900 ;
}

.social-media-boxes {
    display: flex;
    justify-content: space-around;
    padding: 10px 0; 
}

.social-media-boxes .box {
    width: 60px;
    height: 60px;
    background-color: #16800b; 
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px; 
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
}

.social-media-boxes .box i {
    font-size: 28px;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.social-media-boxes .box:hover {
    transform: scale(1.1);
    background-color: #0c7500;
}

.CFB {
    display: flex;
    justify-content: center; 
    align-items: center; 
    min-height: 70vh; 
    margin: 0; 
}

.contact-form {
    padding: 20px; 
    border: 1px solid #121212; 
    border-radius: 8px;
    background-color: #1e1e1e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    width: 50%;
    max-width: 600px;
    margin: 10px;
}


.contact-form label {
    color: #ffffff;
    font-size: 16px;
    text-align: right;
    display: block;
    margin-bottom: 2px;
    margin-top: 5px;
}

.contact-form  textarea{
    text-align: right;
}

.contact-form input, 
.contact-form  textarea{
    width: 100%;
    padding: 10px 10px;
    background: #333;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    resize: none;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #16800b;
    box-shadow: 0 0 8px rgba(0, 179, 0, 0.5);
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #16800b;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'El Messiri', sans-serif;
}

.contact-form button:hover {
    background-color: #0c7500;
}

.SSH1,.SSH2{
    text-align: center;
    color: #ffff;
    font-size: 40px;
    margin: 0px;
    cursor: default;
}
.SSH2{
    font-size: 30px;
    margin-top: 10px;
}


.BMA-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: right;
    cursor: default;
}

.BMA-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.BMA-container h2 {
    color: #16800b;
    font-size: 28px;
    margin-bottom: 15px;
}

.BMA-container h3 {
    color: #16800b;
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.BMA-container p {
    margin-bottom: 15px;
    text-align: right;
}

ul{
    list-style-type: none;
}

.message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #222;
    color: #16800b;
    padding: 15px;
    border-radius: 5px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: auto;
    text-align: center;
    font-weight: bold;
    transition: opacity 0.5s ease-in-out;
    font-size: 15px;
}


.user-info {
    padding: 20px; 
    border: 1px solid #121212; 
    border-radius: 8px;
    background-color: #1e1e1e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    max-width: 600px;
    margin: 20px auto; 
    width: 100%;
    font-family: 'El Messiri', sans-serif;
}


.user-info .info {
    display: flex;
    flex-direction: column;
}

.user-info label {
    color: #ffffff;
    font-size: 16px;
    text-align: right;
    display: block;
    margin-bottom: 2px;
    margin-top: 5px;
}


input,
select {
    width: 100%;
    padding: 10px 10px;
    background: #333;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    font-family: 'El Messiri', sans-serif;
}


input[readonly]{
    cursor:default;
}


input:focus{
    border-color: #16800b;
    box-shadow: 0 0 8px rgba(0, 179, 0, 0.5);
}

.disabledButton{
    cursor: not-allowed;
}
.verifiedButton,.disabledButton{
    background-color: #aaa;
    color: #000;
    font-weight: 900;
    transition: ease-in-out background-color 0.3s;
    font-family: 'El Messiri', sans-serif;
}

.verifiedButton:hover,.disabledButton:hover{
    background-color: #9b9b9b;
}

.info-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    justify-content: flex-end;
    margin: 10px;
}

.user-info .info-status span {
    font-size: 16px;
    cursor: default;
}

.fa-check-circle {
    color: #16800b;
    font-size: 16px;
}

.fa-times-circle {
    color: rgb(255, 0, 0);
    font-size: 16px;
}

.user-info p{
    margin-top: 0;
    color: #aaa;
    font-size: 13px;
}

.pu{
    font-size: 40px;
    text-align: center;
    margin: 10px;
    color: #16800b;
    cursor: default;
}

.file-upload {
    position: relative;
    margin-bottom: 15px;
}

.custom-file-upload {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    border: 2px dashed #16800b;
    border-radius: 5px;
    text-align: center;
    width: 100%; 
}

.custom-file-upload i {
    margin-right: 5px; 
    color: #16800b;
}

.file-upload input[type="file"] {
    display: none;
}

.file-name {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
    display: flex;
    justify-content: flex-end;
}


.subs {
    text-align: right;
    font-size: 18px;
    margin-bottom: 10px;
    width: 550px;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #16800b;
    overflow: hidden;
    cursor: default;
}

thead {
    background-color: #333;
    color: #fff;
}

th, td {
    text-align: right;
    padding: 15px;
    border: 1px solid #16800b;
    font-size: 18px;
}

.subV {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.header-small{
    display: none;
}





/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
    header:first-of-type {
        display: none;
    }
    /* Show the small screen header */
    .header-small {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #181818;
        padding: 20px;
        border-bottom: 3px solid #16800b;
    }

    .slide-text {
        font-size: 24px; /* Smaller font size */
        padding: 5px 10px; /* Reduce padding */
        width: 90%; /* Adjust width to fit mobile screens */
    }
    .SRA-container h2{
        font-size: 40px;
    }

    .subs {
        font-size: 12px; /* Adjust font size for smaller screens */
        width: 100%; /* Ensure it takes full width on smaller screens */
    }
    .SRA-Courses .box, .SRA-boxes .box{
        width: fit-content;
    }
    .SRA-Courses, .SRA-boxes{
        width: 100%;
        font-size: 10px;
    }
    th, td {
        padding: 8px; /* Reduce padding for mobile */
        font-size: 15px; /* Smaller font for better readability */
    }

    table {
        font-size: 10px; /* Adjust table font size for smaller screens */
    }
    .contact-form{
        width: 90%;
    }
    
    .subV {
        font-size: 10px; /* Adjust the font size for the phone */
    }


    .service-box{
        height: fit-content;
    }

    .service-box span{
        font-size:10px ;
    }

    .service-box a{
        font-size: 13px;
    }

    .features-image{
        width: 200px;
        margin: 0;
        display: none;
    }

    .sps a{
        margin-left: -50px;
    }

    .spsn a{
        margin-left: -80px;
    }
    /* Style for the hamburger icon */

    .hamburger {
        font-size: 30px;
        cursor: pointer;
        color: #0c7500;
    }

    .side-nav {
        width: 100%; /* Full screen width for mobile */
    }

    .side-nav a {
        font-size: 18px; /* Adjust link size for mobile */
    }

    .footer-container {
        grid-template-columns: 1fr; /* Stack the sections vertically */
        padding: 10px;
    }
    
    .footer-logo-img {
        width: 120px; /* Smaller logo size for small screens */
    }
    
    .footer-links,
    .footer-contact,
    .footer-social {
        margin: 20px 0; /* Add some spacing between sections */
    }

    .footer-social a {
        font-size: 24px; /* Make social icons larger on small screens */
        margin-right: 20px;
    }
/* Side Navigation */
.side-nav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #121212;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    z-index: 1000;
    /* Make it full width */
    width: 100%;
    visibility: hidden; /* Initially hidden */
    opacity: 0;
}

.side-nav a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    display: block;
    transition: 0.3s;
    text-align: right;
}

.side-nav a:hover {
    background-color: #0c7500;
}

.side-nav .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.side-nav .close-btn:hover {
    color: #0c7500;
}

.side-nav.active {
    visibility: visible;
    opacity: 1;
    width: 100%;
}
.social-media-boxes {
    justify-content: space-evenly;
    margin-right: 5px;
}

.social-media-boxes .box {
    width: 50px; /* Slightly smaller boxes for medium screens */
    height: 50px;
}

.social-media-boxes .box i {
    font-size: 24px; /* Smaller icon size */
}
.BM-container {
    flex-direction: column; /* Stack items vertically */
    padding: 15px; /* Adjust padding for medium screens */
    margin: 10px;
}

.BM-container .box {
    width: 100%; /* Full width for each box */
    margin-bottom: 10px; /* Add spacing between boxes */
}
.BM-box{
    width: 100%;
}
}
