body {
    margin: 0;
    font-family: 'Tajawal', 'Arial', sans-serif;
    direction: rtl;
    text-align: center;
    background-color: #f9f9f9;
}
a {
    text-decoration: none;
}
.menu {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-around;
	align-items: center;
	padding: 10px;
	background: #fff;
	border-bottom: 1px solid silver;
}
.menu a {
	text-decoration: none;
    color: #0a557f;
    font-weight: 500;
    font-size: 14px;
    padding: 0 14px;
}
.menu a:hover {
	color: #000;
}
.menu-container {
    position: relative;
    display: inline-block;
	display: flex;
	justify-content: space-between;
}
.menu-icon {
    cursor: pointer;
    padding: 5px 12px 2px 12px;
	font-size: 1.5rem;
	border-radius: 5px;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
    width: 60%;
    box-shadow: 2px 2px 5px silver;
}
.dropdown-menu a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
}
.dropdown-menu a:hover {
    background-color: #f4f4f4;
}
.dropdown-menu a:last-child {
    border-bottom: none;
}
.menu-container.active .dropdown-menu {
    display: block;
}
.logo {
	display: flex;
	align-items: center;
}
.header-text h1 {
    font-size: 2.8rem;
    color: #fff;
}
footer {
    background-color: #f0f0f0;
    text-align: center;
    padding: 30px 15px 10px 15px;
}
.footer-logo {
    width: 450px;
    text-align: right;
}
.footer-logo img {
    width: 220px;
}
.footer-content {
    display: flex;
    justify-content: space-around;
}
footer a {
    color: #003655;
}
.links h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    font-weight: 600;
}
.copyright {
    margin-top: 30px;
}
.footer-logo p {
    margin: 5px 0;
}
.register {
    font-family: Tajawal;
    padding: 5px 15px;
    background: green;
    color: #fff;
    border: none;
    cursor: pointer;
}
.login {
    font-family: Tajawal;
    padding: 5px 15px;
    background: #0a557f;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* Accounts Page */
.start-text {
    width: 70%;
    margin: 35px auto;
    text-align: justify;
}
.start-text p {
    margin: 15px 5px;
    font-weight: 500;
}
.accounts {
    width: 90%;
    margin: 25px auto 60px auto;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.accounts .account, .accounts .account {
    border: 1px solid silver;
}
.accounts p {
    padding: 10px 20px;
    text-align: right;
}
.accounts ul {
    text-align: right;
    padding: 0 20px;
    margin-bottom: 15px;
}
.accounts button {
    margin: 15px;
    border-radius: 20px;
    padding: 10px 25px;
    background: #070035;
    color: #fff;
}
.account-info {
    text-align: justify;
    padding: 0 15px;
    margin-bottom: 12px;
}
.accounts h2 {
    font-size: 2rem;
    padding: 10px 25px;
    background: #070035;
    color: #fff;
    margin-bottom: 15px;
}
.accounts img {
    float: left;
    width: 50px;
}
.accounts .account-info h4 {
    margin-top: 12px;
}
#comparison {
    width: 60%;
    margin: auto;
}
#below-comparison {
    width: 70%;
    margin: 15px auto;
}
#below-comparison p {
    font-size: 1.2rem;
    text-align: justify;
}
.separator {
    display: flex;
    justify-content: space-between;
    text-align: right;
    margin: 50px 0;
    padding: 20px 15%;
    align-items: center;
    background: #070035;
    color: #fff;
    
}
.separator div {
    display: flex;
}
.separator p {
    padding: 7px 7px 0 0;
    font-size: 1.1rem;
}
.title {
    font-size: 2rem;
    font-weight: 500;
}

/* Contact Page */
.team {
    padding: 20px 10px 50px 10px;
    background: #00092d;
}
.team h2 {
    font-size: 1.8rem;
    color: #fff;
}
.our::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    width: 55px;
    background-color: #ff8a0e;
    margin: 5px auto;
}
/* Floating WhatsApp button */
.wa-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #00BC46;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    font-size: 30px;
    color: white;
}

.wa-button:hover {
    transform: scale(1.1);
}

.wa-button img {
    width: 35px;
    height: 35px;
}

/* Chat window */
.wa-chat {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 300px;
    padding-bottom: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.wa-header {
    background: #00BC46;
    color: white;
    padding: 10px 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.wa-header h3 {
    margin: 8px 0 0 0;
    font-size: 16px;
    text-align: right;
}
.wa-header p {
    text-align: right;
    margin: 8px 0;
    font-size: .8rem;
}

.wa-close {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

.wa-content {
    padding: 15px 10px;
    text-decoration: none;
    color: black;
    background: #f5f7f9;
    display: flex;
    align-items: center;
    border-right: 2px solid #2db742;
    border-radius: 0 0 10px 10px;
    margin: 10px 15px;
}

.wa-content img {
    width: 50px;
    height: 50px;
    margin-left: 10px;
}

.wa-content div {
    flex: 1;
    text-align: right;
}

.wa-content h4 {
    margin: 0;
    font-size: 14px;
}

.wa-content p {
    margin: 5px 0 0;
    font-size: 12px;
    color: #666;
}
@media (max-width: 768px) {
    .header-content {
        padding: 100px 10px;
    }
    #desktop-menu {
    	display: none;
    }
    #mobile-menu {
    	display: flex !important;
    	background: #fff;
    	padding: 6px;
    }
    #comparison {
        width: 97%;
    }
    #below-comparison {
        width: 90%;
    }
    .start-text {
        width: 90%;
    }
    .register {
        width: 80%;
        padding: 5px 15px;
        background: green;
        color: #fff;
        border: none;
        margin: 12px 0 3px 0;
    }
    .login {
        width: 80%;
        padding: 5px 15px;
        background: #0a557f;
        color: #fff;
        border: none;
        margin: 3px 0 12px 0;
    }
    .header-text h1 {
    	font-size: 2rem;
    }
    .header-text h2 {
    	font-size: 1.5rem;
    }
    .footer-content {
        display: block;
    }
    .footer-content p {
        margin: 0;
    }
    footer .copyright {
        margin-top: 20px;
    }
    .footer-logo img {
        margin: 8px auto;
    }
    .footer-content h3 {
        font-size: 1.3rem;
        font-weight: 500;
        margin: 20px 0 5px 0;
    }
    .footer-logo {
        text-align: center;
        width: 100%;
    }
}
.MainError {
    display: none;
    text-align: center;
    color: #f00;
    margin: -10px 0 5px;
}
form input, form select {
    border: 1px solid #cacaca;
    padding: 5px 10px;
    margin: 5px 0;
    width: 100%;
    background: #fff;
}
form a {
    display: block;
    width: 100%;
    background: #F3B007;
    border-bottom: 3px solid #C88E02;
    margin-top: 8px;
    padding: 5px 10px;
}