
body {
    font-family: 'Poppins', sans-serif; 
}

.text_blue {
    color: #29abe2;
}

/* Font Size Utility Classes (Using rem for better responsiveness) */
.font-44 { font-size: 2.75rem; } /* 44px */
.font-38 { font-size: 2.375rem; } /* 38px */
.font-34 { font-size: 2.125rem; } /* Added for testimonial number, approx 34px */
.font-32 { font-size: 2rem; } /* 32px */
.font-24 { font-size: 1.5rem; } /* 24px */
.font-20 { font-size: 1.25rem; } /* 20px */
.font-18 { font-size: 1.125rem; } /* 18px */
.font-16 { font-size: 1rem; } /* 16px */

.nav-bar li {
    font-size: 14px;
}

.opt-btn {
    background-color: #29abe2; 
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.opt-btn:hover {
    background-color: #208cb3;
}

.menu-list {
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 991.98px) {
    .menu-list {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%; 
        max-width: 300px;
        height: 100%;
        background-color: white;
        z-index: 1000;
        padding-top: 60px;
        box-shadow: -4px 0 10px rgba(0,0,0,0.2);
        transform: translateX(100%); 
        display: block !important; 
    }


    .menu-list.active {
        transform: translateX(0); 
    }

    .menu-list ul {
        padding: 0 20px;
    }
    .menu-list li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
}

.section-1 , .section-4 { margin-top: 50px; }
.section-2 { margin-top: 90px; }
.section-3 { margin-top: 100px; } 
.section-5, .section-6 { margin-top: 80px; }


.section-2 hr, .section-4 hr, .section-5 hr, .section-6 hr {
    border: none;
    height: 4px;
    background-color: #29abe2;
    margin-top: 0.5rem;
    opacity: 1; 
}

.testimonial-number {
    font-size: 2.125rem; /* font-34, matching image */
    font-weight: 700;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 4px solid #000; 
    margin-bottom: 1rem;
}

.quote-text {
    line-height: 1.6;
    font-weight: 400; 
    color: #333; 
    font-style: italic; 
}

.testimonial-user-img {
    width: 45px !important;
    height: 45px !important;
    object-fit: cover;
    margin-right: 15px; 
}

.author-block {
    display: flex;
    align-items: center; 
    margin-top: 1.5rem !important;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
    color: #208cb3;
}

.our_goals {
    width: 100%; 
    max-width: 100%;
    height: 400px;
    object-fit: cover; 
    border-radius: 8px;
}
.section-4  img
{
   width:-webkit-fill-available;

}

.section-2  img
{
   width:-webkit-fill-available;

}

.section-1  img
{
   width:-webkit-fill-available;

}

.form-section {
    background-color: #efeded; 
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-section input,
.form-section textarea {
    width: 100%;
    border: 1px solid #ccc;
    padding: 0 15px;
    outline: none;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s;
     font-size: 14px;
}

.form-section input:focus,
.form-section textarea:focus {
    border-color: #29abe2;
}

.form-section textarea {
    height: 100px;
    resize: none;
    padding-top: 10px;
}

.form-section input {
    height: 45px;
}

.form-section button {
    width: 100%;
    background-color: #29abe2;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.form-section button:hover {
    background-color: #208cb3;
}

.footer-custom {
    background-color: #33aadd !important; 
    padding-top: 20px;
    padding-bottom: 20px;
}

.copyright-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #e0f7ff !important;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;

    font-size: 1.5rem; 
    
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.social-link:not([href^="mailto:"]) {
    background-color: white;
    color: #000;
}

.social-link[href^="mailto:"] {
    background-color: #000;
    color: white;
}

.social-link:not([href^="mailto:"]):hover {
    background-color: #000;
    color: white;
    transform: scale(1.1);
}

.social-link[href^="mailto:"]:hover {
    background-color: white;
    color: #000;
    transform: scale(1.1);
}

#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: none;
  z-index: 999;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  background-color: #616161;
  border: none;
  color: white;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

#backToTopBtn:hover {
  background-color: #616161;
}


.line-height-27 {
   line-height: 30px;
}

.modal-fullscreen {
     width: 100%;
    max-width: 1280px;
    height: 100%;
    margin: 0;
}