/* common multi use css */
.desktop-only {
    /* display: block; */
}

.mobile-only {
    display: none !important;
}

.service-link {
    display: none;
}

.navbar-toggler {
    border: none;
}

.main-heading {
    font-size: 50px;
    font-weight: 300;
    line-height: 1.2;
    text-align: left;
}

.sub-heading {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 2.8px;
    text-align: left;
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
}

.sub-heading img {
    width: 16.1px;
    height: 16.8px;
    object-fit: contain;
}

.sub-para {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
    color: #f5f5f4;
    width: 100%;
}

.layer-bg-highlight {
    position: relative;
    z-index: 10;
}

.layer-bg {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../assets/images/home/layer-bg.svg);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 6;
}

.wings-layer-bg {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../assets/images/home/layer-bg.svg);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    width: 70%;
    height: 40%;
    z-index: 6;

}

.wings-layer-bg-right {
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../assets/images/home/layer-bg.svg);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    width: 70%;
    height: 40%;
    z-index: 6;
    transform: rotateY(180deg);
}

/* Hero Section */
.hero-section {
    position: relative;
    /* min-height: 720px; */
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    background:
        radial-gradient(circle at 50% 40%, rgba(239, 179, 63, 0.15), rgba(0, 0, 0, 0) 30%),
        repeating-radial-gradient(circle at 50% 42%, rgba(190, 190, 190, 0.11) 0 1px, rgba(0, 0, 0, 0.35) 18px 37px),
        #060606;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../assets/images/home/artistic-video.gif') no-repeat center center;
    background-size: cover;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.9)); */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-weight: 300;
    text-align: left;
    color: #fff;
    font-size: clamp(42px, 7vw, 118px);
    line-height: 1.03;
    width: min(1150px, 100%);
    margin: 0 0 40px;
}

.hero-content h2 span {
    display: block;
    color: var(--accent);
    font-weight: 800;
    text-align: left;
    color: var(--accent);
    padding-top: 20px;
}

.hero-bottom {
    display: flex;
    gap: 26px;
    align-items: center;
    justify-content: space-between;
}

.hero-bottom-btns {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-arrow {
    transform: rotate(-45deg);
}

.hero-arrow,
.send-arrow {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    position: relative;
    border: 0;
    background: var(--accent);
    color: #101010;
    font-size: 34px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.material-symbols-outlined {
    font-size: 34px;
    line-height: unset;
}

.get-in-touch-btn {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    left: -30px;
    animation: spin 8s linear infinite;
}

.get-in-touch-btn .ring-text {
    animation-direction: reverse;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.get-in-touch-btn .ring-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.get-in-touch-btn .victor-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.get-in-touch-btn .victor-icon img {
    width: 29.7px;
    height: 25.7px;
    object-fit: contain;
}

.hero-bottom .sub-para {
    margin: 0;
    max-width: 733.6px;
}

/* Marquee Strip Section */
.marquee-strip {
    background: var(--accent);
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    animation: ticker 24s linear infinite;
    font-size: 31.4px;
    line-height: 1.2;
    color: #000000;
}

.marquee-track img {
    width: 18.1px;
    height: 18.8px;
    object-fit: contain;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

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

/* thesis section */
.thesis-intro h2 {
    max-width: 534px;
}

.thesis-intro .sub-para {
    max-width: 531px;
}

.thesis-cards {
    margin-top: 40px;
}

.thesis-card {
    position: relative;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-radius: 30px;
    border: solid 1px rgba(255, 255, 255, 0.1);
    background-color: rgba(27, 27, 27, 0.4);
    transition: transform 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.thesis-card::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background-color: rgba(255, 255, 255, 0.5);

}

.thesis-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 179, 63, 0.45);
}

.thesis-card h3 {
    position: relative;
    margin: 0;
    font-size: 17.8px;
    line-height: 1.3;
    letter-spacing: 1.98px;
    text-align: center;
    color: #fff;
    z-index: 6;
}

.thesis-card h3::after {
    content: '';
    bottom: 0;
    display: block;
    width: 0%;
    height: 1px;
    opacity: 0.4;
    background-color: #a59d94;
    margin: 12px auto 0;
    transition: all 0.6s ease-in-out;
}

.thesis-card:hover h3::after {
    width: 100%;
}

.thesis-symbol {
    /* max-width: 156px; */
    max-height: 156px;
    width: 100%;
    height: 23vh;
    text-align: center;
    margin-top: 40px;
}

.thesis-symbol img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Wings Panel section */
.wings-panel {
    overflow: hidden;
    background-image: url(../assets/images/home/wings-panel-bg.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 30px;
    min-height: 568px;
    position: relative;
}

.wing-copy {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WING 1 big circle — bottom LEFT, default visible */
.wing1-big {
    position: absolute;
    bottom: -50%;
    left: -38%;
    width: 100%;
    height: 200%;
    border-radius: 50%;
    background-color: #0b0b0b;
    z-index: 5;
    transform: scale(1) translate(0, 0);
    transform-origin: bottom left;
    opacity: 1;
    transition: transform 0.9s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.9s ease;
    /* pointer-events: none; */
}

.wing1-big.hidden {
    transform: scale(0.3) translate(-50%, 50%);
    opacity: 0;
}

.wing1-big-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-15%, -50%);
    max-width: 453px;
    text-align: left;
}

/* WING 2 big circle — bottom RIGHT, animates in */
.wing2-big {
    position: absolute;
    bottom: -50%;
    right: -40%;
    width: 100%;
    height: 200%;
    border-radius: 50%;
    background-color: #0b0b0b;
    z-index: 5;
    transform: scale(0.3) translate(50%, 50%);
    transform-origin: bottom right;
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.9s ease;
    /* pointer-events: none; */
}

.wing2-big.visible {
    transform: scale(1) translate(0, 0);
    opacity: 1;
}

.wing2-big-inner {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(15%, -42%);
    max-width: 453px;
    text-align: left;
}

.wing-label-gold {
    font-size: 28px;
    font-weight: 600;
    color: var(--accent);
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.wing-big h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f5f5f4;
    margin-bottom: 12px;
    line-height: 1.36;
}

.wing-big p {
    font-size: 16px;
    color: rgba(245, 245, 244, 0.8);
    margin-bottom: 12px;
    line-height: 1.7;
}

.wing-big h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.36;
    color: #f5f5f4;
    margin: 12px 0;
}

/* WING 2 small button — bottom RIGHT, default visible */
.wing2-btn {
    position: absolute;
    bottom: -5%;
    right: -4%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #D4A017;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: scale(1);
    transform-origin: bottom right;
    opacity: 1;
    transition: transform 0.9s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.6s ease;
    user-select: none;
}

.wing2-btn::after {
    position: absolute;
    content: '';
    width: 120%;
    height: 120%;
    border-radius: 50%;
    top: -10%;
    left: -10%;
    background-color: rgba(252, 181, 66, 0.1);
}

.wing2-btn.hidden {
    transform: scale(0.5);
    opacity: 0;
    pointer-events: none;
}

.wing2-btn span {
    font-size: 28px;
    font-weight: 500;
    color: #000;
    text-align: left;
    position: absolute;
    top: 37%;
    left: 15%;
}

/* WING 1 small button — bottom LEFT, appears when wing2 active */
.wing1-btn {
    position: absolute;
    bottom: -5%;
    left: -4%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #D4A017;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: scale(0.5);
    transform-origin: bottom left;
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.6s ease;
    pointer-events: none;
    user-select: none;
}

.wing1-btn::after {
    position: absolute;
    content: '';
    width: 120%;
    height: 120%;
    border-radius: 50%;
    top: -10%;
    left: -10%;
    background-color: rgba(252, 181, 66, 0.1);
}

.wing1-btn.visible {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.wing1-btn span {
    font-size: 28px;
    font-weight: 500;
    color: #000;
    text-align: left;
    position: absolute;
    top: 37%;
    left: 35%;
}


/* Service section */
.service-card {
    height: 52vh;
    max-height: 370px;
    padding: 30px 26px;
    position: relative;
    border-radius: 30px;
    border: solid 1px rgba(255, 255, 255, 0.1);
    background-color: rgba(27, 27, 27, 0.4);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    transition: all 0.6s ease-in-out;
    overflow: hidden;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: inline-block;
    transition: all 0.6s ease-in-out;
    margin-bottom: 26px;
    position: relative;
    z-index: 7;
}

.service-card .service-icon .service-icon-default {
    display: block;
}

.service-icon .service-icon-active {
    display: none;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 22px;
    min-height: 56px;
    color: #fff;
    transition: all 0.6s ease-in-out;
    max-width: 289px;
}

.service-card p {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    max-width: 365px;
    transition: all 0.6s ease-in-out;
    min-height: 55px;
}

.service-link {
    position: absolute;
    right: 24px;
    top: 24px;
    color: #6D6D6D;
    text-decoration: none;
    transition: all 0.6s ease-in-out;
    font-size: 34px;
    transform: rotate(-45deg);
}

.service-card:hover .service-icon .service-icon-default {
    display: none;
}

.service-card:hover .service-icon .service-icon-active {
    display: block;
}

.service-card:hover h3 {
    color: #fcb542;
}

.service-card:hover .service-link {
    color: #fcb542;
    transform: rotate(0deg);
}

/* Person Section */
.person-card {
    padding: 14px 14px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 14.7px 14.7px 27.3px;
    border-radius: 17.3px;
    border: solid 0.9px #202020;
    transition: all 0.6s ease-in-out;
    background-color: #101010;
}

.person-card:hover {
    border: solid 0.9px #fcb542;
}

.person-card img {
    width: 100%;
    border-radius: 18px;
    display: block;
    margin-bottom: 20px;
    object-fit: cover;
    max-height: 410px;
}

.person-card h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.29;
    letter-spacing: 0.86px;
    text-align: center;
    color: #fff;
    margin-bottom: 8px;
}

.person-card p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.51;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Testimonial Section */
.testimonial-photo-wrap {
    margin-top: 30px;
    border-radius: 30px;
    border: solid 1px rgba(255, 255, 255, 0.1);
    background-color: #1b1b1b;
    padding: 12px;
    /* min-height: 395px; */
}

.founder-img-dec {
    width: 100%;
    border-radius: 18px;
    display: block;
}

.founder-img-mob {
    display: none;
}

.testimonial-content .founder-name {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    /* margin-bottom: 25px; */
}

.testimonial-content .founder-company {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
}

.stars {
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    align-items: center;
    margin-bottom: 25px;

}

.stars span {
    color: var(--accent);
    letter-spacing: 3px;
    font-size: 25px;
    width: 18px;
    height: 16px;
}

.testimonial-para {
    font-size: 22px;
    line-height: 1.7;
    text-align: left;
    color: #fff;
    min-height: 30vh;
}

.testimonial-nav {
    display: flex;
    gap: 30px;
    margin-top: 70px;
}

.testimonial-nav .nav-btn {
    width: auto;
    height: 60px;
    border: none;
    padding: 0 18px;
    border-radius: 14px;
    background-color: #1b1b1b;
    color: #efefef;
    font-size: 32px;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.testimonials-carousel .testimonial-nav {
    position: absolute;
    bottom: 0;
    left: 34%;
}

/* Contact Section */
.contact-section .faq-list {
    display: grid;
    gap: 32px;
    margin-top: 22px;
    height: 100%;
}

.faq-item {
    border-radius: 16px;
    background-color: #101010;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
}

.faq-question {
    border: 0;
    width: 100%;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    font-size: 20px;
    /* padding: 28px 24px; */
    padding: 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 15px 15px 20px 15px;
    line-height: 1;
    font-size: 26px;
    margin-left: 64px;
    border-radius: 50%;
    border: solid 1px #b0b0b0;
    transition: transform 0.4s ease, border-color 0.4s ease, color 0.4s ease;
    transform: rotate(0deg);
}

.faq-item.active .faq-question span {
    transform: rotate(180deg);
    border-color: #ffffff;
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    opacity: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    /* transition: max-height 0.4s ease, opacity 0.3s ease 0.05s, padding 0.3s ease; */
    transition: max-height 0.6s ease-in-out, opacity 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 24px 24px;
    opacity: 1;
}

.faq-item.active .faq-question {
    color: #f2f2f2;
}

/* Contact Form */
.contact-form {
    border-radius: 30px;
    border: solid 1px rgba(255, 255, 255, 0.1);
    background-color: rgba(27, 27, 27, 0.4);
    padding: 55px 37px;
    position: relative;
    overflow: hidden;
    margin-top: 22px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form h3 {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}

.contact-form h3 span {
    display: inline-block;
    color: var(--accent);
    margin-bottom: 20px;
}

.form-control {
    color: #fff;
    min-height: 72px;
    font-size: 16px;
    padding: 21.5px 26px;
    border-radius: 10px;
    border: solid 1px #59595c;
    background-color: #141414;
    position: relative;
    z-index: 6;
}

.form-control::placeholder {
    color: #787c86;
}

textarea.form-control {
    min-height: 220px;
}

.form-actions {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-send {
    padding: 13px 17px;
    border-radius: 100px;
    border: solid 1px #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    background-color: transparent;
}

.send-arrow.small {
    transform: translate(-20%, 0%);
    width: 50px;
    height: 50px;
    font-size: 24px;
}

.send-arrow.small span {
    font-size: 24px;
    transform: rotate(-45deg);
}

.cta-bottom-banner-section {
    padding: 60px 0;
}

.cta-banner {
    padding: 32px 0 90px;
    text-align: center;
    position: relative;
}

.cta-banner h2 {
    margin: 0;
    font-size: clamp(42.4px, 8vw, 120px);
    font-weight: 800;
}

.send-arrow.large {
    position: absolute;
    inset: 50% auto auto 50%;
    border-radius: 50%;
    transform: translate(-50%, -70%);
    width: 150px;
    height: 150px;
}

.send-arrow.large img {
    transform: rotate(0deg);
    width: 62px;
    height: 62px;
    animation: spin 8s linear infinite;

}