/*Hero Section*/
/*navbar*/
 .hero-section {
     position: relative;
     z-index: 21; /* Higher than carousel elements */
     height: 137vh;
 }
/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}
#navbar.scrolled {
    /*background-color: blur !important;*/
    background-color: white !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    margin: 0.5rem auto;
    max-width: 1280px;
}
#navbar:not(.scrolled) {
    background-color: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}
#navbar.scrolled .nav-links span,
#navbar.scrolled button {
    color: #000000 !important;
}
#navbar.scrolled .sign-up-btn {
    color: #ffffff !important;
}
#navbar.scrolled .logo .fill {
    fill: #111827 !important;
}
#navbar.scrolled .logo .stroke {
    stroke: #111827 !important;
    fill: white !important;
}
#navbar.scrolled .nav-links svg {
    stroke: #000000 !important;
}

#navbar.scrolled .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.sign-up-btn {
    background-color: #2448DE;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
.sign-up-btn:hover {
    background-color: #1a3ab8;
}
.group:hover .dropdown-arrow {
    transform: rotate(180deg);
}
.dropdown-arrow {
    transition: transform 0.3s ease;
}
/* Toggle Button Styles */
.toggle-btn {
    display: none;
    color: white;
}
#navbar.scrolled .toggle-btn {
    color: #000000 !important;
}
@media (max-width: 1024px) {
    .nav-links {
        display: none !important;
    }

    .toggle-btn {
        display: block;
    }
}

/*mobile menu */
 #mobile-menu {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: white;
     z-index: 50;
     padding: 1rem;
     overflow-y: auto;
 }
@media (max-width: 1500px) and (min-width: 577px) {
    #mobile-menu {
        display: none !important;
    }
}
#mobile-menu .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1.25rem;
    color: #1f2937;
    cursor: pointer;
}
#mobile-menu .menu-item svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}
#mobile-menu .menu-item.active svg {
    transform: rotate(180deg);
}
#mobile-menu .menu-btn {
    display: block;
    text-align: center;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0.75rem;
    font-weight: 500;
}
#mobile-menu .sign-up-btn {
    background-color: #2448DE;
    color: white;
}
#mobile-menu .login-btn {
    color: #1f2937;
}
/* Mobile Dropdown Styles */
#mobile-menu .dropdown-content {
    display: none;
    padding: 1rem 0 1rem 1.5rem;
    background-color: #f9fafb;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#mobile-menu .dropdown-content.active {
    display: block;
}
#mobile-menu .dropdown-content a {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: #1f2937;
    text-decoration: none;
}
#mobile-menu .dropdown-content a:hover {
    background-color: #e5e7eb;
}
#mobile-menu .dropdown-content svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    color: #6b7280;
}
#mobile-menu .dropdown-content .sub-title {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    padding-left: 0.75rem;
}
#mobile-menu .dropdown-content .item-title {
    font-size: 1rem;
    font-weight: 500;
}
#mobile-menu .dropdown-content .item-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

/*Colored hero section*/
 body {
     font-family: 'Inter', sans-serif;
 }
.gradient-bg {
    background: linear-gradient(135deg, #ec008c, #fc6767, #ffb347, #7f00ff, #00f2fe);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
}
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/*-90 to -67*/
@media (min-width: 1441px ) and (max-width: 2160px) {
    .margin-left-in-xxl{
        margin-left: 150px!important;
    }
    .top-in-xxl{
        display: none !important;
    }
}
/*-50*/
@media (min-width: 2161px ) and (max-width:3160px ) {
    .margin-left-in-xxl{
        padding-left: 130px!important;
    }
}
@media (min-width: 1441px ) and (max-width: 7000px) {
    .top-in-xxl{
        display: none !important;
    }
}


/*companies logo carousel*/
 .logo-slide {
     display: flex;
     animation: slide 20s linear infinite;
 }
.logo-slide:hover {
    animation-play-state: paused;
}
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.logos-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    padding: 1rem 0;
    position: relative;
}
.logos-container::before,
.logos-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10%;
    z-index: 1;
}
.logos-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
.logos-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
.sliding-logo {
    height: auto;
    width: auto;
    max-height: 2rem;
    margin: 0 2.5rem;
    transition: opacity 0.3s;
    opacity: 100%;
}
/* Highlight Container */
.highlight-container {
    display: inline-block;
    font-size: 0.875rem; /* 14px for better readability */
    color: #000;
    background-color: #f7fafc; /* Light gray background */
    padding: 0.02rem 0.3rem;
    font-weight: 400;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin: 0 0.5rem;
    border: 1px solid #e2e8f0; /* Light gray border */
}
/* Highlight Animation */
.highlight {
    display: inline-block;
    color: #000;
    font-size: 13px;
    animation: colorTravel 3s infinite ease-in-out;
}
/* Animation Delays */
.highlight[data-delay="0"] {
    animation-delay: 0s;
}
.highlight[data-delay="1"] {
    animation-delay: 0.2s;
}
.highlight[data-delay="2"] {
    animation-delay: 0.4s;
}
.highlight[data-delay="3"] {
    animation-delay: 0.6s;
}
.highlight[data-delay="4"] {
    animation-delay: 0.8s;
}
.highlight[data-delay="5"] {
    animation-delay: 1.0s;
}
.highlight[data-delay="6"] {
    animation-delay: 1.2s;
}
.highlight[data-delay="7"] {
    animation-delay: 1.4s;
}
.highlight[data-delay="8"] {
    animation-delay: 1.6s;
}
.highlight[data-delay="9"] {
    animation-delay: 1.8s;
}
.highlight[data-delay="10"] {
    animation-delay: 2.0s;
}
.highlight[data-delay="11"] {
    animation-delay: 2.2s;
}
/* Color Animation Keyframes */
@keyframes colorTravel {
    0% {
        color: #000;
    }
    /* Black */
    50% {
        color: #0066FF;
    }
    /* Blue */
    100% {
        color: #000;
    }
    /* Back to black */
}

 /*3 Slide Carousel */
 .content-section-numbers {
     position: fixed;
     left: 3%;
     top: 50%;
     transform: translateY(-50%);
     z-index: 10;
     display: flex;
     flex-direction: column;
     align-items: center;
 }
.large-digit-fixed {
    font-size: 13rem;
    color: #E9E9E9;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 2rem;
}
.content-section-number {
    width: 20px;
    height: 20px;
    margin: 10px 0px;
    border-radius: 50%;
    border: 2px solid #1A3154;
    background-color: white;
    display: flex;
    top: -85px;
    left: 5px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    position: relative;
}
.content-section-number.active {
    background-color: #1A3154;
    color: white;
}
.content-section-number.active::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 80%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    background-image: url("./picture/checkmark-orange.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.content-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: all 0.3s ease;
    padding: 2rem 1rem;
}
.content-section.active {
    opacity: 1;
}
.content-section-images {
    position: fixed;
    top: 15%;
    right: 2%;
    width: 48%;
    max-width: 700px;
    height: auto;
    z-index: 5;
}
.content-section-image {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}
.content-section-image.active {
    opacity: 1;
    visibility: visible;
}
.content-section-mobile-image {
    display: none;
}

@media (max-width: 1024px) {
    .content-section {
        flex-direction: column;
        text-align: left;
        padding: 2rem 1.5rem;
    }

    .content-section-images {
        display: none;
    }

    .content-section-mobile-image {
        display: block;
        width: 100%;
        max-width: 400px;
    }

    .large-digit-fixed {
        display: none;
    }
}
/*-90%*/
@media (min-width: 1500px ) and (max-width:1600px ) {
    .content-section-numbers{
        padding-left: 120px!important;
    }
    .slide-carousel-content-ml{
        padding-left: 125px!important;
    }
    .content-section-images{
        margin-right: 60px!important;
    }

}
/*-80%*/
@media (min-width: 1601px ) and (max-width:1800px ) {
    .content-section-numbers {
        padding-left: 210px !important;
    }
    .slide-carousel-content-ml {
        padding-left: 225px !important;
    }
    .content-section-images {
        margin-right: 160px !important;
    }
}
/*-70%*/
@media (min-width: 1801px ) and (max-width: 1920px ) {
    .content-section-numbers {
        padding-left: 280px !important;
    }
    .slide-carousel-content-ml {
        padding-left: 290px !important;
    }
    .content-section-images {
        margin-right: 220px !important;
    }
}
/*-67%*/
@media (min-width: 1921px ) and (max-width: 2200px ) {
    .content-section-numbers {
        padding-left: 385px !important;
    }
    .slide-carousel-content-ml {
        padding-left: 395px !important;
    }
    .content-section-images {
        margin-right: 335px !important;
    }
}
/*-50%*/
@media (min-width: 2201px ) and (max-width: 3000px ) {
    .content-section-numbers {
        padding-left: 705px !important;
    }
    .slide-carousel-content-ml {
        padding-left: 740px !important;
    }
    .content-section-1-p{
        width: 95%!important;
    }
    .content-section-1-button{
        margin-right: 60px !important;
    }
    .content-section-2-h2{
        font-size: 45px!important;
    }
    .content-section-2-button{
        margin-right: 70px !important;
    }
    .content-section-3-p{
        width: 92%!important;
    }
    .content-section-3-button{
        margin-right: 60px !important;
    }

    .content-section-images {
        margin-right: 680px !important;
    }
}

/*rating section*/
 .rating-section {
     background-color: #2561AE !important;
 }
.counter-container {
    display: flex;
    align-items: center; /* Align counter and label horizontally */
    gap: 0.5rem; /* Consistent gap */
}
.counter-number {
    display: inline-flex;
    align-items: baseline;
}
.suffix {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.label {
    display: flex;
    flex-direction: column; /* Stack label parts vertically */
    font-size: 0.875rem;
    line-height: 1.25rem;
    white-space: nowrap; /* Prevent label parts from wrapping */
}
.label-part {
    display: block; /* Each label part on a new line */
}
.label-part:last-child {
    border-bottom: 1px solid #4e88c6;
}

/*client section*/
 .carousel-container {
     position: relative;
     overflow: hidden;
 }
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}
.carousel-card {
    min-width: 100%;
}
.carousel-nav button.active {
    border-bottom: 2px solid;
}
.hover-arrow {
    transition: transform 0.2s ease;
}
.hover-arrow:hover {
    transform: translateX(4px);
}

/*Team section*/
 .owl-nav {
     position: relative;
     margin-top: -40px;
     display: flex;
     justify-content: space-between;
 }
.owl-nav button {
    width: 30px;
    height: 30px;
    font-size: 20px;
    color: #4b5563;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}
.owl-nav button:hover {
    color: #1f2937;
}
.owl-dot span {
    width: 8px;
    height: 8px;
    background: #d1d5db;
    border-radius: 50%;
    display: inline-block;
}
.owl-dot.active span {
    background: #1f2937;
    width: 12px;
    height: 12px;
}
/*-90%*/
@media (min-width: 1500px ) and (max-width:1650px ) {
    .px-in-xxl{
        padding-left: 175px!important;
        padding-right: 175px!important;
    }
}
/*-80%*/
@media (min-width: 1651px ) and (max-width:1800px ) {
    .px-in-xxl{
        padding-left: 275px!important;
        padding-right: 275px!important;
    }
}
/*-75%*/
@media (min-width: 1801px ) and (max-width:2000px ) {
    .px-in-xxl{
        padding-left: 330px!important;
        padding-right: 330px!important;
    }
}
/*-67%*/
@media (min-width: 2001px ) and (max-width:2160px ) {
    .px-in-xxl{
        padding-left: 445px!important;
        padding-right: 445px!important;
    }
}
/*-50%*/
@media (min-width: 2161px ) and (max-width:3160px ) {
    .px-in-xxl{
        padding-left: 810px!important;
        padding-right: 810px!important;
    }
}


/*Auto Writing and Removing the text*/
.auto-type{
    -webkit-text-stroke: 1px white;
    color: transparent;
}
@media (min-width: 1500px ) and (max-width:1550px ) {
    .Auto-Writing-pl{
        padding-left: 140px!important;
        padding-right: 140px!important;
    }
}
/*-90%*/
@media (min-width: 1551px ) and (max-width:1600px ) {
    .Auto-Writing-pl{
        padding-left: 150px!important;
        padding-right: 150px!important;
    }
}
/*-80%*/
@media (min-width: 1601px ) and (max-width:1800px ) {
    .Auto-Writing-pl{
        padding-left: 250px!important;
        padding-right: 250px!important;
    }
}
/*-70%*/
@media (min-width: 1801px ) and (max-width:2000px ) {
    .Auto-Writing-pl{
        padding-left: 300px!important;
        padding-right: 300px!important;
    }
}
/*-67%*/
@media (min-width: 2001px ) and (max-width:2160px ) {
    .Auto-Writing-pl{
        padding-left: 420px!important;
        padding-right: 420px!important;
    }
}
/*-50%*/
@media (min-width: 2161px ) and (max-width:3160px ) {
    .Auto-Writing-pl{
        padding-left: 790px!important;
        padding-right: 790px!important;
    }
}

/*Footer*/
.footer-right:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://frontend.stepupits.com/src/assets/images/Main-landing/Footer/pattern-2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: .4;
    z-index: -1;
    border-radius: 0;
}

.footer-left {
    position: relative;
    z-index: 2;
    border-top-right-radius: 12px;
    background-image: linear-gradient(-145deg, #000 10%, #121212 100%);

}

.footer-left::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url("./picture/footer img.png");
    content: "";
    z-index: 1;
    opacity: .2;
    border-top-right-radius: 6px;
}

.footer-right {
    position: relative;
    z-index: 2;
    border-top-right-radius: 12px;
    background-image: linear-gradient(-145deg, #000 10%, #000000 100%);
    opacity: 99;
    height: 440px;
}

.footer-right::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url("./picture/footer img 2.jpeg");
    content: "";
    z-index: 1;
    opacity: .2;
    border-top-right-radius: 6px;
}

/*-80%*/
@media (min-width: 1601px ) and (max-width:1800px ) {
    .footer-left-ml{
        padding-left: 130px!important;
    }
}
/*-70%*/
@media (min-width: 1801px ) and (max-width:2000px ) {
    .footer-left-ml{
        padding-left: 180px!important;
    }
}
/*-67%*/
@media (min-width: 2001px ) and (max-width:2160px ) {
    .footer-left-ml{
        padding-left: 300px!important;
    }
    .footer-right-mr{
        margin-left: -50px!important;
    }
}
/*-50%*/
@media (min-width: 2161px ) and (max-width:3160px ) {
    .footer-left-ml{
        padding-left: 700px!important;
    }
    .footer-right-mr{
        margin-left: -250px!important;
    }
}
