/* ========== FROM: features-section.css ========== */
/* --------------------------------
   File: features-section.css for homepage2
   Description: Styles for the features section of homepage2
   Author: GitHub Copilot
   Date: April 25, 2025
   -------------------------------- */

/*------------------------------------*\
  #FEATURES SECTION
\*------------------------------------*/
.home2-features-section {
    position: relative;
    background-color: var(--home2-color-background);
    overflow: hidden;
    padding: var(--home2-section-spacing) 0;
}

.home2-features-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(30, 64, 175, 0.05), rgba(96, 165, 250, 0.03) 90%);
    z-index: 0;
}

.home2-features-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Added floating shapes decorative elements */
.home2-features-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.home2-floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.15;
    animation: float-animation 12s infinite ease-in-out;
}

.home2-floating-shape.shape1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--home2-color-primary), var(--home2-color-accent));
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.home2-floating-shape.shape2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--home2-color-secondary), var(--home2-color-tertiary));
    bottom: 15%;
    right: -5%;
    animation-delay: -3s;
}

.home2-floating-shape.shape3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--home2-color-accent), var(--home2-color-secondary));
    bottom: 30%;
    left: 10%;
    animation-delay: -6s;
}

@keyframes float-animation {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.home2-features-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Updated section badge styling */
.home2-section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--home2-color-primary); /* Changed to solid color */
    color: #FFFFFF; /* Setting text to white for consistency */
    font-weight: 700; /* Increased from 600 to 700 */
    font-size: 0.875rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3); /* Added text shadow */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Added subtle border */
    box-shadow: var(--home2-shadow);
}

.home2-badge-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    animation: pulse-glow 4s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.5;
        transform: scale(1);
    }
}

.home2-text-gradient {
    background: linear-gradient(135deg, var(--home2-color-primary), var(--home2-color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.home2-section-subtitle {
    color: var(--home2-color-text-light);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    margin-top: 1rem;
}

/* Added category buttons for filtering */
.home2-features-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.home2-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.home2-feature-card {
    position: relative;
    border-radius: var(--home2-radius-lg);
    overflow: hidden;
    transition: transform 0.5s var(--home2-transition-bezier), 
                box-shadow 0.5s var(--home2-transition-bezier);
    background-color: var(--home2-color-card-bg);
    box-shadow: var(--home2-shadow);
    height: 100%;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.home2-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--home2-shadow-lg);
}

.home2-feature-card-inner {
    position: relative;
    padding: 2rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    background-color: var(--home2-color-card-bg);
    border-radius: var(--home2-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

/* Header group for icon + title on same line */
.home2-feature-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
    min-height: 48px;
}

/* Added spotlight effect for card hover */
.home2-feature-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
                rgba(59, 130, 246, 0.1) 0%, 
                rgba(59, 130, 246, 0) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.home2-feature-card:hover .home2-feature-spotlight {
    opacity: 1;
}

.home2-feature-icon-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--home2-radius);
    transition: all 0.4s var(--home2-transition-bezier);
}

.home2-feature-icon-background {
    position: absolute;
    inset: 0;
    border-radius: var(--home2-radius);
    background-color: rgba(59, 130, 246, 0.1);
    transition: all 0.4s var(--home2-transition-bezier);
}

.home2-feature-card:hover .home2-feature-icon-wrapper {
    transform: scale(1.1) translateZ(20px);
}

.home2-feature-card:hover .home2-feature-icon-background {
    background-color: var(--home2-color-primary);
}

.home2-feature-icon {
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s var(--home2-transition-bezier);
    color: var(--home2-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home2-feature-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.4s var(--home2-transition-bezier);
}

.home2-feature-card:hover .home2-feature-icon {
    transform: scale(1.1) translateZ(10px);
    color: white;
}

.home2-feature-card:hover .home2-feature-icon svg {
    color: white;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.home2-feature-title {
    font-size: var(--home2-subheading-size);
    font-weight: 700;
    margin: 0;
    color: var(--home2-color-text);
    transition: transform 0.4s var(--home2-transition-bezier);
    flex: 1;
}

.home2-feature-card:hover .home2-feature-title {
    transform: translateZ(10px);
    color: var(--home2-color-primary);
}

/* Added feature tag styles */
.home2-feature-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--home2-color-primary);
    font-size: 0.75rem;
    border-radius: 1rem;
    margin-bottom: 0.625rem;
    margin-top: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 26px;
}

.home2-feature-card:hover .home2-feature-tag {
    background-color: var(--home2-color-primary);
    color: white;
    transform: translateZ(5px);
}

.home2-feature-description {
    color: var(--home2-color-text-light);
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 1.6;
    text-align: justify;
    transition: transform 0.4s ease;
}

.home2-feature-card:hover .home2-feature-description {
    transform: translateZ(5px);
}

/* Feature benefits list */
.home2-feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
    padding-top: 1rem;
}

.home2-feature-benefits li {
    color: var(--home2-color-text-light);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 0;
    text-align: justify;
    transition: all 0.3s ease;
}

.home2-feature-benefits li:last-child {
    margin-bottom: 0;
}

.home2-feature-card:hover .home2-feature-benefits li {
    color: var(--home2-color-text);
    transform: translateX(3px);
}

/* Added stats section styles */
.home2-features-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.home2-stat-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home2-stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--home2-color-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--home2-color-primary), var(--home2-color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.home2-stat-label {
    color: var(--home2-color-text-light);
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
}

/* Added CTA button styles */
.home2-features-cta {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.home2-cta-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: var(--home2-color-primary);
    color: white;
    font-weight: 600;
    border-radius: var(--home2-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    gap: 0.75rem;
}

.home2-cta-button-large:hover {
    background-color: var(--home2-color-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -10px rgba(59, 130, 246, 0.5);
}

.home2-cta-arrow {
    transition: transform 0.3s ease;
}

.home2-cta-button-large:hover .home2-cta-arrow {
    transform: translateX(5px);
}

.home2-cta-light-effect {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.home2-cta-button-large:hover .home2-cta-light-effect {
    left: 100%;
}

/* Animation classes */
.home2-reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.home2-reveal-on-scroll.reveal {
    opacity: 1;
    transform: translateY(0);
}

.home2-animation-delay-100 {
    transition-delay: 0.1s;
}

.home2-animation-delay-200 {
    transition-delay: 0.2s;
}

.home2-animation-delay-300 {
    transition-delay: 0.3s;
}

.home2-animation-delay-400 {
    transition-delay: 0.4s;
}

.home2-animation-delay-500 {
    transition-delay: 0.5s;
}

/* Tilt effect */
.home2-tilt-effect {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .home2-features-grid {
        grid-template-columns: 1fr;
    }
    
    .home2-feature-card {
        min-height: auto;
    }
    
    .home2-features-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .home2-features-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        justify-content: flex-start;
    }
    
}

/* --------------------------------
   Description: Styles for the GenStaff section of homepage2 (Apple-inspired design)
   Author: GitHub Copilot
   Date: April 26, 2025
   -------------------------------- */

/*------------------------------------*\
  #GENSTAFF SECTION - PREMIUM DESIGN
\*------------------------------------*/

.element-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: -150px;
    opacity: 0.3;
}

.element-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: -100px;
    opacity: 0.2;
}

.element-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 25%;
    opacity: 0.15;
}

.home2-container {
    position: relative;
    z-index: 5;
}

/* Premium header styling */

.home2-badge-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #4f46e5, #8b5cf6);
    border-radius: 50px;
    filter: blur(15px);
    opacity: 0.5;
    z-index: 1;
    animation: pulse 3s infinite;
}

.home2-section-title {
    margin: 0 0 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.home2-title-highlight {
    display: block;
    margin-bottom: 0.5rem;
}

.home2-title-accent {
    display: block;
    color: #8b5cf6;
    font-weight: 700;
    -webkit-text-fill-color: #8b5cf6;
}

.home2-text-accent {
    color: #a5b4fc;
    font-weight: 500;
}

/* Premium logo showcase */

.home2-tagline-accent {
    color: #a5b4fc;
    font-weight: 500;
}

/* Premium features grid */

.home2-feature-detail {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.home2-detail-highlight {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(to right, #4f46e5, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.home2-detail-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.home2-card-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(255, 255, 255, 0) 60%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
    z-index: -1;
}

/* Premium CTA */

.home2-cta-arrow-container {
    display: flex;
    align-items: center;
    margin-left: 15px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes glow-pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    
    .home2-section-title {
        font-size: 2.5rem;
    }
    
}

@media (max-width: 767px) {
    .home2-section-title {
        font-size: 2rem;
    }
}

