*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0px;
    padding: 0px;
    font-family: 'Microsoft Sans Serif', sans-serif;
}


html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: #0b0b0b;
}

#nav_placeholder {
    height: 70px;
}


nav {
    height: 50px;
    width: 99.8%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 10px;
    position: fixed;
    z-index: 1000;
    background: linear-gradient(to bottom right, rgba(57, 52, 59, 0.21), rgba(62, 56, 64, 0));
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 50px;
}

#logo img {
    width: 70px;
}

nav ul {
    padding-left: 40px;
}

nav ul li {
    list-style: none;
    display: inline;
    margin: 0px 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: -0.3px;
    text-align: center;
}

nav ul li a:hover {
    color: transparent;
    background: linear-gradient(to right, #7e58b7, #ee73ec);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #7e58b7, #ee73ec);
    transition: width 0.4s ease;
}

nav ul li a:hover::after {
    width: 100%;
}



nav>button {
    position: relative;
    height: 38px;
    width: 120px;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    font-family: 'Adelle Sans', sans-serif;
    border: none;
    outline: none;
    color: #ffffffdb;
    background: linear-gradient(to right, #7e58b7, #c75dc6);
    border-radius: 5px;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease;
    font-weight: 400;
}

nav>button:hover {
    background: linear-gradient(to right, #c75dc6, #7e58b7);
    color: #ffffff;
}

nav>button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, #7e58b7, #c75dc6);
    border-radius: 5px;
    z-index: -1;
    padding: 1px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    transition: background 0.4s ease;
}

nav>button:hover::before {
    background: linear-gradient(to right, #c75dc6, #7e58b7);
}

#hamburger {
    display: none;
}

#hamburger i {
    color: white;
    font-size: 20px;
    cursor: pointer;
}

#menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: fixed;
    right: 0;
    top: 12%;
    width: 150px;
    height: fit-content;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    display: none;
    background-color: black;
    z-index: 1100;
}

#menu li {
    margin: 10px 0;
    text-align: center;
}

#menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

#menu a:hover {
    color: #ff5722;
}


#section1 {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    align-items: center;
    position: relative;
}

#bg1 {
    position: absolute;
    width: 170%;
    overflow: hidden;
    height: 1200px;
    top: 0;
    left: -30%;
    z-index: -10;
}

#section1 h1 {
    font-family: 'Microsoft Sans Serif', sans-serif;
    font-weight: 400;
    font-size: 80px;
    line-height: 88px;
    letter-spacing: -1.6px;
    text-align: center;
    color: white;
}

#section1>p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    margin-top: 50px;
    font-size: 22px;
    line-height: 28.6px;
    letter-spacing: -0.44px;
    text-align: center;
    color: white;
}

#section1>button {
    position: relative;
    margin-top: 30px;
    height: 56px;
    width: 187px;
    font-size: 22px;
    line-height: 24px;
    font-family: 'Inter', sans-serif;
    border: none;
    outline: none;
    color: #ffffffdb;
    background: linear-gradient(to right, #7e58b7, #c75dc6);
    border-radius: 8px;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease;
    font-weight: 500;
}

#section1>button:hover {
    background: linear-gradient(to right, #c75dc6, #7e58b7);
    color: #ffffff;
}

#section1>button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, #7e58b7, #c75dc6);
    border-radius: 8px;
    z-index: -2;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    transition: background 0.4s ease;
}

#section1>button:hover::before {
    background: linear-gradient(to right, #c75dc6, #7e58b7);
}

#hero {
    width: 100%;
    padding-bottom: 40px;
}

#sec2 {
    height: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 50px;
}

#scroll-container {
    display: flex;
    width: max-content;
    animation: scroll-left 10s linear infinite;
}

.scroll-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-item img {
    height: 25px;
    width: 25px;
    filter: brightness(80%);
    margin: 0px 35px;
}

.scroll-item p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 30px;
    white-space: nowrap;
    color: rgb(212, 212, 212);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

#sect {
    padding-top: 100px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#sect div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}


#sect div>h1:first-child {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 28px;
    -moz-stack-sizing: 13px;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    color: #FBFBFB;
}

#sect div>h1:last-child {
    margin-top: 10px;
    font-size: 32px;
    font-weight: 400;
    line-height: 28px;
    -moz-stack-sizing: 13px;
    font-family: 'Inter', sans-serif;
    color: #aaaaaa;
    -webkit-text-stroke: 2px #C3BABA80;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 1);
}

#section2 {
    margin-top: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#bg2 {
    position: absolute;
    width: 110%;
    height: 800px;
    top: 35%;
    left: -20%;
    z-index: -1;
}

#section2 div {
    padding-left: 120px;
    padding-right: 50px;
}

#section2 h1,
#section3>h1,
#section4>h1,
#section6>h1,
#section8>h1 {
    font-size: 36px;
    font-weight: 500;
    line-height: 45.27px;
    font-family: 'Microsoft Sans Serif', sans-serif;
    background: linear-gradient(to left, #00F0FF, #5200FF, #FF2DF7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 30px;
}

#section2 p {
    color: white;
    line-height: 39.35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    font-weight: 300;
}

#section2 p span {
    color: #0075FF;
    font-weight: 700;
    line-height: 39.35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
}

#section2 img:last-child {
    width: 500px;
    padding-right: 20px;
}

#section_text button,
#desc button {
    font-family: 'Montserrat', sans-serif;
    margin-top: 50px;
    background: transparent;
    outline: none;
    font-weight: 400;
    line-height: 23.67px;
    border: none;
    color: white;
    font-size: 19.41px;
    padding: 10px 40px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

#section_text button::before,
#desc button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(to left, #00F0FF, #5200FF, #FF2DF7);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    transition: all 0.1s ease;
}

#section_text button:hover::before,
#desc button:hover::before {
    padding: 1px;
    scale: 1.05;
}



#section_text button i,
#desc button i {
    background: linear-gradient(to left, #00F0FF, #5200FF, #FF2DF7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    margin-left: 10px;
}


#section3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    position: relative;
}

#bg3 {
    position: absolute;
    width: 190%;
    left: -40%;
    height: 1200px;
    top: 10%;
    z-index: -1;
}

#section3>p {
    color: #E7E7E7;
    text-align: center;
    margin: auto 350px;
    line-height: 28.6px;
    font-weight: 300;
    letter-spacing: -0.44px;
    font-size: 19px;
    font-family: 'Inter', sans-serif;
}

#section3 h1 {
    line-height: 45.27px;
}

#services-carousel {
    width: 75%;
    margin: auto;
    position: relative;
    margin-top: 50px;
}

.carousel-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px 30px;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    transition: transform 0.5s ease;
}

.service {
    color: #fff;
    border-radius: 5px;
    border: 1px solid #A1AEBF;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.service {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.service img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
}

.service>h1 {
    font-family: 'Microsoft Sans Serif', sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 36px;
    color: white;
}

.service>p {
    font-family: 'Agrandir', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2%;
    color: rgb(153, 153, 153);
}

.arrows {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 30px;
}

.arrow {
    color: #fff;
    border: none;
    padding: 10px 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 24px;
    transition: background-color 0.3s ease;
    background-color: transparent;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #9C9C9C;
}

.arrow img {
    width: 110%;
}

.arrow:disabled {
    cursor: not-allowed;
}

.arrow:hover {
    background-color: #444;
}

@media (max-width: 768px) {
    .carousel-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .carousel-container {
        grid-template-columns: 1fr;
    }
}

#section4 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 80px;
    width: 100%;
    position: relative;
}

#bg4 {
    position: absolute;
    width: 190%;
    left: -40%;
    height: 1200px;
    top: 10%;
    z-index: -1;
}

#section4>p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 28.6px;
    letter-spacing: -0.44%;
    color: white;
    text-align: center;
    margin: 0px 380px;
}


#portfolio-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

#portfolio {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

#portfolio.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

#portfolio.hidden {
    opacity: 0;
    transform: translateY(20px);
}

#portfolio {
    display: flex;
    justify-content: space-evenly;
    margin: 0px 0px;
    margin-top: 70px;
}

#portfolio img {
    width: 600px;
    height: 420px;
    border-radius: 20px;
}

#desc {
    width: 30%;
}

#desc h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 19.12px;
    letter-spacing: 4%;
    color: #9C9C9C;
    margin-bottom: 20px;
}

#desc h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 44px;
    letter-spacing: 4%;
    color: white;
    margin-bottom: 20px;
}

#desc p {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-size: 14.5px;
    line-height: 28px;
    letter-spacing: 2%;
    color: white;
    margin-bottom: 40px;
}

#image_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
}

#image_container i {
    font-size: 40px;
    color: #E8E8E8;
    transition: color 0.5s ease;
}

#desc>button {
    width: 196px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    height: 40px;
    width: 216px;
    border: 0.78px;
    font-size: 16px;
    line-height: 20.72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    padding-top: 3px;
}

#desc button i {
    margin-left: 20px;
    font-size: 16px;
}

#section5 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 140px;
    position: relative;
}

#bg5 {
    position: absolute;
    width: 200%;
    top: 10%;
    left: -40%;
    z-index: -1;
}


#section5>h1 {
    font-family: 'Barlow', sans-serif;
    color: white;
    font-weight: 500;
    font-size: 34px;
    line-height: 45.6px;
    align-items: center;
}

#section5>p {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.6%;
    text-align: center;
    color: #E6E6E6;
    margin: 0 300px;
    margin-top: 20px;
}

#choose {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px 40px;
    margin-top: 80px;
}

.container {
    width: 48%;
    max-width: 520px;
    height: 260px;
    border-radius: 4px;
    border: 1px solid #A1AEBF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    padding-left: 50px;
}

.line {
    height: 258px;
    width: 1px;
    background-color: #2a2a2a;
}

.upper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(to bottom, rgba(36, 36, 36, 0.7), rgba(36, 36, 36, 0));
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon>img {
    width: 30px;
    height: 30px;
}

.heading {
    color: white;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: -0.6%;
    margin-left: 10px;
}

.lower p {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.6%;
    color: #E6E6E6;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
}

#section6 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 200px;
    position: relative;
}

#bg6 {
    position: absolute;
    width: 200%;
    top: 10%;
    left: -55%;
    z-index: -1;
}

#arrow {
    position: absolute;
    top: 5%;
    right: 15%;
    width: 193.8px;
    height: 281.62px;
}

#testimonials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
}

#customers {
    position: relative;
    width: 90%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#customers>img {
    position: absolute;
}

#specular {
    width: 206.73px;
    height: 179.49px;
    top: 5%;
    left: 5%;
}

#red_cube {
    width: 214.09px;
    height: 186.68px;
    top: 25%;
    right: 0;
}

#circle {
    width: 172.44px;
    height: 171.56px;
    top: 65%;
    left: 10%;
}

#content_div {
    width: 52%;
    height: 64%;
    margin-left: 30px;
    border-radius: 40px;
    background: linear-gradient(to bottom right, rgba(254, 248, 255, 0.21), rgba(254, 248, 255, 0));
    backdrop-filter: blur(70px);
    z-index: 99;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding: 0px 80px;
}

#content_div::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50px;
    background: radial-gradient(to bottom right, rgba(254, 248, 255, 0.21), rgba(254, 248, 255, 0));
    backdrop-filter: blur(70px);
    z-index: -1;
}

#comma {
    width: 43px;
    height: 32px;
    align-self: start;
    margin-left: 0px;
    margin-top: 50px;
}

#content_div>p {
    font-family: 'Prompt', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 17px;
    line-height: 38px;
    letter-spacing: 3%;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    margin-top: 30px;
}

#picture {
    width: 80px;
    height: 80px;
    margin-top: 10px;
    position: relative;
    display: block;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(to bottom right, #FFA800 0%, #FF4D00 100%) border-box;
}


#picture::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/picture.png') no-repeat center center;
    background-size: 80px 80px;
    transform: scaleY(-1);
    opacity: 0.4;
    filter: blur(4px);
    pointer-events: none;
}


#name {
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 32px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 1);
    margin-top: 20px;
}

#position {
    font-family: 'Prompt', sans-serif;
    font-weight: 200;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    margin-top: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 95%;
    left: 48%;
}

.indicator {
    width: 13.33px;
    height: 13.33px;
    background-color: rgba(59, 59, 65, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.indicator.active {
    width: 20px;
    height: 20px;
    background-color: rgba(185, 184, 184, 1);
}


@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutToLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutToRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

#content_div {
    display: none;
    position: absolute;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

#content_div.active {
    display: flex;
}

#content_div.slide-in-right {
    animation: slideInFromRight 0.5s ease-in-out forwards;
}

#content_div.slide-out-left {
    animation: slideOutToLeft 0.5s ease-in-out forwards;
}

#content_div.slide-in-left {
    animation: slideInFromLeft 0.5s ease-in-out forwards;
}

#content_div.slide-out-right {
    animation: slideOutToRight 0.5s ease-in-out forwards;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.arrow[disabled] {
    cursor: not-allowed;
    background-color: transparent;
}


.inner-content {
    opacity: 0;
    transform: translateY(20px);
}

.inner-content.visible {
    animation: fadeInUp 0.5s ease-in-out forwards;
}



#section7 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 200px;
}

#section7 h1 {
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: 45.6px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}

#section7>p {
    font-family: 'Barlow', sans-serif;
    font-weight: 200;
    font-size: 14px;
    margin-top: 7px;
    line-height: 24px;
    letter-spacing: -0.6%;
    text-align: center;
    color: rgba(230, 230, 230, 1);
    margin-bottom: 150px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px 100px;
    width: 95%;
}

#f1 {
    display: flex;
    align-items: center;
}

#f1>div:first-child {
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: linear-gradient(to bottom, rgba(36, 36, 36, 1), rgba(36, 36, 36, 0));
    color: white;
    position: relative;
    margin-right: 20px;
}

#f1>div:first-child::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 9px;
    background: linear-gradient(to bottom, rgba(46, 46, 46, 1), rgba(46, 46, 46, 0));
    z-index: -1;
}

#f2 {
    max-width: 450px;
    margin-left: 30px;
}

#f1>div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 400px;
}

#f2>p {
    color: rgba(230, 230, 230, 1);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    margin-top: 15px;
    margin-left: 42px;
}

#f1>div:last-child>i {
    text-align: right;
    color: white;
    font-weight: 100;
    font-size: 16px;
    margin-left: 30px;
    align-self: flex-start;
    padding-top: 5px;
    transition: color 0.3s ease;
}

#f1>div:last-child>i:hover {
    color: rgba(197, 255, 102, 1);
}

#f1>div:last-child>p {
    color: white;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
}


.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content.open {
    max-height: 300px;
}

.faq i {
    cursor: pointer;
}

#FAQ_section {
    display: flex;
    justify-content: space-between;
    width: 85%;
}

#sect1,
#sect2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#section8 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 150px;
    position: relative;
}

#bg7 {
    position: absolute;
    width: 190%;
    top: 0%;
    left: -40%;
}

#contact_us_form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px 20px;
    width: fit-content;
    max-width: 704px;
    margin-top: 20px;
    flex-wrap: wrap;
}

form>div {
    background-color: rgba(36, 36, 36, 0.5);
    border: 1px solid rgba(38, 38, 38, 1);
}

form>div>span {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: white;
    z-index: 10;
}

form>div>input {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    border: none;
    outline: none;
    background-color: transparent;
    color: rgb(123, 123, 126);
    gap: 6px;
    border-bottom: 1px solid rgb(53, 53, 54);
    margin-top: 10px;
    width: 280px;
    height: 30px;
    z-index: 10;
}

form>div>input:focus {
    border-color: rgba(158, 255, 0, 1);
}

form>div>p {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 14.5px;
    line-height: 24px;
    letter-spacing: -0.6%;
    color: rgba(230, 230, 230, 1);
    margin-top: 10px;
    z-index: 10;
}

#name,
#email,
#reason,
#budget,
#message {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    padding: 20px 30px;
    margin: 0px;
}

#reason {
    width: 100%;
    padding-right: 80px;
}

.checkbox-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px 100px;
    margin-top: 20px;
    z-index: 10;
}

.custom-checkbox {
    display: none;
}

.checkbox-container label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
}

.checkbox-container label span {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    color: rgba(253, 255, 250, 1);
}

.checkbox-container label::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background-color: rgb(40 44 47);
    border: 1px solid rgba(51, 51, 51, 1);
    border-radius: 4px;
    transition: background-color 0.3s, border-color 0.3s;
    box-sizing: border-box;
    position: relative;
}

.checkbox-container label.active::before {
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkbox-container label.active::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    color: rgba(158, 255, 0, 1);
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translate(-50%, -50%);
}

#other-reason-input {
    margin-top: 10px;
    z-index: 10;
}

#other-reason-input>span {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 27px;
    color: white;
    z-index: 10;
}

#other-reason-input>input {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    border: none;
    outline: none;
    background-color: transparent;
    color: rgb(123, 123, 126);
    gap: 6px;
    border-bottom: 1px solid rgb(53, 53, 54);
    margin-top: 10px;
    width: 280px;
    height: 30px;
}

#other-reason-input input:focus {
    border-color: rgba(158, 255, 0, 1);
}


#budget {
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

input[type="range"] {
    position: absolute;
    width: 100%;
    -webkit-appearance: none;
    background: none;
    pointer-events: none;
    z-index: 2;
    top: 34.5%;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: rgba(158, 255, 0, 1);
    border-radius: 50%;
    border: 4px solid rgba(76, 76, 77, 1);
    cursor: pointer;
    pointer-events: auto;
    z-index: 3;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid rgba(158, 255, 0, 1);
    cursor: pointer;
}

.slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(51, 51, 51, 1);
    transform: translateY(-50%);
    z-index: 1;
}

.slider-track::before {
    content: "";
    position: absolute;
    height: 3px;
    background: rgba(158, 255, 0, 1);
    z-index: 1;
}

.slider-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

#value-min,
#value-max {
    font-size: 14px;
    margin-top: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16.94px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}

#message {
    width: 100%;
}

#message_input {
    width: 97% !important;
    margin-top: 20px;
    border: none;
    outline: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    color: rgb(123, 123, 126);
    background-color: transparent;
    border: 1px solid #505050;
    padding: 10px;
    border-radius: 5px;
    z-index: 10;
}

#message_input:focus {
    border-color: rgba(158, 255, 0, 1);
}

form>button {
    width: 120px;
    height: 51px;
    border-radius: 6px;
    background-color: rgba(158, 255, 0, 1);
    border: none;
    outline: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22.5px;
    color: rgba(26, 26, 26, 1);
    transition: background-color 0.3s ease;
    margin: auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

form>button:hover {
    background-color: rgb(128, 207, 0);
    cursor: pointer;
}

form>button {
    position: relative;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-top: 3px solid rgba(26, 26, 26, 1);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


.star {
    color: rgba(158, 255, 0, 1);
}

#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.notification {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInOut 5s forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    10% {
        opacity: 1;
        transform: translateX(0);
    }

    90% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}


footer {
    margin-top: 250px;
    display: flex;
    align-self: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

footer>img {
    position: absolute;
    z-index: -1;
}

#footer {
    width: 100%;
    height: 310px;
    z-index: 10;
    margin-top: 50px;
    background-color: rgba(13, 13, 13, 1);
    border-top: 1px solid rgba(38, 38, 38, 1);
}

.cont {
    width: 80%;
    margin: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#foot1 {
    height: 90%;
    display: flex;
}

#foot2 {
    height: 10%;
}

#foot2>p,
#foot2>p>span {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 21px;
    color: rgba(152, 152, 154, 1);
    text-align: end;
}

#content {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    flex-wrap: wrap;
    height: 100%;
    width: 270px;
}

#content>img {
    width: 66px;
}

#content>p {
    font-family: 'Inter', sans-serif;
    font-weight: 100;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 1);
    margin-top: 20px;
}

#socials {
    display: flex;
    justify-content: space-between;
    width: 55%;
    margin-left: 100px;
    margin-top: 80px;
}

#socials>div {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 15px;
}

#socials>div>span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.3px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}

#socials>div>a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.3px;
    text-align: center;
    color: rgba(134, 134, 134, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

#socials>div>a:hover {
    color: rgba(158, 255, 0, 1);
}


@media (max-width: 1160px) {
    .container {
        width: 400px;
    }

    #section7>p {
        margin-bottom: 50px;
    }
}

@media (max-width: 1024px) {
    #section1>h1 {
        font-size: 60px;
    }

    #section1>p {
        font-size: 18px;
    }

    #section1>button {
        width: 160px;
        height: 45px;
        font-size: 18px;
    }

    .scroll-item img {
        width: 23px;
        height: 23px;
    }

    .scroll-item p {
        font-size: 16px;
    }

    #sect>div>h1:first-child {
        font-size: 28px;
    }

    #section2 h1,
    #section3>h1,
    #section4>h1,
    #section6>h1,
    #section8>h1 {
        font-size: 30px;
    }

    #section2 div {
        padding-left: 60px;
    }

    #section_text button {
        font-size: 16px;
        padding: 6px 25px
    }

    #section2 p {
        font-size: 16px;
    }

    #sect>div>h1:last-child {
        font-size: 26px;
    }

    #section2>img:last-child {
        width: 400px !important;
    }

    #section3>p {
        margin: 0px 250px;
        font-size: 16px;
    }

    .service img {
        width: 42px;
        height: 42px;
    }

    .service h1 {
        font-size: 20px;
    }

    #section4>p {
        margin: 0px 200px;
        font-size: 16px;
    }

    #portfolio>img {
        width: 500px;
        height: 350px;
    }

    #desc {
        width: 40%;
    }

    #section5>h1 {
        font-size: 28px;
    }

    #section5>p {
        margin: 0px 200px;
    }

    .line {
        display: none;
    }

    #choose {
        gap: 20px;
    }

    .container {
        width: 90%;
        max-width: 90%;
        height: fit-content;
    }

    #FAQ_section {
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }

    #sect1,
    #sect2 {
        width: 80%;
    }

    #f1>div:last-child {
        width: 100%;
    }

    #f2 {
        max-width: none;
    }

    #testimonials {
        width: 90%;
    }
}

@media (max-width: 834px) {
    #logo img {
        width: 60px;
    }

    nav>ul>li>a {
        font-size: 13px;
    }

    nav button {
        width: 90px;
        height: 35px;
        font-size: 13px;
    }

    #section1>h1 {
        font-size: 45px;
        line-height: 55px;
    }

    #section1>p {
        font-size: 15px;
    }

    #section1>button {
        width: 140px;
        height: 40px;
        font-size: 18px;
    }

    .scroll-item img {
        width: 21px;
        height: 21px;
    }

    .scroll-item p {
        font-size: 14px;
    }

    #sect>div>h1:first-child {
        font-size: 25px;
    }

    #section2 h1,
    #section3>h1,
    #section4>h1,
    #section6>h1,
    #section8>h1 {
        font-size: 27px;
    }

    #section2 div {
        padding-left: 60px;
        padding-right: 20px;
    }

    #section_text button {
        font-size: 14px;
        padding: 6px 25px;
        display: flex;
        align-items: center;
    }

    #section2 p,
    #section2 p span {
        font-size: 15px;
    }

    #sect>div>h1:last-child {
        font-size: 23px;
    }

    #sect {
        justify-content: space-between;
        width: 90%;
    }

    #section2>img:last-child {
        width: 300px !important;
    }

    #section3>p {
        margin: 0px 100px;
        font-size: 15px;
    }

    #services-carousel {
        width: 90%;
    }

    .carousel-container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }

    .service img {
        width: 40px;
        height: 40px;
    }

    .service h1 {
        font-size: 18px;
    }

    .service p {
        font-size: 13px;
    }

    #section4>h1 {
        margin-bottom: 10px;
    }

    #section4>p {
        margin: 0px 100px;
        font-size: 15px;
    }

    #portfolio-container {
        height: 370px;
    }

    #section4 .arrows {
        margin-top: 0px;
    }

    #portfolio {
        align-items: center;
        margin-top: 10px;
    }

    #portfolio>img {
        width: 350px;
        height: 200px;
    }

    #desc {
        width: 50%;
    }

    #desc h4 {
        font-size: 13px !important;
        margin-bottom: 10px;
    }

    #desc button {
        display: flex;
        align-items: center;
        font-size: 13px;
        width: fit-content;
        padding: 0px 10px !important;
        height: 35px;
    }

    #desc button i {
        margin-left: 10px;
    }

    #image_container {
        padding: 0;
        width: 80%;
    }

    #image_container i {
        font-size: 30px;
    }

    #desc h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    #desc p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    #section5>h1 {
        font-size: 25px;
    }

    #section5>p {
        margin: 0px 100px;
    }

    .line {
        display: none;
    }

    #choose {
        gap: 20px;
        margin-top: 50px;
    }

    .container {
        width: 90%;
        max-width: 90%;
        height: fit-content;
    }

    #FAQ_section {
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }

    #sect1,
    #sect2 {
        width: 90%;
    }

    #f1>div:last-child {
        width: 100%;
    }

    #f2 {
        max-width: none;
    }

    #testimonials {
        width: 95%;
    }

    #content_div {
        padding: 0px 30px;
        margin-left: 0px;
        width: 68%;
        height: fit-content;
    }

    #content_div p {
        font-size: 14px;
    }

    .indicator {
        width: 11px;
        height: 11px;
    }

    .indicator.active {
        width: 15px;
        height: 15px;
    }

    #section7>h1 {
        font-size: 27px;
    }

    #f1>div:first-child {
        font-size: 21px;
    }

    .cont {
        width: 90%;
    }

    #section7 {
        margin-top: 100px;
    }
}

@media (max-width: 768px) {
    nav ul {
        padding: 0;
    }

    #sec2 {
        margin-top: 20px;
    }

    #hero {
        padding-bottom: 20px;
    }

    #sect {
        padding-top: 30px;
    }

    #section2 {
        margin-top: 90px;
    }

    #section3 {
        margin-top: 50px;
    }

    #services-carousel {
        margin-top: 20px;
    }

    #section4 {
        margin-top: 50px;
    }

    #portfolio-container {
        height: 270px;
    }

    #portfolio {
        margin-top: 40px;
    }

    #section5 {
        margin-top: 70px;
    }

    #choose {
        margin-top: 40px;
    }

    #section7 {
        margin-top: 70px;
    }

    #section7>p {
        margin-bottom: 50px;
    }

    #section8 {
        margin-top: 80px;
    }

    footer {
        margin-top: 100px;
    }

    #sect>div>h1:first-child {
        font-size: 20px;
        margin-bottom: 0;
    }

    #sect>div>h1:last-child {
        font-size: 18px;
    }

    #section2 img:last-child {
        width: 200px !important;
    }

    #section_text p,
    #section_text p span {
        font-size: 13px;
    }

    #section_text button {
        font-size: 12px;
        display: flex;
        align-items: center;
        padding: 4px 15px;
    }

    #section_text button i {
        font-size: 12px;
    }

    #section3>p {
        margin: 0px 40px;
    }

    .service img {
        width: 35px;
        height: 35px;
    }

    .service h1 {
        font-size: 16px;
    }

    #section4>p {
        margin: 0px 40px;
    }

    #portfolio img {
        width: 300px;
        height: 170px;
    }

    #desc h4 {
        display: none;
    }

    #image_container {
        display: none;
    }

    #desc button {
        margin-top: 30px;
        font-size: 11px;
        height: 32px;
    }

    #desc button i {
        font-size: 12px;
        display: flex;
        align-items: center;
    }

    .icon {
        width: 50px;
        height: 50px;

    }

    .icon img {
        width: 22px;
        height: 22px;
    }

    .heading {
        font-size: 15px;
    }

    .lower p {
        font-size: 13px;
    }

    .container {
        padding-left: 30px;
    }

    #customers {
        height: 600px;
    }

    #specular {
        width: 160px;
        height: 140px;
        left: 0;
        top: 10%;
    }

    #red_cube {
        width: 160px;
        height: 150px;
    }

    #circle {
        width: 140px;
        height: 140px;
        top: 60%;
        left: 5%;
    }

    #comma {
        width: 35px;
        height: 25px;
    }

    #content_div p {
        line-height: 20px;
    }

    #content_div h3 {
        font-size: 14px;
        padding-bottom: 10px;
    }

    #position {
        margin: 0;
        font-size: 14px;
    }

    #section8 #name,
    #email,
    #name input,
    #email input {
        width: 100%;
    }

    #footer {
        height: fit-content;
        padding-top: 20px;
    }

    #foot1 {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 100px;
    }

    #content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #socials {
        margin: 0;
        width: 100%;
        justify-content: space-evenly;
    }

    #foot2 {
        margin-top: 50px;
        height: 40px;
    }

    #bg1 {
        height: 900px;
    }

    #bg2 {
        left: -25%;
        top: -10%;
    }

    #bg4 {
        height: 700px;
    }

    #bg5 {
        height: 1000px;
    }

    #bg6 {
        height: 1000px;
    }

    #bg7 {
        height: 1500px;
    }
}

@media (max-width: 600px) {
    nav button {
        display: none;
    }

    #section2>img:last-child {
        display: none !important;
    }

    #section2 div {
        padding: 30px;
    }

    #portfolio img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    nav {
        justify-content: space-between;
    }

    #logo {
        margin-left: 20px;
    }

    #logo img {
        width: 50px;
    }

    nav ul {
        display: none;
    }

    nav #hamburger {
        display: block;
        margin-right: 20px;
    }

    #section1 h1 {
        font-size: 35px;
    }

    #section1 button {
        width: 120px;
        font-size: 16px;
    }


    #sect {
        flex-wrap: wrap;
        gap: 40px 0px;
    }

    #sect div {
        width: 49%;
        padding: 10px 0px;
        background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.21), rgba(67, 64, 68, 0));
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(50px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        border-radius: 10px;
    }

    .carousel-container {
        grid-template-columns: repeat(1, 1fr);
    }

    #portfolio-container {
        height: 250px;
    }

    #portfolio {
        align-items: start;
        margin: 0px 20px;
        margin-top: 0px;
        width: 95%;
        justify-content: flex-start;
    }

    #section4 .arrows .arrow {
        width: 20px;
        height: 20px;
    }

    #portfolio img {
        width: 80px;
        height: 80px;
        margin-right: 30px;
    }

    #desc {
        width: 100%;
    }

    #desc p {
        font-size: 11.5px;
    }

    #section5 p {
        margin: 0px 20px;
        font-size: 14px;
    }

    .lower p {
        margin: 0px !important;
    }

    #arrow {
        right: 5%;
        height: 200px;
    }

    #section6 {
        padding-top: 100px;
    }

    #f1>div:last-child p {
        font-size: 14px;
    }

    #sect1,
    #sect2 {
        width: 100%;
    }

    #contact_us_form {
        margin: 0px 20px;
        margin-top: 20px;
    }

    #content p {
        text-align: center;
    }

    #socials {
        justify-content: space-between;
    }

    #contact_us_form>div {
        padding: 20px 15px;
    }

    #testimonials {
        overflow: hidden;
    }

    #testimonials .arrow {
        align-self: flex-end;
        margin-bottom: 50px;
    }

    .carousel-indicators {
        left: 0;
        margin: auto;
        width: 100%;
    }

    #specular {
        left: -20%;
    }

    #red_cube {
        right: -30%;
    }

    #circle {
        left: -10%;
        bottom: -10%;
    }

    #bg3 {
        width: 165%;
        top: -22%;
        height: 2100px;
    }

    #bg5 {
        height: 1500px;
    }
}

@media (max-width: 390px) {
    #section1>p {
        font-size: 14px;
        margin: 0px 10px;
        margin-top: 50px;
    }


    #section2>p {
        line-height: 30px;
    }

    #section3>p {
        margin: 0px 10px;
        font-size: 14px;
    }

    #section4>p {
        margin: 0px 10px;
        font-size: 14px;
    }

    #portfolio-container {
        margin-bottom: 0px !important;
        height: 280px;
    }

    #portfolio img {
        margin-right: 20px;
        width: 60px;
        height: 60px;
    }

    #comma {
        margin-top: 20px;
    }

    #cusomers {
        width: 80%;
    }

    #content_div {
        padding: 0px 10px;
        width: 100%;
    }

    #content_div::before {
        content: none;
    }


    #content_div p {
        margin-top: 20px;
    }

    #testimonials .arrow {
        padding: 4px 4px;
    }
}