/* ================================
   ABOUT PAGE CUSTOM STYLES
   Boostflow Neon Green Brand Theme
   ================================ */

/* ================================
   1. CUSTOM ANIMATIONS
   ================================ */

/* Neon Green Glow Pulse */
@keyframes neonPulse {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(68, 214, 44, 0.5),
            0 0 10px rgba(68, 214, 44, 0.3),
            0 0 15px rgba(68, 214, 44, 0.2);
    }

    50% {
        box-shadow: 0 0 10px rgba(68, 214, 44, 0.8),
            0 0 20px rgba(68, 214, 44, 0.5),
            0 0 30px rgba(68, 214, 44, 0.3);
    }
}

/* Timeline Drawing Animation */
@keyframes timelineDraw {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        height: 100%;
        opacity: 1;
    }
}

/* Icon Glow */
@keyframes iconGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(68, 214, 44, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(68, 214, 44, 0.8));
    }
}

/* Smooth Slide Up */
@keyframes smoothSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Number Counter (for stats) */
@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gradient Animation for CTA */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ================================
   2. BREADCRUMB SECTION
   ================================ */
.breadcrumb-area {
    background: #050505 !important;
    position: relative;
    overflow: hidden;
}

.breadcrumb-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(68, 214, 44, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.breadcrumb-area h2 {
    color: #fff !important;
}

.breadcrumb {
    background: linear-gradient(180deg, var(--primary-color) 0%, #2D5A1E 100%) !important;
}

.breadcrumb-item a {
    color: #000 !important;
}

.breadcrumb-item.active {
    color: rgba(0, 0, 0, 0.7) !important;
}

/* ================================
   3. ABOUT SECTION
   ================================ */
.about-area {
    background: #000 !important;
}

.about-area .section-title h5 {
    color: #ccc;
}

.about-area .section-title h2 {
    color: #fff;
}

.about-content h3 span {
    color: #44D62C !important;
    font-weight: 700;
}

.stats-icon {
    font-size: 30px !important;
    color: #44D62C !important;
}

.about-content h4 {
    color: #999;
}

/* Stats Animation */
.about-content2 .abcontent {
    transition: all 0.3s ease;
}

.about-content2 .abcontent:hover {
    transform: translateY(-5px);
}

.about-content2 .abcontent .text h3 {
    color: #44D62C !important;
    animation: countUp 0.6s ease-out;
}

.about-content2 .abcontent .text p {
    color: #999;
}

/* ================================
   4. MISSION/TIMELINE SECTION
   ================================ */
.misson-area {
    background: #050505 !important;
    padding: 100px 0;
}

.misson-area .section-title h5 {
    color: #44D62C !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.misson-area .section-title h2 {
    color: #fff;
}

/* Custom Timeline Styling */
.timeline ul {
    position: relative;
}

.timeline ul::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #44D62C 0%, rgba(68, 214, 44, 0.2) 100%);
    animation: timelineDraw 1.5s ease-out;
}

.timeline ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}

.timeline ul li .crl {
    position: absolute;
    left: -8px;
    top: 0;
    width: 18px;
    height: 18px;
    background: #000;
    border: 2px solid #44D62C;
    border-radius: 50%;
    z-index: 2;
}

.timeline ul li .crl span {
    display: block;
    width: 8px;
    height: 8px;
    background: #44D62C;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: neonPulse 2s infinite;
}

.timeline ul li h3 {
    color: #44D62C !important;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}

.timeline ul li p {
    color: #ccc;
}

/* ================================
   5. VISION SECTION
   ================================ */
.vision-area {
    background: #000 !important;
}

.vision-area .section-title h5 {
    color: #44D62C !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vision-area .section-title h2 {
    color: #fff;
}

.values-list h4,
.capability-title {
    color: #44D62C !important;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
}

.values-list p {
    color: #999;
}

/* ================================
   6. WHO ARE YOU SECTION
   ================================ */
.who-are-you {
    background: #050505 !important;
}

.who-are-you .section-title h5 {
    color: #ccc;
}

.who-are-you .section-title h2 {
    color: #fff;
}

.way-content {
    transition: all 0.3s ease;
}

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

.way-content .ano span i {
    animation: iconGlow 2s infinite;
}

.way-content .text h3 {
    color: #fff;
}

.way-content .text p {
    color: #999;
}

/* ================================
   7. TEAM SECTION
   ================================ */
.team-area {
    background: #050505 !important;
}

.team-area .section-title h5 {
    color: #ccc;
}

.team-area .section-title h2 {
    color: #fff;
}

.single-team {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.single-team:hover {
    transform: translateY(-10px);
}

.single-team .team-thumb .brd {
    position: relative;
    overflow: hidden;
    border: 2px solid #222;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.single-team:hover .team-thumb .brd {
    border-color: #44D62C;
    box-shadow: 0 10px 40px rgba(68, 214, 44, 0.2);
}

.single-team .team-thumb img {
    transition: all 0.4s ease;
    filter: grayscale(100%);
}

.single-team:hover .team-thumb img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.single-team .team-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 20px;
    border-radius: 0 0 16px 16px;
    position: relative;
    z-index: 2;
}

.single-team .team-info h4 a {
    color: #fff !important;
    transition: color 0.3s ease;
}

.single-team:hover .team-info h4 a {
    color: #44D62C !important;
}

/* Placeholder styling */
.single-team .team-thumb img[alt="Coming Soon"] {
    filter: grayscale(100%) brightness(0.3);
}

/* ================================
   8. FAQ SECTION
   ================================ */
.faq-area {
    background: #050505 !important;
}

.faq-area .section-title h5 {
    color: #ccc;
}

.faq-area .section-title h2 {
    color: #fff;
}

.faq-wrap .card {
    background: rgba(20, 20, 20, 0.4) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease;
}

.faq-wrap .card:hover {
    background: rgba(30, 30, 30, 0.6) !important;
    border-color: rgba(68, 214, 44, 0.4) !important;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.faq-wrap .card:has(.show) {
    border-color: #44D62C !important;
    background: linear-gradient(90deg, rgba(68, 214, 44, 0.05) 0%, rgba(0, 0, 0, 0) 100%) !important;
}

.faq-wrap .faq-btn {
    color: #fff !important;
}

.faq-wrap .faq-btn[aria-expanded="true"] {
    color: #44D62C !important;
}

.faq-wrap .number {
    color: #44D62C !important;
    transition: all 0.3s ease;
}

.faq-wrap .card:hover .number {
    animation: neonPulse 1s infinite;
}

.faq-wrap .card-body {
    color: #ccc !important;
}

/* ================================
   9. TESTIMONIAL SECTION
   ================================ */
.testimonial-area {
    background: #000 !important;
    background-image: none !important;
}

.testimonial-area .section-title h5 {
    color: #ccc;
}

.testimonial-area .section-title h2 {
    color: #fff;
}

.testimonial-area .section-title p {
    color: #999;
}

/* Glassmorphic Testimonials */
.single-testimonial {
    background: rgba(20, 20, 20, 0.4) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.single-testimonial:hover {
    background: rgba(30, 30, 30, 0.6) !important;
    border-color: rgba(68, 214, 44, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(68, 214, 44, 0.1);
    transform: translateY(-5px) scale(1.02);
}

.single-testimonial p {
    color: #bbb;
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
}

.single-testimonial .ta-info h6 {
    color: #fff;
    font-weight: 700;
    margin-top: 20px;
}

.single-testimonial .ta-info span {
    color: #44D62C;
    font-family: 'Fragment Mono', monospace;
    font-size: 12px;
    letter-spacing: 1px;
}

/* ================================
   10. WORK PROCESS SECTION
   ================================ */
/* ================================
   10. WORK PROCESS SECTION - PREMIUM AI REVISION
   ================================ */
.work-process-area {
    background: #050505 !important;
    position: relative;
    overflow: hidden;
}

/* Background ambient glow */
.work-process-area::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(68, 214, 44, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.work-process-area .container {
    position: relative;
    z-index: 1;
}

.work-process-area .section-title h5 {
    color: #44D62C !important;
    font-family: 'Fragment Mono', monospace;
    /* Techy font if available */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.work-process-area .section-title h2 {
    color: #fff;
    font-size: 3rem;
    /* Make it bolder */
    background: linear-gradient(90deg, #fff 0%, #aaa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Flex/Grid Container for Steps */
.work-process-area .box ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* RESET OLD STYLES from style.css */
.work-process-area .wpa-box {
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.work-process-area .wpa-box .box {
    background: none !important;
    border-radius: 0 !important;
}

.work-process-area .wpa-box ul li,
.work-process-area .box ul li {
    border-right: none !important;
    /* Kill the old separator */
}

@media (max-width: 991px) {
    .work-process-area .box ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .work-process-area .box ul {
        grid-template-columns: 1fr;
    }
}

/* Step Card Styling - Increased Specificity */
.work-process-area .box ul li {
    background: rgba(20, 20, 20, 0.4) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    /* Force override */
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align left for tech look */
    justify-content: flex-start;
    overflow: hidden;
}

/* Hover Effects */
.work-process-area .box ul li:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(30, 30, 30, 0.6) !important;
    border-color: rgba(68, 214, 44, 0.5) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(68, 214, 44, 0.1);
    /* Subtle neon glow */
}

/* Step Number Badge */
.work-process-area .setp {
    background: transparent;
    color: #44D62C;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Fragment Mono', monospace;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding: 6px 12px;
    border: 1px solid rgba(68, 214, 44, 0.3);
    border-radius: 4px;
    display: inline-block;
}

.work-process-area .box ul li:hover .setp {
    background: rgba(68, 214, 44, 0.1);
    border-color: #44D62C;
    box-shadow: 0 0 10px rgba(68, 214, 44, 0.2);
}

/* Step Title */
.work-process-area li h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff 0%, #aaa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Step Description */
.work-process-area li .content {
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
}

/* Decorative Corner Element */
.work-process-area li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent rgba(68, 214, 44, 0.1) transparent transparent;
    transition: all 0.3s ease;
    opacity: 0;
}

.work-process-area li:hover::after {
    opacity: 1;
    border-color: transparent #44D62C transparent transparent;
}

/* Premium Green Button */
.btn-premium-green {
    background: #44D62C !important;
    color: #000 !important;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: 0 0 15px rgba(68, 214, 44, 0.4);
    transition: all 0.3s ease;
}

.btn-premium-green:hover {
    background: #55ee3d !important;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(68, 214, 44, 0.6);
}

/* ================================
   11. CTA SECTION
   ================================ */
.cta-area {
    background: #000 !important;
    background-image: none !important;
}

.cta-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(68, 214, 44, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-area .section-title h2 {
    color: #fff;
}

.cta-area .section-title p {
    color: #ccc;
}

.slider-btn .btn {
    background: #44D62C !important;
    color: #000 !important;
    border: none;
    transition: all 0.3s ease;
}

.slider-btn .btn:hover {
    box-shadow: 0 0 20px rgba(68, 214, 44, 0.5),
        0 0 40px rgba(68, 214, 44, 0.3);
    transform: translateY(-2px);
}

/* ================================
   12. BRAND SECTION - Premium Design
   ================================ */
.partner-section-main {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%) !important;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Radial Glow Effect */
.partner-section-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(68, 214, 44, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Subtle Grid Overlay */
.partner-section-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(68, 214, 44, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(68, 214, 44, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

/* Container Layer */
.partner-section-main .container {
    position: relative;
    z-index: 2;
}

.partner-header h2 {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
}

.partner-logos-slider {
    padding: 40px 0;
    position: relative;
    z-index: 3;
}

.logo-slide {
    padding: 0 30px;
    outline: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-width: 140px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

.logo-slide img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(68, 214, 44, 0.3));
}

/* Slick Custom Styles for Smooth Scroll */
.partner-logos-slider .slick-track {
    display: flex !important;
    align-items: center !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .partner-section-main::before {
        width: 500px;
        height: 500px;
    }

    .partner-header h2 {
        font-size: 12px;
    }

    .logo-slide {
        padding: 0 20px;
    }

    .logo-slide img {
        max-width: 100px;
    }
}

/* ================================
   13. RESPONSIVE ADJUSTMENTS
   ================================ */
@media (max-width: 768px) {
    .timeline ul li {
        padding-left: 30px;
    }

    .timeline ul li .crl {
        left: -6px;
        width: 14px;
        height: 14px;
    }

    .timeline ul li .crl span {
        width: 6px;
        height: 6px;
    }
}

/* ================================
   14. PREMIUM HEADER DESIGN
   ================================ */

/* Glassmorphism Header */
/* Glassmorphism Header - RESET to match index.html */
.header-area.header {
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    position: absolute;
    /* Match index.html behavior if needed, or stick to default */
    top: 0;
    left: 0;
    /* Ensure it starts at edge */
    width: 100%;
    /* Ensure full width */
    z-index: 999;
    padding-top: 10px;
    /* Added subtle breathing room */
}

/* Remove hover effect that adds background */
.header-area.header:hover {
    background: transparent !important;
    border-bottom: none;
}

/* ================================
   GLOBAL HEADER STANDARDIZATION - ALL PAGES
   Enforced with !important for consistency
   ================================ */

/* Header Container Locks - Prevents Cross-Page Variations */
.header-area.header {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.header-area .container {
    max-width: 1200px !important;
    /* Lock container width */
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Column Width Enforcement */
.header-area .col-xl-2 {
    flex: 0 0 16.666667% !important;
    /* Lock logo column width */
    max-width: 16.666667% !important;
}

.header-area .col-xl-10 {
    flex: 0 0 83.333333% !important;
    /* Lock menu column width */
    max-width: 83.333333% !important;
}

/* Logo Enhancement - ENFORCED FOR ALL PAGES */
.header-area .logo,
header .logo,
.header .logo {
    position: relative;
    z-index: 10;
    margin-left: -8px !important;
    /* MICRO-ADJUSTMENT: Move logo 8px left for perfect alignment */
}

.header-area .logo img,
.header .logo img,
header .logo img,
#header-logo,
img#header-logo {
    max-height: 75px !important;
    /* Standardized to 75px across ALL pages */
    min-height: 75px !important;
    /* Prevents shrinking */
    width: auto !important;
    height: auto !important;
    transition: all 0.3s ease !important;
}

.header-area .logo img:hover,
.header .logo img:hover,
#header-logo:hover {
    transform: scale(1.05) !important;
    filter: drop-shadow(0 0 15px rgba(68, 214, 44, 0.4)) !important;
}

/* Modern Navigation Menu - ENFORCED FOR ALL PAGES */
.main-menu ul,
.header-area .main-menu ul,
header .main-menu ul,
nav#mobile-menu ul {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.main-menu ul li,
.header-area .main-menu ul li,
header .main-menu ul li,
nav#mobile-menu ul li {
    position: relative !important;
    margin: 0 30px !important;
    /* Standardized spacing */
    display: inline-block !important;
}

.main-menu ul li a,
.header-area .main-menu ul li a,
header .main-menu ul li a,
nav#mobile-menu ul li a,
.menu-outer ul li a {
    color: #fff !important;
    font-weight: 700 !important;
    /* Extra bold */
    font-size: 19px !important;
    /* Standardized to 19px */
    letter-spacing: 0.8px !important;
    padding: 14px 10px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-transform: uppercase !important;
    /* UPPERCASE for consistency */
    line-height: 1.2 !important;
}

/* Animated Underline Effect */
.main-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #44D62C, transparent);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-menu ul li a:hover::after,
.main-menu ul li.active a::after {
    width: 100%;
}

.main-menu ul li a:hover {
    color: #44D62C !important;
}

/* Dropdown Menu Styling */
.main-menu ul li.has-sub ul {
    background: rgba(17, 17, 17, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(68, 214, 44, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    margin-top: 15px;
}

.main-menu ul li.has-sub ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul li.has-sub ul li a {
    padding: 12px 25px;
    display: block;
    border-radius: 8px;
    margin: 5px 10px;
}

.main-menu ul li.has-sub ul li a:hover {
    background: rgba(68, 214, 44, 0.1);
    transform: translateX(5px);
}

/* Premium Button */
.login .btn3 {
    background: linear-gradient(135deg, #44D62C 0%, #2D5A1E 100%) !important;
    color: #000 !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(68, 214, 44, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.login .btn3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.login .btn3:hover::before {
    width: 300px;
    height: 300px;
}

.login .btn3:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(68, 214, 44, 0.5);
}

.login .btn3 i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.login .btn3:hover i {
    transform: rotate(45deg) scale(1.1);
}

/* Floating 3D Elements in Header */
.breadcrumb-area .animations-01,
.breadcrumb-area .animations-02 {
    animation: float3D 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(68, 214, 44, 0.3));
}

.breadcrumb-area .animations-01 {
    animation-delay: 0s;
}

.breadcrumb-area .animations-02 {
    animation-delay: 3s;
}

@keyframes float3D {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotateY(0deg);
    }

    25% {
        transform: translateY(-20px) translateX(10px) rotateY(90deg);
    }

    50% {
        transform: translateY(-10px) translateX(-10px) rotateY(180deg);
    }

    75% {
        transform: translateY(-25px) translateX(5px) rotateY(270deg);
    }
}

/* Breadcrumb Title Enhancement */
.breadcrumb-area .breadcrumb-title h2 {
    font-size: 72px !important;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #44D62C 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShine 3s linear infinite;
    text-shadow: 0 0 40px rgba(68, 214, 44, 0.3);
}

@keyframes gradientShine {
    to {
        background-position: 200% center;
    }
}

/* Enhanced Breadcrumb Navigation */
.breadcrumb {
    background: linear-gradient(135deg, #44D62C 0%, #2D5A1E 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(68, 214, 44, 0.3);
    padding: 8px 20px !important;
    border-radius: 50px !important;
}

.breadcrumb-item a {
    color: #000 !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb-item.active {
    color: rgba(0, 0, 0, 0.6) !important;
}

/* Mobile Menu Enhancement */
.mobile-menu {
    background: rgba(5, 5, 5, 0.98) !important;
    backdrop-filter: blur(20px);
}

/* Scroll Effect */
.header-area.header.scrolled {
    background: rgba(0, 0, 0, 0.98) !important;
    box-shadow: 0 10px 40px rgba(68, 214, 44, 0.2);
}

/* Particle Background for Header */
.breadcrumb-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(68, 214, 44, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(68, 214, 44, 0.3), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(68, 214, 44, 0.2), transparent),
        radial-gradient(2px 2px at 40% 80%, rgba(68, 214, 44, 0.3), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(68, 214, 44, 0.2), transparent);
    background-size: 200% 200%;
    animation: particleMove 20s linear infinite;
    pointer-events: none;
    opacity: 0.5;
}

@keyframes particleMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

/* Loading Bar Animation */
@keyframes loadingBar {
    0% {
        width: 0;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}

/* ================================
   15. ULTIMATE KINETIC AURORA HERO (PREMIUM)
   ================================ */

.ultimate-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    /* Premium height */
    min-height: 600px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -20px;
    perspective: 1000px;
}

/* --- Aurora Background --- */
#aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: #020202;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: blobFloat 20s infinite ease-in-out alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #0f3d0f, transparent 70%);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #1a5c1a, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #44D62C, transparent 80%);
    top: 40%;
    left: 40%;
    opacity: 0.3;
    animation: blobFloat 15s infinite ease-in-out reverse;
    mix-blend-mode: screen;
}

.aurora-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opactiy='0.1'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* --- Content Layer --- */
.hero-content-layer {
    position: relative;
    z-index: 10;
    transform-style: preserve-3d;
}

.ultimate-subtitle {
    display: block;
    font-size: 16px;
    color: #44D62C;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(68, 214, 44, 0.4);
}

/* Kinetic Text */
.kinetic-text {
    font-family: 'Outfit', sans-serif;
    font-size: 90px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 5px;
    perspective: 500px;
}

.kinetic-text .letter {
    display: inline-block;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, #fff 30%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.kinetic-text .spacer {
    width: 20px;
}

.kinetic-text .highlight {
    background: linear-gradient(to bottom, #44D62C 30%, #1a5c1a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: none;
    /* Reset previously added styles */
}

.kinetic-text:hover .letter {
    transform: rotateX(10deg);
    filter: drop-shadow(0 20px 30px rgba(68, 214, 44, 0.3));
}

.kinetic-text .letter:hover {
    transform: translateY(-10px) scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

/* Glass Decor */
.glass-shard {
    position: absolute;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: -1;
    border-radius: 20px;
    animation: shardFloat 10s infinite linear;
}

.shard-1 {
    width: 150px;
    height: 150px;
    top: -50px;
    left: 10%;
    transform: rotate(45deg);
    animation-duration: 25s;
}

.shard-2 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: 15%;
    transform: rotate(15deg);
    animation-duration: 18s;
    animation-direction: reverse;
}

@keyframes shardFloat {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    100% {
        transform: rotate(360deg) translate(20px, 20px);
    }
}

/* Glass Info Card */
.glass-info-card {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.glass-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(68, 214, 44, 0.3);
    box-shadow: 0 15px 50px rgba(68, 214, 44, 0.15);
}

.info-icon {
    width: 30px;
    height: 30px;
    background: rgba(68, 214, 44, 0.1);
    color: #44D62C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.info-text {
    color: #ccc;
    font-size: 14px;
    font-weight: 500;
}

/* Mouse Spotlight */
.mouse-spotlight {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.5s;
}

.ultimate-hero:hover .mouse-spotlight {
    opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .kinetic-text {
        font-size: 50px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .ultimate-hero {
        height: 500px;
    }

    .glass-shard {
        display: none;
    }
}

/* Font Size Increases for User Request */
#search {
    font-size: 18px !important;
}

.searchform button {
    font-size: 20px !important;
}

#cssmenu2 ul li a span {
    font-size: 20px !important;
    font-weight: 600;
}

#cssmenu3 ul li a {
    font-size: 18px !important;
}

/* Footer Font Size Increases */
.f-contact ul li .text a {
    font-size: 20px !important;
    font-weight: 600;
}

.f-contact ul li .text {
    font-size: 18px !important;
}

.subricbe h3 {
    font-size: 24px !important;
}

/* Ensure new neon icons blend with the background */
.animations-01 img,
.animations-02 img {
    mix-blend-mode: lighten;
}

/* ================================
   15. PREMIUM HERO ANIMATION SYSTEM
   ================================ */

/* Hero Container */
.services-hero {
    padding-top: 200px !important;
    padding-bottom: 150px !important;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #050505 100%);
    overflow: hidden;
    min-height: 600px !important;
}

/* Animation Layer Container */
.hero-animation-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* ===== GEOMETRIC SHAPES ===== */
.geo-shape {
    position: absolute;
    opacity: 0.15;
    filter: blur(1px);
}

/* Hexagons */
.geo-hex-1 {
    top: 15%;
    left: 10%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(68, 214, 44, 0.3) 0%, transparent 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float-rotate 15s ease-in-out infinite;
}

.geo-hex-2 {
    bottom: 20%;
    right: 15%;
    width: 90px;
    height: 90px;
    background: linear-gradient(225deg, rgba(68, 214, 44, 0.25) 0%, transparent 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float-rotate 20s ease-in-out infinite reverse;
    animation-delay: -5s;
}

/* Circles */
.geo-circle-1 {
    top: 30%;
    right: 20%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid rgba(68, 214, 44, 0.2);
    box-shadow: 0 0 40px rgba(68, 214, 44, 0.15), inset 0 0 30px rgba(68, 214, 44, 0.1);
    animation: pulse-scale 8s ease-in-out infinite;
}

.geo-circle-2 {
    bottom: 25%;
    left: 12%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(68, 214, 44, 0.15);
    box-shadow: 0 0 30px rgba(68, 214, 44, 0.1);
    animation: pulse-scale 10s ease-in-out infinite;
    animation-delay: -3s;
}

/* Triangles */
.geo-triangle-1 {
    top: 45%;
    left: 8%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(68, 214, 44, 0.12);
    animation: float-spin 18s linear infinite;
}

.geo-triangle-2 {
    top: 20%;
    right: 12%;
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 75px solid rgba(68, 214, 44, 0.1);
    animation: float-spin 25s linear infinite reverse;
    animation-delay: -7s;
}

/* ===== GLOWING PARTICLES ===== */
.glow-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 214, 44, 0.8) 0%, rgba(68, 214, 44, 0) 70%);
    box-shadow: 0 0 20px rgba(68, 214, 44, 0.5);
}

.gp-1 {
    top: 10%;
    left: 15%;
    width: 8px;
    height: 8px;
    animation: particle-float 12s ease-in-out infinite;
}

.gp-2 {
    top: 25%;
    right: 25%;
    width: 6px;
    height: 6px;
    animation: particle-float 15s ease-in-out infinite;
    animation-delay: -3s;
}

.gp-3 {
    bottom: 15%;
    left: 20%;
    width: 10px;
    height: 10px;
    animation: particle-float 10s ease-in-out infinite;
    animation-delay: -5s;
}

.gp-4 {
    bottom: 30%;
    right: 18%;
    width: 7px;
    height: 7px;
    animation: particle-float 13s ease-in-out infinite;
    animation-delay: -8s;
}

.gp-5 {
    top: 50%;
    left: 5%;
    width: 5px;
    height: 5px;
    animation: particle-float 16s ease-in-out infinite;
    animation-delay: -2s;
}

.gp-6 {
    top: 35%;
    right: 8%;
    width: 9px;
    height: 9px;
    animation: particle-float 14s ease-in-out infinite;
    animation-delay: -6s;
}

/* ===== ANIMATED GRID LINES ===== */
.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(68, 214, 44, 0.5) 50%, transparent 100%);
    filter: blur(1px);
}

.gl-1 {
    top: 20%;
    left: -100%;
    width: 100%;
    height: 1px;
    animation: scan-horizontal 10s linear infinite;
}

.gl-2 {
    top: 60%;
    left: -100%;
    width: 100%;
    height: 1px;
    animation: scan-horizontal 12s linear infinite;
    animation-delay: -4s;
}

.gl-3 {
    top: -100%;
    left: 30%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(68, 214, 44, 0.5) 50%, transparent 100%);
    animation: scan-vertical 15s linear infinite;
    animation-delay: -2s;
}

/* ===== RADIAL GLOW EFFECT ===== */
.radial-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(68, 214, 44, 0.15) 0%, transparent 70%);
    animation: pulse-glow 8s ease-in-out infinite;
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes float-rotate {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.15;
    }

    25% {
        transform: translate(15px, -20px) rotate(90deg);
        opacity: 0.25;
    }

    50% {
        transform: translate(30px, 0) rotate(180deg);
        opacity: 0.2;
    }

    75% {
        transform: translate(15px, 20px) rotate(270deg);
        opacity: 0.18;
    }
}

@keyframes pulse-scale {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

@keyframes float-spin {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.12;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.2;
    }

    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.12;
    }
}

@keyframes particle-float {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }

    25% {
        transform: translate(30px, -40px);
        opacity: 1;
    }

    50% {
        transform: translate(-20px, -80px);
        opacity: 0.8;
    }

    75% {
        transform: translate(-40px, -40px);
        opacity: 0.9;
    }
}

@keyframes scan-horizontal {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes scan-vertical {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* ===== TEXT STYLING ===== */
.services-hero .container {
    position: relative;
    z-index: 10;
}

.services-hero .breadcrumb-title h2 {
    font-size: 90px !important;
    line-height: 1;
    margin-bottom: 30px !important;
    color: #fff;
    text-shadow:
        0 0 30px rgba(68, 214, 44, 0.6),
        0 0 60px rgba(68, 214, 44, 0.4),
        0 10px 50px rgba(0, 0, 0, 0.8);
    animation: text-glow-pulse 3s ease-in-out infinite;
    position: relative;
}

@keyframes text-glow-pulse {

    0%,
    100% {
        text-shadow:
            0 0 30px rgba(68, 214, 44, 0.6),
            0 0 60px rgba(68, 214, 44, 0.4),
            0 10px 50px rgba(0, 0, 0, 0.8);
    }

    50% {
        text-shadow:
            0 0 40px rgba(68, 214, 44, 0.8),
            0 0 80px rgba(68, 214, 44, 0.6),
            0 10px 50px rgba(0, 0, 0, 0.8);
    }
}

.services-hero .breadcrumb-wrap {
    z-index: 10;
    position: relative;
}

/* Breadcrumb Navigation */
.breadcrumb-area .breadcrumb {
    background: rgba(68, 214, 44, 0.08) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(68, 214, 44, 0.25);
    padding: 12px 35px !important;
    display: inline-flex !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 32px rgba(68, 214, 44, 0.15);
}

.breadcrumb-area .breadcrumb-item a {
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.breadcrumb-area .breadcrumb-item a:hover {
    color: #44D62C !important;
    text-shadow: 0 0 15px rgba(68, 214, 44, 0.6);
    transform: translateY(-1px);
}

.breadcrumb-area .breadcrumb-item.active {
    color: #44D62C !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(68, 214, 44, 0.4);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(68, 214, 44, 0.6) !important;
    font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services-hero {
        padding-top: 120px !important;
        padding-bottom: 80px !important;
        min-height: 450px;
    }

    .services-hero .breadcrumb-title h2 {
        font-size: 50px !important;
    }

    .geo-hex-1,
    .geo-hex-2 {
        width: 60px;
        height: 60px;
    }

    .geo-circle-1,
    .geo-circle-2 {
        width: 80px;
        height: 80px;
    }

    .geo-triangle-1,
    .geo-triangle-2 {
        display: none;
    }

    .radial-glow-effect {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .services-hero .breadcrumb-title h2 {
        font-size: 36px !important;
    }

    .breadcrumb-area .breadcrumb {
        padding: 8px 20px !important;
    }
}