/* Font Face */
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

/* Poppins Regular */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Poppins Light */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Poppins Medium */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Poppins SemiBold */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Poppins Bold */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}



body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

a,
span,
a:hover,
a:active,
button {
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    /* padding: 0; */
}

a,
div a:hover,
div a:active,
div a:focus,
button {
    text-decoration: none;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

p {
    margin: 0;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    margin: 0;
}

ul,
a {
    list-style: none;
    margin: 0;
    padding: 15px;
}

img {
    max-width: 100%;
}

.cm-overflow {
    overflow: hidden;
}

.container {
    padding: 0 15px;
    max-width: 1440px;
    margin: 0 auto;
    /* display: flex; */
    /* justify-content: space-between; */
    /* align-items: center; */
}

a {
    color: transparent;
}

.app_wrapper::-webkit-scrollbar {
    width: 2px;
    background-color: transparent;
}

.app_wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #eee;
}

.app_wrapper::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}

/******************************************************* navbar *********************************************************/

.navbar {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0%;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
    background-color: white;
}

.logo {
    padding: 0;
}

/* Logo */
.logo img {
    height: 100%;
    width: 100%;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 60px;
}

.nav-links a {
    text-decoration: none;
    color: #2C2C2C;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 1px;
    border-bottom: 2px solid transparent;
    font-weight: 400;
}

.nav-links a.active,
.nav-links a:hover {
    color: #5E3F8F;
    border-bottom: 2px solid #5E3F8F;
}

/* Right Side */
.btn {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: #FFFFFF;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}
.btn:hover {
    background: linear-gradient(256.58deg, #002335 1.3%, #023A6B 22.82%, #111D41 42.83%, #11152D 68.03%, #2B1843 83.67%, #1E112A 96.77%);
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #333;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        gap: 20px;
        padding: 15px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    nav#nav-links {
        width: -webkit-fill-available;
    }

    .nav-links a {
        width: max-content;
    }

    .nav-links.show {
        max-height: 300px;
        /* enough to reveal items */
        opacity: 1;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    /* Rotate icon when active */
    .menu-toggle.active {
        transform: rotate(90deg);
        font-size: 35px;
    }

    .nav-right {
        display: none;
        /* hide button on mobile */
    }
}

/******************************************************* hero section *********************************************************/
body {
    background: #fdfdfd;
    color: #333;
}

.hero {
    background: linear-gradient(244.73deg, rgba(4, 191, 215, 0.1) -48.91%, rgba(99, 56, 139, 0.1) 79.49%);
    padding: 0 0 50px 0;
}

.hero-content {
    flex: 1 1 45%;
    display: flex;
    padding: 80px 0 0 0;
    position: relative;
}

.subtitle {
    color: #3395DA;
    font-size: 36px;
    margin-bottom: 10px;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.title {
    font-size: 48px;
    /* font-weight: 400; */
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 800px;
}

.description {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    max-width: 450px;
}

.btn {
    background: linear-gradient(244.73deg, #04BFD7 -48.91%, #63388B 79.49%);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.hero-image {
    flex: 1 1 45%;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 4s ease-in-out infinite, fadeIn 1.5s ease-in-out;
    padding-bottom: 50px;
}


.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0%;
    font-size: 16px;
    font-weight: 500;
}

.stats .stat {
    padding: 0 55px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.stats .stat span {
    font-weight: bold;
    font-size: 18px;
    color: #5E3F8F;
    margin-right: 5px;
    text-decoration: underline;
}

.stats .divider {
    width: 1px;
    height: 20px;
    background: #5E5E5E;
}

.circle-text {
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: 23%;
    right: 59%;
}

.text-circle {
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
}

.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 40px;
    height: 40px;
}

/******************************************************* Simple Working Process section *********************************************************/
.simple_working_title {
    font-size: 36px;
    color: #2D435C;
    margin-bottom: 10px;
}

.simple_working_subtext {
    font-size: 20px;
    color: #5E3F8F;
}

.process-section {
    text-align: center;
    padding: 50px 0px 100px 0;
    position: relative;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    position: relative;
    gap: 40px;
}

.process-line {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    height: 2px;
    background: #6a1b9a;
    z-index: 1;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

/* Always visible tooltip */
.step .tooltip {
    position: absolute;
    bottom: 48.5%;
    /* adjust so it's above the line */
    left: 50%;
    transform: translateX(-50%);
    /* background: #333; */
    /* color: #fff; */
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 3;
}

/* Optional small arrow */
.step .tooltip::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #5E3F8F transparent transparent transparent;
}

.step .icon {
    /* background: linear-gradient(135deg, #6a1b9a, #3949ab); */
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 37px;
    /* push it down so tooltip fits above */
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.step img {
    /* width: 35px;
  height: 35px;
  filter: brightness(0) invert(1); */
}

.step h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000000;
}

.step p {
    font-size: 16px;
    color: #5E5E5E;
    line-height: 1.5;
}

/*************************************************** Case Study: A Path to Success *********************************************/
.case_study_title {
    font-size: 36px;
    color: #2D435C;
    margin-bottom: 10px;
}

.case_study_subtitle {
    font-size: 20px;
    color: #5E3F8F;
    margin-bottom: 50px;
}

.case-studies {
    padding: 50px 0px;
    text-align: center;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

/* Force 2 per row on desktop */
@media (min-width: 1024px) {
    .grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.case-card {
    display: block;
    /* make <a> behave like a card */
    background: white;
    box-shadow: 0px 1px 4px 0px #00000040;
    padding: 30px;
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    /* text-decoration: none; */
    /* remove underline */
    /* color: inherit; */
    /* keep text colors */
}

.case-card:hover {
    background: linear-gradient(256.58deg, #002335 1.3%, #023A6B 22.82%, #111D41 42.83%, #11152D 68.03%, #2B1843 83.67%, #1E112A 96.77%);
    transform: translateY(-6px);
}

/* .case-card:hover {
    transform: translateY(-6px);
} */

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.card-header .icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.case-card .icon img {
    display: block;
}

.case-card .icon .hover {
    display: none;
}

.case-card:hover .icon img:not(.hover) {
    display: none;
}

.case-card:hover .icon .hover {
    display: block;
}

.card-header h3 {
    flex: 1;
    margin: 0 10px;
    font-size: 25px;
    text-align: left;
    color: #000000;
}

.case-card:hover .card-header h3 {
    color: white;
}

.case-card:hover .case-card-subtext {
    color: white;
}

.case-card-subtext {
    font-size: 16px;
    line-height: 23px;
    color: #5E5E5E;
    text-align: left;
    margin: 10px 0 10px 0;
}

.card-header .arrow {
    font-size: 20px;
}

.case-card img {
    width: 100%;
    object-fit: cover;
}

.card-image img {
    width: 100%;
    display: block;
    transition: filter 0.4s ease, transform 0.4s ease;
}


.case_study_arrow {
    background: linear-gradient(244.73deg, #04BFD7 -48.91%, #63388B 79.49%);
    padding: 18px 18px 16px 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*************************************************** Section: Trusted By **********************************************************/
.trusted-section {
    background: linear-gradient(256.81deg, #002335 -0.68%, #023A6B 21.29%, #111D41 41.43%, #11152D 59.07%, #2B1843 83.4%, #1E112A 96.77%);
    color: #fff;
    padding: 90px 0 0 0;
    height: 600px;
}

.trusted-section h2 {
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
}

.title_subtext {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: #A5B8CF;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

.logos img {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.logos img:hover {
    opacity: 1;
}

.ceo-box {
    display: flex;
    gap: 30px;
    margin: auto;
    color: #333;
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 100px;
}

.ceo-box img {
    width: 450px;
}

.ceo-text {
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(244.73deg, #04BFD7 -48.91%, #63388B 79.49%) border-box;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 60px;
    flex: 1;
}

.ceo-text h3 {
    margin-bottom: 20px;
    font-size: 25px;
    color: black;
}

.ceo_subtext {
    font-size: 20px;
    line-height: 1.6;
    color: #5E5E5E;
}

/************************************************* Section: Testimonial Slider *******************************************************/
.testimonial-networked-section {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 80px 0 90px 0;
}

.testimonial-section {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 150px 0 50px 0;
}

.testimonial-text {
    flex: 1;
    min-width: 500px;
    max-width: 466px;
}

.client_title {
    color: #5E3F8F;
    font-size: 20px;
    margin-bottom: 15px;
}

.client_main_title {
    font-size: 36px;
    /* font-weight: 400; */
    color: #2D435C;
    margin-bottom: 15px;
}

.client_subtext {
    font-size: 16px;
    color: #5E5E5E;
    line-height: 1.6;
}

.testimonial-slider {
    position: relative;
    background: linear-gradient(244.73deg, rgba(4, 191, 215, 0.3) -48.91%, rgba(99, 56, 139, 0.3) 79.49%);
    border-radius: 50px;
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    border-radius: 20px;
    padding: 50px;
    min-height: 310px;
    flex: 0 0 45%;
    scroll-snap-align: start;
    background: linear-gradient(to right, #e8d9f5, #d0e6f5);
}

.testimonial-content {
    font-size: 20px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 30px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 84px !important;
    height: 84px;
    border-radius: 50%;
}

.author-info h4 {
    font-size: 22px;
    margin: 0;
    font-weight: 600;
    color: #000000;
    text-wrap: nowrap;
}

.author-info span {
    font-size: 16px;
    color: #5E5E5E;
}

.owl-nav {
    position: absolute;
    bottom: 15%;
    left: 80%;
    display: flex;
}

.owl-nav button {
    background: linear-gradient(244.73deg, #04BFD7 -48.91%, #63388B 79.49%) !important;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    color: #fff !important;
    font-size: 18px;
    margin: 0 3px;
    transition: 0.3s;

    display: flex !important;
    align-items: center;
    justify-content: center;
}

.owl-nav button img {
    width: 20px;
    height: 20px;
}

.owl-nav button:hover {
    opacity: 0.8;
}

/* Tablet */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 70%;
        /* wider single card */
        padding: 30px;
    }

    .testimonial-text {
        max-width: 400px;
    }
}

/***************************************************** Section: Our blog *******************************************************/
.blog-section {
    text-align: center;
    padding: 50px 0px;
    margin: auto;
}

.blog_title {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2D435C;
}

.blog_subtext {
    color: #5E3F8F;
    margin-bottom: 40px;
    font-size: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.blog-card {
    position: relative;
    padding: 0px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    border-radius: 20px;
    background-image: linear-gradient(#fff, #fff),
        linear-gradient(244.73deg, #04BFD7 -48.91%, #63388B 79.49%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.blog_inner_card {
    padding: 15px;
}

.blog-card img {
    border-radius: 15px;
    width: 100%;
    display: block;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
}

.blog-content {
    padding-top: 14px;
    text-align: left;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.blog-content p {
    font-size: 14px;
    color: #5E5E5E;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    color: #5E3F8F;
}

.blog_date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    color: #2D435C;
}

.author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

/***************************************************** Section: Faq *******************************************************/
.faq-section {
    padding: 50px 0;
}

.faq-section-container {
    /* max-width: 1100px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
}

.faq-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq_title {
    font-size: 36px;
    color: #2D435C;
    /* font-weight: 400; */
    margin: 0 0 10px 0;
}

.faq_subtext {
    color: #5E3F8F;
    font-size: 20px;
    margin: 5px 0 0;
}

/* FAQ Accordion */
.faq-section-item {
    /* border: 2px solid #ddd; */
    border-radius: 17px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section-item.active {
    border: 1px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: linear-gradient(#fff, #fff),
        linear-gradient(244.73deg, #04BFD7 -48.91%, #63388B 79.49%);
}

.faq-section-item.active .faq-section-question {
    color: #5E3F8F;
    background: transparent;
    padding: 20px 24px;
}

.faq-section-question {
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px;
    cursor: pointer;
    background: linear-gradient(244.73deg, rgba(4, 191, 215, 0.3) -48.91%, rgba(99, 56, 139, 0.3) 79.49%);
    font-weight: 500;
    border-radius: 17px;
    font-size: 20px;
}


.faq-section-answer {
    display: none;
    padding: 0px 24px 24px 24px;
    background: #fff;
    font-size: 16px;
    color: #5E5E5E;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: 0.3s ease;
}

.faq-section-item.active .faq-section-answer {
    display: block;
}

/* Right Side Box */
.faq-section-box {
    background: #fff;
    border-radius: 15px;
    padding: 35px 33px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.faq-section-box img {
    margin-bottom: 15px;
}

.faq-section-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.faq-section-box p {
    font-size: 16px;
    color: #000000;
    line-height: 23px;
    margin-bottom: 30px;
}

.faq-section-box button {
    background: linear-gradient(244.73deg, #04BFD7 -48.91%, #63388B 79.49%);
    font-size: 16px;
    border: none;
    padding: 12px 25px;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.faq-section-box button:hover {
    opacity: 0.85;
}

/***************************************************** Section: Footer *******************************************************/

footer {
    background: #fff;
    padding: 50px 0px 0 0;
    color: #333;
    box-shadow: 0px 0px 26px 0px #0000001A;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    /* max-width: 1200px; */
    margin: auto;
    padding-bottom: 50px;
}

.footer-logo img {
    /* width: 60px; */
    margin-bottom: 8px;
}

.footer-logo p {
    margin: 10px 0;
    font-size: 16px;
    color: #5E5E5E;
    line-height: 20px;
}

.footer-logo button {
    margin-top: 10px;
    background: linear-gradient(244.73deg, #04BFD7 -48.91%, #63388B 79.49%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-logo button:hover {
    background: linear-gradient(244.73deg, #04BFD7 -20.91%, #63388B 50.49%);
}

.footer-col h3 {
    margin-bottom: 15px;
    color: #5a2ca0;
    font-size: 26px;
}

.footer-col ul {
    list-style: none;
    padding: 0px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

/* remove underline effect */
.footer-col ul li a::after {
    display: none;
}

.footer-col ul li a:hover {
    color: #6c63ff;
    transform: translateX(5px);
    /* smooth slide */
}


.contact-info p {
    font-size: 16px;
    /* margin-bottom: 10px; */
    display: flex;
    align-items: center;
    gap: 19px;
    color: #000000;
}

.copyright {
    text-align: center;
    font-size: 13px;
    color: #000000;
    border-top: 1px solid #494949;
    padding: 17px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location_text {
    font-size: 16px;
    border-bottom: 1px solid #5E5E5E;
    display: flex;
    gap: 19px;
    padding: 0;
    color: #000000;
}

.loaction_subtext {
    padding-bottom: 16px;
    /* display: flex;
    gap: 19px; */
}

.footer_line_space {
    padding: 16px 0 16px 0;
    display: flex;
    gap: 19px;
    color: #000000;
}

.social a {
    padding: 0;
}

.social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social a:hover {
    color: #6c63ff;
}