@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow-x: hidden;

}

.main_container {
    /* background-color: #FEFFDF; */
    background-color: #FEFFDF;
    /* padding: 30px 60px; */
    font-family: 'Roboto', 'Helvetica', sans-serif;
}


.inner-container {
    background-color: white;
    padding: 1px 0px;
}

.main-heading {
    font-weight: 600;
    color: #0066CC;
    font-size: 52px;
    font-family: 'Roboto', 'Helvetica', sans-serif;
}

.sub-heading1 {
    font-size: 28px;
    font-weight: 600;
    color: #0066CC;
    font-family: 'Roboto', 'Helvetica', sans-serif;
}

.parent_div_part1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 100px;
    /* padding: 2px 50px; */
}

.normal-text {
    font-size: 18px;
    color: #2D2D2D;
    padding: 6px 0px;
}

.normal-hightligted-text {
    font-size: 18px;
    color: #0079FF;
    font-weight: 600;
}


/* Second part styling starts from here */
.main-heading_bg {
    font-weight: 600;
    background-color: #8DC6FF;
    color: white;
    font-size: 32px;
    font-family: 'Roboto', 'Helvetica', sans-serif;
    text-align: center;
    padding: 25px 0px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 0px 3.2px,
        rgba(0, 0, 0, 0.15) -2.4px 0px 3.2px;

}



.img-border {
    border: 3px solid black;
    margin: 0 auto;
}

.animated-bg {
    background-color: #FFE300;
    color: #0066CC;
    font-size: 20px;
    padding: 10px 25px;
    width: fit-content;
    margin: auto;
    border: 0.5px solid rgb(126, 125, 125);
    border-radius: 5px;
    transform-origin: center center;
    animation: rockMotion 4s ease-in-out infinite;
}

.animated-bg_text {
    color: #0066CC;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}

@keyframes rockMotion {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(2deg);
        /* Right side down */
    }

    75% {
        transform: rotate(-2deg);
        /* Left side down */
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Third part styling */
.emoji {
    font-size: 20px;
}

.shadow-lg {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.icon {
    color: rgb(66, 185, 159);
    font-weight: 600;
}


.animated-bg_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: fit-content;
    margin: auto;
    border: 0.5px solid black;
    border-radius: 50px;
    padding: 20px;
}

.inner_div_second_part {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    row-gap: 40px;
    text-align: center;
}


/* Responsive Button Styling */
.custom-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FFE300;
    color: #0066CC;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 30px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    margin: 30px auto;
    cursor: pointer;
    border: none;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    transform-origin: center center;
    animation: rockMotion 4s ease-in-out infinite;
}

.button-text {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 600;
    gap: 5px;
}

.button-subtext {
    font-size: 16px;
    color: #0066CC;
    font-weight: normal;
}

.emoji {
    font-size: 22px;
}

@media (max-width: 768px) {
    .custom-button {
        font-size: 18px;
        padding: 12px 25px;
        margin: 30px auto;
    }

    .sub-heading1 {
        font-size: 20px;
    }

    .main-heading_bg {
        font-size: 32px;
    }

    .button-text {
        gap: 5px;
    }

    .button-subtext {
        font-size: 14px;
    }

    .emoji {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .custom-button {
        font-size: 16px;
        padding: 10px 20px;
        margin: 20px auto;
        border-radius: 40px;
    }

    .sub-heading1 {
        font-size: 20px;
    }

    .main-heading_bg {
        font-size: 26px;
    }

    .button-subtext {
        font-size: 12px;
    }

    .emoji {
        font-size: 18px;
    }
}



/* Footer styling */
.footer {
    background-color: #CAF0EF;
    color: #C2BEBE;
    padding: 0px 70px;
    text-align: center;
}

.footer-logo {
    height: 50px;
    margin: 20px auto;
    display: block;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin: 10px;
    display: inline-block;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-text1,
.footer-text2 {
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto;
    /* padding: 1px; */
}

.footer-text2 {
    max-width: 950px;
}

.container_footer {
    background-color: hsla(0, 2%, 51%, 0.916);
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-logo {
        height: 40px;
        margin-bottom: 15px;
    }

    nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-link {
        margin: 5px 0;
    }

    .footer-text1,
    .footer-text2 {
        font-size: 13px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 10px;
    }

    .footer-logo {
        height: 35px;
    }

    .footer-text1,
    .footer-text2 {
        font-size: 12px;
    }
}




/* Responsvievness */
/* Medium and below: Change to column */
@media (max-width: 1024px) {

    /* Tailwind's md = 768px, lg = 1024px */
    .parent_div_part1 {
        flex-direction: column;
        column-gap: 0;
        /* No gap needed in column mode */
    }
}

/* Medium to Large: Set column gap to 60px */
@media (min-width: 768px) and (max-width: 1279px) {

    /* Tailwind's md-lg-xl range */
    .parent_div_part1 {
        flex-direction: row;
        column-gap: 60px;
    }
}

/* XL and above: Column gap 100px */
@media (min-width: 1280px) {

    /* Tailwind's xl starts at 1280px */
    .parent_div_part1 {
        column-gap: 100px;
    }
}



/* Remove left and right padding for medium to large screens */
@media (min-width: 768px) and (max-width: 1279px) {
    .main_container {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Restore padding for XL and above */
@media (min-width: 1280px) {
    .main_container {
        padding: 30px 60px;
    }

    .parent_div_part1 {
        padding: 2px 50px;
    }
}



/* Large screens (1024px - 1279px) */
@media (max-width: 1279px) {
    .main-heading {
        font-size: 48px;
    }

    .parent_div_part1 {
        padding: 2px 40px;
    }
}

/* Medium screens (768px - 1023px) */
@media (max-width: 1023px) {
    .main-heading {
        font-size: 36px;
    }

    .parent_div_part1 {
        padding: 2px 30px;
    }
}

/* Small screens (below 768px) */
@media (max-width: 767px) {
    .main-heading {
        font-size: 28px;
    }

    .parent_div_part1 {
        padding: 2px 10px;
    }
}