@import url('https://fonts.googleapis.com/css2?family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

:root {
    --text-color: rgb(20, 20, 20);
    --accent-color: #0039ac;
    --accent-color-trans: #004BDD00;
    --second-color: rgb(0, 150, 255);
}

body {
    font-family: "Sansation", sans-serif;
    overflow-x: hidden;
}

.container {
    width: 80%;
    min-height: 100vh;
    margin: auto;
    padding: 100px 0 0px 0;
}

.topbar-wrapper {
    width: 100%;
    padding: 20px 0;
    background: rgb(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.topbar {
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar a img {
    height: 40px;
}

.topbar-action-btn {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 10px;
    padding: 10px 20px;
    background: linear-gradient(45deg, blue, skyblue);
    color: white;
}

.topbar-action-btn:hover {
    opacity: 0.6;
}

.cover-section {
    width: 100%;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cover-gloom-1,
.cover-gloom-2 {
    position: absolute;
    background: pink;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(150px);
}

.cover-gloom-1 {
    top: 0%;
    left: 0px;
    background: rgb(0, 136, 255);
    opacity: 0.2;
}

.cover-gloom-2 {
    top: 0%;
    right: 0px;
    background: blueviolet;
    opacity: 0.2;
}

.cover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.cover-content h1 {
    font-size: 46px;
}

.cover-content h1 span {
    background: linear-gradient(-127deg, rgb(0, 72, 255), rgb(184, 113, 255));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.cover-content p {
    font-size: 18px;
    color: rgb(50, 50, 50);
    line-height: 1.5;
}

.cover-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.cover-action-btn {
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 10px;
    padding: 12px 25px;
}

.cover-action-btn.primary {
    background: linear-gradient(-45deg, green, lightgreen);
    color: white;
}

.cover-action-btn.secondary {
    background: linear-gradient(-45deg, rgb(103, 69, 255), skyblue);
    color: white;
}

.cover-action-btn:hover {
    opacity: 0.6;
}

@media (max-width: 850px) {
    .topbar {
        width: 95%;
    }

    .container {
        width: 95%;
    }

    .cover-content h1 {
        font-size: 30px;
        text-align: center;
        margin-bottom: 20px;
    }

    .cover-content p {
        font-size: 15px;
        text-align: center;
        margin-bottom: 20px;
    }

    .cover-action {
        margin-top: 0px;
    }

    .cover-action-btn {
        font-size: 15px;
        padding: 10px 20px;
    }

    .cover-gloom-1,
    .cover-gloom-2 {
        height: 200px;
        width: 200px;
        filter: blur(50px);
    }
}

@media (max-width: 500px) {
    .topbar-wrapper {
        padding: 10px 0;
    }

    .cover-section {
        min-height: 40vh;
    }

    .cover-content h1 {
        font-size: 26px;
        margin-bottom: 0px;
    }

    .cover-action {
        flex-direction: column;
        gap: 15px;
    }

    .cover-action-btn {
        width: 100%;
        text-align: center;
    }
}

.about-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 0;
}

.about-image-side {
    width: 40%;
}

.about-image-side img {
    width: 350px;
    border-radius: 50%;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
    animation: rotoro 260s linear infinite;
    user-select: none;
    -webkit-user-drag: none;
}

@keyframes rotoro {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-content-side {
    width: 70%;
}

.about-content-side p {
    font-size: 17px;
    line-height: 1.5;
}

.about-content-side p span {
    font-weight: bold;
    color: rgb(0, 72, 255);
}


.about-content-side li {
    list-style: none;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.about-content-side li i {
    font-size: 20px;
    color: rgb(0, 136, 255);
}


@media (max-width: 1000px) {
    .about-image-side img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 850px) {
    .about-section {
        flex-direction: column;
        padding: 50px 0px 30px 0px;
    }

    .about-section.reverse {
        flex-direction: column-reverse;
        padding: 0px 0px 60px 0px;
    }

    .about-content-side,
    .about-image-side {
        width: 100%;
        text-align: center;
    }

    .about-content-side li {
        text-align: center;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: rgb(30, 30, 30);
    }

    .about-content-side li i {
        display: none;
    }
}

@media (max-width: 500px) {
    .about-image-side img {
        width: 150px;
        height: 150px;
        margin-bottom: 0px;
    }

    .about-section {
        gap: 30px;
    }

    .about-content-side p {
        font-size: 15px;
        line-height: 1.4;
    }
}

.services-section {
    width: 100%;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
}


.services-gloom-1,
.services-gloom-2 {
    position: absolute;
    background: pink;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(150px);
}

.services-gloom-1 {
    top: 5%;
    right: 0px;
    background: rgb(0, 136, 255);
    opacity: 0.2;
}

.services-gloom-2 {
    top: 5%;
    left: 0px;
    background: blueviolet;
    opacity: 0.2;
}

.services-head {
    font-size: 30px;
    text-align: center;
}

.services-text {
    font-size: 17px;
    text-align: center;
    line-height: 1.5;
}

.services-bracket {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

.services-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.services-item {
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    background: rgb(255, 255, 255, 0.6);
    min-height: 150px;
}

.services-item h3 {
    font-size: 18px;
}

.services-item p {
    font-size: 15px;
    line-height: 1.3;
}

@media (max-width: 650px) {

    .services-gloom-1,
    .services-gloom-2 {
        height: 200px;
        width: 200px;
        filter: blur(50px);
    }

    .services-head {
        font-size: 25px;
        text-align: center;
        margin-bottom: 0px;
    }

    .services-text {
        font-size: 15px;
        text-align: center;
        margin-bottom: 0px;
    }

    .services-bracket {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }

    .services-column {
        width: 100%;
    }

    .services-item {
        background: rgb(240, 240, 240);
        align-items: center;
        justify-content: center;
        min-height: auto;
        text-align: center;
        background: linear-gradient(45deg,
                white,
                rgb(245, 245, 245),
                white);
    }
}

.case-study-section {
    width: 100%;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;

}

.case-gloom-1,
.case-gloom-2 {
    position: absolute;
    background: pink;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(150px);
}

.case-gloom-1 {
    top: 25%;
    right: 0px;
    background: rgb(208, 97, 255);
    opacity: 0.3;
}

.case-gloom-2 {
    top: 45%;
    left: 0px;
    background: rgb(43, 165, 226);
    opacity: 0.3;
}

.case-study-head {
    font-size: 30px;
    text-align: center;
}

.case-study-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 30px 0;
    width: 70%;
}

.case-study-content {
    padding: 30px 40px;
    border-radius: 50px;
    background: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    background: linear-gradient(185deg,
            rgb(221, 237, 255),
            white);
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);

}

.case-study-title {
    font-size: 18px;
}

.case-study-text {
    font-size: 15px;
    line-height: 1.5;
}

.case-study-row img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    padding: 10px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
    user-select: none;
    -webkit-user-drag: none;
}

@media (max-width: 1150px) {
    .case-study-row {
        width: 100%;
    }
}

@media (max-width: 850px) {
    .case-study-head {
        font-size: 25px;
    }

    .case-study-row {
        gap: 20px;
        padding: 0px 0;
    }

    .case-study-content img {
        width: 180px;
        height: 180px;
        padding: 0px;
    }
}

@media (max-width: 650px) {

    .case-gloom-1,
    .case-gloom-2 {
        height: 200px;
        width: 200px;
        filter: blur(50px);
    }

    .case-study-row {
        flex-direction: column;
    }

    .case-study-row.reverse {
        flex-direction: column-reverse;
    }

    .case-study-content {
        padding: 20px;
        border-radius: 20px;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }
}


.testimonials-section {
    width: 100%;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
}

.testimonials-head {
    font-size: 30px;
    text-align: center;
}

.testimonials-text {
    font-size: 17px;
    text-align: center;
    line-height: 1.5;
}

.testimonials-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.testimonials-item {
    padding: 20px;
    border-radius: 20px;
    background: rgb(245, 245, 245);
    font-size: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 10px;
    min-height: 220px;
    background: linear-gradient(-45deg,
            white,
            rgb(245, 245, 245),
            white);
    border-bottom: 2px solid gold;
}

.testimonials-name {
    font-size: 12px;
    color: rgb(70, 70, 70);
    font-weight: bold;
}

.testimonials-statement {
    color: black;
    line-height: 1.3;
    font-size: 14px;
}

@media (max-width: 850px) {
    .testimonials-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-item {
        padding: 15px;
        min-height: 180px;
    }
}

@media (max-width: 650px) {
    .testimonials-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        padding: 0px;
        margin: 0px;
        width: 100%;
    }

    .testimonials-item {
        min-height: auto;
    }

    .testimonials-head {
        font-size: 25px;
    }

    .testimonials-text {
        font-size: 15px;
        text-align: center;
        margin-bottom: 0px;
    }
}


.faq-section {
    width: 100%;
    margin: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    position: relative;
    background: rgb(250, 250, 250);
    border-radius: 50px;
    padding: 40px 30px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
}

.faq-head {
    font-size: 30px;
    text-align: center;
}

.faq-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 45px;
    width: 100%;
    text-align: center;
}

.question-bracket {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: rgb(0, 72, 255);
}

.question-bracket i {
    color: rgb(80, 80, 80);
}

.faq-statement {
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 850px) {
    .faq-section {
        padding: 20px 10px;
    }

    .faq-head {
        font-size: 25px;
    }

    .question-bracket {
        font-size: 16px;
    }

    .faq-statement {
        font-size: 14px;
    }
}


.footer-section {
    width: 100%;
    padding: 50px 0 30px 0;
    border-radius: 0;
    background: rgb(230, 230, 230);
    color: white;
}

.footer-tags {
    padding: 0 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-tag-item {
    font-size: 10px;
    color: rgb(60, 60, 60);
    font-weight: 400;
    padding: 2px 5px;
    background: white;
    border-radius: 5px;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: rgb(47, 47, 47);
    padding: 10px 30px;
    width: 80%;
    margin: auto;
    border-radius: 30px;
    margin-top: 30px;
    background: white;
}

@media (max-width: 550px) {
    .footer-tags {
        padding: 0 15px;
    }

    .footer {
        width: 90%;
    }
}

.map-section {
    text-align: center;
    padding-top: 20px;
}

.map-section h2 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
}

.map-section h2 i {
    color: crimson;
}