@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #111;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    text-decoration: none; /* Optional: Removes underline from text */
    display: inline-block; /* Keeps the icon and text aligned */
}

.whatsapp-icon .whatsapp-text {
    visibility: hidden;
    opacity: 0;
    width: 128px;
    /*background-color: #111; */
    color: white; /* Text color */
    text-align: center;
    border-radius: 5px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Adjust based on your needs */
    /*left: 50%;*/
    margin-left: -70px; /* Half of width to center the text */
    transition: opacity 0.3s, visibility 0.3s;
}

.whatsapp-icon:hover .whatsapp-text {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 430px) {
    .whatsapp-icon .whatsapp-text {
        display: none;
    }
}

/* header */


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    height: 150px; /* Adjust the height as needed */
}

.navbar {
    display: flex;
    justify-content: center;
}

.navbar a {
    display: inline-block;
    font-size: 1em;
    background: #ffeb3b;
    padding: 10px 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    color: #111;
    letter-spacing: 2px;
    transition: 0.2s;
    margin: 10px;
    border-radius: 5px;
}

.navbar a:hover {
    color: #e70c08;
}


#sec {
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

#sec h2 {
    font-size: 4rem;
    margin-bottom: 30px;
    color: white;
}

/* img - text */

.section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin: 10px;
}

.image-box {
    height: 800px;
    overflow: hidden;
    border-radius: 40px;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-box {
    padding-inline: 5em;
}

.title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 45px;
    font-weight: 700;
    max-width: max-content;
    margin-block-end: 0.25em;
    color: #e70c08;
}

.text {
    line-height: 2.25;
    font-size: 18px;
    font-weight: 400;
}



[data-reveal="left"] {
    clip-path: inset(0 100% 0 0);
}

[data-reveal="left"].revealed {
    animation: reveal-left 1.2s cubic-bezier(0.17, 0.97, 0.38, 1) forwards 300ms;
}

@keyframes reveal-left {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

[data-reveal="right"] {
    clip-path: inset(0 0 0 100%);
}

[data-reveal="right"].revealed {
    animation: reveal-right 1.2s cubic-bezier(0.17, 0.97, 0.38, 1) forwards 300ms;
}

@keyframes reveal-right {
    0% {
        clip-path: inset(0 0 0 100%);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

.image-box .img {
    /* transform: scale(1.5); */
    transition: 1.2s cubic-bezier(0.17, 0.97, 0.38, 1);
}


.footer-logo {
    color: #fff;
    padding: 20px;
    text-align: center;

}

.footer-logo img {
    height: 100px;
}

.copyright {
    color: white;
    text-align: center;
}


@media only screen and (max-width: 768px) {
    .section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo{
        height: 100px;
    }

    .title {
        font-size: 3em;
    }

    .content-box {
        padding: 2em;
    }

    #sec h2 {
        font-size: 3rem;
        margin-bottom: 30px;
        color: white;
    }

    .image-box{
        height: auto;
    }

    .navbar a{
        display: inline-block;
        font-size: 11px;
        background: #ffeb3b;
        padding: 5px 2px;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: 500;
        margin-top: 10px;
        color: #111;
        letter-spacing: 0px;
        /* transition: 0.2s; */
        margin: 4px;
        border-radius: 5px;
    }
    
}

@media only screen and (max-width: 480px) {
    .title {
        font-size: 2em;
    }

    .text {
        font-size: 15px;
    }
    }