
/* Feature Section Modernization */

.feature-section.about-page .inner-container {
    position: relative;
    padding: 80px 40px;
    background: #002e5b; /* Deep Navy Background */
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
}

/* Rotating Globe Background */
.feature-section.about-page .shape-2 {
    position: absolute;
    left: -10%;
    top: -20%;
    width: 600px;
    height: 600px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    animation: rotateGlobe 60s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes rotateGlobe {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 3D Glassmorphism Success Card */
.success-card-wrapper {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.success-card {
    position: relative;
    width: 220px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: floatCard 4s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.success-card .stamp-glow {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.success-card .stamp-glow i {
    font-size: 35px;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.success-card h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}

.success-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-align: center;
    margin: 0;
}

/* Connecting Line */
.process-line {
    position: absolute;
    top: 110px;
    left: 300px;
    right: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.process-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    animation: moveLine 3s linear infinite;
}

@keyframes moveLine {
    0% { left: 0; width: 0; }
    50% { left: 0; width: 100%; }
    100% { left: 100%; width: 0; }
}

/* Feature Block Enhancements */
.feature-section.about-page .feature-block-one {
    position: relative;
    z-index: 5;
    transition: all 0.4s ease;
}

.feature-section.about-page .feature-block-one .inner-box {
    padding: 0;
    background: transparent;
}

.feature-section.about-page .feature-block-one .icon-box {
    position: relative;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 25px;
    font-size: 30px;
    color: #ffffff;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.feature-section.about-page .feature-block-one:hover .icon-box {
    transform: rotateY(180deg);
    background: var(--secondary-color);
    box-shadow: 0 0 30px rgba(255, 171, 0, 0.4);
}

.feature-section.about-page .feature-block-one:hover h3 a {
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.feature-section.about-page .feature-block-one h3 a {
    transition: all 0.3s ease;
}

/* Layout adjustments to accommodate Success Card */
.feature-section.about-page .inner-container .row {
    margin-left: 200px; /* Make space for the card */
}

@media (max-width: 1200px) {
    .success-card-wrapper {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 50px;
        display: flex;
        justify-content: center;
    }
    .feature-section.about-page .inner-container .row {
        margin-left: 0;
    }
}
