 
:root {
    --orange: #f6822d;
    --white: #ffffff;
    --black: #000000;
    --skyblue: #f0f7fc;
    --golden: #62a9cf;
    --h1: 52px;
}

/* custom design  */
body {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
.golden-text {
    color: var(--golden);
}
body a:hover {
    color: var(--golden);
}
.card-golden-bg {
    background-color: var(--golden);
}
.golden-bg {
    background: conic-gradient(at bottom right, #075985, #a5f3fc, #3f3f46);
    color: var(--black);
}

.golden-bg:hover {
    background: conic-gradient(at bottom right, #62a9cf, #75d5e0, #3f3f46);
}
.border {
    border-color: var(--black);
}
.golden-border {
    border: 3px solid var(--golden);
    border-bottom-right-radius: 70px;
}
body h3 {
    font-size: 18px;
    font-weight: 500;
}

body h1 {
    font-size: 32px;
    font-weight: 600;
}
body p {
    font-size: 16px;
}
body h2 {
    font-size: 25px;
    font-weight: 500;
}

/* 
==================================
        navbar design
==================================
*/
nav {
    font-size: 17px;
}
/* Hamburger animation */
.hamburger span {
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* Animation for dropdown */
.dropdown-animate {
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity 0.4s ease, transform 0.3s ease;
    pointer-events: none;
}
.group:hover .dropdown-animate {
    opacity: 1;
    pointer-events: auto;
}

.relative a {
    color: white;
}

.mobilemenu {
    margin-top: 72px;
}
.mobilemenu li i {
    color: var(--golden);
}
.mobilemenu li {
    color: #ffffff;
}
li i {
    color: var(--golden);
    font-size: 27px;
}
.visa {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.visa .row {
    float: none;
    margin: 0;
}

.visa ul {
    padding: 0;
}

.dropdown li,
.mobilemenu li {
    transition: transform 0.8s ease, margin-left 1s ease;
}

.dropdown li:hover,
.mobilemenu li:hover {
    margin-left: 8px;
    transform: translateX(8px);
    color: var(--golden);
}
.dropdown span {
    font-size: 16px;
}

.border-bottom {
    width: 100%;
    padding: 10px;
}

.dropdown-cards {
    position: relative;
    display: inline-block;
    padding: 1rem 1.5rem;
    margin: 0.5rem;
    border-radius: 16px;
    font-weight: 600;
    color: white;
    background: var(--golden);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Liquid morph effect using border-radius animation */
.dropdown-cards:hover {
    border-radius: 50% 10% 50% 10%;
    transform: scale(1.05);
    background: var(--golden);
}

/* Wave overlay animation */
.dropdown-cards::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.2) 20%,
        transparent 80%
    );
    transform: scale(0);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.dropdown-cards:hover::before {
    transform: scale(1);
    animation: wave 1s infinite linear;
}

@keyframes wave {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(45deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Add transition states */
.modal-animate {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.modal-animate.show {
    opacity: 1;
    transform: scale(1);
}

.text-shadow-md {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

#contactModal.active {
    display: flex;
}

/* Responsive tweaks */

@media (max-width: 1024px) {
    .visa {
        gap: 30px;
    }
}

@media (max-width: 720px) {
    .modal-content {
        flex-direction: column;
        height: 85vh;
        max-width: 420px;
    }
    .modal-left {
        flex: none;
        height: 35%;
        padding: 1.5rem;
        font-size: 0.9rem;
        text-align: center;
        background-position: center 40%;
    }
    .modal-left h2 {
        font-size: 1.3rem;
    }
    .modal-left h2 strong {
        font-size: 1.6rem;
        margin-top: 2px;
    }
    .services-list {
        max-width: 100%;
        gap: 0.7rem;
    }
    .close-btn {
        top: 6px;
        right: 6px;
        width: 28px;
        height: 28px;
        font-size: 18px;
        line-height: 28px;
    }
}

/* Service pills */
.service {
    background: rgba(255, 255, 255, 0.9);
    color: #0e0e0e;
    padding: 6px 12px;
    border-radius: 250px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s, color 0.3s;
    cursor: default;
    user-select: none;
}
.service:hover {
    background: #7ed0f7;
    color: white;
}

html,
body {
    overflow-x: hidden !important;
}
img {
    max-width: 100%;
    height: auto;
}

/* Circle Container */
.circle-container {
    position: relative;
    width: 320px;
    height: 320px;
    border: 3px solid #999;
    border-radius: 50%;
    margin: auto;
}
.circle-container img.main-country {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}
.rotating-flags {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}
.flag-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #111;
    font-weight: 500;
}
.flag-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.flag1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.flag2 {
    bottom: 58px;
    left: -1px;
    transform: translateY(-1%);
}
.flag3 {
    bottom: 58px;
    right: -1px;
    transform: translateZ(-1%);
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Ring Animation */
@keyframes ring {
    0% {
        transform: rotate(0);
    }
    10% {
        transform: rotate(15deg);
    }
    20% {
        transform: rotate(-15deg);
    }
    30% {
        transform: rotate(10deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(5deg);
    }
    60% {
        transform: rotate(-5deg);
    }
    70% {
        transform: rotate(2deg);
    }
    80% {
        transform: rotate(-2deg);
    }
    100% {
        transform: rotate(0);
    }
}
.animate-ring {
    display: inline-block;
    animation: ring 1s ease-in-out infinite;
}
@keyframes grow {
    from {
        width: 0;
    }
    to {
        width: var(--target-width);
    }
}
.animate-bar {
    animation: grow var(--duration) ease-in-out forwards;
}
/*
=======================================
     work permit pages css
=======================================
 */
.hero-bg {
    background-size: cover;
    background-position: center;
}
.section-title {
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
}
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: conic-gradient(at bottom right, #075985, #a5f3fc, #3f3f46);
    z-index: 1000;
    transition: width 0.2s ease;
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 
======================================
 romania work permit page css
======================================
*/

/* Custom Animations */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-delayed {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-slow {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-slow {
    0%,
    100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes bounce-slow {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-gentle {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

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

/* 3D Flip Card Styles */
.flip-card {
    perspective: 1000px;
    height: 300px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 1rem;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* Process Timeline Styles */
.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

@media (min-width: 1024px) {
    .process-step {
        flex: 1;
    }
}

/* Animation Classes */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 7s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-slow 8s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse-slow 4s ease-in-out infinite;
}

.animate-bounce-slow {
    animation: bounce-slow 3s ease-in-out infinite;
}

.animate-bounce-slow-delayed {
    animation: bounce-slow 3s ease-in-out infinite 1.5s;
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

.animate-fade-in-up {
    animation: fade-in-up 1s ease-out;
}

.animate-fade-in-up-delay {
    animation: fade-in-up 1s ease-out 0.3s both;
}

.animate-fade-in-up-delay-2 {
    animation: fade-in-up 1s ease-out 0.6s both;
}

.animate-pulse-gentle {
    animation: pulse-gentle 3s ease-in-out infinite;
}

.animate-shimmer {
    animation: shimmer 3s infinite;
}

/* Count Up Animation */
.count-up {
    font-variant-numeric: tabular-nums;
}

/* 
================================
portugal work permit page css
================================
*/

/* Cosmic Background */

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 4s infinite;
}

.star-1 {
    top: 20%;
    left: 10%;
    width: 2px;
    height: 2px;
    animation-delay: 0s;
}
.star-2 {
    top: 60%;
    left: 80%;
    width: 3px;
    height: 3px;
    animation-delay: 1s;
}
.star-3 {
    top: 40%;
    left: 40%;
    width: 1px;
    height: 1px;
    animation-delay: 2s;
}
.star-4 {
    top: 80%;
    left: 30%;
    width: 2px;
    height: 2px;
    animation-delay: 3s;
}
.star-5 {
    top: 30%;
    left: 70%;
    width: 1px;
    height: 1px;
    animation-delay: 4s;
}

.comet {
    position: absolute;
    top: 10%;
    right: -100px;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffff00);
    animation: comet 15s linear infinite;
}

/* 3D Floating Shapes */
.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.shape-triangle {
    top: 20%;
    right: 10%;
    width: 60px;
    height: 60px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape-circle {
    bottom: 30%;
    left: 10%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.shape-hexagon {
    top: 60%;
    right: 20%;
    width: 70px;
    height: 70px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

/* Cosmic Text Effect */
.cosmic-text {
    background: conic-gradient(at bottom right, #075985, #a5f3fc, #3f3f46);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cosmicShine 3s ease-in-out infinite;
}

/* Cosmic Globe */
.cosmic-globe-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.cosmic-globe {
    position: relative;
    width: 100%;
    height: 100%;
}

.globe-sphere {
    width: 300px;
    height: 300px;

    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 50px black;
    animation: globeRotate 20s linear infinite;
}

.globe-portugal {
    position: absolute;
    top: 45%;
    left: 48%;
    width: 20px;
    height: 20px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 20px #ff0000;
    animation: pulse 2s infinite;
}

.globe-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 350px;
    height: 350px;
    animation: ringRotate 15s linear infinite;
}
.ring-2 {
    width: 380px;
    height: 380px;
    animation: ringRotate 20s linear infinite reverse;
}
.ring-3 {
    width: 400px;
    height: 400px;
    animation: ringRotate 25s linear infinite;
}

.floating-data-points {
    position: absolute;
    inset: 0;
}

.data-point {
    position: absolute;
    display: flex;
    align-items: center;
    color: white;
    font-size: 12px;
    animation: dataPointFloat 6s ease-in-out infinite;
}

.dp-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}
.dp-2 {
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}
.dp-3 {
    bottom: 40%;
    left: 30%;
    animation-delay: 4s;
}
.dp-4 {
    bottom: 20%;
    right: 30%;
    animation-delay: 6s;
}

.point-glow {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px white;
    animation: pointPulse 2s infinite;
}

/* Cosmic Buttons */
.cosmic-button-primary,
.cosmic-button-secondary {
    position: relative;
     border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cosmic-button-primary {
    background: var(--golden);
    color: #1a3a1a;
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.3);
}

.cosmic-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px white;
}

.cosmic-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cosmic-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.button-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.cosmic-button-primary:hover .button-glow {
    transform: translateX(100%);
}

.cosmic-button-primary.large,
.cosmic-button-secondary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

/* Opportunity Cards */
.opportunity-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px white;
}

.card-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 0, 0.1),
        transparent
    );
    transition: left 0.6s;
}

.opportunity-card:hover .card-glow {
    left: 100%;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--black);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.opportunity-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a3a1a;
    margin-bottom: 1rem;
}

.opportunity-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.opportunity-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: black;
    font-weight: bold;
}

/* Process Visualization */
.process-visualization {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-path {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffff00, #00ff00);
    transform: translateY(-50%);
}

.process-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.step-marker {
    position: relative;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a3a1a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.marker-glow {
    position: absolute;
    inset: -5px;
    background: linear-gradient(45deg, #ffff00, #00ff00);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.step-marker:hover .marker-glow {
    opacity: 1;
}

.step-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-left: 2rem;
}

.step-features {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.step-features span {
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

/* Success Stories */
.success-story {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.success-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-map {
    position: relative;
    height: 120px;
    background: linear-gradient(45deg, #1a5f1a, #0f3f0f);
    padding: 1rem;
}

.map-line {
    position: absolute;
    height: 2px;
    background: #ffff00;
    top: 50%;
    left: 20%;
    right: 20%;
    transform: translateY(-50%);
}

.from-india {
    background: linear-gradient(90deg, #ff9933, #ffff00);
}
.from-brazil {
    background: linear-gradient(90deg, #009c3b, #ffff00);
}
.from-canada {
    background: linear-gradient(90deg, #ff0000, #ffff00);
}

.location {
    position: absolute;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
}

.location.from {
    left: 10%;
    top: 30%;
}
.location.to {
    right: 10%;
    bottom: 30%;
}

.story-content {
    padding: 2rem;
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-route {
    color: #ffff00;
    font-weight: bold;
    margin-bottom: 1rem;
}

.story-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Support Centers */
.support-center {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.support-center:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.center-pin {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
}

.americas {
    background: linear-gradient(45deg, #ff0000, #ffff00);
}
.europe {
    background: linear-gradient(45deg, #0038ff, #ffff00);
}
.asia {
    background: linear-gradient(45deg, #ff0000, #ffff00);
}
.middle-east {
    background: linear-gradient(45deg, #009900, #ffff00);
}

.center-pin::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid currentColor;
    animation: pinPulse 2s infinite;
}

.languages {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animations */
@keyframes twinkle {
    0%,
    100% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
}

@keyframes comet {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateX(-100vw) translateY(100vh);
        opacity: 0;
    }
}

@keyframes float-3d {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

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

@keyframes globeRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes ringRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes dataPointFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pointPulse {
    0%,
    100% {
        box-shadow: 0 0 10px #ffff00;
    }
    50% {
        box-shadow: 0 0 20px #ffff00, 0 0 30px #ffff00;
    }
}

@keyframes pinPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.animate-float-3d {
    animation: float-3d 6s ease-in-out infinite;
}
.animate-float-3d-delayed {
    animation: float-3d 7s ease-in-out infinite 2s;
}
.animate-float-3d-slow {
    animation: float-3d 8s ease-in-out infinite 4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cosmic-globe-container {
        width: 300px;
        height: 300px;
    }

    .globe-sphere {
        width: 200px;
        height: 200px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-content {
        margin-left: 0;
        margin-top: 1rem;
    }

    .step-features {
        flex-direction: column;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.scroll-arrow {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background: white;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Global Pattern */
.global-pattern {
    background-image: radial-gradient(
            circle at 20% 20%,
            rgba(255, 255, 0, 0.1) 2px,
            transparent 0
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(0, 255, 0, 0.1) 2px,
            transparent 0
        );
    background-size: 50px 50px;
}

/* Global Network */
.global-network {
    background-image: radial-gradient(
            circle at 10% 20%,
            rgba(255, 255, 0, 0.1) 1px,
            transparent 0
        ),
        radial-gradient(
            circle at 90% 40%,
            rgba(0, 255, 0, 0.1) 1px,
            transparent 0
        ),
        radial-gradient(
            circle at 30% 80%,
            rgba(255, 255, 0, 0.1) 1px,
            transparent 0
        ),
        radial-gradient(
            circle at 70% 10%,
            rgba(0, 255, 0, 0.1) 1px,
            transparent 0
        );
    background-size: 100px 100px;
}

.cosmic-title {
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cosmicShine 3s ease-in-out infinite;
}

.cosmic-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.count-up {
    font-variant-numeric: tabular-nums;
}

/* 
===============================
italy work permit page css
===============================
*/
.gradient-bg {
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
}

.vertical-steps .step {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.vertical-steps .step:not(:last-child):after {
    content: "";
    position: absolute;
    left: 25px;
    top: 70px;
    bottom: -2rem;
    width: 2px;
    background-color: #e9ecef;
    z-index: 1;
}

.vertical-steps .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.25rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.vertical-steps .step-content {
    flex-grow: 1;
    padding-bottom: 1rem;
}

.step-details {
    border-left: 3px solid var(--golden);
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card {
    transition: transform 0.3s ease;
}

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