body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


header {
    /* max-height: 100px; */
    top: 0;
    left: 0;
    width: 100%;
    /* z-index: 10; */
    background-color: #0B9586;
    padding: 10px 0;
    padding-left: 200px;
    padding-right: 200px;
}

.logo {
    height: 50px;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFD700;
}

.callus p {
    margin: 0;
    color: white;
    text-align: right;
    font-size: 1.2rem;

}

.callus p:last-child {
    font-size: 1.5rem;
    font-weight: bold;
}

.section1 {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.section1 .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section1 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.section1 .content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    text-align: left;
    padding: 0 200px;

}

.section1 .content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section1 .content p {
    font-size: 2rem;
    margin-bottom: 35px;
}

.btn-success {
    background-color: #0B9586;
    border: 2px solid #0B9586;
    border: none;
    border-radius: 50px;
    padding: 14px 35px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}


.btn-success:hover {
    background-color: transparent;
    color: #0B9586;
    border: 2px solid #0B9586;

}

.btn-warning {
    background-color: #FFC107;
    border: 2px solid #FFC107;
    border: none;
    border-radius: 50px;
    color: #000;
    padding: 14px 35px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.section2 {
    padding: 100px 40px;
    background-color: #f8f9fa;
    justify-content: center;
    display: flex;
}

.section2 .row {
    max-width: 1400px;
    margin: 0 auto;

}
.the-yellow{
    position: absolute;
    bottom: 10px;
    left: -50px;
    max-width: 250px;
    z-index: 10;
    background-color: #FFC107;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.section2 h2 {
    font-size: 2rem;
}

.section2 p {
    font-size: 1.05rem;
    color: #555;
}

.section2 ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.section2 img {
    max-width: 100%;
    height: auto;
}


.yellow-card {
    bottom: 20px;
    left: 0px;
    max-width: 250px;
    z-index: 10;
}



.section3 {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 100px;
}


.section3 .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


.section3 .leftp {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.section3 h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.section3 p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.section3 .btn-warning {
    background-color: #FFC107;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    transition: all 0.3s ease;
}

.section3 .btn-warning:hover {
    background-color: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.card {
    height: 400px;
}

.card img {
    height: 220px;
    object-fit: cover;
}

.card-title {
    font-weight: 600;
}

.card-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.view-products {
    color: #00b386;
    font-weight: 500;
    text-decoration: none;
    bottom: 0px;
}

.view-products:hover {
    text-decoration: underline;
}

.image-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.image-section::before {
    content: "";
    display: block;
    padding-top: 40%;
}

.image-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.overlay-content {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.overlay-content h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.overlay-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}


.section-container {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.left-sticky {
    position: sticky;
    top: 100px;
    height: fit-content;
}


.left-title-icon {
    width: 48px;
    height: 48px;
    background-color: #e6f4ee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.left-title h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.left-title p {
    color: #6c757d;
    font-size: 15px;
}

.card-box {
    border: 1px solid #d0eadd;
    border-radius: 12px;
    padding: 24px;
    background-color: #f9fdfb;
    height: 100%;
    transition: 0.3s ease;
}

.card-box:hover {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.card-image-placeholder {
    width: 100%;
    height: 100px;
    background-color: #d9ebe3;
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a2c3b7;
    font-size: 14px;
}

.card-box h6 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
}

.card-box p {
    font-size: 14px;
    color: #444;
}

.view-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
    color: #00b386;
    text-decoration: none;
}

.view-link:hover {
    text-decoration: underline;
}


.value-card {
    border: 1px solid #cceadd;
    border-radius: 12px;
    padding: 24px;
    background-color: #f9fdfb;
    height: 100%;
    transition: 0.3s ease;
}

.value-card:hover {
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
}

.value-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.testimonial-box {
    background-color: #f2f9f6;
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.testimonial-box .quote {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 20px 0;
}

.testimonial-box .author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-box .author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.testimonial-box .arrows {
    position: absolute;
    bottom: 32px;
    right: 32px;
}

.testimonial-box .arrows button {
    border: none;
    background: transparent;
    margin-left: 10px;
    font-size: 20px;
    color: #00b386;
}

.testimonial-box .arrows button:hover {
    color: #008f6e;
}



.footer {
    background-color: #1f2c3a;
    color: #ccc;
    padding: 40px 0 20px;
    font-size: 14px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    margin-right: 20px;
}

.footer a:hover {
    color: #fff;
}

.footer .logo-placeholder .img {
    width: 60px;
    height: 40px;
    background-color: #cfd8dc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #78909c;
    margin-bottom: 20px;
}

.footer .subscribe-input {
    border: none;
    border-radius: 20px 0 0 20px;
    padding: 10px 15px;
    outline: none;
    width: 220px;
    font-size: 14px;
}

.footer .subscribe-button {
    background-color: #fcbf3d;
    color: #000;
    border: none;
    border-radius: 0 20px 20px 0;
    padding: 10px 20px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #394958;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 13px;
    color: #888;
}

.footer .footer-links span {
    margin: 0 10px;
    color: #888;
}

@media (max-width: 991.98px) { /* tablet & down */
    .footer .subscribe-form {
        flex-direction: column;
        width: 100%;
    }

    .footer .subscribe-input {
        width: 100%;
        border-radius: 20px;
        margin-bottom: 10px;
    }

    .footer .subscribe-button {
        width: 100%;
        border-radius: 20px;
    }
}




@media (max-width: 768px) {
    .image-section {
        position: relative;
        width: 100%;
        min-height: 500px;
        background: url('imgs/1d60380ef9051aa0f59b3d4c3427f2e1c580add2.png') no-repeat center/cover;
    }

    .image-section img {
        display: none;
    }

    .overlay-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .overlay-content {
        background-color: rgba(0,0,0,0.6);
        color: #fff;
        padding: 1.5rem;
        border-radius: 8px;
        max-width: 90%;
        text-align: center;
    }

    .overlay-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .overlay-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 991px) {
    .section3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left: 40px;
        height: auto;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .section3 .leftp {
        max-width: 100%;
        text-align: center;
    }

    .section3 h3 {
        font-size: 2rem;
    }

    .section3 p {
        font-size: 1rem;
    }
    .section2-img{
        width: 500px;
    }
    .the-yellow{
        left: 90px;
    }
}


@media (max-width: 850px) {
    .the-yellow{
        left: 70px;
    }

}


@media (max-width: 991px) {

    header {
        padding-left: 50px;
        padding-right: 50px;
    }

    .section1 .content {
        padding: 0 50px;
    }

    .section1 .content h1 {
        font-size: 2.8rem;
    }

    .section1 .content p {
        font-size: 1.4rem;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .d-flex {
        flex-direction: column;
        gap: 20px;
    }

    .callus p {
        text-align: center;
    }
}


@media (max-width: 1199px) {
    header {
        padding-left: 100px;
        padding-right: 100px;
    }

    .section1 .content {
        padding: 0 100px;
    }

    .section1 .content h1 {
        font-size: 3.5rem;
    }

    .section1 .content p {
        font-size: 1.7rem;
    }
}





@media (max-width: 767px) {
    header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section1 .content {
        padding: 0 20px;
    }

    .section1 .content h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .section1 .content p {
        font-size: 1.1rem;
        text-align: center;
    }

    .section1 .content .btn {
        width: 100%;
        margin-bottom: 15px;
    }

    nav ul {
        padding: 10px 0;
    }

    .callus {
        text-align: center;
    }
    .the-yellow{
        left: 10px;
    }
}
@media (max-width: 680px) {
    .the-yellow{
        left: 0px;
    }
}
@media (max-width: 576px) {
    .the-yellow{
        /* left: 0px; */
        max-width: 150px;
    }
    .the-yellow h6{
        font-size: 14px !important;
    }
    .the-yellow p{
        font-size: 12px !important;
    }
    .the-yellow img{
        width: 100px !important;
    }
    
}