/* Hero Start */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}


.hero-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container .hero-items {
    width: 50%;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    max-width: 17ch;
    font-size: clamp(1.8rem, 3.5vw, 3.3rem);
    font-weight: 800;
    color: var(---text-color-secondary);
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    z-index: 2;
}

.hero-title .highlight {
    color: var(--active-teal);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 600px;
    z-index: 2;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons a {
    border-radius: 25px;
    padding: 15px 25px;
    border: 2px solid var(--active-teal);
    position: relative;
    overflow: hidden;
    z-index: 2;
    opacity: 0;
    transition: all 0.5s;
}

.hero-buttons a:nth-child(1) {
    background-color: var(--active-teal);
    color: var(--bg-dark);
}

.hero-buttons a:hover:nth-child(1) {
    cursor: pointer;
    box-shadow: 0px 1px 20px var(--active-teal);
    translate: 0px -5px;
}


.hero-buttons a:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: var(--active-teal);
    transition: width 0.5s;
    overflow: hidden;
    z-index: -1;
}

.hero-buttons a:nth-child(2):hover::before {
    width: 102%;
}

.hero-buttons a:hover:nth-child(2) {
    color: var(--bg-dark);
}

.hero-image {
    position: relative;
    width: 50%;
    height: 500px;
    padding: 0 20px 0px 50px;
    margin: 0 auto;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    z-index: 2;
    rotate: -1deg;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(100, 255, 218, 0.1);
    border: 2px solid var(--active-teal);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--active-teal);
    box-shadow: 0px 0px 5px 2px transparent;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    transition: box-shadow 0.3s ease;
}

.floating-icon:hover {
    box-shadow: 0px 0px 5px 2px var(--active-teal);
}

.icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.icon-2 {
    top: 10%;
    right: 5%;
    transition-delay: 0s;
    animation-delay: 0.5s;
}

.icon-3 {
    bottom: 10%;
    left: 5%;
    transition-delay: 0s;
    animation-delay: 1s;
}

.icon-4 {
    bottom: 10%;
    right: 5%;
    transition-delay: 0s;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Hero End */

/* Slider */
.splide {
    width: 100%;
    max-width: 1000px;
    margin: 0px auto 50px auto;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.splide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(1, 12, 26, 0.9) 0%, rgba(0, 0, 0, 0) 50%, rgba(1, 12, 26, 0.9) 100%);
    pointer-events: none;
    z-index: 1;
}

.splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
}


.slide-content {
    background: var(--active-teal);
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-radius: 15px;
    text-align: center;
    color: white;
    margin: 0 15px;
    box-shadow: 0 4px 24px rgba(0, 210, 211, 0.12);
    transform: scale(0.85);
    opacity: 0.4;
    transition: transform 0.3s, opacity 0.3s;
    max-width: 400px;
    width: 100%;
}

.splide__slide.is-active .slide-content {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 8px 32px rgba(53, 162, 199, 0.16);
}

.slide-content i {
    font-size: 5rem;
    color: var(--bg-dark);
    transition: color 0.3s;
}

.slide-content h2 {
    color: var(--bg-dark);
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: 1px;
}

.slide-content p {
    color: var(--navy);
    font-size: 18px;
    margin: 0;
    margin-bottom: 5px;
}

/* Slider End */

/* Counter Section */
.stats-section {
    width: 100%;
    background: var(--navy);
    margin: 80px auto 0px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 20px 0;
}

.stat-card {
    width: 100%;
    max-width: 300px;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--active-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--active-teal);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Clients Satisfaction Start */
.testimonials-section {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--light-slate);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title span {
    color: var(--active-teal);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    padding: 20px 60px;
}

.slick-list {
    padding: 20px 0 !important;
}

.slick-track {
    display: flex;
    gap: 30px;
}

.testimonial-slide {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 35px 25px;
    background: var(--navy);
    border-radius: 15px;
    border: 1px solid rgba(0, 210, 211, 0.1);
    transition: var(--transition);
    height: auto;
    margin: 0 15px;
}

.testimonial-slide:hover {
    border-color: var(--active-teal);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 210, 211, 0.4);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--active-teal);
    margin-bottom: 15px;
    opacity: 0.3;
}

.client-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--active-teal);
    margin-bottom: 20px;
}

.testimonial-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color-secondary);
    margin-bottom: 25px;
    font-style: italic;
    flex: 1;
}

.client-info {
    margin-top: auto;
}

.client-name {
    font-size: 1.2rem;
    color: var(--light-slate);
    font-weight: 600;
    margin-bottom: 5px;
}

.client-position {
    font-size: 0.95rem;
    color: var(--active-teal);
    margin-bottom: 3px;
}

.client-company {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.rating {
    margin-top: 10px;
}

.rating i {
    color: var(--active-teal);
    font-size: 1rem;
    margin: 0 2px;
}

.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 2px solid var(--active-teal);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 0 0 rgba(0, 229, 255, 0);
}

.slick-prev::before,
.slick-next::before {
    color: var(--active-teal);
    font-size: 24px;
    line-height: 1;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.slick-prev::after,
.slick-next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--active-teal);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 1;
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--active-teal);
    border-color: var(--active-teal);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.6),
        0 0 40px rgba(0, 229, 255, 0.4);
}

.slick-prev:hover::after,
.slick-next:hover::after {
    width: 100%;
    height: 100%;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: var(--bg-dark);
    transform: scale(1.2) rotate(360deg);
}

.slick-prev:active,
.slick-next:active {
    transform: scale(0.99);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.8);
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

@keyframes pulses {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0, 229, 255, 0);
    }
}

.slick-prev,
.slick-next {
    animation: pulses 2s infinite;
}

.slick-prev:hover,
.slick-next:hover {
    animation: none;
}

.slick-dots {
    position: relative;
    bottom: auto;
    margin-top: 40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.slick-dots li {
    margin: 0;
    width: 12px;
    height: 12px;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
}

.slick-dots li button:before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--slate-dark);
    border-radius: 50%;
    opacity: 1;
    transition: var(--transition);
}

.slick-dots li button:hover:before {
    background: var(--secondary-blue);
    transform: scale(1.2);
}

.slick-dots li.slick-active {
    width: 30px;
}

.slick-dots li.slick-active button:before {
    width: 30px;
    background: var(--active-teal);
    border-radius: 10px;
}

/* Clients Satisfaction End */

/* About Image */
.careers-section {
    position: relative;
    min-height: 200vh;
}

.careers-inner {
    position: relative;
    min-height: 200vh;
}

.about-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-wrapper img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.content-about {
    width: 45%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 3rem;
    position: absolute;
    bottom: 0;
    right: 0;
    visibility: hidden;
    z-index: 2;
}

.eyebrow-row-about {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.subtitle-about {
    color: var(--active-teal);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.pill-label-about {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 25px;
    border: 1px solid rgba(34, 211, 238, 0.25);
    background: rgba(34, 211, 238, 0.08);
    color: var(--active-teal);
}

.title-about {
    font-size: 34px;
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 12px;
}

.title-about span {
    color: var(--active-teal);
}

.tagline-about {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 24px;
}

.highlights-about {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    margin-bottom: 26px;
}

.highlight-item-about {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.highlight-dot-about {
    width: 8px;
    height: 8px;
    border-radius: 25px;
    margin-top: 4px;
    background: linear-gradient(90deg, rgba(0, 210, 211, 1) 50%, rgba(0, 210, 211, 1) 100%);
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.28);
}

.meta-row-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
    gap: 16px;
}

.meta-group-about {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.meta-pill-about {
    font-size: 12px;
    color: var(--active-teal);
    padding: 7px 14px;
    border-radius: 25px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.8);
}

.meta-highlight-about {
    font-size: 13px;
    color: var(--active-teal);
}

.actions-about {
    display: flex;
    align-items: center;
    gap: 14px;
}

.join-btn-about {
    background: linear-gradient(90deg, rgba(0, 210, 211, 1) 50%, rgba(0, 210, 211, 1) 100%);
    color: #0b1120;
    padding: 14px 30px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 16px 40px rgba(8, 47, 73, 0.7);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.join-btn-about span {
    font-size: 17px;
    transform-origin: center;
}

.join-btn-about:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 55px rgba(8, 47, 73, 0.9);
    background: linear-gradient(90deg, rgba(0, 210, 211, 0.8) 50%, rgba(0, 210, 211, 0.8) 100%);
}

.secondary-link-about {
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
}

.secondary-link-about span {
    font-size: 15px;
}

/* Service Start */
#services {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service {
    max-width: 1440px;
    margin: 4rem 0rem;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.service .service-title {
    color: var(--active-teal);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 20px;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.service .service-title::before {
    content: "";
    position: absolute;
    left: 0%;
    bottom: -8px;
    width: 0px;
    height: 2px;
    background-color: var(--active-teal);
    transition: width 1s ease 0.5s;
}

.service .service-subtitle {
    margin-bottom: 60px;
    color: var(--text-color);
    font-size: 15px;
    position: relative;
    z-index: 2;
    opacity: 0;
}

.service .container {
    max-width: 1440px;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.container .service-project {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.services-section {
    padding: 100px 0px;
}

.service-card {
    max-width: 550px;
    background: rgb(28, 39, 54, 0.5);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05), rgba(53, 162, 199, 0.05));
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover {
    translate: 0px -10px;
    border-color: var(--active-teal);
    box-shadow: 0 20px 60px rgba(100, 255, 218, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--active-teal);
    transition: all 0.3s ease;
}


.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.2), rgba(53, 162, 199, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--active-teal);
    transition: rotate 0.3s ease;
}

.service-card .service-card-title {
    color: var(--active-teal);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon i {
    rotate: 15deg;
}

.service-title {
    font-size: 1.8rem;
    color: var(--light-slate);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-color);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    color: var(--light-slate);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--active-teal);
    font-size: 0.8rem;
}

.service-link {
    color: var(--active-teal);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    gap: 15px;
}

/* Service Section End */

/* Portfolio Section Start*/
.portfolio {
    max-width: 1440px;
    margin: 4rem auto;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.portfolio .portfolio-title {
    color: var(--active-teal);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 30px;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.portfolio .portfolio-title::before {
    content: "";
    position: absolute;
    left: 0%;
    bottom: -8px;
    width: 0px;
    height: 2px;
    background-color: var(--active-teal);
    transition: width 1s ease 0.5s;
}

.portfolio .portfolio-subtitle {
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 15px;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    font-size: 13px;
    background: var(--navy);
    border: 1px solid var(--bg-dark);
    color: var(--light-slate);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    z-index: 2;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--active-teal);
    color: var(--bg-dark);
    border-color: var(--active-teal);
    box-shadow: 0 0 20px var(--navy);
}

.portfolio-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.portfolio-grid .portfolio-item {
    max-width: 300px;
    background: var(--navy);
    border: 1px solid var(--bg-dark);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    opacity: 0;
    z-index: 2;
}

.portfolio-grid .portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 30%;
    height: 100%;
    z-index: 2;
    transform: skew(-35deg);
    background: linear-gradient(90deg, transparent, #00D2D3, transparent);
    pointer-events: none;
}

.portfolio-grid .portfolio-item:hover::before {
    animation: shining 1s ease 1 forwards;
}

.portfolio-item:hover {
    translate: 0px -8px;
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
    border-color: var(--active-teal);
}

.portfolio-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-primary);
}

.portfolio-content {
    padding: 10px 15px;
}

.portfolio-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 212, 255, 0.2);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.portfolio-item h3 {
    font-size: clamp(1rem, 1.2vw + 0.8rem, 1.2rem);
    margin-bottom: 0.5rem;
    color: var(--active-teal);
}

.portfolio-item p {
    color: var(--text-color);
    font-size: 0.95rem;
}

@keyframes shining {
    to {
        left: 170%;
    }
}

/* Portfolio Section End */