/* Marquee Strips */

.marquee-strips {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 120px;
    margin-top: -120px;
}

.strip {
    position: absolute;
    left: -5%;
    right: -5%;
    width: 110%;
    height: 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 0 10px var(--primary);
}

.strip.top {
    bottom: 70px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: rotate(2.5deg);
    transform-origin: center;
    border: 0.5px solid var(--white);
}

.strip.bottom {
    bottom: 70px;
    background-color: var(--white);
    transform: rotate(-2.5deg);
    transform-origin: center;
}

.strip .marquee {
    display: flex;
    white-space: nowrap;
    align-items: center;
    font-family: "CyGrotesk";
    font-weight: 500;
    font-size: 18px;
    gap: 48px;
    width: fit-content;
    animation: scroll-left 30s linear infinite;
}

.strip.top .marquee {
    animation: scroll-left 30s linear infinite;
}

.strip.bottom .marquee {
    animation: scroll-right 30s linear infinite;
}

.strip .item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.strip.top .item {
    color: var(--white);
}

.strip.bottom .item {
    color: var(--primary);
}

.strip .item::before {
    content: '★';
    font-size: 14px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes fadeSlideBlur {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(3px);
    }

    50% {
        opacity: 1;
        transform: translateY(-6px);
        filter: blur(1.5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes fadeSlideBlur2 {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(6px);
    }

    50% {
        opacity: 0.7;
        transform: translateY(-2px);
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.text-animate-seq span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(6px);
}

.text-animate-seq.in-view span {
    animation: fadeSlideBlur 0.6s forwards;
}

.text-animate {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(6px);
}

.text-animate.in-view {
    animation: fadeSlideBlur 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Marquee Strips End */


/* About Us Section Start */

.about-us-section {
    width: 100vw;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 80px auto;
    padding: 0;
}

.about-us-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    width: 100%;
    max-width: 95vw;
    padding: 80px;
    transform: perspective(1200px) scale(0.75) rotateX(30deg);
    border-radius: 24px;
    border: 1px solid var(--accent);
    box-shadow: 0 0 24px var(--accent);
    background: var(--accent-gradient);
    background-size: 200% 200%;
    animation: gradient-move 6s ease infinite;
    transition: transform 0.25s linear, border 0.8s linear;
}

.about-us-content:hover {
    border: 1px solid var(--secondary);
}

/* LEFT SECTION */
.left-section {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
}

.left-section h2 {
    font-size: 48px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 36px;
    line-height: 36px;
    width: fit-content;
}

.left-section h1 {
    font-family: "GalleryModern", serif;
    font-size: 108px;
    margin-left: 96px;
    font-weight: 400;
    color: var(--primary);
    line-height: 64px;
    margin-bottom: 64px;
    width: fit-content;
}

.process-diagram {
    width: fit-content;
    min-height: 200px;
    margin: 0;
    padding: 0;
}

/* SVG DIAGRAM STYLES */
.process-diagram svg {
    overflow: visible;
}

.process-diagram svg g {
    cursor: pointer;
}

/* SVG Text Base Styles */
.svg-text {
    font-family: "CyGrotesk", sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-anchor: middle;
    dominant-baseline: middle;
    transition: fill 0.3s ease;
}

.svg-text-light {
    fill: var(--white);
}

.svg-text-dark {
    fill: var(--primary);
}

/* SVG Path Styles */
.capsule-dark {
    fill: var(--primary);
    transition: fill 0.3s ease;
}

.capsule-light {
    fill: var(--white);
    stroke: var(--primary);
    stroke-width: 1;
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.capsule-circle {
    fill: var(--primary);
}

/* Hover States for Purple Capsules */
.process-diagram svg g:hover .capsule-dark {
    fill: var(--white);
    stroke: var(--primary);
}

.process-diagram svg g:hover .svg-text-light {
    fill: var(--primary);
}

/* Hover States for Light Capsules */
.process-diagram svg g:hover .capsule-light {
    fill: var(--primary);
    stroke: var(--primary);
}

.process-diagram svg g:hover .svg-text-dark {
    fill: var(--white);
}

/* RIGHT SECTION */
.right-section {
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 700px;
}

.pre-badge {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: 14px;
    color: var(--black);
    line-height: 20px;
}

.about-title {
    font-family: "GalleryModern", serif;
    font-size: 64px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: -6px;
    margin-top: 10px;
}

.underline-separator {
    width: 180px;
    height: 2px;
    background-color: var(--primary);
    margin-bottom: 26px;
    border-radius: 10px;
}

.description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--black);
    margin-bottom: 36px;
    text-align: justify;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--black);
}

.feature-item::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    font-size: 16px;
}

/* CTA BUTTON SVG STYLES */
.cta-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    width: 200px;
    height: auto;
    transition: transform 0.4s ease-in-out;
}

.button-area .button-bg {
    fill: var(--primary);
    stroke: var(--primary);
    stroke-width: 1;
}

.button-area .button-text {
    font-family: CyGrotesk, serif;
    font-size: 16px;
    font-weight: 400;
    text-anchor: middle;
    fill: var(--white);
}

.circle-area .button-circle {
    fill: var(--white);
    stroke: var(--primary);
}

.circle-area .arrow-icon {
    stroke: var(--primary);
    stroke-width: 1.5;
}

.cta-button svg .button-bg,
.cta-button svg text,
.cta-button svg circle,
.cta-button svg .arrow-icon {
    transition: all 0.3s ease-in-out;
}

/* CTA Hover States */
.button-area:hover .button-bg {
    fill: var(--white);
    stroke: var(--primary);
}

.button-area:hover text {
    fill: var(--primary);
}

.circle-area:hover circle {
    fill: var(--primary);
}

.circle-area:hover .arrow-icon {
    stroke: var(--white);
    transform-origin: center;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    .about-us-content {
        animation: none !important;
    }

    .svg-text,
    .capsule-dark,
    .capsule-light,
    .button-bg,
    .button-text,
    .button-circle,
    .arrow-icon {
        transition: none !important;
    }
}

/* About Us Section End */


/* Scroll Text Section Start */

.scroll-text-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.scroll-text-container {
    text-align: center;
    padding-top: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scroll-text-container:nth-child(1) {
    align-items: start;
}

.underline-separator-2 {
    width: 180px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 10px;
    position: absolute;
    margin-left: 40vw;
    margin-top: 32px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.underline-separator-2.visible {
    opacity: 1;
}

.animated-text {
    font-family: "cygrotesk", serif;
    font-size: 84px;
    font-weight: 300;
    line-height: 108px;
    margin-top: -2px;
}

.text-word {
    position: relative;
    display: inline-block;
}

.text-base {
    color: #3D008240;
}

.text-highlight {
    font-family: "GalleryModern", serif;
    font-size: 108px;
}

.text-word-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg, var(--primary) 0%, var(--primary) 50%, transparent 50%);
    background-size: 200% 200%;
    background-position: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.3s ease-out;
}

@media (prefers-reduced-motion: reduce) {

    .underline-separator-2,
    .text-word-fill {
        transition: none !important;
    }
}

/* Scroll Text Section End */


/* Servies Section Start */

.services-section {
    position: relative;
    height: 325vh;
    display: flex; 
    justify-content: center;
    width: 100%;
    transition: opacity 0.8s;
    opacity: 1;
    pointer-events: auto;
}

.services-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    justify-content: space-between;
}

/* Info Panel */

.info-panel {
    padding: 40px 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    width: 50%;
    z-index: 10;
    transition: opacity 0.6s ease;
}

.services-pre-badge {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 12px;
}

#info-title {
    font-family: gallerymodern, serif;
    font-size: 108px;
    font-weight: 400;
    color: var(--primary);
    line-height: 108px;
    min-height: 216px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

#info-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.title-underline {
    width: 160px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 10px;
    margin: -32px 0 0 8px;
}

#info-desc {
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    min-height: 72px;
    width: 70%;
    margin: 30px 0 40px 4px;
    opacity: 0;
    transition: all 0.5s ease;
}

#info-desc.visible {
    opacity: 1;
}

/* Carousel */

.carousel-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
    margin-left: 50%;
    overflow: visible;
}

.services-cards-wrapper {
    display: flex;
    gap: 50px;
    padding: 0 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Services Cards */

.services-card {
    min-width: 400px;
    height: 550px;
    border-radius: 36px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 36px 36px 36px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.6s ease,
        filter 0.6s ease,
        box-shadow 0.4s ease;
}

.services-card:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=800');
}

.services-card:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=800');
}

.services-card:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1581291518857-4e27b48ff24e?w=800');
}

.services-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #20202080;
    border: 1.5px solid var(--primary);
    border-radius: 36px;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.services-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #3D008280;
    border: 2px solid var(--primary);
    border-radius: 36px;
    mix-blend-mode: multiply;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-card.active {
    transform: scale(1.05);
    box-shadow: 0 0 20px #3D008260;
    z-index: 10;
}

.services-card.active::before {
    opacity: 0;
}

.services-card.active::after {
    opacity: 1;
}

.services-card.passed {
    transform: scale(0.75);
    opacity: 0.2;
    filter: blur(4px);
}

.card-hidden {
    opacity: 0;
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Card Main Content */

.card-main {
    font-family: "CyGrotesk";
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 75%;
    transition: all 0.6s ease-in-out;
}

.services-card.active .card-main {
    top: 0;
}

.card-title {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    padding: 0 0 10px;
    text-align: left;
    border-bottom: 2px solid white;
    transition: font-size 0.3s ease;
}

.services-card.active .card-title {
    font-size: 36px;
}

.card-description {
    font-family: "CyGrotesk";
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    margin-top: 16px;
}

/* Card Pricing */

.card-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    margin: auto 0 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.services-card.active .card-pricing {
    opacity: 1;
}

.services-card.active:hover .card-pricing {
    transform: translateY(-18px);
    pointer-events: all;
}

.pricing-label {
    font-size: 16px;
    font-weight: 400;
    flex: 0 0 60%;
}

.pricing-amount {
    font-size: 24px;
    font-weight: 500;
}

.pricing-subtext {
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    text-align: right;
    flex: 0 0 30%;
}

.text-medium {
    font-weight: 500;
}

/* Card Tags */

.card-tags {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    gap: 12px 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.services-card.active .card-tags {
    opacity: 1;
}

.services-card.active:hover .card-tags {
    transform: translateY(-18px);
    pointer-events: all;
}

.tag,
.tag-2 {
    padding: 8px 18px;
    border: 1.5px solid var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.tag {
    background: transparent;
}

.tag:hover {
    background: var(--white);
    color: var(--primary);
}

.tag-2 {
    background: var(--white);
    color: var(--primary);
}

.tag-2:hover {
    background: transparent;
    color: var(--white);
}

/* Services Cards End */


/* Premium Card Section */

.premium-card-section {
    position: relative;
    overflow-x: clip;
    width: 100vw;
    height: 260vh;
    padding: 0;
    margin: 0;
}

.premium-card {
    position: sticky;
    top: 50%;
    transform: translate(100vw, -50%);
    width: 100%;
    max-width: 1400px;
    height: 450px;
    margin: 0 auto;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--primary);
    border-radius: 48px;
    opacity: 0;
    color: var(--white);
    will-change: transform, height, opacity;
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 2;
    opacity: 1;
    background: #20202060;
    mix-blend-mode: multiply;
    transition: all 1s ease;
}

.premium-card.expanded::before {
    opacity: 0;
    background: #3D008270;
    mix-blend-mode: multiply;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 24px #3D008280;
    opacity: 1;
}

.premium-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.premium-card-main {
    margin-bottom: 20px;
}

.premium-card-title {
    font-family: "GalleryModern", serif;
    font-size: 64px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
}

.premium-card-description {
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.premium-card-sub-description {
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
    line-height: 24px;
}

.premium-card-pricing {
    display: flex;
    gap: 64px;
    font-size: 24px;
    font-weight: 300;
}

.premium-card-pricing,
.premium-card-button {
    opacity: 0;
    transform: translateY(18px);
    transition: all 0.8s ease;
}

.premium-card.expanded .premium-card-pricing,
.premium-card.expanded .premium-card-button {
    opacity: 1;
    transform: translateY(0);
}

.premium-card-pricing>div {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.premium-card-pricing div div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-card-pricing div div::before {
    content: '✓';
    color: var(--white);
    font-weight: 500;
}

.premium-card-button .cta-button {
    display: inline-flex;
    width: 200px;
}

.premium-card-button .button-area:hover path {
    filter: drop-shadow(0 0 8px #FAF8FF80);
}

.premium-card-button .circle-area:hover circle {
    filter: drop-shadow(0 0 8px #FAF8FF80);
}

.premium-card-button .button-area:hover .button-bg {
    fill: var(--primary);
    stroke: var(--white);
}

.premium-card-button .button-area .button-bg {
    fill: var(--white);
}

.premium-card-button .button-area:hover text {
    fill: var(--white);
}

.premium-card-button .button-area text {
    fill: var(--primary);
}

.premium-card-button .circle-area:hover circle {
    stroke: var(--white);
}
/* Servies Section End */


/* Projects Scroll Section */

.projects-scroll-section {
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    gap: 0;
    padding: 0;
    margin-bottom: 120px;
}

.projects-text-wrapper {
    width: 1400px;
}

.projects-moving-line {
    font-size: 64px;
    font-weight: 300;
    color: var(--secondary);
    transition: transform 0.05s linear;
    will-change: transform;
    line-height: 56px;
}

.projects-top-line {
    text-align: left;
    transform: translateX(var(--move, 0px));
    transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: transform;
}

.projects-center-line {
    text-align: center;
    font-size: 108px;
    line-height: 1;
    color: var(--primary);
    font-family: "GalleryModern", serif;
    position: relative;
}

.projects-underline-separator {
    width: 180px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 10px;
    position: absolute;
    left: 42%;
    bottom: 0;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.projects-underline-separator.visible {
    opacity: 1;
}

.projects-bottom-line {
    text-align: right;
    transform: translateX(var(--move, 0px));
    transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: transform;
}

.projects-text-word {
    position: relative;
    display: inline-block;
}

.projects-text-base {
    color: #3D008240;
}

.projects-text-word-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg, var(--primary) 0%, var(--primary) 50%, transparent 50%);
    background-size: 200% 200%;
    background-position: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.3s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    .projects-text-word-fill {
        background-position: 0% 0%;
    }

    .projects-underline-separator {
        opacity: 1;
        width: 180px;
    }
}

/* Projects Scroll Section End */


/* Projects Gallery Section */

@keyframes gradient-move {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.gallery-section {
    font-family: 'cygrotesk', serif;
    background: linear-gradient(135deg, #7e39d3 0%, #4F0B9D 25%, #7e39d3 50%, #4F0B9D 75%, #7e39d3 100%);
    background-size: 300% 300%;
    animation: gradient-move 10s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    filter: brightness(1.2) contrast(1) saturate(1) drop-shadow(0 0 16px #3D008280);
    min-height: 120vh;
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
}

.gallery-container {
    display: flex;
    padding: 20px;
    height: 120vh;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.column {
    flex: 1;
    height: 100%;
    overflow-x: visible;
    position: relative;
    width: 360px;
    padding: 0 16px;
}

.column-inner {
    position: absolute;
    will-change: transform;
    width: 326px;
    gap: 24px;
}

.project {
    margin-bottom: 20px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #3D008200;
    backdrop-filter: blur(10px);
    border: 1px solid var(--white);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 10px 30px #FAF8FF20;
}

.project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            #3D008260 40%,
            #3D008280 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project:hover .project-overlay {
    opacity: 1;
    box-shadow: 0 0px 16px #FAF8FF20;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--white);
    z-index: 2;
}

.project:hover .project-info {
    transform: translateY(0);
}

.gallery-section::before,
.gallery-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 30%;
    pointer-events: none;
    z-index: 10;
}

.gallery-section::before {
    top: 0;
    background: linear-gradient(to bottom, var(--primary) 0%, #3D008270 30%, #3D008200 100%);
}

.gallery-section::after {
    bottom: 0;
    background: linear-gradient(to top, var(--primary) 0%, #3D008270 30%, #3D008200 100%);
}

.project-info h4 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 500;
}

.project-info p {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 300;
}

.show-more {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0px 16px #FAF8FF20;
    font-family: 'cygrotesk', serif;
}

.show-more:hover {
    background: #3D008200;
    color: var(--white);
    border: 1px solid var(--white);
}

.gallery-info-panel {
    padding-top: 120px;
    padding-left: 8vw;
    padding-bottom: 60px;
    height: 100%;
    width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 3;
    position: absolute;
    transition: opacity 0.6s ease;
    background: linear-gradient(to right, #3D008280 0%, #3D008280 80%, #3D008200 100%);
    backdrop-filter: blur(6px);
    left: 0;
}

.gallery-pre-badge {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid var(--white);
    border-radius: 20px;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 12px;
}

.gallery-info-title {
    font-family: 'gallerymodern', serif;
    font-size: 108px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 108px;
    transition: all 0.5s ease;
}

.gallery-title-underline {
    width: 160px;
    height: 2px;
    background-color: var(--white);
    margin-top: -32px;
    margin-left: 8px;
    border-radius: 10px;
}

.gallery-info-desc {
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
    width: 40vw;
    transition: all 0.5s ease;
    min-height: 72px;
    margin: 30px 0 20px 4px;
}

.gallery-cta-button:hover {
    transform: translateY(-6px);
}

.gallery-cta-button .button-area:hover path {
    filter: drop-shadow(0 0 8px #FAF8FF80);
}

.gallery-cta-button .circle-area:hover circle {
    filter: drop-shadow(0 0 8px #FAF8FF80);
}

.gallery-cta-button .button-area:hover .button-bg {
    fill: var(--primary);
    stroke: var(--white);
}

.gallery-cta-button .button-area .button-bg {
    fill: var(--white);
}

.gallery-cta-button .button-area:hover text {
    fill: var(--white);
}

.gallery-cta-button .circle-area:hover circle {
    stroke: var(--white);
}

/* Projects Gallery Section End */


/* Trust Section Start */

.trust-building-section {
    width: 1400px;
    display: flex;
    flex-direction: column;
    margin: 120px auto;
    gap: 48px;
}

.trust-divider {
    display: flex;
    align-items: center;
    gap: 24px;
}

.trust-line {
    flex: 1;
    height: 2px;
}

.trust-line:first-child {
    background: linear-gradient(to right, #3D008200 0%, #3D008250 30%, var(--primary) 100%);
}

.trust-line:last-child {
    background: linear-gradient(to left, #3D008200 0%, #3D008250 30%, var(--primary) 100%);
}

.trust-text {
    font-size: 21px;
    font-weight: 500;
    color: var(--black);
    white-space: nowrap;
}

.partners-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.partners-text {
    font-size: 16px;
    line-height: 18px;
    color: var(--black);
    flex-shrink: 0;
    width: 20%;
}

.logos-separator {
    width: 1px;
    height: 60px;
    background-color: var(--primary);
    flex-shrink: 0;
}

.logos-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.logos-container::before,
.logos-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logos-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-slider {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

.logos-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    filter: grayscale(100%);
    flex-shrink: 0;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.5px;
}

/* Trust Section End */


/* Process Cards Section Start */

.process-cards-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1400px;
    margin: 0 auto;
    padding-top: 100px;
    transform-origin: center;
}

.process-cards-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 1400px;
    position: sticky;
    top: 10vh;
    transition: all 0.6s ease;
    white-space: pre;
}

.process-cards-title h2 {
    font-size: 48px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 36px;
    line-height: 36px;
}

.process-cards-title h1 {
    font-family: "GalleryModern", serif;
    font-size: 108px;
    margin-left: 96px;
    font-weight: 400;
    color: var(--primary);
    line-height: 64px;
}

.lock-wrapper {
    height: 550vh;
    position: relative;
}

.lock-wrapper-stage {
    position: sticky;
    top: 8%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.lock-wrapper-card {
    position: absolute;
    width: 900px;
    height: 450px;
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--black);
    gap: 24px;
    transform-origin: center;
    will-change: transform, opacity;
    transition: transform 0.5s ease, opacity 0.5s ease;
    padding: 36px;
    border: 1px solid #3D008250;
    box-shadow: 0 0px 12px #3D008220;
    background: var(--accent-gradient);
    background-size: 200% 200%;
    animation: gradient-move 6s ease infinite;
}

.wrapper-card-data {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.wrapper-card-top {
    width: 100%;
    padding: 0 0 0 12px;
}

.wrapper-card-data-left {
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.wrapper-card-data-right {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
}

.wrapper-card-top-right-title {
    padding-left: 12px;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 8px;
}

.wrapper-card-top-right {
    font-size: 36px;
    color: var(--black);
    font-weight: 500;
    color: var(--primary);
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary);
    padding: 12px;
    border-radius: 18px;
}

.wrapper-card-top-right span {
    color: var(--secondary);
}

.wrapper-card-pre-badge {
    display: flex;
    font-size: 14px;
    width: fit-content;
    padding: 4px 12px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 300;
    margin-bottom: 10px;
}

.wrapper-card-info-title {
    font-size: 56px;
    font-family: 'gallerymodern', serif;
    color: var(--primary);
    font-weight: 400;
    line-height: 64px;
    margin-bottom: 2px;
}

.wrapper-card-title-underline {
    width: 120px;
    height: 1.5px;
    background-color: var(--primary);
    margin-left: 8px;
    display: block;
    border-radius: 50px;
    margin-bottom: 16px;
    margin-top: -4px;
}

.wrapper-card-description {
    border: 1px solid var(--primary);
    width: 100%;
    height: 50%;
    border-radius: 18px;
    padding: 16px;
}

.wrapper-card-description p {
    display: flex;
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    font-weight: 300;
    width: 100%;
}

.c1 {
    z-index: 1;
}

.c2 {
    z-index: 2;
}

.c3 {
    z-index: 3;
}

/* Progress Bar */

.progress-container {
    position: fixed;
    bottom: 50px;
    width: 300px;
    max-width: 1400px;
    height: 6px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 3px;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.progress-container.visible {
    opacity: 1;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--primary);
    border-radius: 3px;
    transition: width 0.1s ease;
}

.progress-circles {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.progress-circle {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    transform: scale(1);
    box-shadow: none;
    transform-origin: center;
    margin-left: 20px;
    margin-top: -12px;
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.progress-circle.active {
    background: var(--primary);
    transform: scale(1.5);
    box-shadow: 0 0 12px #3D008250;
    border: 2px solid var(--white);
}

.progress-circle.hidden {
    opacity: 0;
    visibility: hidden;
}


/* Process Cards Section End */


/* Testimonials Section Start */

.dark-section {
    width: 100%;
    background: linear-gradient(135deg,
            #7e39d3 0%,
            #4F0B9D 25%,
            #7e39d3 50%,
            #4F0B9D 75%,
            #7e39d3 100%);
    background-size: 300% 300%;
    animation: gradient-move 30s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    filter: brightness(1.2) contrast(1) saturate(1);
    padding: 200px 20px;
    display: flex;
    flex-direction: column;
    border-radius: 80px 80px 0 0;
    box-shadow: 0 0 18px #3D008280;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    gap: 100px;
}

.testimonials-main-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.testimonials-section-header {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0;
}

.testimonials-section-title {
    font-size: 84px;
    font-family: 'GalleryModern', serif;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.testimonials-title-underline {
    width: 180px;
    height: 2px;
    background-color: var(--white);
    border-radius: 10px;
    margin-left: 360px;
}

/* Main Content Grid */
.testimonials-main-grid {
    display: flex;
    justify-content: space-between;
    width: 1400px;
    align-items: center;
}

/* Left Column */
.testimonials-left-column {
    display: flex;
    flex-direction: column;
    width: 700px;
}

/* Testimonials Badge */
.testimonials-pre-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--white);
    border-radius: 30px;
    width: fit-content;
    color: var(--white);
    background: #FAF8FF20;
    backdrop-filter: blur(20px);
    margin: 0;
}

.testimonials-badge {
    display: flex;
    flex-direction: row;
    gap: 0;
}

.testimonials-user-avatars .avatar {
    border: 1px solid var(--white);
    background: var(--primary);
}

/* Heading */
.testimonials-left-heading {
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    margin-top: 20px;
}

.underline-separator-3 {
    background: var(--white);
    margin-left: 16px;
}

/* Stats Grid */
.testimonials-stats-grid {
    display: flex;
    gap: 36px;
    margin-bottom: 48px;
    margin-top: 24px;
    padding-left: 6px;
    width: fit-content;
    justify-content: center;
}

.testimonials-stat-item {
    text-align: left;
}

.stats-separator {
    width: 1px;
    background: var(--white);
}

.testimonials-stat-number {
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    color: var(--white);
    margin-bottom: 8px;
    display: block;
}

.testimonials-stat-label {
    font-size: 14px;
    color: var(--white);
    font-weight: 300;
}

/* Action Buttons */
.testimonials-action-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.testimonials-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--primary);
    font-family: CyGrotesk, serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonials-action-btn:hover {
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--white);
    transform: translateY(-6px);
    filter: drop-shadow(0 0 8px #FAF8FF80);
}

.testimonials-action-btn-2:hover {
    transform: translateY(-6px);
}

.testimonials-action-btn-2 .button-area:hover path {
    filter: drop-shadow(0 0 8px #FAF8FF80);
}

.testimonials-action-btn-2 .circle-area:hover circle {
    filter: drop-shadow(0 0 8px #FAF8FF80);
}

.testimonials-action-btn-2 .button-area:hover .button-bg {
    fill: var(--primary);
    stroke: var(--white);
}

.testimonials-action-btn-2 .button-area .button-bg {
    fill: var(--white);
}

.testimonials-action-btn-2 .button-area text {
    fill: var(--primary);
    font-weight: 500;
}

.testimonials-action-btn-2 .button-area:hover text {
    fill: var(--white);
}

.testimonials-action-btn-2 .circle-area:hover circle {
    stroke: var(--white);
}

/* Right Column - Testimonial Card */

.testimonials-right-column {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 64px;
}

.testimonials-card-container {
    position: relative;
    min-height: 400px;
    width: 700px;
}

.testimonials-display-card {
    display: flex;
    flex-direction: column;
    background: #FAF8FF20;
    backdrop-filter: blur(18px);
    border: 1px solid #FAF8FF50;
    border-radius: 36px;
    color: var(--white);
    padding: 50px 48px;
    position: absolute;
    box-shadow: 0 0 48px #FAF8FF20;
    justify-content: space-between;
    opacity: 0;
    inset: 0;
    cursor: pointer;
    transform-origin: center;
    transition: all 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.testimonials-quote-icon {
    font-size: 96px;
    opacity: 0.8;
    line-height: 1;
    font-family: GalleryModern, serif;
}

.testimonials-text-content {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.testimonials-author-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #FAF8FF95;
    backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 8px 24px 8px 8px;
    width: fit-content;
}

.testimonials-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    border: 1px solid var(--primary);
}

.testimonials-author-info {
    display: flex;
    flex-direction: column;
}

.testimonials-author-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 2px;
}

.testimonials-author-title {
    font-size: 12px;
    color: var(--black);
}

.testimonials-navigation-controls {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50px;
    backdrop-filter: blur(18px);
    height: fit-content;
    width: fit-content;
    background: #FAF8FF20;
}

/* Progress Indicators */
.testimonials-indicators {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonials-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FAF8FF30;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonials-indicator:hover {
    background: #FAF8FF50;
}

.testimonials-indicator.testimonials-indicator-active {
    background: var(--white);
    width: 32px;
    border-radius: 5px;
}

.testimonials-indicator.testimonials-indicator-active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #FAF8FF50;
    animation: testimonials-progress 4.5s linear;
}

@keyframes testimonials-progress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Pause animation on hover */
.testimonials-card-container.testimonials-paused~.testimonials-navigation-controls .testimonials-indicator-active::after {
    animation-play-state: paused;
}

.testimonials-display-card.testimonials-active {
    opacity: 1;
    z-index: 3;
    transform: rotate(0deg) translateY(0) scale(1);
    pointer-events: auto;
}

.testimonials-display-card.testimonials-next1 {
    opacity: 0.75;
    z-index: 2;
    transform: rotate(2.5deg) translateY(25px) scale(0.96);
    pointer-events: none;
}

.testimonials-display-card.testimonials-next2 {
    opacity: 0.5;
    z-index: 1;
    transform: rotate(-2.5deg) translateY(50px) scale(0.92);
    pointer-events: none;
}

.testimonials-display-card.testimonials-slide-out {
    opacity: 0;
    transform: translateX(200px) rotate(8deg) scale(0.9);
    pointer-events: none;
}

.testimonials-display-card.testimonials-slide-in {
    opacity: 0;
    transform: rotate(-2.5deg) translateY(80px) scale(0.88);
}

.testimonials-display-card:hover.testimonials-active {
    background: #3D008220;
    transform: translateY(-8px) scale(1.02);
}

.section-separator {
    height: 2px;
    width: 75vw;
    background: linear-gradient(to right, #FAF8FF00 0%, #FAF8FF 25%, #FAF8FF 75%, #FAF8FF00 100%);
}

/* Testimonials Section End */


/* caf Section Start */

/* caf Left Section */
.caf-section {
    display: flex;
    width: 80vw;
    height: fit-content;
    border-radius: 48px;
    justify-content: center;
    align-items: center;
    padding: 100px;
    background: var(--white);
    position: relative;
}

.caf-left-section {
    height: 100%;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
    padding: 0;
    z-index: 3;
    transition: opacity 0.6s ease;
}

/* caf Info Panel */
.contact-pre-badge {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 12px;
}

.contact-info-title {
    font-family: gallerymodern, serif;
    font-size: 108px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 108px;
    transition: all 0.5s ease;
}

.contact-title-underline {
    width: 160px;
    height: 2px;
    background-color: var(--primary);
    margin-top: -32px;
    margin-left: 8px;
    border-radius: 10px;
}

.contact-info-desc {
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    width: 40vw;
    transition: all 0.5s ease;
    min-height: 72px;
    margin: 30px 0 20px 4px;
}

.caf-section-separator {
    background: linear-gradient(to right, transparent 0%, var(--primary) 25%, var(--primary) 75%, transparent 100%);
    height: 2px;
    width: 80%;
}

/* caf FAQ Panel */
.faq-container {
    max-width: 700px;
}

.faq-grid {
    display: grid;
    gap: 2px;
    background: #3D008250;
    padding: 2px;
    border-radius: 19px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item {
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:first-child {
    border-radius: 18px 18px 0 0;
}

.faq-item:last-child {
    border-radius: 0 0 18px 18px;
}

.faq-item.active {
    background: var(--white);
    box-shadow: 0 0 4px var(--primary);
}

.faq-item:hover {
    box-shadow: 0 0 4px var(--primary);
}

.faq-question {
    padding: 36px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
}

.faq-question:hover {
    padding-left: 48px;
}

.question-number {
    position: absolute;
    left: -30px;
    font-size: 72px;
    font-weight: 100;
    color: #3D008250;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item:hover .question-number {
    left: 10px;
    opacity: 1;
}

.faq-item.active .question-number {
    color: var(--secondary);
    left: 75%;
    opacity: 1;
    transition: all 0.4s ease;
}

.question-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    z-index: 1;
    position: relative;
}

.faq-icon {
    width: 36px;
    height: 36px;
    position: relative;
    flex-shrink: 0;
    margin-left: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--black);
}

.faq-item:hover .faq-icon {
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(-90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 40px 32px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--black);
    font-weight: 300;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    animation-delay: 0.1s;
}

.highlight {
    color: var(--black);
    font-weight: 400;
    position: relative;
    display: inline-block;
}

/* Contact Form */
.contact-section-wrap {
    position: sticky;
    top: 9%;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: fit-content;
    height: 750px;
    margin: 0;
    padding: 36px;
    gap: 18px;
    border-radius: 36px;
    border: 1px solid #3D008250;
    box-shadow: 0 0 0 #3D008250;
    background: var(--white);
    transition: all 0.8s;
    z-index: 20;
}

.contact-section-wrap:hover {
    box-shadow: 0 0px 64px #3D008280;
    border: 1px solid var(--primary);
}

.contact-section-data {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
}

.contact-section-data .pre-badge {
    margin-bottom: 6px;
}

.contact-section-data h2 {
    text-align: left;
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
    color: var(--primary);
}

.contact-section-data h3 {
    text-align: left;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--black);
    margin-top: 4px;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group-column {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-group {
    width: 48%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.form-group-msg {
    width: 100%;
    max-width: 100%;
}

.form-group-msg textarea {
    resize: vertical
}

.form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.form-group:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group label {
    margin-bottom: 8px;
    margin-left: 8px;
    font-weight: 500;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #3D008250;
    border-radius: 10px;
    font-size: 16px;
    transition: border 0.3s;
    font-family: 'CyGrotesk';
}

.form-group input:hover,
.form-group textarea:hover {
    border: 1px solid var(--primary);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}

button[type="submit"] {
    padding: 12px 18px;
    font-size: 18px;
    font-family: 'CyGrotesk';
    border: none;
    border-radius: 50px;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    transition: all 0.4s;
    margin-top: 20px;
}

button[type="submit"]:hover {
    background-color: var(--white);
    color: var(--primary);
}

.form-message {
    display: inline-block;
    width: fit-content;
    margin-left: 24px;
    font-size: 14px;
    text-align: center;
}

/* caf Section Start */


/* Footer */

footer {
    position: relative;
    background: var(--white);
    box-shadow: 0 0 18px var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.footer-top {
    display: flex;
    height: 12px;
    width: 300px;
    margin: 50px 0;
    border-radius: 10px;
    background: linear-gradient(to right, var(--secondary) 0%, var(--primary) 50%, var(--secondary)100%);
}

/* Main Footer Content */
.footer-main {
    position: relative;
    width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    gap: 100px;
    padding-bottom: 64px;
}

/* Company Info Section */
.company-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    justify-content: space-between;
}

.company-section h2 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--primary);
}

.company-section h2 span {
    color: var(--secondary);
}

.footer-logo {
    width: 150px;
}

.company-tagline {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
    width: 80%;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border-radius: 100px;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.social-link:hover svg {
    color: var(--white);
}

/* Footer Links Sections */

.footer-wrap {
    display: flex;
    gap: 100px;
    padding: 56px 0;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-links div {
    font-weight: 500;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.footer-links a::before { 
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--accent);
    padding: 36px 0;
}

.footer-bottom-content {
    width: 1400px;
    display: flex;
    justify-content: space-between;
}

.copyright {
    font-size: 14px;
    font-weight: 300;
}

.copyright a {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

.footer-legal {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-legal a {
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--accent);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px var(--accent);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    border-color: transparent;
    transform: translateY(-4px);
    border: 0.5px solid var(--secondary);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.back-to-top:hover svg {
    color: var(--secondary);
}

/* Footer End */


/* Website Complete */