@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700&display=swap);

@keyframes gridMove {
    0% {
        background-position: 0 0
    }

    to {
        background-position: 0 1000px
    }
}

@keyframes particleMove {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0)
    }

    10% {
        opacity: .6
    }

    90% {
        opacity: .3
    }

    to {
        opacity: 0;
        transform: translateY(-100px) scale(1)
    }
}

@keyframes lineGlow {

    0%,
    to {
        opacity: .3;
        box-shadow: 0 0 3px rgba(212, 175, 55, .3)
    }

    50% {
        opacity: .7;
        box-shadow: 0 0 8px rgba(212, 175, 55, .5)
    }
}

@keyframes cubeFloat {

    0%,
    to {
        transform: translateY(0) rotateY(0) rotateX(0)
    }

    25% {
        transform: translateY(-25px) rotateY(90deg) rotateX(45deg)
    }

    50% {
        transform: translateY(0) rotateY(180deg) rotateX(90deg)
    }

    75% {
        transform: translateY(25px) rotateY(270deg) rotateX(45deg)
    }
}

@keyframes glassShine {

    0%,
    to {
        background-position: 0 0
    }

    50% {
        background-position: 100% 100%
    }
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes badgeShine {
    0% {
        transform: translateX(-100%) rotate(45deg)
    }

    20%,
    to {
        transform: translateX(100%) rotate(45deg)
    }
}

@keyframes underlineGlow {

    0%,
    to {
        opacity: .3;
        box-shadow: 0 0 5px rgba(212, 175, 55, .5);
        transform: scaleX(.8)
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(212, 175, 55, .6);
        transform: scaleX(1)
    }
}

@keyframes floatShape3 {

    0%,
    to {
        transform: translate(0, 0) rotate(0) scale(1)
    }

    50% {
        transform: translate(20px, -30px) rotate(90deg) scale(1.2)
    }
}

@keyframes lineSlide {
    0% {
        transform: translateX(-100%)
    }

    to {
        transform: translateX(100%)
    }
}

@keyframes ctaGlow {

    0%,
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: .5
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: .8
    }
}

@keyframes pulse {

    0%,
    to {
        transform: scale(.95);
        opacity: .7
    }

    50% {
        transform: scale(1.2);
        opacity: .3
    }
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes arrowBounce {

    0%,
    to {
        transform: translateX(0)
    }

    50% {
        transform: translateX(5px)
    }
}

@keyframes starTwinkle {

    0%,
    to {
        opacity: .5;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.5)
    }
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0)
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes floatShape1 {

    0%,
    to {
        transform: translate(0, 0) rotate(0)
    }

    25% {
        transform: translate(-30px, 20px) rotate(10deg)
    }

    50% {
        transform: translate(15px, 40px) rotate(20deg)
    }

    75% {
        transform: translate(25px, 10px) rotate(-10deg)
    }
}

@keyframes floatShape2 {

    0%,
    to {
        transform: translate(0, 0) rotate(45deg)
    }

    25% {
        transform: translate(25px, -25px) rotate(35deg)
    }

    50% {
        transform: translate(-15px, -35px) rotate(55deg)
    }

    75% {
        transform: translate(-25px, 15px) rotate(40deg)
    }
}

@keyframes beamGlow {

    0%,
    to {
        opacity: .3;
        width: 200%
    }

    50% {
        opacity: .6;
        width: 220%
    }
}

@keyframes iconShine {
    0% {
        left: -100%;
        opacity: 0
    }

    40% {
        left: 100%;
        opacity: .3
    }

    to {
        left: 100%;
        opacity: 0
    }
}

@keyframes buttonGradient {

    0%,
    to {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }
}

@keyframes btnShine {
    0% {
        left: -100%;
        opacity: 0
    }

    40% {
        left: 100%;
        opacity: .3
    }

    to {
        left: 100%;
        opacity: 0
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body,
p {
    color: #f3f4f6
}

.hero-container,
body {
    background-color: #111827
}

body {
    font-family: Inter, sans-serif;
    overflow-x: hidden
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    will-change: transform
}

.grid-background {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: linear-gradient(rgba(17, 24, 39, .9) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 24, 39, .9) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridMove 30s linear infinite;
    opacity: .3;
    z-index: 1;
    will-change: background-position
}

.hero-text:before,
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.particles-container {
    z-index: 2;
    overflow: hidden;
    pointer-events: none
}

.accent-line,
.particle {
    position: absolute;
    z-index: 2
}

.particle {
    background-color: #d4af37;
    border-radius: 50%;
    opacity: 0;
    animation: particleMove 8s ease-in-out infinite;
    will-change: transform, opacity
}

.accent-line {
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0)0, rgba(212, 175, 55, .8) 50%, rgba(212, 175, 55, 0) 100%);
    animation: lineGlow 6s ease-in-out infinite
}

@media (max-width:768px) {
    .accent-line {
        display: none
    }
}

.floating-cube {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(31, 41, 55, .6);
    border: 1px solid rgba(212, 175, 55, .3);
    transform-style: preserve-3d;
    animation: cubeFloat 18s ease-in-out infinite;
    z-index: 2;
    will-change: transform
}

@media (max-width:768px) {
    .floating-cube {
        display: none
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 90%;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.hero-text,
.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden
}

.hero-text {
    text-align: left;
    padding: 60px;
    background: rgba(31, 41, 55, .7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .5);
    border-left: 2px solid rgba(212, 175, 55, .5);
    border-top: 1px solid rgba(212, 175, 55, .3);
    animation: fadeSlideIn 1.2s ease-out;
    will-change: transform, opacity
}

.hero-text:before {
    content: "";
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, .05), transparent);
    background-size: 200% 200%;
    animation: glassShine 10s ease-in-out infinite;
    z-index: -1
}

.hero-visual {
    height: 550px;
    perspective: 1000px;
    animation: fadeSlideIn 1.2s ease-out .3s backwards
}

.device-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.device-view,
h1 span:after {
    position: absolute;
    width: 100%
}

.device-view {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .8s cubic-bezier(.215, .61, .355, 1), opacity .8s ease;
    opacity: 0;
    transform: translateX(100%);
    will-change: transform, opacity
}

.device-view.active {
    opacity: 1;
    transform: translateX(0)
}

.device-view.exit {
    transform: translateX(-100%);
    opacity: 0;
    transition: transform .8s cubic-bezier(.55, .085, .68, .53), opacity .8s ease
}

.laptop-wrapper {
    position: relative;
    width: 600px;
    max-width: 90%
}

.laptop-body {
    background-color: #333;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    padding: 15px 15px 0
}

.laptop-screen {
    background-color: #fff;
    position: relative;
    border-radius: 5px 5px 0 0;
    overflow: hidden
}

.laptop-screen img,
.mobile-screen img,
.tablet-screen img {
    width: 100%;
    display: block
}

.laptop-keyboard {
    height: 20px;
    background-color: #333;
    border-radius: 0 0 15px 15px
}

.laptop-touchpad {
    width: 40%;
    height: 8px;
    background-color: #444;
    margin: 5px auto;
    border-radius: 3px
}

.tablet-wrapper {
    position: relative;
    width: 350px;
    max-width: 80%;
    border: 15px solid #333;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5)
}

.tablet-screen {
    background-color: #fff;
    position: relative;
    overflow: hidden
}

.tablet-button {
    position: absolute;
    width: 10px;
    height: 40px;
    background-color: #444;
    right: -15px;
    top: 60px;
    border-radius: 0 5px 5px 0
}

.tablet-camera {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #111;
    border-radius: 50%;
    top: -10px;
    left: 50%;
    transform: translateX(-50%)
}

.mobile-wrapper {
    position: relative;
    width: 180px;
    border: 10px solid #333;
    border-top-width: 40px;
    border-bottom-width: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5)
}

.mobile-screen {
    background-color: #fff;
    position: relative;
    overflow: hidden
}

.mobile-button,
.mobile-notch,
.mobile-speaker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.mobile-notch {
    width: 50px;
    height: 16px;
    background-color: #333;
    border-radius: 0 0 15px 15px;
    top: -16px
}

.mobile-button,
.mobile-speaker {
    width: 30px
}

.mobile-speaker {
    height: 4px;
    background-color: #222;
    border-radius: 4px;
    top: 6px
}

.mobile-button {
    height: 30px;
    border-radius: 50%;
    bottom: -35px;
    border: 1px solid #444
}

.device-header {
    background-color: #1f2937;
    padding: 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, .2)
}

.device-controls {
    display: flex;
    gap: 6px;
    margin-right: 15px
}

.device-control {
    width: 12px;
    height: 12px;
    border-radius: 50%
}

.control-red {
    background-color: #ff5f57
}

.control-yellow {
    background-color: #febc2e
}

.control-green {
    background-color: #28c840
}

.device-url {
    background-color: #111827;
    border-radius: 4px;
    padding: 8px 12px;
    color: #f3f4f6;
    font-size: 12px;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(212, 175, 55, .1), rgba(212, 175, 55, .2), rgba(212, 175, 55, .1));
    padding: 8px 18px;
    border-radius: 30px;
    font-size: .9rem;
    margin-bottom: 24px;
    font-family: Poppins, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(212, 175, 55, .2);
    position: relative;
    overflow: hidden
}

.btn-primary:after,
.hero-badge:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    transform: rotate(45deg)
}

.hero-badge:after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    animation: badgeShine 4s ease-in-out infinite
}

.section-header h2,
h1 {
    font-family: Poppins, sans-serif;
    color: #f3f4f6
}

h1,
h1 span {
    position: relative
}

h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px
}

h1 span {
    display: inline-block
}

h1 span:after {
    content: "";
    bottom: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    animation: underlineGlow 4s infinite
}

p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
    opacity: .9
}

.hero-badge,
.highlight {
    color: #d4af37;
    font-weight: 600
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px
}

.btn-primary,
.btn-secondary {
    font-family: Poppins, sans-serif;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.btn-primary {
    padding: 16px 36px;
    background: linear-gradient(45deg, #d4af37, #e5c158, #d4af37);
    background-size: 200% 200%;
    color: #111827;
    border: 0;
    box-shadow: 0 10px 25px rgba(212, 175, 55, .4);
    animation: buttonGradient 4s ease infinite
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, .6)
}

.btn-primary:after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    animation: btnShine 4s ease-in-out infinite
}

.btn-secondary {
    padding: 15px 34px;
    background-color: transparent;
    color: #d4af37;
    border: 2px solid #d4af37
}

.btn-secondary:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, .1);
    transform: translateX(-100%) rotate(45deg);
    transition: all .3s ease
}

.btn-secondary:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2)
}

.btn-secondary:hover:before {
    transform: translateX(100%) rotate(45deg)
}

.device-indicator {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, .3);
    transition: all .3s ease;
    cursor: pointer
}

.indicator-dot.active {
    background-color: #d4af37;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(212, 175, 55, .5)
}

@media screen and (max-width:1400px) {
    .hero-content {
        width: 95%
    }

    h1 {
        font-size: 3.2rem
    }

    .laptop-wrapper {
        width: 500px
    }
}

@media screen and (max-width:1200px) {
    .hero-content {
        flex-direction: column;
        padding: 40px 0
    }

    .hero-text {
        width: 100%;
        text-align: center;
        padding: 50px 40px
    }

    .hero-visual {
        width: 100%;
        height: 400px;
        order: -1
    }

    .laptop-wrapper {
        width: 450px
    }

    p {
        margin-left: auto;
        margin-right: auto
    }

    .hero-buttons {
        justify-content: center
    }
}

@media screen and (max-width:768px) {
    .hero-container {
        min-height: 900px;
        padding: 0
    }

    .hero-text {
        padding: 40px 25px
    }

    h1 {
        font-size: 2.5rem
    }

    p {
        font-size: 1.1rem
    }

    .hero-visual {
        height: 320px
    }

    .laptop-wrapper {
        width: 350px
    }

    .tablet-wrapper {
        width: 250px
    }

    .mobile-wrapper {
        width: 150px
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center
    }

    @supports (animation-timeline:scroll()) {

        .accent-line,
        .floating-cube,
        .grid-background {
            animation-play-state: paused
        }
    }
}

.why-us-section {
    position: relative;
    width: 100%;
    padding: 150px 0 120px;
    background-color: #0c1422;
    overflow: hidden;
    z-index: 1
}

.section-container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 5
}

.why-us-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.floating-shape {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(31, 41, 55, .6);
    border: 1px solid rgba(212, 175, 55, .2);
    z-index: 2
}

.shape-1 {
    top: 15%;
    left: 10%;
    transform-style: preserve-3d;
    animation: floatShape1 20s ease-in-out infinite
}

.shape-2 {
    bottom: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    animation: floatShape2 25s ease-in-out infinite
}

.shape-3 {
    top: 60%;
    left: 5%;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    animation: floatShape3 18s ease-in-out infinite
}

.light-beam {
    position: absolute;
    width: 150%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .2), transparent);
    top: 70%;
    left: -25%;
    transform: rotate(-45deg);
    animation: beamGlow 8s ease-in-out infinite
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 5;
    animation: fadeSlideUp 1.2s ease-out
}

.section-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(212, 175, 55, .1), rgba(212, 175, 55, .2), rgba(212, 175, 55, .1));
    color: #d4af37;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 24px;
    font-family: Poppins, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(212, 175, 55, .2);
    position: relative;
    overflow: hidden
}

.section-badge:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transform: rotate(45deg);
    animation: badgeShine 3s ease-in-out infinite
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px
}

.section-header h2 span,
h1 span {
    color: #d4af37;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(212, 175, 55, .3)
}

.header-underline {
    width: 100px;
    height: 3px;
    background-color: rgba(212, 175, 55, .3);
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden
}

.benefit-card:before,
.line-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.line-glow {
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    animation: lineSlide 3s infinite
}

.benefit-card p,
.section-intro {
    color: #f3f4f6;
    line-height: 1.7;
    opacity: .9
}

.section-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem
}

.benefits-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr))
}

.benefit-card:before {
    content: "";
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, .03), transparent);
    z-index: -1
}

.benefit-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center
}

.benefit-card:hover .icon-bg {
    background: linear-gradient(45deg, rgba(212, 175, 55, .1), rgba(212, 175, 55, .2));
    box-shadow: 0 0 20px rgba(212, 175, 55, .3)
}

.benefit-card h3,
.feather {
    position: relative;
    transition: all .3s ease
}

.feather {
    width: 40px;
    height: 40px;
    color: #d4af37;
    z-index: 2
}

.benefit-card:hover .feather {
    transform: scale(1.1);
    color: #f3f4f6
}

.benefit-card h3 {
    font-family: Poppins, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 15px
}

.benefit-card:hover h3,
.service-card:hover h3 {
    color: #d4af37;
    transform: translateX(5px)
}

.benefit-card p {
    font-size: 1rem;
    margin-bottom: 0
}

.benefit-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37);
    transition: width .4s ease
}

.benefit-card:hover .benefit-hover-effect {
    width: 100%
}

.why-us-cta {
    text-align: center;
    position: relative;
    padding: 50px 0 20px
}

@media screen and (max-width:1200px) {
    .why-us-section {
        padding: 100px 0 80px
    }

    .section-header h2 {
        font-size: 2.8rem
    }
}

@media screen and (max-width:768px) {
    .section-header h2 {
        font-size: 2.3rem
    }

    .benefit-card {
        padding: 30px 25px
    }
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px
}

.benefit-card {
    background: rgba(31, 41, 55, .5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    transition: all .5s cubic-bezier(.175, .885, .32, 1.275);
    border: 1px solid rgba(212, 175, 55, .1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
    z-index: 1
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, .25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .2)
}

@media screen and (max-width:1200px) {
    .benefits-container {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width:768px) {
    .benefits-container {
        grid-template-columns: 1fr
    }

    .section-header h2 {
        font-size: 2.2rem
    }
}

.orbital-ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(212, 175, 55, .15);
    border-radius: 50%;
    top: 10%;
    right: -150px;
    animation: rotate 80s linear infinite
}

.orbital-ring.delayed,
.service-orbital-ring.delayed {
    width: 350px;
    height: 350px;
    border-color: rgba(212, 175, 55, .08)
}

.orbital-ring.delayed {
    top: 30%;
    right: -80px;
    animation: rotate 60s linear infinite reverse
}

.services-section {
    position: relative;
    width: 100%;
    padding: 130px 0 100px;
    background-color: #0a111d;
    overflow: hidden;
    z-index: 1
}

.services-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none
}

.service-orbital-ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(212, 175, 55, .15);
    border-radius: 50%;
    top: 5%;
    left: -200px;
    animation: rotate 80s linear infinite reverse;
    will-change: transform
}

.service-orbital-ring.delayed {
    top: 60%;
    left: -100px;
    animation: rotate 60s linear infinite
}

.service-floating-shape {
    position: absolute;
    background-color: rgba(31, 41, 55, .4);
    border: 1px solid rgba(212, 175, 55, .2);
    z-index: 2;
    will-change: transform
}

.service-floating-shape.shape-1 {
    width: 70px;
    height: 70px;
    top: 15%;
    right: 10%;
    transform-style: preserve-3d;
    animation: floatShape1 25s ease-in-out infinite
}

.service-floating-shape.shape-2 {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    bottom: 10%;
    right: 5%;
    animation: floatShape2 30s ease-in-out infinite
}

.service-light-beam {
    position: absolute;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .2), transparent);
    top: 30%;
    transform: rotate(-5deg);
    animation: beamGlow 8s ease-in-out infinite
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px
}

.service-card {
    background: rgba(31, 41, 55, .5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all .5s cubic-bezier(.175, .885, .32, 1.275);
    border: 1px solid rgba(212, 175, 55, .1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .3);
    z-index: 2;
    animation: fadeSlideUp .8s ease-out backwards
}

.service-card:nth-child(1) {
    animation-delay: .1s
}

.service-card:nth-child(2) {
    animation-delay: .2s
}

.service-card:nth-child(3) {
    animation-delay: .3s
}

.service-card:nth-child(4) {
    animation-delay: .4s
}

.service-card:nth-child(5) {
    animation-delay: .5s
}

.service-card:nth-child(6) {
    animation-delay: .6s
}

.service-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, .03), transparent);
    z-index: -1
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, .3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4)
}

.service-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center
}

.icon-pulse {
    border: 1px solid rgba(212, 175, 55, .3)
}

.service-card:hover .icon-bg {
    background: linear-gradient(45deg, rgba(212, 175, 55, .1), rgba(212, 175, 55, .2));
    box-shadow: 0 0 20px rgba(212, 175, 55, .3)
}

.service-card .feather {
    width: 30px;
    height: 30px;
    color: #d4af37;
    z-index: 2
}

.service-card:hover .feather {
    transform: scale(1.1);
    color: #f3f4f6
}

.icon-text {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background-color: #d4af37;
    color: #111827;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: .8rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(212, 175, 55, .5)
}

.express-text h3,
.service-card h3 {
    font-family: Poppins, sans-serif;
    color: #f3f4f6
}

.service-card .feather,
.service-card h3 {
    position: relative;
    transition: all .3s ease
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px
}

.express-text p,
.service-card p {
    color: #f3f4f6;
    margin-bottom: 0;
    max-width: none
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: .85
}

.service-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37);
    transition: width .4s ease
}

.service-card:hover .service-hover-effect {
    width: 100%
}

.express-service {
    background: linear-gradient(135deg, rgba(31, 41, 55, .6), rgba(31, 41, 55, .4));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    margin: 60px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
    border: 1px solid rgba(212, 175, 55, .2);
    animation: fadeSlideUp .8s ease-out .7s backwards
}

.express-content {
    display: flex;
    align-items: center;
    padding: 35px;
    position: relative;
    z-index: 2
}

.express-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #d4af37, #e5c158);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, .4);
    flex-shrink: 0
}

.express-icon .feather {
    width: 35px;
    height: 35px;
    color: #111827
}

.express-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px
}

.express-text p {
    font-size: 1.1rem;
    opacity: .9
}

.express-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, .3)0, rgba(212, 175, 55, 0) 70%);
    border-radius: 0 0 0 100%;
    opacity: .6
}

.services-cta {
    text-align: center;
    position: relative;
    padding: 30px 0;
    animation: fadeSlideUp .8s ease-out .8s backwards
}

.cta-glow {
    position: absolute;
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, .3)0, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(20px);
    animation: ctaGlow 4s ease-in-out infinite
}

@media screen and (max-width:1200px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr)
    }

    .services-section {
        padding: 100px 0 80px
    }
}

@media screen and (max-width:768px) {
    .services-container {
        grid-template-columns: 1fr
    }

    .section-header h2 {
        font-size: 2.2rem
    }

    .service-card {
        padding: 30px 25px
    }

    .express-content {
        flex-direction: column;
        text-align: center
    }

    .express-icon {
        margin-right: 0;
        margin-bottom: 20px
    }

    .service-floating-shape,
    .service-orbital-ring {
        display: none
    }
}

.workflow-section {
    position: relative;
    width: 100%;
    padding: 130px 0 100px;
    background-color: #0c131f;
    overflow: hidden;
    z-index: 1
}

.workflow-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none
}

.workflow-orbital-ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(212, 175, 55, .15);
    border-radius: 50%;
    top: 10%;
    right: -200px;
    animation: rotate 80s linear infinite;
    will-change: transform
}

.workflow-orbital-ring.delayed {
    width: 350px;
    height: 350px;
    top: 70%;
    right: -100px;
    border-color: rgba(212, 175, 55, .08);
    animation: rotate 60s linear infinite reverse
}

.workflow-floating-shape {
    position: absolute;
    background-color: rgba(31, 41, 55, .4);
    border: 1px solid rgba(212, 175, 55, .2);
    z-index: 2;
    will-change: transform
}

.workflow-floating-shape.shape-1 {
    width: 90px;
    height: 90px;
    border-radius: 30%;
    top: 25%;
    left: 5%;
    transform-style: preserve-3d;
    animation: floatShape1 25s ease-in-out infinite
}

.workflow-floating-shape.shape-2 {
    width: 120px;
    height: 120px;
    border-radius: 6px;
    transform: rotate(45deg);
    bottom: 15%;
    left: 10%;
    animation: floatShape2 30s ease-in-out infinite
}

.workflow-light-beam {
    position: absolute;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .2), transparent);
    top: 60%;
    transform: rotate(5deg);
    animation: beamGlow 8s ease-in-out infinite
}

.workflow-timeline {
    position: relative;
    margin: 50px 0;
    padding-left: 30px
}

.workflow-step {
    position: relative;
    padding-bottom: 60px;
    z-index: 2;
    animation: fadeSlideUp .8s ease-out backwards
}

.workflow-step:nth-child(1) {
    animation-delay: .1s
}

.workflow-step:nth-child(2) {
    animation-delay: .3s
}

.workflow-step:nth-child(3) {
    animation-delay: .5s
}

.workflow-step:nth-child(4) {
    animation-delay: .7s
}

.workflow-step:last-child {
    padding-bottom: 30px
}

.step-connector {
    position: absolute;
    left: -30px;
    top: 0;
    height: 100%;
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.connector-line {
    position: absolute;
    top: 40px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, rgba(212, 175, 55, .7), rgba(212, 175, 55, .2));
    z-index: 1
}

.workflow-step:last-child .connector-line {
    background: linear-gradient(to bottom, rgba(212, 175, 55, .7), rgba(212, 175, 55, 0))
}

.connector-dot,
.connector-dot span {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3
}

.connector-dot span {
    width: 26px;
    height: 26px;
    background-color: #d4af37;
    color: #111827;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: .9rem;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(212, 175, 55, .5);
    transition: all .3s ease
}

.dot-pulse,
.step-content:before {
    position: absolute;
    width: 100%;
    height: 100%
}

.dot-pulse {
    border-radius: 50%;
    background: rgba(212, 175, 55, .2);
    animation: pulse 3s infinite;
    z-index: 1
}

.step-content {
    background: rgba(31, 41, 55, .5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px 30px;
    margin-left: 20px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, .1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .3);
    transition: all .5s cubic-bezier(.175, .885, .32, 1.275);
    overflow: hidden
}

.step-content:hover {
    transform: translateX(10px);
    border-color: rgba(212, 175, 55, .3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4)
}

.step-content:before {
    content: "";
    top: 0;
    left: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, .03), transparent);
    z-index: -1
}

.step-header,
.step-icon {
    display: flex;
    align-items: center
}

.step-header {
    margin-bottom: 15px
}

.step-icon {
    position: relative;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    justify-content: center;
    flex-shrink: 0
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(31, 41, 55, .8), rgba(45, 55, 72, .8));
    border: 1px solid rgba(212, 175, 55, .3);
    transition: all .3s ease
}

.step-content:hover .icon-bg {
    background: linear-gradient(45deg, rgba(212, 175, 55, .1), rgba(212, 175, 55, .2));
    box-shadow: 0 0 20px rgba(212, 175, 55, .3)
}

.step-header h3,
.step-icon .feather {
    position: relative;
    transition: all .3s ease
}

.step-icon .feather {
    width: 24px;
    height: 24px;
    color: #d4af37;
    z-index: 2
}

.step-content:hover .feather {
    transform: scale(1.1);
    color: #f3f4f6
}

.step-header h3 {
    font-family: Poppins, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #f3f4f6;
    margin: 0
}

.contact-info-content a:hover,
.step-content:hover h3 {
    color: #d4af37
}

.step-description p {
    color: #f3f4f6;
    font-size: 1rem;
    line-height: 1.6;
    opacity: .85;
    margin-bottom: 0
}

.workflow-cta {
    margin-top: 60px;
    justify-content: space-between;
    padding: 30px;
    background: linear-gradient(135deg, rgba(31, 41, 55, .6), rgba(31, 41, 55, .4));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, .2);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
    animation: fadeSlideUp .8s ease-out .9s backwards
}

.timeline-end-icon,
.workflow-cta,
.workflow-timeline-end {
    display: flex;
    align-items: center
}

.timeline-end-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    justify-content: center;
    background: linear-gradient(45deg, #d4af37, #e5c158);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(212, 175, 55, .4)
}

.timeline-end-icon .feather {
    width: 30px;
    height: 30px;
    color: #111827;
    position: relative;
    z-index: 2
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(212, 175, 55, .2);
    animation: pulse 3s infinite
}

.btn-cta,
.timeline-end-text h4 {
    font-family: Poppins, sans-serif;
    font-weight: 600
}

.timeline-end-text h4 {
    font-size: 1.3rem;
    color: #f3f4f6;
    margin: 0 0 5px
}

.timeline-end-text p {
    font-size: 1rem;
    color: #f3f4f6;
    opacity: .9;
    margin: 0
}

.btn-cta {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(45deg, #d4af37, #e5c158, #d4af37);
    background-size: 200% 200%;
    color: #111827;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    border: 0;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, .4);
    position: relative;
    overflow: hidden;
    animation: buttonGradient 3s ease infinite;
    z-index: 2;
    white-space: nowrap
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, .6)
}

.btn-cta:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transform: rotate(45deg);
    animation: btnShine 3s ease-in-out infinite
}

@media screen and (max-width:992px) {
    .workflow-cta {
        flex-direction: column;
        text-align: center
    }

    .workflow-timeline-end {
        margin-bottom: 25px
    }

    .timeline-end-icon {
        margin-right: 15px
    }
}

@media screen and (max-width:768px) {
    .workflow-section {
        padding: 100px 0 80px
    }

    .workflow-step {
        padding-bottom: 50px
    }

    .section-header h2 {
        font-size: 2.2rem
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start
    }

    .step-icon {
        margin-bottom: 15px
    }

    .workflow-timeline {
        padding-left: 20px
    }

    .step-connector {
        left: -20px
    }

    .workflow-floating-shape,
    .workflow-orbital-ring {
        display: none
    }
}

@media screen and (max-width:576px) {
    .workflow-step {
        padding-bottom: 40px
    }

    .step-content {
        padding: 20px
    }

    .step-header h3 {
        font-size: 1.2rem
    }

    .workflow-cta {
        padding: 25px 20px
    }

    .timeline-end-text h4 {
        font-size: 1.1rem
    }

    .btn-cta {
        padding: 14px 30px;
        font-size: 1rem
    }
}

.contact-cta-section {
    position: relative;
    width: 100%;
    padding: 150px 0;
    background-color: #0e1525;
    overflow: hidden;
    z-index: 1
}

.contact-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none
}

.contact-orbital-ring {
    position: absolute;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(212, 175, 55, .1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 120s linear infinite;
    will-change: transform
}

.contact-floating-shape {
    position: absolute;
    background-color: rgba(31, 41, 55, .4);
    border: 1px solid rgba(212, 175, 55, .2);
    z-index: 2;
    will-change: transform
}

.contact-floating-shape.shape-1 {
    width: 120px;
    height: 120px;
    border-radius: 38%;
    top: 15%;
    left: 15%;
    transform-style: preserve-3d;
    animation: floatShape1 30s ease-in-out infinite
}

.contact-floating-shape.shape-2 {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    transform: rotate(30deg);
    bottom: 20%;
    right: 20%;
    animation: floatShape2 25s ease-in-out infinite
}

.contact-light-beam {
    position: absolute;
    height: 1px;
    width: 150%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .15), transparent);
    top: 40%;
    left: -25%;
    transform: rotate(-5deg);
    animation: beamGlow 10s ease-in-out infinite
}

.contact-light-beam.secondary {
    top: 65%;
    animation-delay: 5s;
    opacity: .5
}

.star-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 50%;
    animation: starTwinkle 4s ease-in-out infinite
}

.star:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s
}

.star:nth-child(2) {
    top: 30%;
    left: 85%;
    animation-delay: .5s
}

.star:nth-child(3) {
    top: 65%;
    left: 15%;
    animation-delay: 1s
}

.star:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 1.5s
}

.star:nth-child(5) {
    top: 25%;
    left: 30%;
    animation-delay: 2s
}

.star:nth-child(6) {
    top: 45%;
    left: 90%;
    animation-delay: 2.5s
}

.star:nth-child(7) {
    top: 75%;
    left: 40%;
    animation-delay: 3s
}

.star:nth-child(8) {
    top: 15%;
    left: 60%;
    animation-delay: 3.5s
}

.contact-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(31, 41, 55, .8), rgba(23, 33, 47, .9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px;
    border: 1px solid rgba(212, 175, 55, .2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .5);
    z-index: 2;
    overflow: hidden;
    animation: fadeSlideUp 1s ease-out backwards
}

.contact-glow {
    position: absolute;
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, .2)0, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(30px);
    opacity: .8;
    z-index: 1
}

.contact-content {
    position: relative;
    z-index: 2;
    text-align: center
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d4af37, #e5c158);
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, .5);
    position: relative;
    overflow: hidden
}

.contact-icon:before {
    transform: rotate(45deg);
    animation: iconShine 3s ease-in-out infinite
}

.contact-icon .feather {
    width: 40px;
    height: 40px;
    color: #111827
}

.contact-heading {
    font-family: Poppins, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 30px;
    line-height: 1.2
}

.contact-heading span {
    color: #d4af37;
    position: relative
}

.contact-form-heading span:after,
.contact-heading span:after,
.faq-heading span:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent)
}

.contact-text {
    font-size: 1.3rem;
    color: #f3f4f6;
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: .95
}

.contact-subtext {
    font-size: 1.1rem;
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 40px
}

.contact-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px
}

.contact-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: pulse 3s infinite
}

.contact-highlight span {
    font-size: 1.1rem;
    color: #f3f4f6;
    font-weight: 500
}

.arrow-icon {
    color: #d4af37;
    animation: arrowBounce 2s infinite
}

.btn-contact {
    font-family: Poppins, sans-serif;
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(45deg, #d4af37, #e5c158, #d4af37);
    background-size: 200% 200%;
    color: #111827;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 0;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 15px 30px rgba(212, 175, 55, .5);
    position: relative;
    overflow: hidden;
    animation: buttonGradient 3s ease infinite;
    z-index: 2;
    letter-spacing: .5px
}

.btn-contact:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, .7)
}

.btn-contact:after,
.contact-icon:before,
.faq-icon:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent)
}

.btn-contact:after {
    transform: rotate(45deg);
    animation: btnShine 3s ease-in-out infinite
}

@media screen and (max-width:992px) {
    .contact-card {
        max-width: 90%;
        padding: 50px 40px
    }

    .contact-heading {
        font-size: 2.4rem
    }
}

@media screen and (max-width:768px) {
    .contact-cta-section {
        padding: 100px 0
    }

    .contact-card {
        padding: 40px 30px
    }

    .contact-heading {
        font-size: 2rem
    }

    .contact-text {
        font-size: 1.1rem
    }

    .contact-subtext {
        font-size: 1rem
    }

    .btn-contact {
        padding: 16px 40px;
        font-size: 1.1rem
    }

    .contact-icon {
        width: 70px;
        height: 70px
    }

    .contact-icon .feather {
        width: 35px;
        height: 35px
    }

    .contact-floating-shape,
    .contact-orbital-ring {
        display: none
    }
}

@media screen and (max-width:576px) {
    .contact-card {
        padding: 35px 25px
    }

    .contact-heading,
    .contact-text {
        font-size: 1.8rem;
        margin-bottom: 20px
    }

    .contact-text {
        font-size: 1rem
    }

    .contact-subtext {
        font-size: .95rem;
        margin-bottom: 30px
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px
    }

    .contact-icon .feather {
        width: 30px;
        height: 30px
    }

    .btn-contact {
        padding: 14px 36px;
        font-size: 1rem
    }
}

.faq-section {
    position: relative;
    width: 100%;
    padding: 150px 0;
    background-color: #0a1020;
    overflow: hidden;
    z-index: 1
}

.faq-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none
}

.faq-floating-shape,
.faq-orbital-ring {
    position: absolute;
    will-change: transform
}

.faq-orbital-ring {
    width: 800px;
    height: 800px;
    border: 1px solid rgba(212, 175, 55, .1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 120s linear infinite
}

.faq-floating-shape {
    background-color: rgba(31, 41, 55, .4);
    border: 1px solid rgba(212, 175, 55, .2);
    z-index: 2
}

.faq-floating-shape.shape-1 {
    width: 120px;
    height: 120px;
    border-radius: 38%;
    top: 15%;
    right: 15%;
    transform-style: preserve-3d;
    animation: floatShape1 30s ease-in-out infinite
}

.faq-floating-shape.shape-2 {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    transform: rotate(30deg);
    bottom: 20%;
    left: 20%;
    animation: floatShape2 25s ease-in-out infinite
}

.faq-light-beam {
    position: absolute;
    height: 1px;
    width: 150%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .15), transparent);
    top: 30%;
    left: -25%;
    transform: rotate(-5deg);
    animation: beamGlow 10s ease-in-out infinite
}

.faq-light-beam.secondary {
    top: 70%;
    animation-delay: 5s;
    opacity: .5
}

.faq-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 60px
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d4af37, #e5c158);
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, .5);
    position: relative;
    overflow: hidden
}

.faq-icon:before {
    animation: iconShine 3s ease-in-out infinite
}

.faq-icon .feather {
    width: 40px;
    height: 40px;
    color: #111827
}

.faq-heading {
    font-family: Poppins, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 20px;
    line-height: 1.2
}

.faq-heading span {
    color: #d4af37;
    position: relative
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #f3f4f6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: .9
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.faq-item {
    background: linear-gradient(135deg, rgba(31, 41, 55, .8), rgba(23, 33, 47, .9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, .2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
    overflow: hidden;
    transition: all .3s ease
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .4);
    border-color: rgba(212, 175, 55, .4)
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative
}

.faq-question span {
    font-family: Poppins, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f3f4f6
}

.faq-toggle,
.faq-toggle .feather {
    width: 24px;
    height: 24px;
    transition: all .3s ease
}

.faq-toggle {
    position: relative
}

.faq-toggle .feather {
    color: #d4af37
}

.btn-faq:after,
.faq-icon:before,
.faq-item.active .faq-toggle {
    transform: rotate(45deg)
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all .4s ease
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    max-height: 300px
}

.faq-answer p {
    color: #d1d5db;
    font-size: 1.1rem;
    line-height: 1.6
}

.btn-faq,
.faq-cta {
    position: relative;
    z-index: 2
}

.faq-cta,
.faq-cta p {
    width: 100%;
    text-align: center
}

.faq-cta {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.faq-cta p {
    font-size: 1.2rem;
    color: #f3f4f6;
    margin-bottom: 30px
}

.btn-faq {
    font-family: Poppins, sans-serif;
    display: inline-block;
    padding: 16px 42px;
    background: linear-gradient(45deg, #d4af37, #e5c158, #d4af37);
    background-size: 200% 200%;
    color: #111827;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 0;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 15px 30px rgba(212, 175, 55, .5);
    overflow: hidden;
    animation: buttonGradient 3s ease infinite;
    letter-spacing: .5px
}

.btn-faq:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, .7)
}

.btn-faq:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    animation: btnShine 3s ease-in-out infinite
}

@media screen and (max-width:992px) {
    .faq-container {
        max-width: 90%
    }

    .faq-heading {
        font-size: 2.4rem
    }
}

@media screen and (max-width:768px) {
    .faq-section {
        padding: 100px 0
    }

    .faq-heading {
        font-size: 2rem
    }

    .btn-faq,
    .faq-question span,
    .faq-subtitle {
        font-size: 1.1rem
    }

    .faq-answer p {
        font-size: 1rem
    }

    .btn-faq {
        padding: 14px 38px
    }

    .faq-icon {
        width: 70px;
        height: 70px
    }

    .faq-icon .feather {
        width: 35px;
        height: 35px
    }

    .faq-floating-shape,
    .faq-orbital-ring {
        display: none
    }
}

@media screen and (max-width:576px) {
    .faq-heading {
        font-size: 1.8rem;
        margin-bottom: 15px
    }

    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 20px
    }

    .faq-question {
        padding: 20px
    }

    .faq-question span {
        font-size: 1rem
    }

    .faq-answer {
        padding: 0 20px
    }

    .faq-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px
    }

    .faq-icon .feather {
        width: 30px;
        height: 30px
    }

    .btn-faq {
        padding: 12px 32px;
        font-size: 1rem
    }
}

.contact-form-section {
    position: relative;
    width: 100%;
    padding: 150px 0;
    background-color: #060a15;
    overflow: hidden;
    z-index: 1
}

.contact-form-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none
}

.contact-form-orbital-ring {
    position: absolute;
    width: 1000px;
    height: 1000px;
    border: 1px solid rgba(212, 175, 55, .1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 150s linear infinite;
    will-change: transform
}

.contact-form-floating-shape {
    position: absolute;
    background-color: rgba(31, 41, 55, .4);
    border: 1px solid rgba(212, 175, 55, .2);
    z-index: 2;
    will-change: transform
}

.contact-form-floating-shape.shape-1 {
    width: 150px;
    height: 150px;
    border-radius: 30%;
    top: 10%;
    left: 10%;
    transform-style: preserve-3d;
    animation: floatShape1 35s ease-in-out infinite
}

.contact-form-floating-shape.shape-2 {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    transform: rotate(45deg);
    bottom: 15%;
    right: 15%;
    animation: floatShape2 30s ease-in-out infinite
}

.contact-form-light-beam {
    position: absolute;
    height: 1px;
    width: 200%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .15), transparent);
    top: 35%;
    left: -50%;
    transform: rotate(-7deg);
    animation: beamGlow 12s ease-in-out infinite
}

.contact-form-light-beam.secondary {
    top: 75%;
    animation-delay: 6s;
    opacity: .5
}

.star-field-contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.star-field-contact .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 50%;
    animation: starTwinkle 4s ease-in-out infinite
}

.star-field-contact .star:nth-child(1) {
    top: 15%;
    left: 25%;
    animation-delay: 0s
}

.star-field-contact .star:nth-child(2) {
    top: 35%;
    left: 80%;
    animation-delay: .5s
}

.star-field-contact .star:nth-child(3) {
    top: 60%;
    left: 10%;
    animation-delay: 1s
}

.star-field-contact .star:nth-child(4) {
    top: 85%;
    left: 75%;
    animation-delay: 1.5s
}

.star-field-contact .star:nth-child(5) {
    top: 20%;
    left: 35%;
    animation-delay: 2s
}

.star-field-contact .star:nth-child(6) {
    top: 40%;
    left: 95%;
    animation-delay: 2.5s
}

.star-field-contact .star:nth-child(7) {
    top: 70%;
    left: 45%;
    animation-delay: 3s
}

.star-field-contact .star:nth-child(8) {
    top: 10%;
    left: 65%;
    animation-delay: 3.5s
}

.contact-form-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 60px
}

.contact-form-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d4af37, #e5c158);
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, .5);
    position: relative;
    overflow: hidden
}

.contact-form-icon:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transform: rotate(45deg);
    animation: iconShine 3s ease-in-out infinite
}

.contact-form-icon .feather {
    width: 40px;
    height: 40px;
    color: #111827
}

.contact-form-heading {
    font-family: Poppins, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 20px;
    line-height: 1.2
}

.contact-form-heading span {
    color: #d4af37;
    position: relative
}

.contact-form-subtitle {
    font-size: 1.2rem;
    color: #f3f4f6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: .9
}

.contact-form-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 30px
}

.contact-form-info {
    flex: 1;
    min-width: 300px
}

.contact-form-wrapper {
    flex: 2;
    min-width: 350px
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, .8), rgba(23, 33, 47, .9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, .2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    position: relative;
    overflow: hidden;
    height: 100%
}

.contact-info-glow {
    position: absolute;
    width: 300px;
    height: 150px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, .2)0, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(30px);
    opacity: .8;
    z-index: 1
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 2
}

.contact-info-item:last-child {
    margin-bottom: 0
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(45deg, #d4af37, #e5c158);
    border-radius: 18px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(212, 175, 55, .3)
}

.contact-info-icon .feather {
    width: 28px;
    height: 28px;
    color: #111827
}

.contact-info-content {
    flex: 1
}

.contact-info-content h3 {
    font-family: Poppins, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 8px
}

.contact-info-content p {
    font-size: 1.1rem;
    color: #f3f4f6;
    line-height: 1.5
}

.contact-info-content a {
    color: #f3f4f6;
    text-decoration: none;
    transition: color .3s ease
}

.contact-form-card,
input,
textarea {
    border: 1px solid rgba(212, 175, 55, .2)
}

.contact-form-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, .8), rgba(23, 33, 47, .9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    position: relative;
    overflow: hidden
}

.contact-form-glow {
    position: absolute;
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, .15)0, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(30px);
    opacity: .8;
    z-index: 1
}

.contact-form {
    position: relative;
    z-index: 2
}

.form-group {
    margin-bottom: 25px
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #d4af37;
    margin-bottom: 8px
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #d4af37;
    opacity: .8;
    z-index: 2
}

.textarea-icon {
    top: 22px;
    transform: none
}

input,
textarea {
    width: 100%;
    padding: 16px 16px 16px 55px !important;
    background: rgba(17, 24, 39, .7);
    border-radius: 12px;
    font-size: 1rem;
    color: #fff !important;
    transition: all .3s ease
}

input:focus,
textarea:focus {
    outline: 0;
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, .2);
    background: rgba(17, 24, 39, .9);
    color: #fff
}

input::placeholder,
textarea::placeholder {
    color: rgba(243, 244, 246, .5)
}

textarea {
    min-height: 150px;
    resize: vertical
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, #d4af37, #e5c158, #d4af37);
    background-size: 200% 200%;
    color: #111827;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 12px;
    border: 0;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 15px 30px rgba(212, 175, 55, .4);
    position: relative;
    overflow: hidden;
    animation: buttonGradient 3s ease infinite
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, .6)
}

.btn-icon {
    width: 20px;
    height: 20px;
    color: #111827;
    transition: transform .3s ease
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px)
}

.btn-submit:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transform: rotate(45deg);
    animation: btnShine 3s ease-in-out infinite
}

@media screen and (max-width:992px) {
    .contact-form-container {
        flex-direction: column
    }

    .contact-form-heading {
        font-size: 2.4rem
    }

    .contact-form-card,
    .contact-info-card {
        padding: 30px
    }
}

@media screen and (max-width:768px) {
    .contact-form-section {
        padding: 100px 0
    }

    .contact-form-heading {
        font-size: 2rem
    }

    .contact-form-subtitle {
        font-size: 1.1rem
    }

    .contact-form-icon {
        width: 70px;
        height: 70px
    }

    .contact-form-icon .feather {
        width: 35px;
        height: 35px
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px
    }

    .contact-info-icon .feather {
        width: 24px;
        height: 24px
    }

    .contact-floating-shape,
    .contact-orbital-ring {
        display: none
    }
}

@media screen and (max-width:576px) {
    .contact-form-section {
        padding: 80px 0
    }

    .contact-form-heading {
        font-size: 1.8rem;
        margin-bottom: 15px
    }

    .contact-form-subtitle {
        font-size: 1rem;
        margin-bottom: 20px
    }

    .contact-form-card,
    .contact-info-card {
        padding: 25px 20px
    }

    .contact-info-content h3 {
        font-size: 1.1rem
    }

    .btn-submit,
    .contact-info-content p {
        font-size: 1rem
    }

    .form-group label {
        font-size: .95rem
    }

    @media screen and (max-width:576px) {

        input,
        textarea {
            padding: 14px 14px 14px 50px
        }
    }

    .btn-submit {
        padding: 14px
    }
}