* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-heading:
        "Clash Display", sans-serif;
    --font-body:
        "Inter",
        sans-serif;
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
}


body.menu-open main,
body.menu-open section,
body.menu-open footer {
    filter: blur(8px);
    pointer-events: none;
    transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html.lenis {
    height: auto;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

/*Header*/

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0px;
    background: transparent;
    transition:
        padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: padding, background-color, transform;
}

.navbar.scrolled {
    background: #ffffff !important;
    padding: 12px 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-hidden {
    transform: translateY(-100%) !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    transition:
        transform 0.45s ease,
        opacity 0.3s ease;
    will-change: transform;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: .3s ease;
}

.logo-dark {
    position: absolute;
    inset: 0;
    opacity: 0;
    height: 35px;
}

.navbar.scrolled .logo-light {
    opacity: 0;
}

.navbar.scrolled .logo-dark {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.menu {
    display: flex;
    gap: 40px;
    padding-right: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #cedfd0;
    height: 20px;
    overflow: hidden;
    display: inline-block;
    transition: transform 0.4s ease;
}

.link-wrap {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}

.link-text {
    height: 20px;
    line-height: 20px;
    font-size: 16px;
    font-weight: 500;
}

.nav-links a:hover .link-wrap {
    transform: translateY(-20px);
}

.nav-links a:hover {
    color: #fff;
}

.navbar.scrolled .nav-links a {
    color: #0a1015;
}

.navbar.scrolled .nav-links a:hover {
    color: #000;
}

.nav-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    padding: 11px 18px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    width: max-content;
    transition:
        color .4s ease,
        border-color .4s ease;
}

.nav-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition:
        transform .6s cubic-bezier(.77, 0, .175, 1);
    z-index: -1;
}

.nav-btn:hover {
    color: #0a1015;
}

.nav-btn:hover::before {
    transform: scaleX(1);
}

.navbar.scrolled .nav-btn {
    background: #0a1015;
    color: #fff;
    border-color: #0a1015;
}

.navbar.scrolled .nav-btn::before {
    background: #38bdf8;
}

.navbar.scrolled .nav-btn:hover {
    color: #0a1015;
    border-color: #38bdf8;
}

/*Home Page*/

.hero-section {
    position: relative;
    min-height: -webkit-fill-available;
    background: #0a1015;
    overflow: hidden;
}

.hero-container {
    position: relative;
    height: auto;
    border-radius: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 70px;
    padding-top: 170px;
    padding-bottom: 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    mask: linear-gradient(#000 44.3166%, #0000 100%);
}

.hero-bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: -10%;
    left: 0;
    will-change: transform;
    transform: translateY(0px) scale(1.12);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #efeded;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 75px;
    line-height: 1.18;
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: -2.5px;
    margin-bottom: 25px;
    font-weight: 500;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 0 15px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 50%, #8a99ad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
}

.gsap-word {
    display: inline-block;
    white-space: pre;
    will-change: transform, opacity;
}

.hero-subtitle,
p.gsap-fade-item,
.hero-btns.gsap-fade-item {
    will-change: transform, opacity;
    display: block;
}

.hero-btns.gsap-fade-item {
    display: flex !important;
    gap: 15px;
}

.hero-content p {
    max-width: 800px;
    margin: auto;
    color: #cedfd0;
    font-size: 16px;
    line-height: 1.5;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 45px;
}

.primary-btn,
.secondary-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 12px 18px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    transition:
        color .4s ease,
        border-color .4s ease;
}

.primary-btn::before,
.secondary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition:
        transform .6s cubic-bezier(.77, 0, .175, 1);

    z-index: -1;
}

.primary-btn {
    background: #fff;
    color: #0a1015;
}

.primary-btn::before {
    background: #38bdf8;
}

.primary-btn:hover {
    color: #0a1015;
}

.primary-btn:hover::before {
    transform: scaleX(1);
}

.secondary-btn {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
}

.secondary-btn::before {
    background: #fff;
}

.secondary-btn:hover {
    color: #0a1015;
}

.secondary-btn:hover::before {
    transform: scaleX(1);
}

.section-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    border: 1px solid #0a1015;
    color: #fff;
    background: #0a1015;
    backdrop-filter: blur(4px);
    padding: 11px 18px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    width: max-content;
    transition:
        color .4s ease,
        border-color .4s ease
}

.section-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #38bdf8;
    transform: scaleX(0);
    transform-origin: left;
    transition:
        transform .6s cubic-bezier(.77, 0, .175, 1);
    z-index: -1;
}

.section-btn:hover {
    color: #0a1015;
    border-color: #38bdf8;
}

.section-btn:hover::before {
    transform: scaleX(1);
}

.hero-slider {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 90px;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.slide-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.slide-item i {
    font-size: 20px;
}

@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

.about-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.about-header .about-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f7fb;
    color: #0a1015;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.about-header h2 {
    font-size: 3.2rem;
    font-weight: 600;
    font-style: var(--font-heading);
    color: #0a1015;
    line-height: 1.2;
    max-width: 950px;
    margin: 0 auto 80px;
    letter-spacing: -1px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.2fr;
    gap: 60px;
}

.about-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.small-img img {
    height: 270px;
}

.big-img img {
    height: 420px;
}

.about-text {
    text-align: left;
}

.about-text h3 {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-text h3 span {
    font-size: 4.5rem;
    font-weight: 800;
    margin-right: 10px;
}

.about-text .line {
    width: 100%;
    height: 1px;
    background: rgba(35, 35, 35, 0.16);
    margin: 20px 0;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-bottom {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}


.about-bottom .reviews {
    display: flex;
    gap: 5px;
}

.about-bottom .avatars {
    display: flex;
}

.about-bottom .avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left: -10px;
    border: 2px solid #fff;
}

.about-bottom .stars {
    font-size: 16px;
    color: #f5a623;
}

.about-bottom .stars p {
    font-size: 14px;
    color: #555;
}

.services-section {
    position: relative;
    background: #0a1015;
    padding: 100px 0;
    overflow: visible;
}

.services-heading {
    text-align: center;
    margin-bottom: 80px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.services-heading h2 {
    max-width: 950px;
    margin: 0 auto 80px;
    color: #fff;
    font-size: 3.2rem;
    font-weight: 600;
    font-style: var(--font-heading);
    line-height: 1.2;
    letter-spacing: -1px;
}

.services-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card {
    position: sticky;
    display: grid;
    grid-template-columns: 0.4fr 1.2fr 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 400px;
    background: rgba(16, 24, 32, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    padding: 50px;
    border-radius: 28px;
    margin-bottom: 40px;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    border-color: rgba(56, 189, 248, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.service-card:nth-child(1) {
    top: 120px;
}

.service-card:nth-child(2) {
    top: 150px;
}

.service-card:nth-child(3) {
    top: 180px;
}

.service-card:nth-child(4) {
    top: 210px;
}

.service-card:nth-child(5) {
    top: 240px;
}

.service-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a99ad;
    font-size: 14px;
    font-weight: 500;
}

.service-title {
    color: #fff;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -1px;
    font-family: var(--font-heading);
    font-weight: 500;
}

.service-content {
    color: #a0aec0;
    font-size: 16px;
    line-height: 1.65;
}

.service-image {
    width: 100%;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    background: #1a232d;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.services-stack {
    position: relative;
}

.service-card:nth-child(1) {
    top: 120px;
}

.service-card:nth-child(2) {
    top: 140px;
}

.service-card:nth-child(3) {
    top: 160px;
}

.service-card:nth-child(4) {
    top: 180px;
}

.service-card:nth-child(5) {
    top: 200px;
}

.portfolio-section {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.portfolio-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.portfolio-left {
    width: 42%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.portfolio-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f7fb;
    color: #0a1015;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.portfolio-left h2 {
    font-size: 3.2rem;
    font-weight: 600;
    font-style: var(--font-heading);
    color: #0a1015;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.portfolio-left p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 30px;
}

.portfolio-right {
    width: 58%;
}

.portfolio-slider-wrapper {
    position: relative !important;
    border-radius: 28px;
    overflow: hidden;
    padding: 70px 0 0 40px !important;
    animation: light-background-change 240s infinite linear;
    animation-delay: -12.5s;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
}

@keyframes light-background-change {

    0%,
    1.875%,
    35%,
    36.875% {
        background-color: #f3effa;
    }

    4.375%,
    6.25%,
    39.375%,
    41.25% {
        background-color: #f0eefc;
    }

    8.75%,
    10.625%,
    43.75%,
    45.625% {
        background-color: #fff4ee;
    }

    13.125%,
    15%,
    48.125%,
    50% {
        background-color: #f4f0ff;
    }

    17.5%,
    19.375%,
    52.5%,
    54.375% {
        background-color: #f2f7ed;
    }

    21.875%,
    23.75%,
    56.875%,
    58.75% {
        background-color: #f0f9fa;
    }

    26.25%,
    28.125%,
    61.25%,
    63.125% {
        background-color: #faf3ff;
    }

    30.625%,
    32.5%,
    65.625%,
    67.5%,
    100% {
        background-color: #e6f7ff;
    }
}

.portfolioSwiper {
    overflow: visible !important;
    width: 100%;
}

.portfolioSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.portfolioSwiper .swiper-slide {
    width: 360px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolioSwiper .swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top left;
    display: block;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.portfolioSwiper .swiper-slide:hover {
    transform: translateY(-12px);
}

.process-section {
    position: relative;
    padding: 100px 0;
    background: #0a1015;
}

.process-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.process-left {
    position: relative;
    height: 100%;
}

.process-left-inner {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
}

.process-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.process-left h2 {
    font-size: 3.2rem;
    font-weight: 600;
    font-style: var(--font-heading);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.process-left p {
    color: #cedfd0;
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 30px;
}

.process-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 35px 30px;
    min-height: auto;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 80px;
    bottom: -42px;
    width: 2px;
    height: 42px;
    background: linear-gradient(to bottom, #38bdf8 0%, rgba(56, 189, 248, 0.4) 70%, transparent 100%);
    z-index: 1;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.process-step h3 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.process-step p {
    color: #a0aec0;
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
}

.testimonial-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.testimonial-heading {
    margin-bottom: 80px;
}

.testimonial-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f7fb;
    color: #0a1015;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.testimonial-heading h2 {
    font-size: 3.2rem;
    font-weight: 600;
    font-style: var(--font-heading);
    color: #0a1015;
    line-height: 1.2;
    max-width: 950px;
    margin: 0 auto 80px;
    letter-spacing: -1px;
}

.testimonialSwiper {
    padding: 0 !important;
}

.testimonialSwiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    background: #f8fafc;
    border: 1px solid rgba(10, 16, 21, 0.06);
    padding: 40px;
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    box-shadow: 0 4px 20px rgba(10, 16, 21, 0.01);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 118, 255, 0.25);
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(10, 16, 21, 0.05),
        0 0 0 1px rgba(0, 118, 255, 0.05);
}

.quote-icon {
    width: 46px;
    height: 46px;
    background: #0a1015;
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 35px;
    transition: background 0.4s ease;
}

.testimonial-card:hover .quote-icon {
    background: #0076ff;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 400;
    color: #2c3539;
    text-transform: none !important;
    margin: 0 0 30px 0;
}

.testimonial-card:hover .testimonial-text {
    color: #000000;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(10, 16, 21, 0.08);
    padding-top: 25px;
}

.testimonial-user img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(0%);
    border: 2px solid rgba(10, 16, 21, 0.08);
    transition: border-color 0.4s ease;
}

.testimonial-card:hover .testimonial-user img {
    border-color: #0076ff;
}

.user-meta h4 {
    margin: 0 0 2px 0;
    font-size: 17px;
    font-weight: 600;
    color: #0a1015;
    letter-spacing: -0.2px;
}

.user-meta span {
    color: #6c757d;
    font-size: 13px;
    display: block;
}

.testimonial-pagination {
    position: relative !important;
    margin-top: 40px !important;
    text-align: center;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(10, 16, 21, 0.2);
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 100px;
    background: #0a1015;
}

.footer-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 50px;
    background: #030a14;
    color: #ffffff;
}

.footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(5, 82, 235, 0.22) 0%, transparent 55%),
        radial-gradient(circle at 10% 40%, rgba(0, 118, 255, 0.04) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.footer-section .section-container {
    position: relative;
    z-index: 2;
}

.footer-top {
    max-width: 800px;
    margin-bottom: 100px;
    text-align: left;
}

.footer-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}


.footer-top h2 {
    font-size: 55px;
    line-height: 1.05;
    font-family: var(--font-heading);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.footer-top p {
    max-width: 620px;
    color: #9cb3c0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.footer-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 60px 0;
    overflow: hidden;
}

.footer-nav-block {
    will-change: transform, opacity;
}

.footer-nav-block h5 {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.footer-links-column {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
}

.footer-links-column a {
    color: #9cb3c0;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.footer-links-column a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links-column a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-nav-block2 {
    text-align: right;
}

.footer-nav-block2 .footer-links-column {
    justify-content: flex-end;
}

.footer-nav-block2 .footer-links-column a::after {
    transform-origin: left;
}

.footer-nav-block2 .footer-links-column a:hover::after {
    transform-origin: right;
}

.footer-links-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    will-change: transform, opacity;
}

.footer-logo {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 20px;
}

.footer-logo h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    color: #ffffff;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social a:hover {
    background: #ffffff;
    color: #030a14;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/*About Page*/
.about-hero {
    position: relative;
    background: #0a1015;
    padding: 190px 0 120px;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%,
            rgba(56, 189, 248, .12),
            transparent 40%);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 750px;
}

.about-hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.about-hero-content h1 {
    font-size: 60px;
    line-height: 1.05;
    font-family: var(--font-heading);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.about-hero-content p {
    max-width: 600px;
    color: #9cb3c0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.flex-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px;
}

.about-hero-image-wrap {
    position: relative;
}

.about-hero-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: right center;
    border-radius: 20px;
}

.floating-card {
    position: absolute;
    right: -40px;
    bottom: 15px;
    max-width: 280px;
    padding: 20px;
    border-radius: 20px;
    background:
        rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    border:
        1px solid rgba(255, 255, 255, .08);
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1d4ed8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.floating-icon i {
    font-size: 16px;
}

.floating-card h4 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.floating-card p {
    color: #fff;
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.story-section {
    padding: 100px 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.story-left {
    position: sticky;
    top: 100px;
}

.story-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f7fb;
    color: #0a1015;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.story-left h2 {
    font-size: 3.2rem;
    font-weight: 600;
    font-style: var(--font-heading);
    color: #0a1015;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.story-image {
    margin-bottom: 40px;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 0;
}

.mission-section {
    padding: 100px 0;
    background: #08111c;
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.section-heading h2 {
    max-width: 950px;
    margin: 0 auto 80px;
    color: #fff;
    font-size: 3.2rem;
    font-weight: 600;
    font-style: var(--font-heading);
    line-height: 1.2;
    letter-spacing: -1px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: stretch;
}

.mission-grid::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 200px;
    bottom: 50px;
    width: 1px;
    background:
        linear-gradient(transparent,
            rgba(59, 130, 246, .15),
            transparent);
}

.mission-card {
    height: 100%;
    padding: 40px;
    border-radius: 25px;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .04),
            rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    transition: .4s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    border-color:
        rgba(59, 130, 246, .25);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, .25);
}

.mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .08),
            rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 8px 18px rgba(0, 0, 0, .12);
    margin-bottom: 20px;
    transition: .4s ease;
}

.mission-icon i {
    color: #fff;
    font-size: 20px;
}

.mission-card:hover .mission-icon {
    transform: translateY(-3px);
}

.mission-highlight {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 20px;
}

.mission-card h3 {
    color: #fff;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -1px;
    font-family: var(--font-heading);
    font-weight: 500;
}

.card-line {
    width: 70px;
    height: 2px;
    background: #2d7ff9;
    margin-bottom: 35px;
}

.mission-card p {
    color: #a0aec0;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.why-partner-section {
    padding: 100px 0;
    background: #fff;
}

.why-partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.why-partner-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    position: relative;
    border: 1px solid #edf1f7;
}

.why-partner-image::before {
    content: "";
    position: absolute;
    inset: -15px;
    border-radius: 40px;
    background:
        linear-gradient(135deg,
            rgba(37, 99, 235, .08),
            transparent 60%);
    z-index: -1;
}

.why-partner-content .section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f7fb;
    color: #0a1015;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.why-partner-content h2 {
    font-size: 3.2rem;
    font-weight: 600;
    font-style: var(--font-heading);
    color: #0a1015;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.why-partner-content>p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 30px;
}

.partner-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.partner-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 22px;
    border-bottom: 1px solid #eceff4;
}

.partner-item:last-child {
    border-bottom: none;
}

.partner-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f4f7fb;
    color: #2563eb;
}

.partner-icon i {
    font-size: 22px;
}

.partner-item h4 {
    color: #08111c;
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 500;
}

.partner-item p {
    margin: 0;
    font-size: 16px;
    color: #667085;
    line-height: 1.6;
}



.team-section {
    position: relative;
    background: #0a1015;
    padding: 100px 0;
    overflow: hidden;
}

.team-heading {
    max-width: 950px;
    margin: 0 auto 80px;
    text-align: center;
}

.team-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.team-heading h2 {
    max-width: 950px;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 3.2rem;
    font-weight: 600;
    font-style: var(--font-heading);
    line-height: 1.2;
    letter-spacing: -1px;
}

.team-heading h2 span {
    color: #38bdf8;
}

.team-heading p {
    max-width: 720px;
    margin: auto;
    color: #9cb3c0;
    font-size: 16px;
    line-height: 1.6;
}

.team-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 55px;
}

.team-divider::before,
.team-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background:
        rgba(56, 189, 248, .18);
}

.team-divider span {
    color: #38bdf8;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 90px;
}

.board-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            #111923,
            #0d141d);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    transition:
        .45s cubic-bezier(.22, .61, .36, 1);
}

.board-card:hover {
    transform:
        translateY(-10px);
    border-color:
        rgba(56, 189, 248, .35);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, .45);
}

.board-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.board-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition:
        transform .8s ease;
}

.board-card:hover .board-image img {
    transform: scale(1.08);
}

.board-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(10, 16, 21, .55),
            transparent 55%);
}

.board-content {
    position: relative;
    padding: 35px 28px 30px;
    text-align: center;
}

.board-content h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 18px;
}

.board-line {
    width: 40px;
    height: 3px;
    background: #38bdf8;
    border-radius: 20px;
    margin: 0 auto 22px;
}

.board-content h5 {
    color: #c7d0db;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.board-mail {
    width: 35px;
    height: 35px;
    position: absolute;
    right: 20px;
    top: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, .35);
    background:
        rgba(56, 189, 248, .05);
    transition:
        .45s cubic-bezier(.22, .61, .36, 1);
}

.board-mail i {
    font-size: 16px;
    transition: .4s;
}

.board-card:hover .board-mail {
    background: #38bdf8;
    color: #ffffff;
    transform:
        translateY(-4px) rotate(-8deg);
    box-shadow:
        0 18px 35px rgba(56, 189, 248, .35);
}

.board-card:hover .board-mail i {
    transform: scale(1.15);
}

.core-team {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.core-member {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 30px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    background:
        rgba(255, 255, 255, .02);
    transition:
        .45s cubic-bezier(.22, .61, .36, 1);
}

.core-member:hover {
    border-color:
        rgba(56, 189, 248, .28);
    transform:
        translateX(8px);
    background:
        rgba(56, 189, 248, .04);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .28);
}

.core-left {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
}

.core-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(56, 189, 248, .25);
    background:
        rgba(56, 189, 248, .05);
    color: #38bdf8;
    flex-shrink: 0;
    transition: .45s;
}

.core-icon i {
    font-size: 20px;
}

.core-member:hover .core-icon {
    background: #38bdf8;
    color: #fff;
    transform: rotate(8deg);
}

.core-info {
    flex: 1;
}

.core-info h4 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0;
}

.core-info .divider {
    color:
        rgba(255, 255, 255, .25);
    font-size: 22px;
}

.core-designation {
    color: #9ca3af;
    font-size: 17px;
    font-weight: 500;
    text-align: right;
    white-space: nowrap;
    transition: .4s ease;
}

.core-member:hover .core-designation {
    color: #ffffff;
}

.board-card,
.core-member,
.team-bottom {
    will-change:
        transform;
}


.board-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(56, 189, 248, .08),
            transparent 35%);
    opacity: 0;
    transition: .5s ease;
    pointer-events: none;
}

.board-card:hover::before {
    opacity: 1;
}

/*Service Page*/

.service-hero,
.portfolio-hero {
    position: relative;
    background: #0a1015;
    padding: 190px 0 120px;
    overflow: hidden;
}

.service-hero::before,
.portfolio-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%,
            rgba(56, 189, 248, .12),
            transparent 40%);
}

.service-hero-grid,
.portfolio-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-hero-content,
.portfolio-hero-content {
    max-width: 750px;
}

.service-hero-tag,
.portfolio-hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.service-hero-content h1,
.portfolio-hero-content h1 {
    font-size: 60px;
    line-height: 1.05;
    font-family: var(--font-heading);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.service-hero-content p,
.portfolio-hero-content p {
    max-width: 600px;
    color: #9cb3c0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.service-hero-image-wrap,
.portfolio-hero-image-wrap {
    position: relative;
}

.service-hero-image-wrap img,
.portfolio-hero-image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.portfolio-hero-image-wrap img {
    object-position: top;
}

.service-explorer {
    padding: 100px 0;
    background: #fff;
}

.service-explorer-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
}

.service-nav {
    position: sticky;
    top: 120px;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 30px;
}

.service-nav::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #e5e7eb;
}

.service-link {
    position: relative;
    color: #94a3b8;
    font-size: 16px;
    font-weight: 500;
    transition: .4s ease;
}

.service-link::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d1d5db;
    transition: .4s ease;
}

.service-link:hover {
    color: #111827;
}

.service-link.active {
    color: #111827;
    font-weight: 600;
}

.service-link.active::before {
    background: #0e6cff;
    box-shadow:
        0 0 0 6px rgba(14, 108, 255, .12),
        0 0 25px rgba(14, 108, 255, .5);
}

.service-detail-item {
    min-height: auto;
    padding: 50px;
    border-radius: 25px;
    background: #fff;
    border: 1px solid #eef2f7;
    box-shadow:
        0 20px 60px rgba(15, 23, 42, .05);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.service-detail-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
    margin-top: 40px;
    object-position: top;
    box-shadow:
        0 25px 70px rgba(15, 23, 42, .08);
}

.service-detail-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #0e6cff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    display: none;
}

.service-detail-item::before {
    content: attr(data-number);
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg,
            rgba(14, 108, 255, .18),
            rgba(14, 108, 255, .03));

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    z-index: 0;
}

.service-detail-item>* {
    position: relative;
    z-index: 1;
}

.service-detail-item h2 {
    font-size: 2.5rem;
    line-height: .95;
    margin-bottom: 20px;
    color: #0f172a;
}

.service-detail-item p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}

.service-features span {
    padding: 12px 18px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 15px;
}

.service-example {
    margin-top: 35px;
    padding: 25px;
    border-radius: 20px;
    background:
        linear-gradient(135deg,
            #f8fbff,
            #eef6ff);
    border: 1px solid rgba(14, 108, 255, .15);
}

.service-example ul {
    margin-top: 15px;
    padding-left: 18px;
}

.service-example li {
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.5;
    list-style: disc;
    font-size: 15px;
}

.service-example strong {
    display: block;
    margin-bottom: 10px;
    color: #0e6cff;
}

/*Portfolio Page*/

.portfoliopage-showcase {
    padding: 100px 0;
    background: #fff;
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 80px;
}

.portfolio-left {
    display: flex;
    flex-direction: column;
}

.portfoliopage-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f7fb;
    color: #0a1015;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.portfoliopage-left p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 30px;
}

.portfoliopage-heading {
    font-size: 3.2rem;
    font-weight: 600;
    font-style: var(--font-heading);
    color: #0a1015;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.portfoliopage-heading span {
    color: #2563eb;
}

.portfolio-left p {
    max-width: 500px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 60px;
}

.portfolio-list {
    border-top: 1px solid #ddd;
}

.portfolio-item {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr 80px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: .4s;
}

.portfolio-item.active {
    background: rgba(37, 99, 235, .03);
}

.portfolio-item.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 120px;
    height: 2px;
    background: #2563eb;
}

.number {
    font-size: 60px;
    line-height: 1;
    font-weight: 300;
    color: #a3a3a3;
}

.portfolio-item.active .number {
    color: #2563eb;
}

.portfolio-text h4 {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 500;
}

.portfolio-text span {
    color: #666;
    font-size: 16px;
}

.arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #dbe3ef;
    color: #262626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-50deg);
    transition: .4s ease;
}

.arrow i {
    transition: .4s ease;
    color: #262626;
}

.portfolio-item:hover .arrow i {
    transform: translate(3px, -3px);
}

.preview-card {
    background: #fff;
    border-radius: 32px;
    padding: 50px 40px;
    padding-top: 20px;
    overflow: hidden;
    position: sticky;
    top: 120px;
    box-shadow:
        0 20px 80px rgba(0, 0, 0, .08);
    transition: .5s ease;
}

.preview-card:hover {
    transform: translateY(-8px);
}

.preview-top {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.preview-top span {
    font-size: 16px;
    font-weight: 500;
}

.preview-image-wrap {
    overflow: hidden;
}

.preview-image-wrap img {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition:
        opacity .4s ease,
        transform .8s ease;
}

.preview-bottom {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    padding-top: 35px;
}

.preview-bottom small {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    letter-spacing: 2px;
    color: #666;
}

.preview-bottom p {
    margin: 0;
}

.preview-bottom a {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #000;
    font-weight: 600;
}

.project-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .35s ease;
}

.project-view-btn i {
    font-size: 13px;
    transition: .35s ease;
}

.project-view-btn:hover {
    color: #2563eb;
}

.project-view-btn:hover i {
    transform: translate(3px, -3px);
}

/*Contact Page*/
.contact-section {
    background: #0a1015;
    padding: 190px 0 120px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%,
            rgba(56, 189, 248, .12),
            transparent 35%);
    pointer-events: none;
}

.contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.contact-info h1 {
    font-size: 60px;
    line-height: 1.05;
    font-family: var(--font-heading);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.contact-info p {
    max-width: 600px;
    color: #9cb3c0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.response-time {
    color: #9ca3af;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    background:
        rgba(255, 255, 255, .03);
    border:
        1px solid rgba(255, 255, 255, .06);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    min-height: 130px;
    align-items: center;
    transition: .4s ease;
}

.contact-card:hover {
    border-color:
        rgba(59, 130, 246, .25);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, .25);
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background:
        rgba(56, 189, 248, .12);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 16px;
}

.contact-card span {
    display: block;
    color: #38bdf8;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-card a {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px;
    transition: .3s ease;
}

.contact-card a:hover {
    color: #38bdf8;
}

.contact-form-wrap {
    background: #fff;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .08);
    padding: 50px;
    position: sticky;
    top: 100px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 15px;
    transition: .3s ease;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #38bdf8;
    background: #fff;
}

.contact-btn {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: none;
    outline: none;
    height: 58px;
    border-radius: 12px;
    background: #0a1015;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition:
        color .4s ease,
        transform .3s ease;
    z-index: 1;
}

.contact-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #38bdf8;
    transform: scaleX(0);
    transform-origin: left;
    transition:
        transform .6s cubic-bezier(.77, 0, .175, 1);
    z-index: -1;
}

.contact-btn:hover {
    color: #0a1015;
}

.contact-btn:hover::before {
    transform: scaleX(1);
}

.contact-btn:active {
    transform: scale(.98);
}

.form-result {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
}

.success-msg {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
    font-size: 14px;
    font-weight: 500;
}

.error-msg {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    font-size: 14px;
    font-weight: 500;
}

.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.faq-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f7fb;
    color: #0a1015;
    height: 32px;
    padding: 0 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.faq-heading h2 {
    font-size: 3.2rem;
    font-weight: 600;
    font-style: var(--font-heading);
    color: #0a1015;
    line-height: 1.2;
    max-width: 950px;
    margin: 0 auto 20px;
    letter-spacing: -1px;
}

.faq-heading p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 0;
}

.faq-list {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    color: #0a1015;
    text-align: left;
}

.faq-question i {
    transition: .4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .4s ease;
}

.faq-answer p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
    padding-bottom: 25px;
    max-width: 700px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.section-container {
    padding-left: 80px;
    padding-right: 80px;
}

.menu-toggle,
.mobile-expand {
    display: none;
    cursor: pointer;
}

/*Error page*/

.error-page {

    background: #07111C;

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.error404 {

    width: 100%;

    position: relative;
}

.error404::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(circle,
            rgba(56, 189, 248, .18),
            transparent);

    top: -300px;
    right: -250px;

    filter: blur(40px);
}

.error-content {

    position: relative;

    z-index: 2;

    max-width: 760px;

    margin: auto;

    text-align: center;
}

.error-content span {

    color: #38bdf8;

    letter-spacing: 2px;

    font-size: 15px;

    font-weight: 600;
}

.error-content h1 {

    font-size: 180px;

    line-height: 1;

    color: #fff;

    font-family: 'Clash Display', sans-serif;

    margin: 20px 0;

    animation: float 4s ease-in-out infinite;
}

.error-content h2 {

    color: #fff;

    font-size: 48px;

    margin-bottom: 20px;
}

.error-content p {

    color: #9ca3af;

    max-width: 520px;

    margin: auto;

    line-height: 1.8;
}

.error-btns {

    margin-top: 45px;

    display: flex;

    justify-content: center;

    gap: 18px;
}

@keyframes float {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

    100% {

        transform: translateY(0);

    }

}


/*Responsive*/
@media(max-width:1250px) {
    .section-container {
        padding-left: 50px;
        padding-right: 50px;
    }


    [data-aos="fade-right"] {
        transform: translate3d(40px, 0, 0);
    }

    [data-aos="fade-left"] {
        transform: translate3d(-40px, 0, 0);
    }

    .about-header h2,
    .services-heading h2,
    .portfolio-left h2,
    .process-left h2,
    .testimonial-heading h2,
    .team-heading h2,
    .story-left h2,
    .section-heading h2,
    .why-partner-content h2,
    .portfoliopage-heading,
    .faq-heading h2 {
        font-size: 3rem;
    }

    .about-header h2,
    .services-heading h2,
    .testimonial-heading h2,
    .team-heading,
    .team-heading h2,
    .section-heading h2,
    .faq-heading h2 {
        max-width: 800px;
    }

    .hero-content h1 {
        font-size: 65px;
    }

    .about-text h3 span {
        font-size: 4rem;
    }

    .footer-top h2 {
        font-size: 65px;
    }

    .about-content,
    .portfolio-container,
    .process-layout {
        gap: 50px;
    }

    .service-card {
        padding: 30px;
        gap: 30px;
    }

    .process-step {
        padding: 30px;
    }

    .floating-card {
        right: 0;
    }
}

@media(max-width:1100px) {

    .about-header h2,
    .services-heading h2,
    .portfolio-left h2,
    .process-left h2,
    .testimonial-heading h2,
    .team-heading h2,
    .story-left h2,
    .section-heading h2,
    .why-partner-content h2,
    .portfoliopage-heading,
    .faq-heading h2 {
        font-size: 2.8rem;
    }

}

@media(max-width:1050px) {
    .section-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .about-header h2,
    .services-heading h2,
    .portfolio-left h2,
    .process-left h2,
    .testimonial-heading h2,
    .team-heading h2,
    .story-left h2,
    .section-heading h2,
    .why-partner-content h2,
    .portfoliopage-heading,
    .faq-heading h2 {
        font-size: 2.6rem;
    }

    .service-title {
        font-size: 30px;
    }

    .service-detail-item img {
        height: auto;
    }

    .about-hero-grid,
    .story-grid,
    .why-partner-grid,
    .contact-grid,
    .service-hero-grid,
    .portfolio-hero-grid,
    .service-explorer-grid,
    .portfoliopage-showcase {
        gap: 60px;
    }

    .hero-content h1 {
        font-size: 60px;
        line-height: 1.1;
    }

    .footer-top h2 {
        font-size: 60px;
        line-height: 1.1;
    }

    .about-hero-content h1,
    .service-hero-content h1,
    .portfolio-hero-content h1,
    .contact-info h1 {
        font-size: 55px;
        line-height: 1.1;
    }


    [data-aos="fade-right"] {
        transform: translate3d(30px, 0, 0);
    }

    [data-aos="fade-left"] {
        transform: translate3d(-30px, 0, 0);
    }
}

@media(max-width: 950px) {

    .menu-toggle {
        display: block;
        color: #fff;
        position: relative;
        z-index: 1001;
    }

    body.menu-open {
        position: fixed;
        width: 100%;
    }

    .navbar.scrolled .menu-toggle {
        color: #0a1015;
    }

    .menu-toggle i {
        font-size: 20px;
    }

    .mobile-expand {
        position: absolute;
        top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-height: 0;
        overflow: hidden;
        background: #0a1015;
        border-radius: 0px;
        width: 100%;
        transition:
            transform 0.45s ease,
            opacity 0.3s ease;
    }

    .mobile-expand a {
        display: block;
        text-decoration: none;
        color: #fff;
        font-weight: 400;
        text-transform: uppercase;
        font-size: 16px;
    }

    .mobile-expand .mobile-link {
        font-size: 16px;
    }

    .mobile-expand.active {
        min-height: 380px;
        padding: 20px 0;
        padding-top: 120px;
    }

    .close-btn {
        position: absolute;
        right: 25px;
        top: 20px;
        background: none;
        color: #fff;
        border: none;
        font-size: 24px;
    }

    .nav-btn,
    .nav-links {
        display: none;
    }

    .section-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-header h2,
    .services-heading h2,
    .portfolio-left h2,
    .process-left h2,
    .testimonial-heading h2,
    .team-heading h2,
    .story-left h2,
    .section-heading h2,
    .why-partner-content h2,
    .portfoliopage-heading,
    .faq-heading h2 {
        font-size: 2.4rem;
    }

    .about-content {
        grid-template-columns: repeat(1, 1fr);
    }

    .small-img img,
    .big-img img {
        height: auto;
    }

    .service-card {
        min-height: 350px;
    }

    .service-image {
        height: 200px;
    }

    .portfolio-container {
        flex-direction: column;
    }

    .portfolio-left,
    .portfolio-right {
        width: 100%;
    }

    .process-layout,
    .about-hero-grid,
    .story-grid,
    .why-partner-grid,
    .contact-grid,
    .service-hero-grid,
    .portfolio-hero-grid,
    .service-explorer-grid,
    .portfoliopage-showcase {
        grid-template-columns: repeat(1, 1fr);
    }

    .process-left-inner,
    .story-left {
        position: relative;
        top: unset;
    }

    .footer-links-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-nav-block2 {
        text-align: left;
    }

    .footer-nav-block2 .footer-links-column {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .board-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .board-image {
        height: 350px;
    }

    .story-image img {
        height: auto;
    }

    .portfoliopage-right,
    .service-nav {
        display: none;
    }

    .hero-content h1,
    .about-hero-content h1,
    .service-hero-content h1,
    .portfolio-hero-content h1,
    .contact-info h1 {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    .footer-top h2 {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    .process-step h3 {
        font-size: 2rem;
    }

    .service-detail-item h2 {
        font-size: 2.2rem;
        font-weight: 600;
    }


    [data-aos="fade-right"] {
        transform: translate3d(20px, 0, 0);
    }

    [data-aos="fade-left"] {
        transform: translate3d(-20px, 0, 0);
    }
}

@media (max-width:900px) {
    .service-image {
        display: none;
    }

    .service-card {
        grid-template-columns: 0.3fr 1.2fr 1.4fr;
        gap: 20px;
    }

}

@media(max-width:850px) {

    .about-header h2,
    .services-heading h2,
    .portfolio-left h2,
    .process-left h2,
    .testimonial-heading h2,
    .team-heading h2,
    .story-left h2,
    .section-heading h2,
    .why-partner-content h2,
    .portfoliopage-heading,
    .faq-heading h2 {
        font-size: 2.2rem;
    }

    .hero-content h1,
    .about-hero-content h1,
    .service-hero-content h1,
    .portfolio-hero-content h1,
    .contact-info h1 {
        font-size: 3rem;
    }

    .about-text h3 span {
        font-size: 3.5rem;
    }

    .footer-top h2 {
        font-size: 3rem;
    }
}

@media(max-width:768px) {

    .board-grid,
    .mission-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .board-image {
        height: auto;
    }

    .core-member {
        flex-direction: column;
        align-items: flex-start;
    }


    .mission-grid::after {
        display: none;
    }

    .portfolio-item {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }

    .service-card {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .service-title br,
    .arrow {
        display: none;
    }

    .about-header h2,
    .services-heading h2,
    .portfolio-left h2,
    .process-left h2,
    .testimonial-heading h2,
    .team-heading h2,
    .story-left h2,
    .section-heading h2,
    .why-partner-content h2,
    .portfoliopage-heading,
    .faq-heading h2 {
        font-size: 2rem;
    }

    .hero-content h1,
    .about-hero-content h1,
    .service-hero-content h1,
    .portfolio-hero-content h1,
    .contact-info h1 {
        font-size: 2.8rem;
    }

    .about-text h3 span {
        font-size: 3.2rem;
    }

    .footer-top h2 {
        font-size: 2.8rem;
    }

    .process-step h3 {
        font-size: 1.8rem;
    }

    .mission-card h3 {
        font-size: 30px;
    }

    .contact-form-wrap,
    .service-detail-item,
    .mission-card {
        padding: 50px 30px;
    }

    .hero-content h1 br,
    .about-hero-content h1 br,
    .service-hero-content h1 br,
    .portfolio-hero-content h1 br,
    .contact-info h1 br,
    .footer-top h2 br {
        display: none;
    }

    .portfolio-hero-image-wrap img {
        height: auto;
    }

    .footer-logo h4 {
        font-size: 20px;
    }

    .logo img {
        height: 50px;
    }

    .about-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .number {
        font-size: 50px;
    }

    .about-text h3 {
        font-size: 17px;
    }

}

@media(max-width:568px) {
    .floating-card {
        display: none;
    }

    .about-hero-image-wrap img,
    .service-hero-image-wrap img,
    .portfolio-hero-image-wrap img {
        height: auto;
    }

    .portfolio-text h4 {
        font-size: 26px;
    }

    .contact-form-wrap,
    .service-detail-item,
    .mission-card,
    .service-card {
        padding: 50px 20px;
    }

    .core-member {
        padding-left: 20px;
        padding-right: 20px;
        gap: 20px;
    }

    .service-example,
    .process-step {
        padding-left: 20px;
        padding-right: 20px;
    }

    .core-icon {
        width: 35px;
        height: 35px;
    }

    .core-icon i {
        font-size: 14px;
    }

    .core-designation {
        font-size: 16px;
    }

    .portfolioSwiper .swiper-slide {
        width: 300px;
    }

    .about-header h2,
    .services-heading h2,
    .portfolio-left h2,
    .process-left h2,
    .testimonial-heading h2,
    .team-heading h2,
    .story-left h2,
    .section-heading h2,
    .why-partner-content h2,
    .portfoliopage-heading,
    .faq-heading h2 {
        font-size: 1.8rem;
    }

    .hero-content h1,
    .about-hero-content h1,
    .service-hero-content h1,
    .portfolio-hero-content h1,
    .contact-info h1,
    .footer-top h2 {
        font-size: 2.5rem;
    }

}

@media(max-width:458px) {

    .about-header h2,
    .services-heading h2,
    .portfolio-left h2,
    .process-left h2,
    .testimonial-heading h2,
    .team-heading h2,
    .story-left h2,
    .section-heading h2,
    .why-partner-content h2,
    .portfoliopage-heading,
    .faq-heading h2 {
        font-size: 1.6rem;
    }

    .hero-content h1,
    .about-hero-content h1,
    .service-hero-content h1,
    .portfolio-hero-content h1,
    .contact-info h1,
    .footer-top h2 {
        font-size: 2rem;
    }
}