/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #236b98;
}

/* Footer Styling */
footer {
    background-color: #0e344b;
    padding: 20px;
    text-align: center;
}

footer p {
    color: #c2c2c2;
    margin: 5px 0;
    font-size: smaller;
}

footer a {
    color: #007bff;
    text-decoration: none;
    font-size: x-small;
}

footer a:hover {
    text-decoration: underline;
}


.navbar {
    margin-bottom: 50px;
    background-color: transparent;
}

.navbar-toggler {
    border-color: white;
}

.logo-text {
    font-size: 1.5rem;
    color: #e5bb6b;
    margin-left: 10px;
    line-height: 50px;
    font-family: 'Arial', 'PT Serif';
    font-weight: bold;
}

.navbar-brand img {
    width: 5%;
    height: 5%;
}

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

.navbar-nav .nav-link {
    color: white !important;
    text-decoration: none;
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link.active {
    color: goldenrod;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 5px 10px;
}

/* Section Styling */
.section {
    padding: 60px 0;
    text-align: center;
    color: white;
}


.button-group {
    margin-top: 20px;
}

.btn-image {
    max-width: 150px;
    /* Adjust the size as needed */
    margin-right: 10px;
    /* Space between the buttons */
}

@media (max-width: 767.98px) {
    .button-group {
        justify-content: center !important;
    }
}


.bg-blue {
    background-color: #236b98;
}

/* About Section */
#about {
    background-color: #236b98;
    color: white;
    padding: 10% 0;
}

#about h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#about p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

#about h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

#about ul {
    list-style-type: none;
    padding-left: 0;
}

#about ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Section Title and Description */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.section-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: normal;
}

/* Flexbox adjustments */
.feature-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Feature Box Styles */
.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: start;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: normal;
}

/* Home Section */
#home .container {
    display: flex;
    align-items: center;
    height: 100vh;
}

#home .row {
    flex-grow: 1;
    align-items: center;
}

/* Features Section */
#features {
    padding: 50px 0;
    background-color: #236b98;
    color: white;
}

.carousel .carousel-item {
    transition: transform 0.5s ease;
    height: 50%;
    width: 100%;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 20px;
}

.feature-description {
    font-size: 1rem;
    margin-top: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent;
    border-radius: 10%;
    width: 5px;
    height: 5px;
    padding: 8px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

/* Contact Section */
.contact-section {
    background-color: #236b98;
    color: white;
    /* padding: 50px 0; */
    display: flex;
    margin-bottom: 3%;
}

.inner-contact-section {
    justify-content: center;
}

.contact-links {
    margin: 3% 0;
}

.contact-inner {
    margin: 0 auto !important;
}

.contact-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 24px;
    display: inline-block;
}

.contact-links a:hover {
    color: #e5bb6b;
}

.contact-form {
    background-color: #0e344b;
    padding: 20px;
    border-radius: 5px;
}

.contact-form label {
    color: #e5bb6b;
}

.contact-form button {
    background-color: #e5bb6b;
    color: #0e344b;
}

.contact-form button:hover {
    background-color: #d4a35a
}

/* Common Class for Icon Size */
.icon {
    font-size: 2rem;
    transition: transform 0.1s ease;
}

.icon:hover {
    transform: scale(2.0);
}

/* Contact Links */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.contact-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    /* Fixed width for icons */
    height: 50px;
    /* Fixed height for icons */
    color: #fff;
    /* Icon color */
    background-color: #236b98;
    /* Background color for icons */
    border-radius: 50%;
    /* Make icons circular */
    text-decoration: none;
    /* Remove underline from links */
    transition: transform 0.3s ease;
    /* Smooth scaling transition */
}

.contact-links a:hover {
    transform: scale(1.1);
    /* Scale up icons on hover */
}

.contact-links i {
    font-size: 24px;
    /* Set a fixed size for icons */
}

html[dir="rtl"] body {
    direction: rtl;
}

html[dir="rtl"] .text-md-left {
    text-align: right !important;
}

html[dir="rtl"] .text-md-right {
    text-align: left !important;
}

.contact-form {
    text-align: start;

}

/* RTL adjustment */
[dir="rtl"] .contact-form {
    text-align: center;
    /* Ensure center alignment in RTL as well */
}

/* You may also need to adjust padding/margins */
[dir="rtl"] .contact-form .form-group {
    text-align: right;
    /* Align labels and inputs properly */
}