* {
    box-sizing: border-box;
}

:root {
    --header--bg: transparent;
    --primary-color: rgb(75, 4, 75, 0.75);
    --bg-dark: #000000;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: "Sora", sans-serif;
    padding-top: 70px; /* Compensate for fixed header */
    background: radial-gradient(ellipse at center, #000010 0%, #000 100%);
    color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

/* Galaxy background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(90,0,120,0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0,0,50,0.2) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(120,0,90,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0,50,100,0.1) 0%, transparent 50%);
    z-index: -2;
    animation: nebula 30s ease-in-out infinite alternate;
}

/* Stars layer 1 - Small stars */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #fff, transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 160px 30px, #fff, transparent),
        radial-gradient(1px 1px at 200px 90px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 240px 50px, #fff, transparent),
        radial-gradient(1px 1px at 280px 10px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 320px 70px, #fff, transparent),
        radial-gradient(1px 1px at 360px 30px, rgba(255,255,255,0.8), transparent);
    background-repeat: repeat;
    background-size: 400px 200px;
    animation: starsMove 60s linear infinite;
    z-index: -1;
    opacity: 0.8;
}

@keyframes nebula {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1) rotate(2deg);
        opacity: 1;
    }
}

@keyframes starsMove {
    from {
        transform: translateX(0px) translateY(0px);
    }
    to {
        transform: translateX(-400px) translateY(-200px);
    }
}

/* Additional twinkling stars */
.star-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.star-field::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 50px 60px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 150px 20px, #fff, transparent),
        radial-gradient(2px 2px at 250px 90px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 350px 40px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 450px 120px, #fff, transparent),
        radial-gradient(1px 1px at 80px 150px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 180px 180px, #fff, transparent),
        radial-gradient(1px 1px at 280px 220px, rgba(255,255,255,0.9), transparent);
    background-repeat: repeat;
    background-size: 500px 300px;
    animation: twinkle 8s ease-in-out infinite, starsMove2 80s linear infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes starsMove2 {
    from {
        transform: translateX(0px) translateY(0px);
    }
    to {
        transform: translateX(500px) translateY(300px);
    }
}

/* Common */
a {
    text-decoration: none;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 1170px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
}

.btn {
    --height: 60px;

    display: inline-block;
    min-width: 205px;
    height: var(--height);
    padding: 0 20px;
    border-radius: 99px;
    border: 1px solid var(--primary-color);
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    line-height: var(--height);
    color: #fff;
    background: var(--primary-color);
}

.btn:hover {
    cursor: pointer;
    opacity: 0.9;
}

.section-heading {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.section-desc {
    font-weight: 300;
    font-size: 1.8rem;
    line-height: 1.67;
    color: #cccccc;
}

.control {
    display: flex;
    column-gap: 18px;
}

.control__btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #575f66;
    outline: none;
    color: #575f66;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}

.control__btn:hover {
    border-color: #2e80ce;
    background: #2e80ce;
    color: #fff;
    cursor: pointer;
}
.control-next-icon {
    rotate: 180deg;
}

/* Header */
.header {
    min-height: 100vh;
    background: transparent;
    padding-top: 30px;
}


/* Header top */
.header-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

/* Header hidden state */
.header-top.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Header show/hide animation states */
.header-top.header-show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Ensure smooth scrolling behavior */
@media (max-width: 768px) {
    .header-top {
        padding: 15px 0;
        background: transparent;
        backdrop-filter: none;
    }
    
    .header-top.header-hidden {
        transform: translateY(-100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

.header-top__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}


.logo {
    position: relative;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    padding: 2px 16px 2px 6px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.logo__img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo__text {
    color: #fff;
    text-align: left;
    line-height: 1.3;
}

.logo__brand {
    font-size: 1.6em;
    font-family: "Sora", sans-serif;
    font-weight: 600;
    display: block;
    color: #e0e0e0;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.logo__brand--small {
    font-size: 1.2em;
    font-weight: 300;
    color: #e0e0e0;
    letter-spacing: 0.02em;
    margin-top: -2px;
}

/* Navbar section with rounded border */
.navbar {
    padding: 8px;
    border: 2px solid rgba(82, 82, 82, 0.1);
    border-radius: 35px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.navbar:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.navbar__list {
    display: flex;
    gap: 8px;
    margin: 0;
    background: rgba(75, 4, 75, 0.2);
    padding: 8px 8px;
    border-radius: 25px;
}

.navbar__link {
    padding: 8px 16px;
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar__link:hover,
.navbar__link--active {
    background: rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
    font-weight: bold;
}

/* Header action section with rounded border */
.header-action {
    display: flex;
    align-items: center;
    padding: 5px 7px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-action:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.header-action_contact {
    --height: 44px;
    min-width: 120px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #fff;
}

/* Hide desktop header action on mobile */
@media (max-width: 1024px) {
    .header-action {
        display: none;
    }
}

/* Hero */
.hero {
    padding: 50px 0;
    display: flex;
    align-items: center;
}

.hero__content {
    flex-shrink: 0;
    width: 44%;
}

.hero__media {
    flex-grow: 1;
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
        gap: 40px;
    }
    
    .hero__content {
        width: 100%;
        order: 1;
    }
    
    .hero__media {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero__heading {
        font-size: 4.2rem;
    }
    
    .hero__desc {
        font-size: 1.4rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__row {
        justify-content: center;
        text-align: center;
    }
    
    .hero__row .btn {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 30px 0;
        gap: 30px;
        text-align: center;
    }
    
    .hero__heading {
        font-size: 3.2rem;
        line-height: 1.2;
    }
    
    .hero__desc {
        font-size: 1.3rem;
        margin-top: 16px;
    }
    
    .hero__row {
        margin-top: 25px;
        justify-content: center;
        text-align: center;
    }
    
    .hero__row .btn {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 20px 0;
        gap: 25px;
        text-align: center;
    }
    
    .hero__heading {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .hero__desc {
        font-size: 1.2rem;
        margin-top: 14px;
    }
    
    .hero__row {
        margin-top: 20px;
        justify-content: center;
        text-align: center;
    }
    
    .hero__row .btn {
        margin: 0 auto;
    }
}

.hero__heading {
    font-size: 5.5rem;
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -0.02em;
    color: #fff;
}

.hero__desc {
    margin-top: 22px;
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 1.67;
    color: #c9c2dc;
}

.hero__row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
}

.about__list {
    margin-bottom: 55px;
}

/* about */
.about {
    padding: 50px 0;
    background: transparent;
}

.about__title {
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(120, 60, 180, 0.3);
}

.about__description {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about__main-text {
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 30px;
}

.about__mission-text {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 0;
}

.about__highlight {
    color: rgba(185, 18, 231, 0.9);
    font-weight: 600;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.8);
}


.about__header {
    text-align: center;
    margin-bottom: 60px;
}

.about__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.about__logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(120, 60, 180, 0.4));
    transition: all 0.3s ease;
    animation: flipVertical 4s ease-in-out infinite;
}

.about__logo-img:hover {
    filter: drop-shadow(0 0 25px rgba(120, 60, 180, 0.6));
    transform: scale(1.1);
}

@keyframes flipVertical {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.about__heading {
    font-size: 4rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.about__card {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about__card:hover {
    border-color: rgb(120, 60, 180);
    
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgb(75, 4, 75, 0.75);
}

.about__card-number {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 20px;
}

.about__card-text {
    font-size: 1.6rem;
    color: #cccccc;
    line-height: 1.4;
    margin-bottom: 25px;
    font-weight: 300;
}

.about__telegram {
    color: rgba(185, 18, 231, 0.9);
    font-weight: 500;
}

.about__x {
    color: #ffffff;
    font-weight: 500;
}

.about__white {
    color: #ffffff;
}

.about__card-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.about__card-icons .icon {
    color: rgb(120, 60, 180);
    font-size: 24px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgb(75, 4, 75, 0.75));
}

.about__card-icons .icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px rgb(75, 4, 75, 0.75));
}


@media (max-width: 1024px) {
    .about__main-text {
        font-size: 1.8rem;
        line-height: 1.65;
    }
    
    .about__mission-text {
        font-size: 1.6rem;
        line-height: 1.65;
    }
    
    .about__heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .about__stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about__main-text {
        font-size: 1.6rem;
        line-height: 1.7;
    }
    
    .about__mission-text {
        font-size: 1.4rem;
        line-height: 1.7;
    }
    
    .about__heading {
        font-size: 3rem;
    }
    
    .about__card {
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .about__card-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .about__main-text {
        font-size: 1.4rem;
        line-height: 1.75;
    }
    
    .about__mission-text {
        font-size: 1.2rem;
        line-height: 1.75;
    }
    
    .about__heading {
        font-size: 2.5rem;
    }
}

/* About Results Section */
.about__results {
    margin-top: 80px;
    position: relative;
}

.about__results-header {
    text-align: center;
    margin-bottom: 60px;
}

.about__results-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.about__results-content {
    position: relative;
}



/* Stats Cards */
.about__bottom-stats {
    position: relative;
    z-index: 2;
}

.about__stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.about__stats-row--top {
    justify-content: space-between;
}

.about__stats-row--bottom {
    justify-content: center;
    gap: 60px;
}

.about__stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    animation: rotateFloat 8s ease-in-out infinite;
}

.about__stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about__stat-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
    animation-play-state: paused;
}

/* Staggered animation delays for each card */
.about__stats-row--top .about__stat-card:nth-child(1) {
    animation-delay: 0s;
}

.about__stats-row--top .about__stat-card:nth-child(2) {
    animation-delay: 1s;
}

.about__stats-row--top .about__stat-card:nth-child(3) {
    animation-delay: 2s;
}

.about__stats-row--bottom .about__stat-card:nth-child(1) {
    animation-delay: 3s;
}

.about__stats-row--bottom .about__stat-card:nth-child(2) {
    animation-delay: 4s;
}

.about__card-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.about__card-label {
    font-size: 1.4rem;
    color: #cccccc;
    font-weight: 300;
    line-height: 1.4;
}

/* Infinity symbol styling */
.about__infinity-large {
    font-size: 3rem;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Card Rotation Animations */
@keyframes rotateFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    }
    50% {
        transform: translateY(0px) rotateX(0deg) rotateY(10deg);
    }
    75% {
        transform: translateY(-5px) rotateX(-5deg) rotateY(5deg);
    }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .about__results-title {
        font-size: 2.5rem;
    }
    
    .about__stats-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .about__stats-row--bottom {
        gap: 20px;
    }
    
    .about__stat-card {
        min-width: 250px;
        padding: 25px 30px;
        animation: rotateFloat 6s ease-in-out infinite;
    }
    
    .about__card-number {
        font-size: 3rem;
    }
}

/* service */
.service {
    padding: 70px 0;
    background: transparent;
}

.service .section-heading {
    text-align: left;
}

.service__desc {
    width: 100%;
    max-width: 600px;
    color: #cccccc;
    text-align: left;
    margin: 0;
}

.service__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 70px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(120, 60, 180, 0.3), transparent);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-item:hover {
    border-color: rgb(120, 60, 180);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(75, 4, 75, 0.4),
        0 0 30px rgba(120, 60, 180, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(120, 60, 180, 0.05) 100%);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover::after {
    opacity: 1;
}

.service-item__icon {
    width: 56px;
    height: 56px;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0 auto 18px auto;
    display: block;
    position: relative;
    z-index: 2;
}

.service-item:hover .service-item__icon {
    transform: scale(1.1) translateY(-3px);
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(120, 60, 180, 0.6));
}

.service-item__heading {
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-item:hover .service-item__heading {
    text-shadow: 0 0 20px rgba(120, 60, 180, 0.3);
    transform: translateY(-2px);
}

.service-item__list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.service-item__desc {
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 16px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-item__desc::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.service-item:hover .service-item__desc {
    color: #e0e0e0;
}







/* Responsive for service */
@media (min-width: 1600px) {
    .service__list {
        max-width: 1500px;
        gap: 28px;
    }
    
    .service-item {
        padding: 36px 24px;
        min-height: 300px;
    }
    
    .service-item__heading {
        font-size: 2.4rem;
        margin: 0 0 20px 0;
    }
    
    .service-item__desc {
        font-size: 1.6rem;
        line-height: 1.7;
        padding-left: 16px;
    }
    
    .service-item__icon {
        width: 64px;
        height: 64px;
        margin-bottom: 22px;
    }
}

@media (max-width: 1400px) {
    .service__list {
        max-width: 100%;
        gap: 22px;
    }
}

@media (max-width: 1200px) {
    .service__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    
    .service-item {
        padding: 34px 22px;
        min-height: 290px;
    }
    
    .service-item__heading {
        font-size: 2.3rem;
        margin: 0 0 18px 0;
    }
    
    .service-item__desc {
        font-size: 1.55rem;
        line-height: 1.65;
        padding-left: 16px;
    }
    
    .service-item__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
}

@media (max-width: 1000px) {
    .service__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .service-item {
        padding: 36px 28px;
        min-height: 280px;
    }
    
    .service-item__heading {
        font-size: 2.4rem;
        margin: 0 0 20px 0;
    }
    
    .service-item__desc {
        font-size: 1.6rem;
        line-height: 1.7;
        padding-left: 16px;
    }
    
    .service-item__icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .service__list {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-item {
        padding: 32px 24px;
        min-height: 260px;
    }
    
    .service-item__heading {
        font-size: 2.3rem;
        margin: 0 0 18px 0;
    }
    
    .service-item__desc {
        font-size: 1.6rem;
        line-height: 1.7;
        padding-left: 16px;
    }
    
    .service-item__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .service .section-heading {
        text-align: left;
    }
    
    .service__desc {
        text-align: left;
        padding: 0;
    }
}

/* Portfolio */
.portfolio {
    padding: 100px 0;
    background: transparent;
}

.portfolio__heading {
    text-align: center;
    margin-bottom: 20px;
}

.portfolio__desc {
    width: 100%;
    max-width: 600px;
    color: #cccccc;
    text-align: center;
    margin: 0 auto 60px;
}

.portfolio__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.portfolio__list:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.portfolio__row {
    display: flex;
    gap: 25px;
    width: fit-content;
    animation: scrollLeft 30s linear infinite;
    align-items: center;
    white-space: nowrap;
}

.portfolio__row:nth-child(2) {
    animation: scrollRight 35s linear infinite;
}

.portfolio__row:nth-child(3) {
    animation: scrollLeft 40s linear infinite;
}

.portfolio-item {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.portfolio-item:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.portfolio-item__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.portfolio-item__logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-item__img {
    transform: scale(1.1);
}

/* Keyframe animation */
@keyframes scrollLeft {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        transform: translateX(-50%); 
    }
}

@keyframes scrollRight {
    0% { 
        transform: translateX(-50%); 
    }
    100% { 
        transform: translateX(0); 
    }
}

/* Pause animation on hover */
.portfolio__row:has(.portfolio-item:hover) {
    animation-play-state: paused;
}

/* Partner */
.partner {
    padding: 50px 0;
    background: transparent;
    position: relative;
}

.partner__heading {
    text-align: center;
    margin-bottom: 20px;
}

.partner__desc {
    width: 100%;
    max-width: 600px;
    color: #cccccc;
    text-align: center;
    margin: 0 auto 80px;
}

.partner__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 60px auto 0;
}

.partner-card {
    background: transparent;
    border: none;
    padding: 15px 10px 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    width: 140px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card__logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.0) contrast(1.0);
    flex-shrink: 0;
}

.partner-card__name {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
    line-height: 1.2;
}

.partner-card:hover .partner-card__logo {
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 15px rgba(120, 60, 180, 0.8)) drop-shadow(0 0 30px rgba(120, 60, 180, 0.4));
}

.partner-card:hover .partner-card__name {
    color: #7c3aed;
    text-shadow: 0 0 15px rgba(124, 58, 237, 0.6);
    transform: translateY(-2px);
}

/* Responsive for partner section */
@media (max-width: 768px) {
    .partner {
        padding: 40px 0;
    }
    
    .partner__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 25px 0;
        max-width: 500px;
    }
    
    .partner-card {
        padding: 12px 8px 8px;
        width: 110px;
        height: 130px;
        gap: 6px;
    }
    
    .partner-card:hover {
        transform: translateY(-4px);
        background: rgba(120, 60, 180, 0.08);
    }
    
    .partner-card__logo {
        width: 60px;
        height: 60px;
        filter: brightness(1.0) contrast(1.0);
    }
    
    .partner-card__name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .partner__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 20px 0;
        max-width: 320px;
    }
    
    .partner-card {
        padding: 10px 6px 6px;
        width: 95px;
        height: 110px;
        gap: 5px;
    }
    
    .partner-card:hover {
        transform: translateY(-3px);
        background: rgba(120, 60, 180, 0.06);
    }
    
    .partner-card__logo {
        width: 50px;
        height: 50px;
        filter: brightness(1.0) contrast(1.0);
    }
    
    .partner-card__name {
        font-size: 1.0rem;
    }
}

/* Member */
.member {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.member__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.member__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.member-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 20px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.member-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(120, 60, 180, 0.08) 0%, 
        transparent 50%, 
        rgba(120, 60, 180, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: inherit;
}

.member-item:hover {
    transform: translateY(-10px);
    border-color: rgba(120, 60, 180, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 40px rgba(120, 60, 180, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-item:hover::before {
    opacity: 1;
}

.member-item__img-bg {
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, 
        rgba(120, 60, 180, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.member-item:hover .member-item__img-bg {
    background: linear-gradient(135deg, 
        rgba(120, 60, 180, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    transform: scale(1.02);
}

.member-item__thumb {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.member-item:hover .member-item__thumb {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.05);
}

.member-item__name {
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.member-item:hover .member-item__name {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(120, 60, 180, 0.4);
}

.member-item__title {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #cccccc;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.member-item:hover .member-item__title {
    color: #e0e0e0;
}

.member-item__social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
    position: relative;
    z-index: 5;
}

.member-item__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #cccccc;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 10;
    cursor: pointer;
}

.member-item__social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.member-item__social-link:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.5);
    color: #ffffff;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.member-item__social-link:hover::before {
    opacity: 1;
}

.member-item__social-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.member-item__social-link:hover svg {
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.6));
}

/* Responsive for member section */
@media (max-width: 1024px) {
    .member__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 900px;
    }
    
    .member-item__thumb {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .member {
        padding: 80px 0;
    }
    
    .member__header {
        margin-bottom: 50px;
    }
    
    .member__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .member-item {
        padding: 25px 15px 20px;
    }
    
    .member-item__img-bg {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .member-item__thumb {
        width: 60%;
        margin: 0 auto;
        height: 200px;
    }
    
    .member-item__name {
        font-size: 1.6rem;
    }
    
    .member-item:hover {
        transform: translateY(-8px);
    }
    
    .member-item__social {
        gap: 10px;
        margin-top: 12px;
    }
    
    .member-item__social-link {
        width: 32px;
        height: 32px;
    }
    
    .member-item__social-link svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .member {
        padding: 60px 0;
    }
    
    .member__list {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
    }
    
    .member-item {
        padding: 20px 15px 18px;
    }
    
    .member-item__img-bg {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .member-item__thumb {
        height: 180px;
    }
    
    .member-item__name {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .member-item__title {
        font-size: 1.3rem;
    }
    
    .member-item:hover {
        transform: translateY(-5px);
    }
    
    .member-item__social {
        gap: 8px;
        margin-top: 10px;
        opacity: 1;
        transform: translateY(0);
    }
    
    .member-item__social-link {
        width: 30px;
        height: 30px;
    }
    
    .member-item__social-link svg {
        width: 11px;
        height: 11px;
    }
}



.appointment {
    background: transparent;
}

.appointment__inner {
    background: transparent;
    border-radius: 4px;
    padding: 100px 70px;
    text-align: center;
}

.appointment__heading {
    position: relative;
    padding-bottom: 20px;
}

.appointment__heading::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    display: block;
    content: "";
    width: 136px;
    height: 2px;
    background: var(--primary-color);
}

.appointment__desc {
    max-width: 617px;
    margin: 18px auto 38px;
    font-size: 1.6rem;
}

/* Footer */
.footer {
    background: transparent;
    padding: 120px 0 0;
    font-family: "Open Sans", sans-serif;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer__row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
    column-gap: 40px;
    margin-bottom: 60px;
}

.footer__column--brand {
    padding-right: 20px;
}

.footer__desc {
    margin-top: 24px;
    font-size: 1.6rem;
    line-height: 1.75;
    color: #b8c4d0;
    max-width: 360px;
}

.footer__desc--newsletter {
    margin-top: 12px;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #9ca8b1;
    max-width: 280px;
}

.footer__heading {
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #fff;
    position: relative;
}

.footer__heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), rgba(75, 4, 75, 0.3));
    border-radius: 1px;
}



.footer__list {
    margin-bottom: 32px;
}

.footer__link {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #b8c4d0;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.footer__link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer__link:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer__link:hover::before {
    width: 100%;
}

.footer__item {
    margin-bottom: 12px;
}

.footer__contact {
    margin-bottom: 20px;
}

.footer__contact-item {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__contact-label {
    font-size: 1.3rem;
    color: #9ca8b1;
    font-weight: 500;
}

.footer__contact-link {
    font-size: 1.5rem;
    color: #b8c4d0;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.footer__contact-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-form__input {
    height: 50px;
    width: 100%;
    max-width: 280px;
    padding: 0 16px;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.footer-form__input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(75, 4, 75, 0.1);
}

.footer-form__input::placeholder {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #9ca8b1;
}

.footer-form__submit {
    --height: 50px;
    min-width: 140px;
    max-width: 280px;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(75, 4, 75, 0.4);
}


.footer__social {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    justify-content: flex-start;
}

.footer__social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    color: #b8c4d0;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-btn:hover {
    color: #fff;
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(75, 4, 75, 0.3);
    border-color: var(--primary-color);
}



.footer__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0 48px;
    margin-top: 40px;
}

.footer__copyright-text {
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: center;
    color: #9ca8b1;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer__row {
        grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
        column-gap: 30px;
    }
}

@media (max-width: 1024px) {
    .footer__row {
        grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
        column-gap: 25px;
    }
    
    .footer__column--brand {
        padding-right: 0;
    }
}

@media (max-width: 900px) {
    .footer__row {
        grid-template-columns: 1fr 1fr;
        column-gap: 40px;
        row-gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer__column--brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 80px 0 0;
        margin-top: 120px;
    }
    
    .footer__row {
        grid-template-columns: 1fr 1fr;
        column-gap: 40px;
        row-gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer__column--brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    
    .footer__desc {
        max-width: 100%;
    }
    
    .footer__social {
        justify-content: flex-start;
    }
    
    .footer-form {
        max-width: 100%;
    }
    
    .footer-form__input,
    .footer-form__submit {
        max-width: 100%;
    }
    
    .footer__copyright {
        padding: 24px 0 36px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 60px 0 0;
        margin-top: 80px;
    }
    
    .footer__row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__column--brand {
        text-align: center;
    }
    
    .footer__heading {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .footer__social {
        gap: 12px;
        justify-content: flex-start;
    }
    
    .footer__social-btn {
        width: 40px;
        height: 40px;
    }
    
    .footer__copyright-text {
        font-size: 1.3rem;
        padding: 0 20px;
    }
}