/* Common Styles */

@font-face {
    font-family: 'Poppins';
    font-weight: 500;
    src: local('Poppins Medium'), local('Poppins-Medium'),
        url(fonts/Poppins-Medium.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-weight: 600;
    src: local('Poppins Semibold'), local('Poppins-Semibold'),
        url(fonts/Poppins-SemiBold.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-weight: 700;
    src: local('Poppins Bold'), local('Poppins-Bold'),
        url(fonts/Poppins-Bold.ttf) format('truetype');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #333;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
}

/* Banner */
.banner {
    background: #000;
    color: #fff;
    padding: 120px 0;
    overflow: hidden;
}

.banner-img {
    background: url(images/blue-whole.webp) no-repeat;
    background-size: cover;
    height: 500px;
    width: 500px;
    position: relative;
    overflow: hidden;
    animation: scalee 8s infinite linear;
}

.banner-img::before {
    content: "";
    position: absolute;
    background: #038BE2;
    width: 20px;
    height: 20px;
    left: 230px;
    border-radius: 50%;
    animation: drop 8s infinite linear;
}

@keyframes drop {
    0% {
        transform: translateY(-100px) scale(0);
    }
    50% {
        transform: translateY(100px) scale(1);
    }
    100% {
        transform: translateY(250px) scale(0);
    }
}


@keyframes scalee {
    0% {
        opacity: 0.8;
        scale: 0.7;
        transform: rotate(0deg);
    }
    50% {
        opacity: 1;
        scale: 1;
        transform: rotate(180deg);
    } 100% {
        opacity: 0.8;
        scale: 0.7;
        transform: rotate(360deg);
    }
}


.banner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.banner-content,
.banner-anim {
    width: 50%;
}

.banner-content img {
    width: 220px;
    height: auto;
}
.banner-content h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 400px;
    margin: 30px 0;
    color: #fff;
}
.banner-content h1 span{
    background: #038BE2;
background: linear-gradient(to right, #038BE2 0%, #02448D 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}
.banner-content p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.55;
    max-width: 400px;
    color: #fff;
}

/* research Style */

.research {
    padding: 120px 0;
}

.research h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.researh-content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 80px 0 20px;
}

.researh-content-container:nth-child(even) {
    flex-direction: row-reverse;
}

.research-content,
.research-anim {
    width: 50%;
}

svg {
    max-width: 100%;
    height: auto;
}

.research-content span {
    font-size: 20px;
    padding: 5px 15px;
    border-radius: 4px;
    color: #BC5654;
    font-weight: 500;
    background: rgb(255,241,240);
background: -moz-linear-gradient(133deg, rgba(255,241,240,1) 0%, rgba(255,200,194,1) 100%);
background: -webkit-linear-gradient(133deg, rgba(255,241,240,1) 0%, rgba(255,200,194,1) 100%);
background: linear-gradient(133deg, rgba(255,241,240,1) 0%, rgba(255,200,194,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fff1f0",endColorstr="#ffc8c2",GradientType=1);
}

.research-content span.consent {
    color: #6BA14E;
    background: rgb(245,255,190);
background: -moz-linear-gradient(133deg, rgba(245,255,190,1) 0%, rgba(218,233,139,1) 100%);
background: -webkit-linear-gradient(133deg, rgba(245,255,190,1) 0%, rgba(218,233,139,1) 100%);
background: linear-gradient(133deg, rgba(245,255,190,1) 0%, rgba(218,233,139,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5ffbe",endColorstr="#dae98b",GradientType=1);
}

.research-content span.secure-ai {
    color: #2194FF;
    background: rgb(219,250,255);
background: -moz-linear-gradient(133deg, rgba(219,250,255,1) 0%, rgba(147,204,251,1) 100%);
background: -webkit-linear-gradient(133deg, rgba(219,250,255,1) 0%, rgba(147,204,251,1) 100%);
background: linear-gradient(133deg, rgba(219,250,255,1) 0%, rgba(147,204,251,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dbfaff",endColorstr="#93ccfb",GradientType=1);
}

.research-content h3 {
    font-size: 28px;
        font-weight: 700;
        line-height: 1.3;
        margin: 25px 0 15px;
}
.research-content p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    max-width: 550px;
}


/* Social Styles */
.social {
    padding: 0px 0 120px;
}

.social h2 {
    max-width: 430px;
    margin: 0 auto 80px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.fl-sm-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.social-content,
.social-accounts {
    width: 50%;
}

.social-content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 500px;
}

.social-accounts {
    text-align: center;
}
.sm-container {
    padding: 50px 20px;
    background-size: 100% 100%;
    position: relative;
    --s: 35px;
    --c: #edf4c8;
    --_g: #0000 calc(-650%/13) calc(50%/13), var(--c) 0 calc(100%/13), #0000 0 calc(150%/13), var(--c) 0 calc(200%/13), #0000 0 calc(250%/13), var(--c) 0 calc(300%/13);
    --_g0: repeating-linear-gradient(45deg,var(--_g));
    --_g1: repeating-linear-gradient(-45deg,var(--_g));
    background: var(--_g0), var(--_g0) var(--s) var(--s), var(--_g1), var(--_g1) var(--s) var(--s) #fefff6;
    background-size: calc(2*var(--s)) calc(2*var(--s));
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    margin-left: 50px;
}

.sm-container::before {
    content: "";
    position: absolute;
    background: url(images/social-plant.png) no-repeat;
    height: 170px;
    width: 110px;
    background-size: contain;
    left: -65px;
    bottom: 0;
}

.sm-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin: 20px auto 0;
}
.sm-wrapper a {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}
.sm-wrapper a:hover {
    text-decoration: underline;
}

footer {
    border-top: 1px solid #eaeaea;
    padding: 50px 0;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    background: url(images/vaanframe.svg) no-repeat;
    height: 5px;
    width: 100%;
    background-size: cover;
    bottom: 0px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.copyright-text{
    width: 60%;
}

.powered-by {
    width: 40%;
}

.copyright-text p:nth-child(1) {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}
.copyright-text p:nth-child(2) {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #646464;
    max-width: 620px;
}

.copyright-text p:nth-child(2) b {
    color: #646464;
}

.vaansoft-icon {
    background: url(images/vaansoft.png) no-repeat;
    height: 70px;
    width: 150px;
    background-size: contain;
    margin: auto;
}

.powered-by a {
    display: block;
    margin: auto;
    width: 150px;
}


/* Header announcement */
header {
    background: rgb(3,139,226);
background: -moz-linear-gradient(90deg, rgba(3,139,226,1) 0%, rgba(2,68,141,1) 35%, rgba(2,68,141,1) 57%, rgba(3,139,226,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(3,139,226,1) 0%, rgba(2,68,141,1) 35%, rgba(2,68,141,1) 57%, rgba(3,139,226,1) 100%);
background: linear-gradient(90deg, rgba(3,139,226,1) 0%, rgba(2,68,141,1) 35%, rgba(2,68,141,1) 57%, rgba(3,139,226,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#038be2",endColorstr="#038be2",GradientType=1);
padding: 20px 0;
}

header .announcement {
    
color: #fff;
font-size: 16px;
font-weight: 600;
line-height: 1.6;
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
}
.mesurz-icon {
    max-width: 130px;
    position: relative;
    padding-right: 15px;
    display: flex;
    align-items: center;
}

.mesurz-icon::after {
    content: " ";
    display: block;
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #fff;
    top: 0;
    right: 0;
}

header .announcement a {
    color: #fff;
    border: 2px solid #fff;
    padding: 5px 20px;
    text-decoration: none;
    border-radius: 20px;
}

header .announcement a:hover {
    background-color: #fff;
    color: #02448D;
}
@media screen and (max-width: 1200px) {
    .research-content, .research-anim {
        width: 100%;
    }
    .researh-content-container {
        text-align: center;
    }
    .research-content p {
        margin: 0 auto 25px;
    }
    .social h2 {
        margin: auto;
    }
    .social-content p {
        max-width: 700px;
        text-align: center;
        margin: 40px auto;
    }
    .social-content {
        width: 100%;
    }
    .social-accounts {
        width: 60%;
        margin: auto;
    }
}

@media screen and (max-width: 550px) {
    .container {
        padding: 0 20px;
    }
    body main{
        overflow-x: hidden;
    }
    .banner-content, .banner-anim {
        width: 100%;
        text-align: center;
    }
    .banner-content {
        z-index: 1;
    }
    .banner {
        padding: 75px 0;
    }
    .banner-content img {
        width: 150px;
    }
    .banner-content h1 {
        font-size: 28px;
    }
    .banner-content p {
        font-size: 16px;
    }
    .banner-img {
        height: 250px;
        width: 250px;
        z-index: 0;
        position: relative;
        left: 15%;
    }
    .banner-img::before {
        left: 115px;
        z-index: 2;
    }
    @keyframes drop {
        0% {
            transform: translateY(-50px) scale(0);
        }
        50% {
            transform: translateY(50px) scale(1);
        }
        100% {
            transform: translateY(140px) scale(0);
        }
    }
    .research {
        padding: 75px 0 55px;
    }
    .research h2 {
        font-size: 26px;
    }
    .researh-content-container {
        margin-top: 40px;
    }
    .research-content span {
        font-size: 16px;
    }
    .research-content h3 {
        font-size: 20px;
    }
    .research-content p {
        font-size: 16px;
    }
    .social h2 {
        font-size: 26px;
    }
    .social-content p {
        font-size: 16px;
        margin: 20px auto;
    }
    .social-accounts {
        width: 100%;
    }
    .sm-container {
        margin-left: 30px;
        font-size: 18px;
        padding: 25px 0;
    }
    .sm-container::before {
        height: 110px;
        width: 80px;
        left: -43px;
    }
    .sm-wrapper a {
        font-size: 14px;
    }
    .social {
        padding: 0px 0 75px;
    }
    .copyright-text,
    .powered-by  {
        width: 100%;
    }
    .copyright-text p:nth-child(1) {
        font-size: 14px;
    }
    .copyright-text p:nth-child(2) {
        font-size: 12px;
        margin-bottom: 35px;
    }

    /* Header */
 
    .announcement {
        flex-wrap: wrap;
        text-align: center;
        font-size: 14px;
    }
    .mesurz-icon {
        padding: 0 0 10px;
        margin-bottom: 10px;
    }
    .mesurz-icon::after {
        width: 100%;
        height: 2px;
        top: auto;
        bottom: -4px;
    }
}
