@font-face {
    font-family: GilroyRegular;
    src: url(gilroy-regular.ttf);
}
@font-face {
    font-family: GilroyBold;
    src: url(gilroy-bold.ttf);
}


.main_Banner {
    width: 100%; 
    background: rgb(238, 238, 238);
    /* margin-top: 4rem; */
    overflow: hidden;
    position: relative;
}
.main_Banner .banner_img_Container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; 
    height: 100vh;
    transition: transform 0.8s ease;
    will-change: transform;
}

.main_Banner .banner_img_Container img {
    width: 100%;
    height: 100%;
    opacity: 0.5;
    object-fit: cover;
    /* border-bottom-left-radius: 50% 18%;
    border-bottom-right-radius: 50% 18%; */
    clip-path: ellipse(90% 100% at 50% 0%);
}

.banner_Content {
    position: absolute;
    width: 65%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 5;
    padding: 2rem 3rem;
    border-radius: 12px;
    /* background: linear-gradient(to bottom, rgb(135, 135, 135), rgb(231, 230, 230));
    box-shadow: 0 10px 40px rgb(0,0,0,0.7); */
    opacity: 1;
}
.banner_Content .text-content1 {
    font-family: 'GilroyBold'; 
    font-weight: 900;
    font-size: 4rem;
    color: black;
    line-height: 0.8;
    text-align: center;
}
.banner_Content .text-content2 {
    font-family: 'GilroyRegular'; 
    font-weight: 600;
    font-size: 1.25rem;
    color: black;
    line-height: 1.5;
    text-align: center;
    margin-top: 2rem;
}
.banner_Content .main-points-content {
    font-family: 'GilroyRegular'; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.banner_Content .main-points-content .each-point {
    width: 33.33%;
    font-size: 1.25rem;
    font-weight: 550;
    margin-top: 1rem;
}
.banner_Content .main-points-content .each-point i {
    margin-right: 0.5rem;
    color: cornflowerblue;
    border: 2px solid cornflowerblue;
    border-radius: 50px;
    padding: 0.25rem 0.3rem;
}
.banner_Content .text-content1 span {
    font-size: 2.75rem;
}
.banner_Content .btn-Section {
    font-family: 'GilroyRegular'; 
    margin-top: 3rem;
    text-align: center;
}
.banner_Content .btn-Section .btn {
    background-color: white !important;
    border: 2px solid rgb(207, 172, 95);
    border-radius: 7px !important;
    color: black;
    font-weight: 600; 
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
}
.banner_Content .btn-Section .contactBtn {
    background-color: rgb(123, 155, 207) !important;
    border: 2px solid rgb(123, 155, 207); 
    color: white;
    border-radius: 7px !important;
    font-weight: 600; 
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
    margin-left: 1rem;
}


@media screen and (max-width: 374px) {
}
@media screen and (min-width: 375px) {
}
@media screen and (min-width: 425px) {
}
@media screen and (min-width: 768px) {
}
@media screen and (min-width: 992px) {
}
@media screen and (min-width: 1200px) {
}
@media screen and (min-width: 1300px) {
}


.trustedClients {
    background: linear-gradient(to bottom, rgb(238, 238, 238), white);
    padding: 1rem 0 4rem 0;
}
.imgSlider-heading {
    font-family: 'GilroyBold'; 
    color: rgb(10, 31, 71);
    text-align: center; 
}
.imgSlider {
    width: 100%;
    height: fit-content;
    overflow: hidden;
    background-color: transparent;
    position: relative;
}

.imgSlider .slider-track {
    display: flex;
    align-items: center;
    width: fit-content;
    animation: scroll-left 30s linear infinite;
}

.imgSlider .img-holder {
    width: 15rem;
    padding: 0 4rem;
    flex-shrink: 0;
}

.imgSlider .img-holder img {
    width: 100%;
    height: auto;
}

/* Keyframe Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


@media screen and (max-width: 374px) {
    .imgSlider-heading {
        font-size: 1.25rem; 
        margin-bottom: 1.5rem;
    }
}
@media screen and (min-width: 375px) {
    .imgSlider-heading {
        font-size: 1.5rem; 
        margin-bottom: 2rem;
    }
}
@media screen and (min-width: 425px) {
    .imgSlider-heading {
        font-size: 1.75rem; 
        margin-bottom: 2rem;
    }
}
@media screen and (min-width: 768px) {
    .imgSlider-heading {
        font-size: 2rem; 
        margin-bottom: 2rem;
    }
}
@media screen and (min-width: 1024px) {
    .imgSlider-heading {
        font-size: 2rem; 
        margin-bottom: 2rem;
    }
}
@media screen and (min-width: 1200px) {
    .imgSlider-heading {
        font-size: 2rem; 
        margin-bottom: 2rem;
    }
}
@media screen and (min-width: 1300px) {
    .imgSlider-heading {
        font-size: 2.5rem; 
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}



.benefitDiv {
    background: white;
    padding: 3rem 0 4rem 0;
    position: relative;
}
.benefit_img_Container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; 
}
.benefit_img_Container img {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    object-fit: cover;
}

.benefitDiv .heading {
    font-family: 'GilroyBold'; 
    color: rgb(10, 31, 71); 
    text-align: center; 
    font-size: 2.5rem; 
}
.benefitDiv .description {
    font-family: 'GilroyRegular'; 
    color: rgb(74, 74, 74); 
    text-align: center; 
    font-size: 1.1rem; 
    margin: 1rem 0 3rem 0;
    padding: 0 5rem;
}
.benefitsContainer {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 100px;
}
.benefitsContainer .each_benefit {
    position: relative;
    overflow: hidden;
    width: 20%;
    height: 200px;
    margin-bottom: 3rem;
    border-right: 1px solid rgb(199, 198, 198);
}
.each_benefit .benefitImgSection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.each_benefit .benefitImgSection img {
    width: 70px;
}
.each_benefit .benefitBlogSection {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    padding: 0.5rem 1rem;
}
.each_benefit .benefitBlogSection .megaheading {
    font-family: "GilroyBold";
    color: black;
    font-size: 1rem;
    text-align: center;
}
.each_benefit .benefitBlogSection .heading {
    font-family: "GilroyBold";
    color: rgb(163, 123, 23);
    font-size: 2rem;
    text-align: center;
}
.each_benefit .benefitBlogSection .content {
    font-family: "GilroyRegular";
    font-family: 'Montserrat',sans-serif;
    font-weight: 450;
    color: rgb(77, 76, 76);
    text-align: center;
    font-size: 0.9rem;
}



.mainbenefitDiv {
    background: white;
    padding: 3rem 0 4rem 0;
    position: relative;
}
.mainbenefitDiv .heading {
    font-family: 'GilroyBold'; 
    color: rgb(10, 31, 71); 
    text-align: center; 
    font-size: 2.5rem; 
}
.mainbenefitDiv .description {
    font-family: 'GilroyRegular'; 
    color: rgb(74, 74, 74); 
    text-align: center; 
    font-size: 1.1rem; 
    margin: 1rem 0 3rem 0;
    padding: 0 5rem;
}
.mainbenefitsContainer {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 100px;
}
.mainbenefitsContainer .each_mainbenefit {
    position: relative;
    overflow: hidden;
    width: 33.33%;
    height: 200px;
}
.each_mainbenefit .mainbenefitBlogSection {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0.5rem 2rem;
}
.each_mainbenefit .mainbenefitBlogSection .megaheading {
    background: linear-gradient(to right, rgb(163, 123, 23), rgb(249, 241, 221));
    height: 3px;
    border-radius: 10px;
    width: 40%;
    margin: 1rem 0;
}
.each_mainbenefit .mainbenefitBlogSection .heading {
    font-family: "GilroyBold";
    color: rgb(130, 155, 201); 
    font-size: 1.5rem;
    text-align: left;
}
.each_mainbenefit .mainbenefitBlogSection .content {
    font-family: "GilroyRegular";
    font-family: 'Montserrat',sans-serif;
    font-weight: 450;
    color: rgb(77, 76, 76);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}





.solutionDiv {
    background: white;
    padding: 3rem 0 4rem 0;
    position: relative;
}
.solutionDiv .heading {
    font-family: 'GilroyBold'; 
    color: rgb(10, 31, 71); 
    text-align: center; 
    font-size: 2.5rem; 
}
.solutionDiv .description {
    font-family: 'GilroyRegular'; 
    color: rgb(74, 74, 74); 
    text-align: center; 
    font-size: 1.1rem; 
    margin: 1rem 0 3rem 0;
    padding: 0 5rem;
}
.solutionsContainer {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
}
.solutionsContainer .each_solution {
    background: white;
    background: linear-gradient(
                135deg,
                #f6ddee 0%,
                #d0dbee 50%,
                #e5edd1 100%
                ) !important;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 1px 1px 5px 0px whitesmoke;
    width: 30%;
    height: 500px;
    margin: 10px;
}
.each_solution .solutionImgSection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    padding: 1rem;
}
.each_solution .solutionImgSection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.each_solution .solutionBlogSection {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    padding: 0.5rem 1rem;
}
.each_solution .solutionBlogSection .heading {
    font-family: "GilroyBold";
    color: black;
    font-size: 2rem;
    text-align: left;
}
.each_solution .solutionBlogSection .content {
    font-family: "GilroyRegular";
    font-family: 'Montserrat',sans-serif;
    font-weight: 450;
    color: rgb(77, 76, 76);
    text-align: justify;
    font-size: 1rem;
}
.each_solution .solutionBlogSection .readBtn {
    position: absolute;
    color: rgb(125, 99, 44);
    font-weight: 600;
    bottom: 1.5rem;
    left: 1rem;
    font-size: 1rem;
}



.featureDiv {
    background: white;
    padding: 3rem 0 4rem 0;
    position: relative;
}
.feature_img_Container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; 
}
.feature_img_Container img {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    object-fit: cover;
}

.featureDiv .heading {
    font-family: 'GilroyBold'; 
    color: rgb(10, 31, 71); 
    text-align: center; 
    font-size: 2.5rem; 
}
.featureDiv .description {
    font-family: 'GilroyRegular'; 
    color: rgb(74, 74, 74); 
    text-align: center; 
    font-size: 1.1rem; 
    margin: 1rem 0 3rem 0;
    padding: 0 5rem;
}
.featuresContainer {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 100px;
}
.featuresContainer .each_feature {
    position: relative;
    overflow: hidden;
    width: 23%;
    height: 80px;
    margin: 0.5rem;
    background: white;
    box-shadow: 2px 2px 5px 0px rgb(194, 193, 193);
    border-radius: 10px;
}
.each_feature .featureImgSection {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.each_feature .featureImgSection img {
    width: 100%;
    background: rgb(224, 231, 244);
    padding: 0.5rem;
    border-radius: 10px;
}
.each_feature .featureBlogSection {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 100%;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: start;
}
.each_feature .featureBlogSection .megaheading {
    font-family: "GilroyBold";
    color: rgb(93, 70, 11);
    font-size: 1rem;
}




.securityDiv {
    background: rgb(238, 238, 238);
    padding: 3rem 0 4rem 0;
}
.securityDiv .heading {
    font-family: 'GilroyBold'; 
    color: rgb(10, 31, 71); 
    text-align: center; 
    font-size: 2.5rem; 
}
.securityDiv .description {
    font-family: 'GilroyRegular'; 
    color: rgb(74, 74, 74); 
    text-align: center; 
    font-size: 1.1rem; 
    margin: 1rem 0 3rem 0;
    padding: 0 5rem;
}
.securityDiv .securityContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.securityDiv .each_security {
    width: 20%;
    height: 100px;
    text-align: center;
}
.securityDiv .each_security img {
    width: 90px;
}
.securityDiv .each_security .heading {
    font-size: 1.1rem;
    font-family: "GilroyBold";
    color: gray;
}