* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}

button {
    background-color: #0914e5;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    /* Smooth transition for all properties */
}

button:hover {
    background-color: #5a7ef1;
    /* Lighter blue for hover effect */
    transform: scale(1.1);
    /* Slightly enlarge the button */
    box-shadow: 0 8px 16px rgba(9, 20, 229, 0.3);
    /* Add shadow for depth */
    cursor: pointer;
    /* Change cursor to pointer on hover */
}

button:hover {
    background-color: #5a7ef1;
    /* Lighter blue for hover effect */
    transform: scale(1.1);
    /* Slightly enlarge the button */
    box-shadow: 0 8px 16px rgba(9, 20, 229, 0.3);
    /* Add shadow for depth */
    cursor: pointer;
    /* Change cursor to pointer on hover */
}

/* header */
.nav-link {
    font-size: 20px;
    font-weight: 400;
    border-radius: 10px;
    margin-right: 15px;
    padding: 10px 20px;
}

.nav-link:hover {
    background-color: #0914e5;
    color: #fff!important;
}



.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* header */

/* hero */
.heroSection {
    background-image: url("./images/heroBackgroundImage.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: calc(100vh - 62px);
    display: flex;
    align-items: center;
    background-color: #ecedf3;
}

.heroSection h4 {
    font-size: 40px;
    font-weight: 400;
}

.heroSection h1 {
    font-size: 96px;
    font-weight: 700;
    color: #0914e5;
    margin-bottom: 0;
}

.heroSection h5 {
    font-size: 24px;
    font-weight: 400;
}

.heroSection p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

/* hero */

/* why choose atom bank */
.whyChooseAtomBank {
    background-color: #ecedf3;
    padding: 60px 0;
}

.servicesWrapper {
    display: flex;
    align-items: center;
}

.questionMark h3 {
    font-size: 48px;
    font-weight: 400;
}

.questionMark h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0914e5;
}

.perticularService {
    margin-bottom: 25px;
}

.perticularService h5 {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
}

.perticularService p {
    font-size: 20px;
    font-weight: 400;
}

/* why choose atom bank */
.ourService {
    padding: 60px 0;
}

.ourService h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.ourselectiveService {
    margin-bottom: 30px;
}

.ourselectiveService h4 {
    font-size: 24px;
    font-weight: 700;
}

.ourselectiveService p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

/* why choose atom bank */

/* feature */
.feature {
    background-color: #0914e5;
    padding: 100px 0;
    position: relative;
}

.featureTopRightImage {
    position: absolute;
    top: 0;
    right: 0;
}

.feature h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    z-index: 99;
}

.feature h4 {
    font-size: 24px;
    font-weight: 700;
}

.feature p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.feature .row>.col-12 {
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth transition for scaling and shadow */
}

.feature .row>.col-12:hover {
    transform: scale(1.05);
    /* Slightly enlarge the element on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Add a subtle shadow for a lifted effect */
    z-index: 99;
}

.feature .row>.col-12:nth-child(2) {
    background-color: #e5f1d8;
    /* First child styles */
    flex: 1;
    z-index: 99;
}

.feature .row>.col-12:nth-child(3) {
    background-color: #ead2ff;
    /* Second child styles */
    flex: 1;
    z-index: 99;
}

.feature .row>.col-12:nth-child(4) {
    background-color: #fff3c5;
    /* Third child styles */
    flex: 1;
    z-index: 99;
}

.feature .row>.col-12:nth-child(5) {
    background-color: #ffeaf0;
    /* Fourth child styles */
    flex: 1;
    z-index: 99;
}

/* feature */

/* revews */
.revews {
    padding: 100px 0;
    background-image: url("./images/reviewbg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.revews h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.revews h5 {
    font-size: 28px;
    font-weight: 700;
}

.revews p {
    font-size: 28px;
    font-weight: 400;
    line-height: 42px;
}

.review1 {
    background-color: #0914e5;
    flex: 1;
    border-radius: 15px;
    padding: 80px 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}

.review1:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* revews */

/* join us */
.joinUs {
    padding: 100px 0;
}

.joinUs h4 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.joinUs h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 78px;
    color: #0914e5;
    margin-bottom: 20px;
}

/* join us */

footer {
    background-color: #0914e5;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.footer h6 {
    font-size: 24px;
    font-weight: 700;
}

footer p {
    font-size: 24px;
    font-weight: 400;
}

/* about us page */
.aboutMain {
    background-image: url("./images/about/mainbg.png");
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.aboutMain h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    line-height: 60px;
    text-align: left;
}

.aboutMain h3 {
    color: #fff;
    font-family: Poppins;
    font-size: 36px;
    font-weight: 700;
    line-height: 54px;
    text-align: left;
}

.aboutMain p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

.atomBankInfoText {
    border-left: 2px solid #fff;
}

/* about us page */


/* contact */
.contactMain{
    padding: 100px 0;
}
.contactMain p {
    font-size: 32px;
    font-weight: 400;
    line-height: 48px;
    padding: 30px 0;
}

.contactMain a {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #0914e5;
}

.contactMain img {
    margin-right: 5px;
}

.contactDetails {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-around;
}

/* contact */

@media (max-width: 991px) {

    .nav-link {
        padding: 10px 1px;
        color: #fff!important;
    }

    .navbar-dark{
        background-color: #0914e5;
        padding: 15px 0;
    }

    .contactMain a {
        font-size: 20px;
    }

    .contactMain p {
        padding: 0px 15px 20px 15px;
        font-size: 20px;
        line-height: 30px;
    }

    .contactDetails {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        justify-content: space-around;
    }
    .joinUs h4 {
        font-size: 32px;
    }

    .joinUs h1 {
        font-family: Poppins;
        font-size: 40px;
        font-weight: 700;
        line-height: 46px;
        text-align: left;
    }

    .questionMark img {
        display: none;
    }

    .heroSection {
        background-image: unset;
        background-color: #fff;
    }
}

/* feature */

@media (max-width: 768px) {

    .revews p {
        font-size: 20px;
        font-weight: 400;
        line-height: 30px;
    }

    .joinUs h1 {
        font-size: 30px;
    }

    .ourService .ourselectiveService{
        margin-bottom: 40px;
        border: 1px solid #0914e55b;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 8px 16px rgba(9, 20, 229, 0.3);
    }
    .serviceresponsiveclass{
        padding: 0 10px;
    }

    .whyChooseAtomBank img{
        width: 100%;
    }
    .revews h2 {
        font-size: 32px;
    }

    .revews,
    .feature {
        padding: 70px 20px;
    }

    .feature .row>.col-12:nth-child(2),
    .feature .row>.col-12:nth-child(3),
    .feature .row>.col-12:nth-child(4),
    .feature .row>.col-12:nth-child(5) {
        flex: unset;
        /* Reset flex for mobile */
    }

    .feature h2 {
        font-size: 32px;
    }

    .ourselectiveService h4 {
        font-size: 24px;
    }

    .ourService h2 {
        font-size: 32px;
    }

    .questionMark h3 {
        font-size: 32px;
    }

    .questionMark h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .heroSection h4 {
        font-size: 20px;
    }

    .heroSection h1 {
        font-size: 40px;
    }

    .heroSection h5 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    button {
        font-size: 15px;
        padding: 7px 15px;
    }

    .heroSection p {
        font-size: 17px;
        line-height: 25px;
    }
}