.banner-wrapper {
    background-color: #f8f8f8; /* Light gray background */
    display: flex;
    justify-content: center;
    align-items: center;
    height:fit-content ;
    margin-top: 20px;
    padding: 30px;
}

.banner-wrapper .contact-section {
    display: flex;
    width: 1100px;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.banner-wrapper .image-section {
    flex: 1;
    background-color: #e0f0ff;
}

.banner-wrapper .image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-wrapper .text-section {
    flex: 1;
    
    color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.banner-wrapper .text-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.banner-wrapper .appointment-btn {
    background-color: white;
    color: black;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.banner-wrapper .appointment-btn:hover {
    background-color: #f1f1f1;
}
  /* Basic styles for modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
}

.close {
    font-size: 20px;
    cursor: pointer;
}

.modal-body {
    margin: 15px 0;
}

.modal-body label {
    display: block;
    margin: 5px 0;
}

.modal-body input, .modal-body textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.recaptcha-container {
    margin-bottom: 15px;
}

.modal-footer {
    text-align: right;
}

.modal-footer button {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    background-color: #152c47; /* LEMS Primary color */
    color: white;
    cursor: pointer;
}

.modal-footer button:hover {
    background-color: #1e3b5d;
}



.stratergy-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: fit-content;
    padding: 30px;
    background-color: #f5f5f5;
}

.title {
  
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 3px;
   
    opacity: 0;
    animation: fadeInTitle 2s ease forwards;
}


.stratergy-wrapper .container {
    position: relative;
    width: 1100px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInContainer 3s ease forwards 1s;
}

.stratergy-wrapper .container img {
    width: 100%;
    height: 100%;
    border-radius: 120px;
    object-fit: cover;
}

.stratergy-wrapper .overlay {
    position: absolute;
    right: 90px;
    bottom: 0;
    width: 500px;
    height: 150px;
    background-color: #D3D800 ; /* Green overlay */
    border-radius: 120px;
    transform: translate(30%, 40%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.7rem;
    font-style: italic;
    color: #333;
    padding: 10px;
    opacity: 0;
    animation: fadeInOverlay 4s ease forwards 2s;
}

.stratergy-wrapper p {
    width: 1000px;
    text-align: justify;
    font-size: 1rem;
    color: #444;
    margin-bottom: 30px;
}

@keyframes fadeInTitle {
    to {
        opacity: 1;
    }
}

@keyframes fadeInContainer {
    to {
        opacity: 1;
    }
}

@keyframes fadeInOverlay {
    to {
        opacity: 1;
    }
}  
