/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #F7FaFc;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 75%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 5px;
}


.banner {
    max-width: 100%;
    height: auto;

    max-height: 60px;
}


.oasis {
    max-width: 100%;
    height: auto;

    max-height: 100px;
}



/* Header Styles */
header {
    background: linear-gradient(to right, #F7FaFc 35%, #4090CC 60%, #173449 100%);
    color: white;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: bold;
}


/* Navigation */
nav-0 {
    background: linear-gradient(to right, #4090CC, #173449);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    background: linear-gradient(to right, #F7FaFc 35%, #4090CC 60%, #173449 100%);
    color: white;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: bold;
}


nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    background: linear-gradient(to right, #F19C1B, #815108);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.language-switch {
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    background: linear-gradient(to right, #F19C1B, #815108);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


/* Main Content Styles */
.hero {
    text-align: center;
    padding: 10px 0;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 0px;
    color: #173449;
}

.hero p {
    font-size: 18px;
    margin-bottom: 5px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, #4090CC, #173449);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: linear-gradient(to right, #F19C1B, #815108);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px 0;
}

.service-card {
    flex-basis: 48%;
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: justify;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #4090CC;
    text-align: center;
}

.about-content, .contact-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
}


.certifications {
    margin-top: 30px;
    padding: 0px 0px 0px 0px;
}

.certifications h3 {
    color: #4090CC;
    margin-bottom: 1px;
}

.certifications ul {
    list-style-type: none;
}

.certifications ul li {
    margin-bottom: 1px;
    padding-left: 10px;
    position: relative;
}

.certifications ul li:before {
    content: "•";
    color: #F19C1B;
    font-weight: bold;
    position: absolute;
    left: 0;
}


.certstable {
  width: 100%;
  border-collapse: collapse;
  margin: 1px 0;
}

.certstable tr {
  border-bottom: 0px solid #ddd;
}

.certstable td {
  padding: 0px;
  vertical-align: middle;
}

.certstable .text-cell {
 width: 50%;
}

.certstable .image-cell {
  width: 30%;
  text-align: left;
}

.certstable img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;

  border-radius: 10px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  /* display: block; */

}



.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group textarea {
    height: 150px;
}


.shadow-image-0 {
    box-shadow: 10px 10px 15px #888888;
}

.shadow-image {
    border-radius: 25px; /* Rounded corners - adjust value as needed */
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5); /* Grey shadow - adjust values to change size/darkness */
    max-width: 100%; /* Makes the image responsive */
    display: block; /* Removes any unwanted spacing */
    margin-top: 0px;
    margin-bottom: 20px;
}



/* Footer Styles */
footer {
    background: linear-gradient(to right, #4090CC, #173449);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
    
    nav {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 10px;
    }
    
    .service-card {
        flex-basis: 100%;
    }
}


.email-protection span.domain::before {
        content: '@';
}


.service-card ul {
    list-style-type: none;
    padding-left: 5px;
}

.service-card ul li {
    padding-left: 15px;
    margin-bottom: 10px;
    position: relative;
}

.service-card ul li:before {
    content: "•";
    color: #F19C1B;
    font-weight: bold;
    position: absolute;
    left: 0;
}



