﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #fff;
    overflow-x: hidden;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    background-color: #010101;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: transform 0.08s ease-in-out, width 0.08s ease-in-out, height 0.08s ease-in-out, background-color 0.08s ease-in-out;
    mix-blend-mode: luminosity;
}

    /* Hover effect */
    .custom-cursor.hovered {
        width: 30px;
        height: 30px;
        background-color: rgba(0, 0, 0, 0.8);
    }

    /* Press effect (works on both normal & hovered) */
    .custom-cursor.pressed {
        transform: translate(-50%, -50%) scale(0.8);
    }

    .custom-cursor .ripple {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        border: 2px solid rgba(0, 0, 0, 0.5);
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0;
    }

@keyframes ripple-effect {
    0% {
        width: 0;
        height: 0;
        opacity: 0.7;
    }

    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

::selection {
    background: #F28829;
    color: #fff;
}

a.hovered-link {
    color: #fff;
    transition: 0.3s ease-in-out;
}

p {
    font-size: 18px;
    text-align: justify;
    color: #0d0d0d;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    color: #103e78;
    transition: 0.3s ease-in-out;
}

    a:hover {
        text-decoration: none;
        color: #e35932;
        transition: 0.3s ease-in-out;
    }

.marginBottom50 {
    margin-bottom: 50px;
    align-items: center;
}

.marginBottom20 {
    margin-bottom: 20px;
}

.paddingBottom {
    padding-bottom: 150px
}

img {
    object-fit: cover;
    border-radius: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    color: #313131;
    text-transform: capitalize;
    position: relative;
    letter-spacing: 0.5px;
    padding: 0;
    margin: 0;
    line-height: 1.32;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}



label {
    margin: 0;
}

.section-gap {
    padding: 150px 0;
}

.WrapperContainer {
    max-width: 1440px;
    margin: auto;
}

.mt-100 {
    margin-top: 100px;
}

.CustomNavbar {
    position: absolute;
    width: 85%;
    background: rgb(255 255 255 / 80%);
    z-index: 11;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
    border-radius: 100px;
    padding: 0 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    backdrop-filter: blur(10px);
}

    .CustomNavbar .navbar-brand img {
        max-height: 80px;
    }

    .CustomNavbar .navbar-brand {
        margin: 0;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        /*background: #fff;*/
    }

    .CustomNavbar.fixed {
        position: fixed;
        opacity: 1;
        transform: translate(-50%, 0);
        animation: fadeInDown 0.5s ease;
    }

    .CustomNavbar.hide {
        transform: translate(-50%, -120%);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }
/* Slide down animation */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate(-50%, -100%);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.HomeSliderSection {
    position: relative;
}

    .HomeSliderSection .splide__slide {
        position: relative;
    }

    .HomeSliderSection #image-carousel .splide__track .splide__list .splide__slide {
        position: relative;
    }

        .HomeSliderSection #image-carousel .splide__track .splide__list .splide__slide::before {
            position: absolute;
            content: '';
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            background: linear-gradient(180deg, transparent 65%, #151515);
            /*z-index: 10;*/
        }

    .HomeSliderSection .splide__slide img {
        width: 100%;
        height: 100vh;
        border-radius: 0px;
    }

.CustomNavbar .navbar-toggler {
    height: 45px;
    width: 45px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid #393939;
    background: #111;
    color: #fff;
}

.navbar-toggler:focus {
    box-shadow: none;
}
/*.splide::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background-image: url('../images/vectors/wavemask.png');
    background-size: cover;
    opacity: 0.5;*/ /* Adjust for intensity */
/*}

.splide::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background-image: repeating-linear-gradient( 45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 3px );
}

.splide {
    position: relative;
    overflow: hidden;
}*/

.customDropdown .dropdown-menu {
    padding: 0;
    margin-top: 5px;
}

    .customDropdown .dropdown-menu .dropdown-item {
        position: relative;
        padding: 5px 15px;
        transition: 0.3s ease-in-out;
    }

        .customDropdown .dropdown-menu .dropdown-item::before {
            position: absolute;
            content: '';
            left: 0;
            top: 0;
            width: 3px;
            height: 100%;
            background: #103e78;
        }

        .customDropdown .dropdown-menu .dropdown-item:hover {
            letter-spacing: 1px;
            transition: 0.3s ease-in-out;
        }

    .customDropdown .dropdown-menu li:nth-child(1) .dropdown-item::before {
        background: #e14739;
    }

    .customDropdown .dropdown-menu li:nth-child(2) .dropdown-item::before {
        background: #103e78;
    }

.HomeSliderSection .splide__arrow--prev svg {
    transform: scaleX(1);
}

.CustomNavbar #navbarSupportedContent {
    justify-content: space-between;
}

.CustomNavbar .navbar-nav {
    min-height: 80px;
    display: flex;
    align-items: center;
}

    .CustomNavbar .navbar-nav .nav-item .nav-link {
        font-family: "DM Sans", sans-serif;
        color: #010101;
        font-size: 17px;
        font-weight: 500;
        transition: 0.3s ease-in-out;
        position: relative;
        display: inline-block;
    }

        .CustomNavbar .navbar-nav .nav-item .nav-link::before {
            position: absolute;
            content: "";
            display: block;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a75bb, #27ae60, #1a75bb);
            border-radius: 30px;
            z-index: -1;
            transform: scale(0.3, 1);
            opacity: 0;
        }

        .CustomNavbar .navbar-nav .nav-item .nav-link:hover::before {
            transform: scale(1, 1);
            opacity: 1;
            transition: all 0.3s linear 0s;
        }

    .CustomNavbar .navbar-nav .nav-item {
        margin: 0 5px;
    }

        .CustomNavbar .navbar-nav .nav-item .nav-link:hover {
            color: #fff;
            transition: 0.3s ease-in-out;
        }

/*.CustomNavbar .navbar-nav .nav-item .nav-link.active {
        background: linear-gradient(135deg, #1A75BB, #27AE60, #1A75BB);
        color: #fff;
        border-radius: 4px;
    }*/

.ButtonWrapper a {
    background: linear-gradient(135deg, #1A75BB, #27AE60, #1A75BB);
    background-size: 200% 200%;
    background-position: left center;
    color: #fff;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-position 0.6s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .ButtonWrapper a:hover {
        background-position: right center; /* shifts gradient */
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }

    .ButtonWrapper a i {
        height: 25px;
        width: 25px;
        background: #fff;
        color: #0072ff;
        border-radius: 50%;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease-in-out;
    }

    .ButtonWrapper a:hover i {
        transform: rotate(-45deg);
        transition: 0.3s ease-in-out;
    }

.AdSection .ButtonWrapper a {
    background: #Ffff;
    color: #111;
    font-weight: 500;
}

    .AdSection .ButtonWrapper a i {
        background: #111;
        color: #fff;
    }

.splidecaption {
    transform: translateX(-50%);
    position: absolute;
    bottom: 60px;
    left: 50%;
    width: 70%;
    height: max-content;
}

    .splidecaption h1 {
        font-size: 70px;
        font-weight: 500;
        color: #fff;
        text-align: center;
        text-shadow: 0 2px 4px rgb(0 0 0 / 15%), 0 4px 12px rgb(0 0 0 / 12%);
    }

.roundCircle {
    /*position: absolute;*/
    height: 150px !important;
    width: 150px !important;
    /*right: -150px;
    top: 0px;*/
    animation: circleAnim 8s linear infinite;
}

@keyframes circleAnim {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.GallerySection {
    /*background: #010101;*/
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
}

.Our-Gallery {
    position: relative;
}

    .Our-Gallery .splide__slide img {
        width: 100%;
        min-width: 240px;
        height: 300px;
    }

    .Our-Gallery .splide__slide:nth-child(odd) img {
        margin-top: 50px;
    }

.loop-gradient {
    z-index: 10;
    background: linear-gradient(to right, #0d0d0d, transparent);
    width: 130px;
    height: 100%;
    position: absolute;
    left: -2px;
    top: 0;
}

    .loop-gradient.second {
        background: linear-gradient(to left, #191919, transparent);
        left: auto;
        right: -1px;
    }

#aboutMe .row > div {
    width: 60%
}

.headingWhite h3 {
    color: #f2f2f2;
    text-align: center;
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: 0.3s ease-in-out;
}

.headingWhite.blackcolor h3 {
    color: #010101;
    text-align: left;
}

.headingWhite p {
    color: #d0d0d0;
    text-align: center;
}

.headingWhite.blackcolor p {
    color: #010101 !important;
    text-align: justify;
}

#stickyIsland {
    position: sticky;
    top: 150px;
    z-index: 0;
}

.OurSelectedWorkSection {
    position: relative;
}

.dynamic-background-text {
    margin-bottom: 100px;
}

    .dynamic-background-text h3 {
        color: #b6b6b6;
        text-align: center;
        letter-spacing: -.02em;
        white-space: nowrap;
        width: 100%;
        font-size: clamp(2rem, 11.5vw, 12rem);
        font-weight: 500;
        line-height: 110%;
    }

#worksection .col-12:nth-child(even) {
    display: flex;
    justify-content: right;
}

.work-wrap {
    background: rgb(255 255 255 / 60%);
    width: 58%;
    padding: 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 50px;
    overflow: hidden;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.work-thumbnail {
    overflow: hidden;
}

.work-wrap p {
    margin-bottom: 0;
    color: #6d6d6d;
}

.work-description h3 {
    margin-top: 20px;
    font-size: 28px;
    letter-spacing: 0px;
    font-weight: 500;
    margin-bottom: 10px;
}

.subHeading h3 {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.subHeading.blackcolor h3 {
    color: #010101;
}

.subHeading h3 span {
    display: inline-block;
    height: 12px;
    width: 12px;
    background: linear-gradient(135deg, #F28829, #D93838);
    margin-right: 10px;
    border-radius: 1px;
}

.ServiceSection {
    /*background: #010101;*/
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
}

.serivceBox #v-pills-tab {
    width: 100%;
}

    .serivceBox #v-pills-tab .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        border-bottom: 1px solid #585858;
        border-radius: 0px;
        transition: 0.3s ease-in-out;
    }

.serviceHeading h3 {
    color: #ffffff80;
    font-size: 42px;
    letter-spacing: 1px;
    transition: 0.3s ease-in-out;
}

.serivceBox .nav-pills .nav-link.active, .serivceBox .nav-pills .show > .nav-link {
    background-color: transparent !important;
}

    .serivceBox .nav-pills .nav-link.active .serviceHeading h3, .serivceBox .nav-pills .nav-link.active .serviceIcons i {
        color: #f2f2f2 !important;
        transition: 0.3s ease-in-out;
    }

.serivceBox .nav-pills .nav-link:hover .serviceHeading h3, .serivceBox .nav-pills .nav-link:hover .serviceIcons i {
    color: #ffffffb3;
    transition: 0.3s ease-in-out;
}

.serviceIcons {
    height: 48px;
    width: 48px;
    background: #ffffff1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
    position: relative
}

    .serviceIcons::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #F28829, #D93838);
        opacity: 0;
        transition: opacity 0.4s ease; /* smooth fade */
        z-index: 0;
        border-radius: inherit;
    }

    .serviceIcons i {
        color: #ffffff80;
        z-index: 2;
        transition: 0.3s ease-in-out;
    }

.serivceBox .nav-pills .nav-link:hover .serviceIcons::before {
    transform: scale(1.1);
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.serivceImage {
    overflow: hidden;
}

    /*.serivceImage .reveal {
        overflow: hidden;
    }*/

    .serivceImage img {
        max-height: 350px;
        width: 100%;
        overflow: hidden;
    }

    .serivceImage p {
        color: #fff;
        margin-top: 15px;
        font-size: 15px;
    }

.servicePicBox {
    padding: 0 50px;
    overflow: hidden;
}

.factoryVideo {
    position: relative;
    width: 100%;
}

    .factoryVideo::before {
        z-index: 1;
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: #103e78;
        opacity: 0.1;
    }

    .factoryVideo video {
        width: 100%;
        height: 650px;
        object-fit: cover;
        position: relative;
    }


.videogallerySection .col-md-12 {
    padding: 0;
}

.videogallerySection:hover .playPauseBtn {
    opacity: 1;
    transform: scale(1);
}

.playPauseBtn {
    position: absolute;
    background: linear-gradient(135deg, rgb(242, 136, 41), rgb(217, 56, 56));
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    transition: 0.3s ease-in-out;
    z-index: 9;
    right: 70px;
    bottom: 70px;
    transform: scale(0.5);
    opacity: 0;
}
    /* ripple effect */
    .playPauseBtn::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120px; /* bigger than button */
        height: 120px;
        border-radius: 50%;
        background: rgba(242, 136, 41, 0.4);
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
        animation: rippleWave 2s infinite ease-out;
        z-index: -1; /* keeps ripple behind button */
    }

@keyframes rippleWave {
    0% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0.6;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.playPauseBtn i {
    color: #fff;
}

.playPauseBtn:hover {
    background-color: #fff;
    transition: 0.3s ease-in-out;
}

    .playPauseBtn:hover i {
        color: #fff;
    }

.ourProjectBox {
    overflow: hidden;
    margin-bottom: 50px;
    background: #fff;
    perspective: 1200px;
    display: inline-block;
}

.ProjectImage {
    display: block;
    transform-style: preserve-3d;
    transition: transform 0.2s ease;
    border-radius: 5px;
    overflow: hidden;
}

.glasseffect {
    transform-style: preserve-3d;
    transition: transform 0.2s ease;
}

    .glasseffect::after {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.0) 80%);
        transform: skewX(-25deg);
        transition: left 0.8s ease;
    }

    .glasseffect:hover::after {
        left: 130%;
    }

.ProjectImage img {
    max-height: 450px;
    border-radius: 5px;
    width: 100%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    width: 100%;
    display: block;
}

.projectDescription {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

    .projectDescription h3 {
        font-size: 22px;
    }

    .projectDescription a {
        font-size: 19px;
        transform: scale(0.9);
    }

.ourProjectBox:hover .projectDescription a {
    transform: scale(1.1);
}

.recentWorkSection {
    position: relative;
}

#getSticky {
    position: sticky;
    top: 150px;
    align-self: flex-start;
}

.ProjectContainer {
    padding: 0 25px;
    text-align: center;
}

.ProjectImage .revel {
    overflow: hidden;
}

.testimonialSection, .recentWorkSection, .OurSelectedWorkSection {
    background: #fff;
}

    .testimonialSection .subHeading.blackcolor h3, .WhoWeAreSection .subHeading.blackcolor h3 {
        justify-content: center
    }

    .testimonialSection .headingWhite.blackcolor h3, .WhoWeAreSection .headingWhite.blackcolor h3 {
        text-align: center;
    }

/*.TesimonialBox {
    display: flex;
    gap: 50px;
}*/

.TesimonoalImages {
    overflow: hidden;
}

    .TesimonoalImages img {
        max-height: 400px;
        width: 100%;
        overflow: hidden;
    }

.testmonialsDescriptions {
    display: flex;
    gap: 25px;
    flex-direction: column;
}

.QuoteSection i {
    font-size: 66px;
    color: #ccc;
}

.testimonialParagraph p {
    font-size: 19px;
}

.nameSection h3 {
    font-size: 18px;
    letter-spacing: 0;
    font-weight: 600;
    font-style: italic;
}

.nameSection p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonialCarousel .splide__arrows {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

    .testimonialCarousel .splide__arrows button {
        position: inherit;
        transform: none;
        height: 40px;
        width: 40px;
        border-radius: 3px;
        color: #fff;
        background: #010101;
        opacity: 1;
        border: 1px solid #010101;
        transition: 0.3s ease-in-out;
    }

        .testimonialCarousel .splide__arrows button:hover {
            color: #010101;
            background: #fff;
            transition: 0.3s ease-in-out;
        }

.splide.is-focus-in .splide__arrow:focus {
    outline: none !important;
    outline-offset: inherit !important;
}

.footersection {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    transition: 0.3s ease-in-out;
    border-radius: 40px 40px 0 0;
    padding-top: 100px;
    /*position: sticky;
    bottom: 0;
    z-index: -1;*/
}

    .footersection .headingWhite h3 i {
        transition: 0.3s ease-in-out;
    }

    .footersection:hover .headingWhite h3 i {
        transform: rotate(-90deg);
        transition: 0.3s ease-in-out;
    }

    .footersection .headingWhite h3 {
        font-size: 96px;
        transition: 0.3s ease-in-out;
    }

.videogallerySection {
    background: #fff;
}

.form-container {
    width: 100%;
    padding: 2rem;
}

    .form-container .form-group {
        margin-bottom: 1.5rem;
        position: relative;
    }

    .form-container label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: #fff;
    }

    .form-container input, .form-container textarea {
        width: 100%;
        padding: 10px 0;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 1rem;
        border-radius: 4px;
        transition: border-color 0.3s;
        border-bottom: 1px solid #ddd;
    }

        .form-container input:focus, .form-container textarea:focus {
            border-color: #D93838;
            outline: none;
        }

    .form-container textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-container .error {
        color: #ff4d4d;
        font-size: 0.85rem;
        margin-top: 0.25rem;
        display: none;
    }

    .form-container .submit-btn {
        background-color: transparent;
        color: #fff;
        border: none;
        font-size: 1.1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: transform 0.2s ease;
    }

        .form-container .submit-btn:hover {
            transform: translateX(5px);
        }

    .form-container .arrow {
        font-size: 1.2rem;
    }

.ContactDetails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: fit-content;
}

    .ContactDetails a {
        color: #fff;
        font-size: 26px;
        width: max-content;
    }

        .ContactDetails a i {
            margin-right: 10px;
        }

#setFlex {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.contact-bottom-wrap {
    margin-top: 50px;
}

.contact-image {
    background-image: url('../images/serviceimages/interiordesign.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    border-radius: 5px;
}

/*.dynamic-contact-text {
    overflow: hidden;
}*/

.dynamic-contact-text h3 {
    color: #fff;
    text-align: center;
    letter-spacing: -.05em;
    white-space: nowrap;
    font-size: clamp(2rem, 14.6vw, 14rem);
    font-weight: 500;
}

.contact-bottom-wrap {
    margin-top: 50px;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: space-between;
    width: 100%;
    display: flex;
}

.signatureCaptule {
    background: #1a1a1a;
    margin-top: 70px;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
    min-height: 60px;
    align-items: center;
}

    .signatureCaptule p {
        margin: 0;
        color: #fff;
    }

.socialMediaBar {
    display: flex;
    gap: 10px;
}

    .socialMediaBar a {
        color: white;
        height: 45px;
        width: 45px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 3px;
        padding: 0;
        margin: 0;
        transition: 0.3s ease-in-out;
        transform-style: preserve-3d;
    }

        .socialMediaBar a:hover {
            transition: 0.3s ease-in-out;
            background: #fff !important;
        }

        .socialMediaBar a i {
            margin: 0;
        }

        .socialMediaBar a.IG {
            background: #d6249f;
            background: linear-gradient(72.44deg, #ff7a00 11.92%, #ff0169 51.56%, #d300c5 85.69%);
        }

            .socialMediaBar a.IG:hover {
                color: #d6249f;
            }

        .socialMediaBar a.FB {
            background: #0866ff;
        }

            .socialMediaBar a.FB:hover {
                color: #0866ff;
            }

        .socialMediaBar a.WA {
            background: #18cf50;
        }

            .socialMediaBar a.WA:hover {
                color: #18cf50;
            }

        .socialMediaBar a.Dribble {
            background: #EA4C89;
        }

            .socialMediaBar a.Dribble:hover {
                color: #EA4C89;
            }

        .socialMediaBar a.Behance {
            background: #1769ff;
        }

            .socialMediaBar a.Behance:hover {
                color: #1769ff;
            }

#particles-js {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/*#smooth-wrapper {
    height: 100%;
    overflow: hidden;
}

#smooth-content {
    will-change: transform;
}*/

.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A75BB, #27AE60);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
}

    .back-to-top:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    }

    .back-to-top span {
        position: absolute;
        z-index: 2;
    }

/*.breadcrumbSection {
    background-image: url(https://cdn.prod.website-files.com/668bb19d4624aa44cec9cb26/668bb19d4624aa44cec9cb7d_Hero-bg.png);
    background-position: 0 0;
    background-size: 100% 100%;
    flex-flow: column;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    padding-top: 210px;
    padding-bottom: 120px;
    justify-content: center;
}

.breadcrumbHeading h1 {
    margin-top: 0;
    color: #fff;
    margin-bottom: 0;
    font-size: 96px;
    font-weight: 500;
    line-height: 110%;
    display: block;
}*/

.breadcrumbSection {
    background-image: url('../images/breadcrumb/aboutus.jpg');
    background-size: cover; /* keeps image ratio */
    background-repeat: no-repeat;
    background-position: top center;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    padding-top: 210px;
    padding-bottom: 120px;
    justify-content: center;
    flex-flow: column;
    position: relative;
    z-index: 1;
    transition: background-position 0.1s ease-out; /* smooth movement */
}

.breadcrumbHeading h1 {
    margin-top: 0;
    color: #fff;
    margin-bottom: 0;
    font-size: 96px;
    font-weight: 500;
    line-height: 110%;
    display: block;
    position: relative;
    z-index: 2;
    text-align: center;
}

.paragraph p span {
    font-weight: 600;
}
/*
.AboutphotoSection{
    display: flex;
    gap: 50px;
}*/

.about-image-grid-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    display: flex;
}

.about-image-grid-column {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
    display: flex;
}

    .about-image-grid-column.item-one {
        justify-content: space-between;
        max-width: 648px;
        width: 100%;
    }

.animated-image-wrapper {
    position: relative;
    overflow: hidden;
}

.animated-image {
    width: 100%;
}

.fun-fact-number-wrapper {
    height: 56px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: stretch;
    height: 43px;
    display: flex;
    overflow: hidden;
}

.text-large.about-fun-fact-title {
    margin-top: 10px;
    font-weight: 500;
    font-size: 24px;
}

about-image-grid-column.item-two {
    flex: 1;
}

.animated-image.about-grid-video {
    height: 240px;
}

/*.w-background-video > video {
    object-fit: cover;
    z-index: -100;
    background-position: 50%;
    background-size: cover;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    inset: -100%;
}
*/

.w-background-video video {
    max-width: 100%;
}

.about-grid-funfact-item h2 {
    font-size: 52px;
    font-weight: 600;
}

/*.WhoWeAreSection .headingWhite.blackcolor p {
    text-align: center;
}*/

.WhoWeAreSection {
    background-color: #f9f9f9;
}

.teamImageBox {
    overflow: hidden;
}

.text-neutral-04 {
    margin: 0;
}

.MainCoverImage {
    overflow: hidden;
}

    .MainCoverImage img {
        max-height: 550px;
        width: 100%;
    }

.mission-vision-icon-box-wrapper {
    padding: 50px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.mission-mission-vision-icon-box {
    padding: 30px;
    background: #9797971a;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.mission-vision-title {
    margin-top: 30px;
    margin-bottom: 24px;
}

.ourTeamMember {
    position: relative;
}

.team-area {
    justify-content: flex-end;
    align-items: flex-start;
    display: flex;
    gap: 75px;
}

.team-list-01 {
    grid-column-gap: 146px;
    grid-row-gap: 146px;
    flex-flow: column;
    align-items: flex-start;
    display: flex;
}

.team-list-02 {
    grid-column-gap: 146px;
    grid-row-gap: 146px;
    flex-flow: column;
    align-items: flex-start;
    padding-top: 127px;
    display: flex;
}

.team-image {
    width: 336px;
}

.single-team {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    flex-flow: column;
    align-items: flex-start;
    display: flex;
}

.team-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.aboutInnersection {
    position: relative;
}

.service-single-item-block-v2 {
    position: sticky;
    top: 150px;
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    padding-bottom: 60px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    margin-bottom: 50px;
}

.service-image-block {
    border-radius: 5px;
    overflow: hidden;
}

.service-image-link {
    min-height: 100%;
    display: block;
}

.service-image {
    width: 100%;
    max-height: 450px;
}

.service-content-block {
    background-color: #fff;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
}

.service-number-block {
    border: 1px solid #01010121;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
}

.service-number-text {
    padding: 10px 20px;
    font-weight: 500;
}

.service-title-and-summary-block {
    max-width: 729px;
    margin-top: 186px;
}

.service-title {
    font-size: 34px;
}

.service-summary {
    margin-top: 24px;
}

.AdSection {
    background-image: url("https://cdn.prod.website-files.com/67d65e4a7a8964eda8d774b0/680f176a0c59f5535c846c4e_CTA%20V2.jpg");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 720px;
    max-height: 720px;
    margin-bottom: -40px;
    position: relative;
}

.section-title-block h2 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #fff;
}

.section-description-block.margin-top-24px.max-width-473 {
    max-width: 473px;
}

.cta-button-wrap {
    margin: 20px 0;
}

.service-page-section {
    position: relative;
}

.WallofFame {
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .WallofFame h2 {
        margin-bottom: 25px;
        font-family: 'Satisfy';
        color: #26ab63;
        letter-spacing: 1px;
    }

.service-icon-title {
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 20px;
}

.ourProcessWrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 50px 0;
}

.service-icon-box-item {
    width: calc(50% - 25px);
    margin: 0 10px 0px 0;
}


.service-icon {
    display: inline-flex;
    height: 65px;
    width: 65px;
    background: #030303;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    perspective: 1000px;
    transform-style: preserve-3d; /* keeps 3D effect */
    transition: transform 1s ease-in-out; /* smooth return */
}

.service-icon-box-item:hover .service-icon {
    transform: rotateY(360deg); /* flip on hover */
    transition: 0.3s ease-in-out;
}

.service-icon img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(1%) hue-rotate(43deg) brightness(102%) contrast(101%);
    max-height: 36px;
}

.myList li {
    background-image: url('../images/vectors/bulletspoints.png');
    background-position: 0 5px;
    background-repeat: no-repeat;
    background-size: auto;
    padding-left: 26px;
    list-style-type: none;
    padding-bottom: 10px;
}

.loader {
    background: rgb(255 255 255 / 86%);
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
    backdrop-filter: blur(5px);
}

.loader-inner {
    bottom: 0;
    height: 60px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}

.loader-line-wrap {
    animation: spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
    box-sizing: border-box;
    height: 50px;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    transform-origin: 50% 100%;
    width: 100px;
}

.loader-line {
    border: 4px solid transparent;
    border-radius: 100%;
    box-sizing: border-box;
    height: 100px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}

.loader-line-wrap:nth-child(1) {
    animation-delay: -50ms;
}

.loader-line-wrap:nth-child(2) {
    animation-delay: -100ms;
}

.loader-line-wrap:nth-child(3) {
    animation-delay: -150ms;
}

.loader-line-wrap:nth-child(4) {
    animation-delay: -200ms;
}

.loader-line-wrap:nth-child(5) {
    animation-delay: -250ms;
}

.loader-line-wrap:nth-child(1) .loader-line {
    border-color: hsl(0, 80%, 60%);
    height: 90px;
    width: 90px;
    top: 7px;
}

.loader-line-wrap:nth-child(2) .loader-line {
    border-color: hsl(60, 80%, 60%);
    height: 76px;
    width: 76px;
    top: 14px;
}

.loader-line-wrap:nth-child(3) .loader-line {
    border-color: hsl(120, 80%, 60%);
    height: 62px;
    width: 62px;
    top: 21px;
}

.loader-line-wrap:nth-child(4) .loader-line {
    border-color: hsl(180, 80%, 60%);
    height: 48px;
    width: 48px;
    top: 28px;
}

.loader-line-wrap:nth-child(5) .loader-line {
    border-color: hsl(240, 80%, 60%);
    height: 34px;
    width: 34px;
    top: 35px;
}

@keyframes spin {
    0%, 15% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn-whats.pulse i {
    font-size: 28px;
}

.btn-whats.pulse {
    position: fixed;
    cursor: pointer;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 10px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    transition-duration: 0.5s;
    animation: pulse-btn 3s infinite;
    z-index: 9000;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .btn-whats.pulse:hover {
        background-color: rgba(0, 150, 0, 1);
        color: white;
    }

@-webkit-keyframes pulse-btn {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgb(37,211,102);
    }

    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0);
    }
}

.btn-whats.pulse a {
    color: #fff;
}
