@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "QuickSand", sans-serif;
}

a{
    text-decoration: none;
}

/* M-container */

.main-container .container .M-container {
    display: flex;
    flex-direction: column;
    color: #fff;
    height: 100vh;
    position: relative;
    overflow: hidden;
    align-items: space-between;
}

.main-container .container .M-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/static/img/Background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(8px); /* Blurs only the background */
    z-index: 0;
}

.main-container .container .M-container > * {
    position: relative;
    z-index: 1; /* Ensures the content is above the blurred background */
}


.main-container .container .M-container .sections {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    overflow-y: auto;

    /* Hide scrollbar (for WebKit-based browsers) */
    scrollbar-width: none; /* for Firefox */
    -ms-overflow-style: none; /* for Internet Explorer and Edge */
}

.main-container .container .M-container .sections::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

.main-container .container .M-container .sections section.greet .heading h1 {
    font-size: 50px;
    text-align: center;
    margin: 50px 0;
}
.main-container .container .M-container .sections section.greet .bar {
    background: #fff;
    display: flex;
    padding: 12px 25px;
    border-radius: 50px;
    margin-top: 30px;
}
.main-container .container .M-container .sections section.greet .bar .bar-ico {
    width: 25px;
    height: 25px;
    margin-right: 5px;
}
.main-container .container .M-container .sections section.greet .bar .bar-inp{
    width: 100%;
}
.main-container .container .M-container .sections section.greet .bar .bar-inp input{
    border: 0;
    outline: 0;
    width: 58vw;
    font-style: italic;
}
.main-container .container .M-container .sections section.greet .bar .bar-inp input::placeholder{
    font-style: italic;
}
.M-container .services .S-heading h2{
    font-size: 32px;
    text-align: center;
}

.M-container .services-cnt {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.M-container .services-cnt .service {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    user-select: none;
    cursor: pointer;
    padding-bottom: 60px;
}

.service .S-h{
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    margin-top: 10px;
}

.service .S-h .ico img {
    border-radius: 50%;
}

.service .S-h h2 {
    margin-top: 10px;
    font-weight: 600;
}

.M-container .services-cnt .service h2 {
    font-weight: 500;
    margin-bottom: 20px;
}

.S-3 .S-h h2 {
    background-image: linear-gradient(135deg, #FFCC33 0%, #E233FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
}

.S-2 .S-h h2 {
    background-image: linear-gradient(135deg, #2F80ED 0%, #B2FFDA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
}

.S-1 .S-h h2 {
    background-image: linear-gradient(135deg, #D6FF7F 0%, #00B3CC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
}

.S-4 .S-h h2 {
    background-image: linear-gradient(135deg, #6699FF 0%, #FF3366 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
}

.S-5 .S-h h2 {
    background-image: linear-gradient(135deg, #CB5EEE 0%, #4BE1EC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
}

.M-container .services-cnt .service .S-desc {
    font-size: 20px;
    font-weight: 0;
    color: #e9e7e7;
}

.end{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 100px;
    margin-bottom: 50px;
}

.end .end-H img {
    width: 120px;
}
.end span {
    color: #23CF82;
}
.end .end-L {
    margin-top: 25px;
}
.end .end-L span {
    color: #fff;
    font-size: 14px;
}
.end-L span a{
    color: #fff;
    text-decoration: none;
}
.end-L span a:hover {
    border-bottom: 1px solid #fff;
}
.services .services-cnt .service {
    transition: .5s;
}
.services .services-cnt .service:hover{
    transform: translateY(-10px);
    transition: .2s;
}

.messages {
    margin-top: 20px;
    padding: 0px 20px;
}
.messages .msg-cnt {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.messages .msg-cnt .user-msg {
    display: flex;
    justify-content: end;
}
.messages .msg-cnt .bot-msg {
    display: flex;
    justify-content: start;
}

.messages .msg-cnt .user-msg div {
    max-width: 48vw;
    padding: 20px;
    background: #2F80ED;
    border-radius: 15px;
}

.messages .msg-cnt .bot-msg div {
    max-width: 48vw;
    padding: 20px;
    background: #178c57;
    border-radius: 15px;
}

.end .links {
    display: flex;
    gap: 100px;
    margin-top: 30px;
}
.end .links .link {
    color: #fff;
}

@media only screen and (max-width:1166px) {
    .services-cnt {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .service {
        width: 23.3333333%;
    }
}

@media only screen and (max-width:700px) {
    .service {
        width: 100%;
    }
}

@media only screen and (max-width:400px) {
    header .heading {
        min-width: 0%;
    }
    .end .links {
        flex-direction: column;
        gap: 20px;
    }
}