﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cambria;
}

html, body {
    height: 100%;
    width: 100%;
}

/* navbar styling */
.bla_logo {
    height: 4.125rem;
    width: 9.375rem;
}

.nav-border {
    border: 1px solid #EEEEEE;
}

.nav-bg {
    background-color: #242762;
}

.li-color {
    color: #FFFFFF !important;
}

/* second section styling */
.second-section-bg-color {
    background-color: #D4D4F3;
}

.button-one {
    background-color: #242762;
    color: #FFFFFF;
    padding: 8px 13px;
    border: none;
    border-radius: 5px;
}

    .button-one:hover {
        color: #FFFFFF !important;
    }

.paddblock-secondsection {
    padding-block: 9rem;
}
/* .right-side>h1 {
    font-weight: 600;
    color: #000000;
    font-family: Cambria;
}
.right-side>p {
    color: #000000;
    font-family: Cambria;
    font-size: 1.1875rem;
} */

/* second section animation */

/* For the image animation */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* .right-side-img img {
    animation: bounce 2s infinite ease-in-out;
} */
.one img {
    animation: bounce 2s infinite ease-in-out;
}


/* For text animations */
.main-header h1, .right-side-para p {
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-header > h1 {
    color: #000000;
    font-weight: 700;
}

.left-side-para > p {
    color: #565656;
    font-size: 1.125rem;
}
/* Keyframes for continuous left-to-right animation */
@keyframes moveLeftRight {
    0% {
        transform: translateX(100%); /* Start off-screen to the right */
    }

    50% {
        transform: translateX(-100%); /* Move to the left, off-screen */
    }

    100% {
        transform: translateX(100%); /* End back to off-screen on the right */
    }
}
/* second section styling ends here */

/* third section styling starts */
.third-sec-heading > h1 {
    color: #000000;
    font-weight: 700;
}

.third-sec-heading > p {
    color: #000000;
    font-size: 1.25rem;
}

.heading-color {
    color: #000000;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.right-side img, .left-side img {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible img {
    opacity: 1;
    transform: scale(1);
}

/* .left-side-top, .right-side-bottom {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
} */

.visible .left-side, .visible .right-side {
    opacity: 1;
    transform: translateY(0);
}

.right-side, .left-side {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible .right-side,
.visible .left-side {
    opacity: 1;
    transform: translateY(0);
}


.btn-primary {
    transition: transform 0.3s ease-in-out;
}

    .btn-primary:hover {
        transform: scale(1.1);
    }

.paddblock {
    padding-block: 3rem;
}
/* third section styling ends */

/* fourth section styling starts */
.section-four-heading > h2 {
    color: #000000;
    font-weight: 500;
}

.card-body > a {
    text-decoration: none;
}

.card-dimension {
    min-height: 400px;
    width: 356px;
}

.card-nextrow-dimension {
    height: 380px;
    width: 356px;
}


/* Shadow effect on cards */
.shadow-effect {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .shadow-effect:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
    }

/* fourth section styling ends */


/* fifth section styling starts*/
.Email-header {
    border: 1px solid #EEEEEE;
    padding-block: 2rem;
}

.logo-image {
    text-align: center;
}

    .logo-image > img {
        height: 170px;
        width: 170px;
    }
/* fifth section styling ends */

/* sixth section styling starts */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%); /* Start off-screen to the left */
        opacity: 0;
    }

    100% {
        transform: translateX(0); /* End at its original position */
        opacity: 1;
    }
}

/* Apply the animation to the image */
.animate-left {
    animation: slideInFromLeft 1s ease-out forwards; /* 1s duration, ease-out timing, and retain the final state */
}


.top-heading > h1 {
    color: #000000;
    font-weight: 700;
}

.para > p {
    color: #565656;
    font-size: 1.125rem;
}

.paragraph-color {
    color: #565656;
}


/* eight section styling starts  */
.faq-heading > h1 {
    color: #000000;
    font-weight: 700;
}

/* Global styles for the FAQ section */
.faqs-section {
    background-color: #f7f7f7;
    padding: 60px 0;
}

    .faqs-section h2 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #333;
    }

/* Accordion button styles */
.accordion-button {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

    /* Hover effect for accordion buttons */
    .accordion-button:hover {
        background-color: #f1f1f1;
        transform: scale(1.05);
        cursor: pointer;
    }

    .accordion-button i {
        font-size: 1.4rem;
        transition: transform 0.3s ease;
    }

    /* Change icon direction on expand/collapse */
    .accordion-button.collapsed i {
        transform: rotate(45deg);
    }

/* Accordion body styling */
.accordion-body {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    color: #555;
}

/* Transition for smooth accordion collapse */
.accordion-collapse {
    transition: max-height 0.5s ease-out;
}

/* Style for active accordion item */
.accordion-item .accordion-button:not(.collapsed) {
    color: #007bff;
    border-color: #007bff;
}

    .accordion-item .accordion-button:not(.collapsed) i {
        color: #007bff;
    }

/* For accordion icons: */
.faqs-section .accordion-button i {
    transition: transform 0.3s ease;
}
/* eight section styling ends */


/* footer styling starts*/
.footer-section {
    border: 1px solid #D6D6D6;
    padding-top: 3rem;
}

/* .foot {
    padding-left: 4.0625rem;
  } */

ul {
    padding-left: 0px;
}

    ul > li {
        list-style: none;
    }

        ul > li > a {
            text-decoration: none;
            color: #565656;
        }

/* footer styling ends */



