* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 8px;

}

::-webkit-scrollbar-track {
    background: #e0dede;

}

::-webkit-scrollbar-thumb {
    background: #3191f8;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0839a3;
}

body {
    height: 100vh;
    background-color: #FAFAF9;


}

.nav-link {
    color: #2d3142;
    font-size: large;
    transition: all 0.1s;
}

.nav-link:hover {

    color: rgb(0, 0, 0);
    letter-spacing: .5px;

}


.nav-link.active {
    background-color: rgb(16, 166, 220) !important;
    color: rgb(252, 250, 250) !important;
    border-radius: 10px;
}

header {
    display: flex;
    background-color: transparent;
    position: relative;
    width: 100%;
    box-shadow: 0px 0px 15px black;
    backdrop-filter: blur(5px);
    margin-top: 0;
    justify-content: space-evenly;
    align-items: center;
    opacity: 0;
    transform: translateY(-100%);
    animation: headerDrop 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes headerDrop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-brand {
    opacity: 0;
    transform: translateX(-40px);
    animation: logoIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes logoIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-span {
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-style {
    transform: rotate(-8deg) scale(1.05);
}

.nav-pills .nav-item {
    opacity: 0;
    transform: translateY(-15px);
    animation: navLinkIn 0.5s ease forwards;
}

.nav-pills .nav-item:nth-child(1) {
    animation-delay: 0.5s;
}

.nav-pills .nav-item:nth-child(2) {
    animation-delay: 0.6s;
}

.nav-pills .nav-item:nth-child(3) {
    animation-delay: 0.7s;
}

.nav-pills .nav-item:nth-child(4) {
    animation-delay: 0.8s;
}

.nav-pills .nav-item:nth-child(5) {
    animation-delay: 0.9s;
}

.nav-pills .nav-item:last-child {
    animation-delay: 1s;
}

@keyframes navLinkIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-style {
    height: 6rem;
    width: auto;
    margin-right: 6px;
    transition: all 0.5s;
}

.logo-style:hover {
    transform: scale(1.3);
}

.logo-text {
    font-family: Brush Script MT, cursive !important;
    font-size: 3.9rem;
    color: #033cc2;
    white-space: nowrap;
    transition: all 0.5s;
}

.logo-text:hover {
    transform: scale(1.1);
    letter-spacing: 0.5px;
    filter: drop-shadow(4px 4px 8px rgb(20, 192, 255));

}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ff0000' stroke-linecap='round' stroke-miterlimit='10'  stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus {
    box-shadow: none;
}


.nav-pills {
    gap: 0.75rem !important;
}

.nav-align {
    display: flex;
    flex-direction: row;
    gap: 16px;
}


@media (max-width: 1023px) and (min-width: 768px) {
    .nav-pills {
        gap: 0.25rem !important;
        flex-wrap: nowrap;
    }

    .nav-pills .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .nav-align {
        display: flex;
        flex-direction: row;
        gap: 6px;
        flex-wrap: nowrap;
    }

}


@media (max-width: 767px) {
    header {
        border-radius: 8px;
    }

    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        padding: 12px;
        backdrop-filter: blur(5px);
    }

    .nav-align {
        display: block;
    }

    .nav-pills {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem !important;
    }

}


@media (max-width: 425px) {
    .logo-text {
        font-size: 30px;
    }

    .logo-style {
        height: 50px;
    }
}

@media (max-width: 400px) {
    .logo-text {
        font-size: 24px;
    }

    .navbar-brand {
        width: 100px;
    }
}



main {
    margin-top: 10px;
}

header {
    /* margin-top: 0; */
    padding-bottom: 20px;

}

#hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 1rem;
    gap: 2rem;
}

#hero .col-md-6 {
    min-width: 0;
}

.display.fw-bold {
    opacity: 0;
    transform: translateY(24px);
    animation: heroTextIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    line-height: 1.15;
}


@keyframes heroTextIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.display span {
    display: inline-block;
    opacity: 0;
    animation: heroTextIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.display span:nth-child(1) {
    animation-delay: 0.30s;
}

.display span:nth-child(2) {
    animation-delay: 0.6s;
}

.display span:nth-child(3) {
    animation-delay: 0.9s;
}

.fs-4.fw-lighter.text-danger {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    opacity: 0;
    transform: translateY(20px);
    animation: paraFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.55s;
}

@keyframes paraFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.display {
    color: #4f4f56;
}

.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: sliderReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.9s;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

@keyframes sliderReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
    animation-delay: 1.7s;
    animation-fill-mode: backwards;
}

.slider-track>div {

    margin-right: 20px;
    background-color: #e2e2e8;
    font-size: 13px;
    border-radius: 40px;
    padding: 10px 20px;
    color: #3f3522;
    text-align: center;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: clamp(0.8rem, 2vw, 1rem);
}





@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);

    }
}


.slider:hover .slider-track {
    animation-play-state: paused;
}

.slider {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.img-div img {
    width: 100%;
    height: auto;
    max-width: 580px;
    display: block;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.92);
    animation: imageIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.3s;
    /* border: 1px dashed purple; */
    border-radius: 10px;
    /* box-shadow: 20px 15px 10px purple; */
}

@keyframes imageIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}



.lead {
    font-weight: 300;
    color: rgb(37, 17, 17);
}



#service {
    background-color: #fdfafa;
    box-shadow: 4px 0px 10px rgb(101, 153, 213);
    border-radius: 5px;
}

.card-body {
    /* background: linear-gradient(to right, #071b38, #032a42); */
    box-shadow: 0px 0px 10px rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    height: 265px;
    transition: all 0.5s;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    padding: 15px;



}

.card-body:hover {
    scale: 1.05;
    background-color: rgb(65, 148, 243);
    color: white;
    box-shadow: 0px 0px 6px rgb(63, 63, 61);

}

.card-body-img {
    max-height: 60px;
    filter: drop-shadow(0px 0px 10px rgb(66, 111, 248));
}




@media (max-width: 767.98px) {
    #hero {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1rem;
    }

    #hero .col-md-6:first-child {
        order: 1;
    }

    #hero .col-md-6:last-child {
        order: 2;
        margin-top: 1rem;
    }

    #hero .col-md-6 img {
        max-width: 320px;
    }
}


@media (max-width: 480px) {
    .display.fw-bold {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .fs-4.fw-lighter.text-danger {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .slider-track div {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .slider-track {
        gap: 1.25rem;
    }

    .img-div img {
        margin-top: 10px;
    }
}

@media (min-width: 1400px) {
    #hero {
        max-width: 1400px;
        margin: 0 auto;
    }
}

@media (prefers-reduced-motion: reduce) {

    .display.fw-bold span,
    .fs-4.fw-lighter.text-danger,
    .slider,
    #hero .col-md-6 img {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .slider-track {
        animation-duration: 40s;
    }
}

/* ============================================================ */


.skills-section {
    width: 80%;
    max-width: 1000px;
    margin: 0px 15px;


}

.skill {
    margin-bottom: 35px;
    margin-top: 6px;
}

#service>section {
    border-bottom: 1px solid rgb(79, 79, 81);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 20px;
    color: #787575;
}

.progress {
    width: 100%;
    height: 10px;
    background: #EDF2F7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 6px rgb(48, 118, 146);

}

.progress-bar {
    width: 0%;
    height: 100%;
    border-radius: 10px;
}

.blue {
    background: #3B82F6;
    animation: language-edit 1.2s linear forwards;
}

.orange {
    background: #8B5CF6;
    animation: kpo-service 1.4s linear forwards;

}

.pink {
    background: #0EA5E9;
    animation: indisgn-service 1.6s linear forwards;

}

.cyan {
    background: #10B981;
    animation: last 1.8s linear forwards;
}

.autoShow {
    animation: text-appear both;
    animation-timeline: view();
    animation-range: entry 10% cover;
    animation-range-end: 40%;
}

@keyframes text-appear {
    from {
        opacity: 0;
        transform: translatex(-80px);
    }

    to {
        opacity: 1;
        transform: translatex(0);
    }
}

.imageRevel {
    animation: imageRevel both;
    animation-timeline: view();
    animation-range: entry 10% cover 100vh;


}

@keyframes imageRevel {
    from {
        filter: saturate(0) contrast(4) brightness(.1) blur(3.8px);
        opacity: 0;
        scale: .95;
        translate: 0 4rem;
    }

    to {
        filter: none;
        opacity: 1;
        scale: 1;
        translate: 0 0;
    }
}

@keyframes language-edit {
    100% {
        width: 95%;
    }
}

@keyframes kpo-service {
    100% {
        width: 85%;
    }
}

@keyframes indisgn-service {
    100% {
        width: 75%;
    }
}

@keyframes last {
    100% {
        width: 65%;
    }
}

.about-pg-img {
    /* box-shadow: 0px 0px 9px rgb(0, 0, 0); */
    max-width: 480px;
    opacity: 1;
    transition: all 0.5s;
    border: 1px solid;
    /* filter: brightness(1) saturate(1) blur(4px); */

}

.about-pg-img:hover {
    box-shadow: 0px 0px 60px rgb(0, 0, 0);
    transform: translateY(-15px);



}

.about-feature {
    transition: all 0.8s;
    border-bottom: 1px solid rgb(43, 148, 223);
    color: #6c6c6c;
    /* box-shadow: 0px 0px 10px black; */
    max-height: 180px;
    background-color: transparent;
    /* box-shadow: 0px 0px 10px rgb(35, 211, 255); */


}

.about-feature:hover {
    translate: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgb(2, 2, 2);
    background-color: #2563eb;
    color: white;
    padding: 20px 10px;



}

.slider1 {
    overflow-x: auto;
}

.slider1::-webkit-scrollbar {
    display: none;
}

.slider-track-mid {
    display: flex;
    width: max-content;
    animation: infinite-scroll 35s linear infinite;
}

@keyframes infinite-scroll {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

.slider-track-mid>div {

    margin-right: 20px;

    box-shadow: 0px 0px 5px black;

    text-align: center;
}

.slider2 {
    width: 100%;
    overflow: hidden;
}

.slider-track2 {
    display: flex;
    width: max-content;
    animation: infinite-left-scroll 20s linear infinite;
}

.slider-track2>div {

    margin-right: 20px;

    text-align: center;
    box-shadow: 0px 0px 5px black;
}


@keyframes infinite-left-scroll {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.jitter-pulse {

    animation: movePic both;
    animation-timeline: view();
    animation-range-start: 10%;
    animation-range-end: 50%;

}

@keyframes movePic {
    from {
        transform: translatex(-100px);
        filter: blur(3px);
    }

    to {
        transform: translatex(0px);
        filter: blur(0px);
    }
}

.fadeUp {
    animation: fadeUp both;
    animation-timeline: view();
    animation-range-start: 5%;
    animation-range-end: 25%;

}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.5);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.review-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.review-carousel-wrapper #project-carousel {
    flex: 1;
    min-width: 0;
}

.review-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #d0dbe7;
    color: #163f6b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 5;
    outline: none;
}

.review-nav-btn:hover {
    background-color: #163f6b;
    color: #ffffff;
    border-color: #163f6b;
    box-shadow: 0 6px 16px rgba(22, 63, 107, 0.3);
    transform: translateY(-2px);
}

.review-nav-btn:active {
    transform: translateY(0) scale(0.94);
}

#project-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    scrollbar-width: none;
}


#project-carousel::-webkit-scrollbar {

    display: none;

}

#project-carousel .group {
    flex: 0 0 100%;
    margin-left: 0;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}




.review {
    position: relative;
    top: 10px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #355d87;
    transition: all 0.5s linear;
}

.review:hover {
    letter-spacing: 4px;
    transform: skewX(-12deg);
}

.indicate {
    color: #163f6b;
    text-align: center;
    opacity: 0.7;
    margin-top: 0.5rem;
    transition: all 0.3s linear;
}

.indicate:hover {
    color: #05719c;
    letter-spacing: 3px;
    transform: skewX(-12deg);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 0.75rem;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    border: 1px solid rgb(10, 51, 109);
    background: #3fc6ff;
    width: 22px;
    border-radius: 4px;
}

.group {
    scroll-snap-align: center;
    margin-left: 19px;
    flex: 0 0 20em;
    text-align: start;
    align-content: center;
    height: 250px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s;
}

.group:hover {
    color: #08519f;

    transform: translateY(-10px);
}

.group>p:nth-child(1) {
    word-spacing: 0;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 1px solid rgb(137, 135, 135);
    padding-bottom: 5px;
}

@media (min-width:500px) {
    .group {
        flex: 0 0 100%;
    }

}

@media (max-width:500px) {
    .group p {
        font-size: 12px;
    }

}

.letterSpacing {
    letter-spacing: 1px;
}

.contactDetails {
    transition: all 0.5s;
    border-bottom: 1px solid black;
}

.contactDetails:hover {
    background-color: #1373f9;
    border: none;
    color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 8px;
}

.svgATcontact {
    fill: #909292;
}

.svgATcontact:hover {
    fill: white;
}



@media (max-width:768px) {
    .team-align {
        width: 80%;
        margin-left: 39px;
        border-radius: 0px;
        border-top: 2px dashed rgb(77, 75, 75);
        border-bottom: 2px dashed rgb(70, 69, 69);
        /* box-shadow: 0px 0px 30px black; */
        margin-bottom: 10px;


    }

    .textRes {
        font-size: 15px;
    }
}

/* ============================================================== */
.slideMain {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 420px;
    margin: 0 auto;

}

.sideContainer {
    height: 100%;
    width: 91%;
    position: absolute;
    overflow: hidden;
}

.teamSlide {
    position: relative;
    height: 100%;
    width: 95%;
}

.teamSlide .slideItem {
    height: 250px;
    position: absolute;
    background-position: 42% 9%;
    left: 20%;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    transition: 0.5s;
}

.teamSlide .slideItem:nth-child(1),
.slideItem:nth-child(2) {
    top: 0;
    height: 100%;
    width: 69%;
    border-radius: 0;
}

.teamSlide .slideItem:nth-child(1) {
    z-index: 1;
    filter: brightness(0.35);
}

.teamSlide .slideItem:nth-child(2) {
    z-index: 2;
}

.teamSlide .slideItem:nth-child(3) {
    left: calc(20% + 230px);
    z-index: 3;
    transform: translateY(-15%);
}

.teamSlide .slideItem:nth-child(4) {
    left: calc(20% + 460px);
    z-index: 3;
    transform: translateY(-15%);
}

.teamSlide .slideItem:nth-child(n+5) {
    left: calc(20% + 920px);
    z-index: 3;
    transform: translateY(-15%);
}

.slideItem {
    margin-left: 20px;
    transition: all 0.3s linear;
}

.slideItem .content {
    position: absolute;
    bottom: 70px;
    left: 30px;
    color: #f1f1f1;
    display: none;

}

/* .slideItem:nth-child(2) .content {
    display: block;
} */
.teamSlide .slideItem:hover {
    filter: brightness(0.8);
    transform: scale(1.1);
}

.teamSlide .slideItem:hover .content {
    display: block;

}

.teamSlide .slideItem:hover .content .name {
    color: white;
}

.content .name {
    color: white;
    font-size: 30px;
    text-shadow: 0px 0px 10px rgb(0, 0, 0);
    font-weight: bold;
    text-transform: uppercase;
    animation: animate 0.5s ease-in-out forwards;
}

.content .des {
    font-size: 20px;
    text-shadow: 0px 0px 10px rgb(0, 0, 0);
    font-weight: bold;
    color: #f3f5f5;
    /* opacity: .8; */
    margin-top: 3px;
    margin-bottom: 6px;
    opacity: 0;
    animation: animate 0.5s ease-in-out 0.1s forwards;

}

.content .elem span {
    margin-right: 5px;
    padding: 5px 10px;
    border: 1px solid black;
    border-radius: 30px;
    opacity: 0;
    backdrop-filter: blur(5px);
    cursor: pointer;
    animation: animate 0.5s ease-in-out 0.4s 1 forwards;
    transition: all 0.3s;

}

@media (max-width:769px) {
    .slideItem .content {
        margin-bottom: 20px;
    }

    .slideItem .content .name {
        font-size: 20px;
    }

    .slideItem .content .des {
        font-size: 12px;
    }
}

@media (max-width:415px) {
    .slideItem .content {
        margin-bottom: 20px;
        font-size: 10px;
    }
}

.content>.elem>span:hover {

    box-shadow: 0px 0px 10px black;
    background-color: #0f0e0e;
    padding: 10px 15px;

}

@keyframes animate {
    from {

        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(5px);

    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* ============================================================== */
.button {
    width: 100%;
    position: absolute;
    left: 75%;
    bottom: 10px;
    z-index: 10;
}


.button button {
    font-size: 20px;
    border-radius: 30px;
    border: 1px solid #fff;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 6px 16px;
    margin-right: 10px;
    cursor: pointer;
}

.button button:hover {
    color: #58e9f3;
    border-color: #087fa3;
    box-shadow: 0 10px 40px #57eeff;
}

@media (max-width:768px) {
    .button {

        left: 65%;
        bottom: 10px;

    }

    .button button {
        font-size: 13px;

        padding: 6px 16px;
        margin-right: 0px;
        cursor: pointer;
    }
}

@media (min-width:769px) {
    .button {
        width: 100%;
        position: absolute;
        left: 65%;
        bottom: 10px;
        z-index: 10;

    }

    .button button {
        font-size: 13px;
        padding: 6px 16px;
        margin-right: 20px;
        cursor: pointer;
    }
}

/* ================================================================ */

.site-footer {
    background-color: #0b1522;
    color: #c9d2dc;
    position: relative;
}

.footer-logo {
    height: 100px;
    width: auto;
}

.footer-copy {
    font-size: 0.9rem;
    color: #8b97a5;
    line-height: 1.6;
}

.footer-heading {
    text-align: start;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.3px;
    text-align: center;
}

.learn {
    padding: 0 0.75rem;
    margin-bottom: 1.5rem;
}


.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.footer-list2 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.footer-list2 li a {
    text-decoration: none;
    color: inherit;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    opacity: 0.8;
    transition: all 0.25s ease;
}

.footer-list2 li a:hover {
    color: #087fa3;
}

.footer-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 0.75rem;
    max-width: none;
    margin: 0;
}

.footer-list li a {
    text-decoration: none;
    color: inherit;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    opacity: 0.8;
    transition: opacity 0.25s ease;
}

.footer-list li a:hover {
    opacity: 1;
}

.footer-list li span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.06);
    /* subtle badge, matches .social-icon style */
    border-radius: 50%;
}

.footer-list li:first-child {
    align-items: flex-start;
}

.footer-list li:first-child span:first-child {
    margin-top: 2px;
}


.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: #8b97a5;
    transition: all 0.25s ease;
}

.social-icon svg {
    height: 16px;
    width: 16px;

}

.social-icon:hover {
    background-color: #58d7e0;
    color: #0b1522;
    transform: translateY(-3px);
}

.footer-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #2abad6;
    font-size: 0.9rem;
}

.footer-input::placeholder {
    color: #6b7684;
}

.footer-input:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #58e0d2;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(224, 164, 88, 0.2);
}

.form-label {
    color: #8b97a5;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.btn-footer-primary {
    background-color: #58b0e0;
    border: none;
    color: #0b1522;
    font-weight: 600;
    padding: 0.6rem 1rem;
    transition: background-color 0.2s ease;
}

.btn-footer-primary:hover {
    background-color: #f0b871;
    color: #0b1522;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0;
}

.footer-bottom {
    font-size: 0.8rem;
    color: #5c6774;
    padding-top: 1.5rem;
}


@media (max-width: 991.98px) {
    .footer-list li {
        justify-content: start;
        text-align: left;
        max-width: 280px;
    }

    .footer-list {
        justify-content: center;

    }



    .social-row {
        justify-content: center;
    }
}


@media (min-width: 992px) {
    .footer-list li {
        justify-content: flex-start;
        max-width: none;
        margin: 0;
    }

    .footer-list {
        align-items: flex-start;
    }
}


.footer-list svg {
    height: 20px;
    margin-right: 10px;
    transition: all 0.3s linear;
}

.footer-list li span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    transition: all 0.3s ease, transform 0.3s ease;
}

.footer-list li span:first-child svg {
    display: block;
    width: 16px;
    height: 16px;
    margin: 0 auto;
    transition: fill 0.3s ease;
}

.footer-list li:hover span:first-child {
    background: #06437d;
    transform: rotate(30deg);
}

.footer-list li:hover span:first-child svg path {
    fill: #fff;
}

.footer-list li:hover span:first-child svg path {
    fill: #fff;
}