* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    padding-top: 0px!important;
}
/* ========== HERO SECTION STYLES (.hhs_) ========== */
.hhs_hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0c2461 0%, #1e3799 50%, #4a69bd 100%);
}

.hhs_background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hhs_world-map-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200" viewBox="0 0 400 200"><path fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1.5" d="M20,50 Q100,10 180,50 T340,50 M20,100 Q100,60 180,100 T340,100 M20,150 Q100,110 180,150 T340,150"/><circle cx="50" cy="80" r="4" fill="rgba(255,255,255,0.15)"/><circle cx="150" cy="120" r="4" fill="rgba(255,255,255,0.15)"/><circle cx="250" cy="60" r="4" fill="rgba(255,255,255,0.15)"/><circle cx="350" cy="140" r="4" fill="rgba(255,255,255,0.15)"/></svg>');
    opacity: 0.7;
    z-index: 2;
}

.hhs_gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(12, 36, 97, 0.85) 0%, rgba(30, 55, 153, 0.7) 45%, rgba(74, 105, 189, 0.3) 100%);
    z-index: 3;
}

.hhs_content-container {
    height: 100vh;
    position: relative;
    z-index: 4;
}

.hhs_text-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 5%;
    color: white;
}

.hhs_headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    opacity: 0;
    transform: translateX(-50px);
}

.hhs_subtext {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(-50px);
    max-width: 90%;
}

.hhs_cta-container {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-50px);
}

.hhs_btn-primary {
    background-color: #ff6b35;
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hhs_btn-primary:hover {
    background-color: #ff824f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hhs_btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hhs_btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hhs_visual-side {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    padding-right: 5%;
}

.hhs_animation-container {
    position: relative;
    width: 100%;
    height: 60%;
    max-width: 600px;
}

.hhs_route-path {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hhs_dotted-path {
    stroke: rgba(255, 255, 255, 0.7);
    stroke-width: 2;
    stroke-dasharray: 10, 10;
    fill: none;
}

.hhs_glowing-path {
    stroke: rgba(255, 107, 53, 0.8);
    stroke-width: 3;
    fill: none;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.8));
}

.hhs_icon {
    position: absolute;
    font-size: 2.5rem;
    color: white;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
}

.hhs_truck {
    top: 20%;
    left: 10%;
}

.hhs_ship {
    top: 50%;
    left: 30%;
}

.hhs_plane {
    top: 15%;
    right: 20%;
}

.hhs_train {
    bottom: 25%;
    right: 10%;
}

/* ========== TRUST BAR STYLES (.tb_) ========== */
.tb_trust-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
}

.tb_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tb_trust-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.tb_trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    opacity: 0;
    transform: translateY(30px);
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.tb_trust-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background-color: white;
}

.tb_icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0c2461 0%, #4a69bd 100%);
    color: white;
    font-size: 2rem;
    transform: scale(0);
    opacity: 0;
    box-shadow: 0 10px 20px rgba(12, 36, 97, 0.2);
}

.tb_number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0c2461;
    margin-bottom: 5px;
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
}

.tb_suffix {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
}

.tb_label {
    font-size: 1.2rem;
    color: #495057;
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.tb_certification-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: linear-gradient(to right, #ff6b35, #ff824f);
    color: white;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.tb_certification-badge i {
    margin-right: 8px;
}

/* Decorative elements */
.tb_decoration-circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(12, 36, 97, 0.05);
    z-index: 0;
}

.tb_circle-1 {
    width: 200px;
    height: 200px;
    top: -80px;
    left: -80px;
}

.tb_circle-2 {
    width: 150px;
    height: 150px;
    bottom: 30px;
    right: 10%;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .tb_trust-bar {
        gap: 25px;
    }

    .tb_trust-item {
        min-width: 180px;
        padding: 25px 15px;
    }
}

@media (max-width: 992px) {
    .hhs_headline {
        font-size: 2.8rem;
    }

    .hhs_subtext {
        font-size: 1.2rem;
        max-width: 100%;
    }

    .hhs_visual-side {
        padding-top: 5%;
        height: 50%;
    }

    .tb_trust-bar {
        gap: 20px;
    }

    .tb_trust-item {
        min-width: 160px;
        padding: 20px 15px;
    }

    .tb_number {
        font-size: 2.4rem;
    }

    .tb_icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hhs_headline {
        font-size: 2.2rem;
    }

    .hhs_subtext {
        font-size: 1.1rem;
    }

    .hhs_icon {
        font-size: 2rem;
    }

    .tb_trust-section {
        padding: 60px 0;
    }

    .tb_trust-bar {
        flex-direction: column;
        gap: 30px;
    }

    .tb_trust-item {
        max-width: 350px;
        width: 100%;
        padding: 30px 20px;
    }

    .tb_number {
        font-size: 2.8rem;
    }

    .tb_circle-1,
    .tb_circle-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hhs_headline {
        font-size: 2rem;
    }

    .tb_number {
        font-size: 2.5rem;
    }

    .tb_icon-wrapper {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .tb_label {
        font-size: 1.1rem;
    }
}

/* Modern Creative Services Section */
        .hss_services-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #0a0f2b 0%, #1a1f4a 50%, #2a2f6a 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        /* Animated background particles */
        .hss_particles {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hss_particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-1000px) rotate(720deg); }
        }
        
        /* Dynamic gradient mesh background */
        .hss_gradient-mesh {
            position: absolute;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(74, 105, 189, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(30, 215, 96, 0.1) 0%, transparent 50%);
            filter: blur(40px);
            animation: meshMove 30s infinite alternate ease-in-out;
            z-index: 1;
        }
        
        @keyframes meshMove {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(180deg); }
        }
        
        /* Main container */
        .hss_container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 3;
        }
        
        /* Creative section header */
        .hss_creative-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }
        
        .hss_title-wrapper {
            display: inline-block;
            position: relative;
            margin-bottom: 30px;
        }
        
        .hss_section-title {
            font-size: 4.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff6b35 0%, #4a69bd 50%, #30d9c8 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin: 0;
            position: relative;
            z-index: 2;
            letter-spacing: -1px;
            line-height: 1.1;
        }
        
        .hss_title-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 5rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.03);
            white-space: nowrap;
            z-index: 1;
        }
        
        .hss_section-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 300;
        }
        
        /* Innovative cards grid */
        .hss_services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            perspective: 1000px;
        }
        
        /* Futuristic 3D card */
        .hss_service-card {
            position: relative;
            height: 400px;
            border-radius: 25px;
            overflow: hidden;
            transform-style: preserve-3d;
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            opacity: 0;
            transform: translateY(100px) rotateX(-20deg);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hss_service-card:hover {
            transform: translateY(-20px) rotateX(5deg) scale(1.05);
            box-shadow: 
                0 40px 80px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 0 100px rgba(255, 255, 255, 0.05);
        }
        
        /* Card gradient overlay */
        .hss_card-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(255, 107, 53, 0.1) 0%, 
                rgba(74, 105, 189, 0.1) 50%, 
                rgba(30, 215, 96, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: 1;
        }
        
        .hss_service-card:hover .hss_card-gradient {
            opacity: 1;
        }
        
        /* Card content */
        .hss_card-content {
            position: relative;
            z-index: 2;
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        /* Animated icon container */
        .hss_icon-container {
            width: 100px;
            height: 100px;
            margin-bottom: 30px;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .hss_service-card:hover .hss_icon-container {
            transform: translateZ(50px) rotateY(360deg);
        }
        
        .hss_icon-front,
        .hss_icon-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            font-size: 2.5rem;
            transition: all 0.6s ease;
        }
        
        .hss_icon-front {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            transform: rotateY(0deg);
            color: white;
        }
        
        .hss_icon-back {
            background: linear-gradient(135deg, #ff6b35 0%, #4a69bd 100%);
            transform: rotateY(180deg);
            color: white;
        }
        
        .hss_service-card:hover .hss_icon-front {
            transform: rotateY(180deg);
        }
        
        .hss_service-card:hover .hss_icon-back {
            transform: rotateY(0deg);
        }
        
        /* Card text */
        .hss_service-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .hss_service-title:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(to right, #ff6b35, #4a69bd);
            transition: width 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .hss_service-card:hover .hss_service-title:after {
            width: 100%;
        }
        
        .hss_service-description {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }
        
        .hss_service-card:hover .hss_service-description {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Floating elements */
        .hss_floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: floatElement 8s infinite ease-in-out;
            z-index: 2;
        }
        
        @keyframes floatElement {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        /* Morphing background shape */
        .hss_morph-shape {
            position: absolute;
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, #ff6b35, #4a69bd);
            border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
            animation: morph 15s infinite linear;
            opacity: 0.1;
            filter: blur(30px);
            z-index: 2;
        }
        
        @keyframes morph {
            0% { border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%; }
            25% { border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%; }
            50% { border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%; transform: scale(1.1); }
            75% { border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%; }
            100% { border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%; }
        }
        
        /* Animated line connectors */
        .hss_connector {
            position: absolute;
            height: 2px;
            background: linear-gradient(to right, transparent, rgba(255, 107, 53, 0.5), transparent);
            transform-origin: left center;
            animation: connectPulse 4s infinite linear;
            z-index: 1;
        }
        
        @keyframes connectPulse {
            0% { transform: scaleX(0); opacity: 0; }
            50% { transform: scaleX(1); opacity: 1; }
            100% { transform: scaleX(0); opacity: 0; }
        }
        
        /* Mobile scroll indicator */
        .hss_scroll-indicator {
            display: none;
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            animation: bounce 2s infinite;
            z-index: 4;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }
        
        /* Responsive design */
        @media (max-width: 1200px) {
            .hss_section-title {
                font-size: 3.5rem;
            }
            
            .hss_title-bg {
                font-size: 4rem;
            }
            
            .hss_services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hss_services-section {
                padding: 80px 0;
            }
            
            .hss_section-title {
                font-size: 2.8rem;
            }
            
            .hss_title-bg {
                font-size: 3rem;
            }
            
            .hss_services-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .hss_service-card {
                height: 350px;
            }
            
            .hss_scroll-indicator {
                display: block;
            }
        }
        
        @media (max-width: 480px) {
            .hss_section-title {
                font-size: 2.2rem;
            }
            
            .hss_title-bg {
                font-size: 2.5rem;
            }
            
            .hss_card-content {
                padding: 30px;
            }
            
            .hss_service-card {
                height: 320px;
            }
        }

        /* Modern Timeline Section */
        .hihw_process-section {
            padding: 180px 0;
            background: linear-gradient(135deg, #0c0f1d 0%, #1a1d32 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Animated background elements */
        .hihw_bg-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: hihw_gridMove 30s linear infinite;
            z-index: 1;
        }
        
        @keyframes hihw_gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        .hihw_glowing-orbs {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.3;
            z-index: 1;
        }
        
        .hihw_orb-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #ff6b35 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: hihw_floatOrb 20s infinite alternate ease-in-out;
        }
        
        .hihw_orb-2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, #4a69bd 0%, transparent 70%);
            bottom: -150px;
            left: -150px;
            animation: hihw_floatOrb 25s infinite alternate ease-in-out;
        }
        
        @keyframes hihw_floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(100px, 100px) scale(1.2); }
        }
        
        /* Main container */
        .hihw_container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        /* Section header */
        .hihw_section-header {
            text-align: center;
            margin-bottom: 100px;
        }
        
        .hihw_section-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff6b35 0%, #4a69bd 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .hihw_section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #ff6b35, #4a69bd);
            border-radius: 2px;
        }
        
        .hihw_section-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Desktop Timeline - SHOW ON DESKTOP */
        .hihw_timeline-desktop {
            position: relative;
            min-height: 400px;
            display: block; /* Changed from 'none' to 'block' */
        }
        
        .hihw_timeline-line {
            position: absolute;
            top: 50%;
            left: 50px;
            right: 50px;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            transform: translateY(-50%);
            overflow: hidden;
        }
        
        .hihw_timeline-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(to right, #ff6b35, #4a69bd);
            border-radius: 3px;
        }
        
        /* Steps for desktop */
        .hihw_timeline-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            padding: 0 50px;
        }
        
        .hihw_step {
            position: relative;
            width: 200px;
            text-align: center;
            opacity: 1; /* Changed from 0 to 1 */
            transform: translateY(0); /* Changed from translateY(50px) */
            transition: all 0.5s ease;
        }
        
        .hihw_step-circle {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .hihw_step-circle:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid transparent;
            background: linear-gradient(135deg, #ff6b35, #4a69bd) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .hihw_step.active .hihw_step-circle {
            transform: scale(1.2);
            box-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
        }
        
        .hihw_step.active .hihw_step-circle:after {
            opacity: 1;
            animation: hihw_pulseBorder 2s infinite;
        }
        
        @keyframes hihw_pulseBorder {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.7; }
            100% { transform: scale(1); opacity: 1; }
        }
        
        .hihw_step-icon {
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.5s ease;
        }
        
        .hihw_step.active .hihw_step-icon {
            color: white;
            transform: scale(1.2);
        }
        
        .hihw_step-content {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 20px;
            transform: translateY(0); /* Changed from translateY(20px) */
            opacity: 1; /* Changed from 0 to 1 */
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .hihw_step.active .hihw_step-content {
            transform: translateY(0);
            opacity: 1;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .hihw_step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ff6b35, #4a69bd);
            border-radius: 50%;
            color: white;
            font-weight: 700;
            line-height: 40px;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .hihw_step-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }
        
        .hihw_step-description {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }
        
        /* Mobile Timeline - HIDE ON DESKTOP */
        .hihw_timeline-mobile {
            display: none; /* Hide on desktop */
            max-width: 600px;
            margin: 0 auto;
        }
        
        .hihw_mobile-step {
            position: relative;
            padding-left: 80px;
            margin-bottom: 60px;
            opacity: 1; /* Changed from 0 to 1 */
            transform: translateX(0); /* Changed from translateX(-50px) */
        }
        
        .hihw_mobile-step:last-child {
            margin-bottom: 0;
        }
        
        .hihw_mobile-step:before {
            content: '';
            position: absolute;
            left: 35px;
            top: 0;
            bottom: -60px;
            width: 3px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 1;
        }
        
        .hihw_mobile-step:last-child:before {
            display: none;
        }
        
        .hihw_mobile-step.active:before {
            background: linear-gradient(to bottom, #ff6b35, #4a69bd);
        }
        
        .hihw_mobile-step.active .hihw_mobile-circle {
            transform: scale(1.2);
            box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
            border-color: transparent;
        }
        
        .hihw_mobile-step.active .hihw_mobile-circle:after {
            opacity: 1;
            animation: hihw_pulseBorder 2s infinite;
        }
        
        .hihw_mobile-circle {
            position: absolute;
            left: 0;
            top: 0;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .hihw_mobile-circle:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid transparent;
            background: linear-gradient(135deg, #ff6b35, #4a69bd) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .hihw_mobile-icon {
            font-size: 1.8rem;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.5s ease;
        }
        
        .hihw_mobile-step.active .hihw_mobile-icon {
            color: white;
            transform: scale(1.2);
        }
        
        .hihw_mobile-content {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateX(0); /* Changed from translateX(20px) */
            opacity: 1; /* Changed from 0 to 1 */
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .hihw_mobile-step.active .hihw_mobile-content {
            transform: translateX(0);
            opacity: 1;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .hihw_mobile-number {
            display: inline-block;
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #ff6b35, #4a69bd);
            border-radius: 50%;
            color: white;
            font-weight: 700;
            line-height: 35px;
            text-align: center;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .hihw_mobile-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }
        
        .hihw_mobile-description {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }
        
        /* CTA Section */
        .hihw_cta-section {
            text-align: center;
            margin-top: 80px;
            padding-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hihw_cta-title {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }
        
        .hihw_cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b35, #4a69bd);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .hihw_cta-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s ease;
        }
        
        .hihw_cta-button:hover:before {
            left: 100%;
        }
        
        .hihw_cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
        }
        
        /* Responsive design - CORRECTED */
        @media (min-width: 992px) {
            .hihw_timeline-desktop {
                display: block !important;
            }
            
            .hihw_timeline-mobile {
                display: none !important;
            }
            
            .hihw_step-content {
                position: absolute;
                top: 150px;
                left: 0;
                width: 200px;
            }
            
            .hihw_step:nth-child(even) .hihw_step-content {
                top: auto;
                bottom: 150px;
            }
        }
        
        @media (max-width: 991px) {
            .hihw_timeline-desktop {
                display: none !important;
            }
            
            .hihw_timeline-mobile {
                display: block !important;
            }
            
            .hihw_section-title {
                font-size: 2.8rem;
            }
            
            .hihw_section-header {
                margin-bottom: 60px;
            }
        }
        
        @media (max-width: 768px) {
            .hihw_process-section {
                padding: 80px 0;
            }
            
            .hihw_section-title {
                font-size: 2.2rem;
            }
            
            .hihw_mobile-step {
                padding-left: 70px;
                margin-bottom: 50px;
            }
            
            .hihw_mobile-circle {
                width: 60px;
                height: 60px;
            }
            
            .hihw_mobile-content {
                padding: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .hihw_section-title {
                font-size: 1.8rem;
            }
            
            .hihw_mobile-step {
                padding-left: 60px;
                margin-bottom: 40px;
            }
            
            .hihw_mobile-circle {
                width: 50px;
                height: 50px;
            }
            
            .hihw_mobile-icon {
                font-size: 1.5rem;
            }
            
            .hihw_mobile-title {
                font-size: 1.2rem;
            }
            
            .hihw_mobile-description {
                font-size: 0.9rem;
            }
        }
        
        /* Desktop step positioning fix */
        .hihw_step:nth-child(odd) .hihw_step-content {
            top: 120px;
        }
        
        .hihw_step:nth-child(even) .hihw_step-content {
            bottom: 120px;
        }

         .wcu_section {
            padding: 100px 0;
            background: #0c1027;
            position: relative;
            overflow: hidden;
        }
        
        /* Subtle Parallax Background */
        .wcu_background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 105, 189, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(30, 215, 96, 0.03) 0%, transparent 50%);
            z-index: 1;
        }
        
        .wcu_grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: wcu_gridMove 100s linear infinite;
            z-index: 1;
        }
        
        @keyframes wcu_gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        /* Main Content */
        .wcu_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        /* Section Header */
        .wcu_header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .wcu_title {
            font-size: 3.2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .wcu_title_accent {
            color: #ff6b35;
        }
        
        .wcu_subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
        }
        
        /* Features Grid */
        .wcu_features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        /* Feature Card */
        .wcu_card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
        }
        
        /* Corner Border Elements */
        .wcu_corner {
            position: absolute;
            width: 20px;
            height: 20px;
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .wcu_corner_tl {
            top: 0;
            left: 0;
            border-top: 2px solid #ff6b35;
            border-left: 2px solid #ff6b35;
            border-radius: 10px 0 0 0;
        }
        
        .wcu_corner_tr {
            top: 0;
            right: 0;
            border-top: 2px solid #4a69bd;
            border-right: 2px solid #4a69bd;
            border-radius: 0 10px 0 0;
        }
        
        .wcu_corner_bl {
            bottom: 0;
            left: 0;
            border-bottom: 2px solid #30d9c8;
            border-left: 2px solid #30d9c8;
            border-radius: 0 0 0 10px;
        }
        
        .wcu_corner_br {
            bottom: 0;
            right: 0;
            border-bottom: 2px solid #ffd166;
            border-right: 2px solid #ffd166;
            border-radius: 0 0 10px 0;
        }
        
        .wcu_card:hover .wcu_corner {
            opacity: 1;
            width: 40px;
            height: 40px;
        }
        
        .wcu_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        /* Icon Container */
        .wcu_icon_box {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            position: relative;
            transition: all 0.4s ease;
        }
        
        .wcu_card:hover .wcu_icon_box {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .wcu_icon {
            font-size: 2.2rem;
            color: white;
            transition: all 0.4s ease;
        }
        
        /* Icon Colors */
        .wcu_card:nth-child(1) .wcu_icon {
            color: #ff6b35;
        }
        
        .wcu_card:nth-child(2) .wcu_icon {
            color: #30d9c8;
        }
        
        .wcu_card:nth-child(3) .wcu_icon {
            color: #4a69bd;
        }
        
        .wcu_card:nth-child(4) .wcu_icon {
            color: #ffd166;
        }
        
        /* Content */
        .wcu_card_title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }
        
        .wcu_card_text {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        /* Feature Badge */
        .wcu_badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }
        
        .wcu_card:hover .wcu_badge {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        .wcu_badge i {
            font-size: 0.9rem;
        }
        
        /* Stats Bar */
        .wcu_stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 80px;
            padding-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .wcu_stat {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .wcu_stat_number {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff6b35, #4a69bd);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 10px;
        }
        
        .wcu_stat_label {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .wcu_title {
                font-size: 2.5rem;
            }
            
            .wcu_features {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .wcu_stats {
                flex-wrap: wrap;
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .wcu_section {
                padding: 70px 0;
            }
            
            .wcu_title {
                font-size: 2rem;
            }
            
            .wcu_subtitle {
                font-size: 1.1rem;
            }
            
            .wcu_features {
                grid-template-columns: 1fr;
            }
            
            .wcu_card {
                padding: 35px 25px;
            }
            
            .wcu_icon_box {
                width: 70px;
                height: 70px;
            }
            
            .wcu_icon {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .wcu_title {
                font-size: 1.8rem;
            }
            
            .wcu_card_title {
                font-size: 1.3rem;
            }
            
            .wcu_stats {
                gap: 20px;
            }
            
            .wcu_stat_number {
                font-size: 2.2rem;
            }
        }

        /* CTA Section */
        .hcta_section {
            padding: 100px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }
        
        /* Animated background particles */
        .hcta_particles {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hcta_particle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b35 0%, #4a69bd 100%);
            opacity: 0.1;
            animation: hcta_particleFloat 20s infinite linear;
        }
        
        @keyframes hcta_particleFloat {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-100vh) rotate(360deg); }
        }
        
        /* Subtle background pattern */
        .hcta_pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 105, 189, 0.03) 0%, transparent 50%);
            z-index: 1;
        }
        
        /* Main container */
        .hcta_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        /* Content wrapper */
        .hcta_content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 40px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        /* Main message */
        .hcta_title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #0c2461;
            margin-bottom: 20px;
            line-height: 1.2;
            position: relative;
            z-index: 2;
        }
        
        .hcta_title_accent {
            background: linear-gradient(135deg, #ff6b35 0%, #4a69bd 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Subtitle */
        .hcta_subtitle {
            font-size: 1.2rem;
            color: #4a5568;
            max-width: 600px;
            margin: 0 auto 50px;
            line-height: 1.6;
        }
        
        /* Buttons container */
        .hcta_buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        /* Primary button with pulsing gradient */
        .hcta_button_primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #ff6b35 0%, #4a69bd 100%);
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: hcta_pulse 2s infinite;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }
        
        @keyframes hcta_pulse {
            0% { box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3); }
            50% { box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5); }
            100% { box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3); }
        }
        
        .hcta_button_primary:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s ease;
        }
        
        .hcta_button_primary:hover:before {
            left: 100%;
        }
        
        .hcta_button_primary:hover {
            transform: translateY(-5px);
            animation: none;
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
        }
        
        /* Secondary button */
        .hcta_button_secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: transparent;
            color: #0c2461;
            padding: 17px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            border: 2px solid #0c2461;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .hcta_button_secondary:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(12, 36, 97, 0.1), transparent);
            transition: left 0.7s ease;
        }
        
        .hcta_button_secondary:hover:before {
            left: 100%;
        }
        
        .hcta_button_secondary:hover {
            transform: translateY(-5px);
            background: rgba(12, 36, 97, 0.05);
            box-shadow: 0 10px 30px rgba(12, 36, 97, 0.15);
        }
        
        /* Button icons */
        .hcta_button_icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .hcta_button_primary:hover .hcta_button_icon {
            transform: translateX(5px);
        }
        
        .hcta_button_secondary:hover .hcta_button_icon {
            transform: translateX(5px);
        }
        
        /* Trust indicators */
        .hcta_trust {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .hcta_trust_item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #718096;
        }
        
        .hcta_trust_icon {
            color: #30d9c8;
            font-size: 1rem;
        }
        
        /* Floating elements */
        .hcta_floating {
            position: absolute;
            z-index: 1;
        }
        
        .hcta_floating_1 {
            width: 100px;
            height: 100px;
            border-radius: 30px;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
            border: 1px solid rgba(255, 107, 53, 0.1);
            top: 20%;
            left: 10%;
            animation: hcta_float1 20s infinite alternate ease-in-out;
        }
        
        .hcta_floating_2 {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(74, 105, 189, 0.05), transparent);
            border: 1px solid rgba(74, 105, 189, 0.1);
            bottom: 20%;
            right: 10%;
            animation: hcta_float2 25s infinite alternate ease-in-out;
        }
        
        @keyframes hcta_float1 {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(30px, 30px) rotate(10deg); }
        }
        
        @keyframes hcta_float2 {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-30px, -30px) rotate(-10deg); }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hcta_title {
                font-size: 2.8rem;
            }
            
            .hcta_content {
                padding: 50px 30px;
            }
            
            .hcta_buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hcta_button_primary,
            .hcta_button_secondary {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .hcta_section {
                padding: 70px 0;
            }
            
            .hcta_title {
                font-size: 2.2rem;
            }
            
            .hcta_subtitle {
                font-size: 1.1rem;
            }
            
            .hcta_content {
                padding: 40px 25px;
            }
            
            .hcta_floating {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .hcta_title {
                font-size: 1.8rem;
            }
            
            .hcta_subtitle {
                font-size: 1rem;
            }
            
            .hcta_button_primary,
            .hcta_button_secondary {
                padding: 15px 30px;
                font-size: 1rem;
            }
        }

        /* ========== FOOTER STYLES (.hft_) ========== */
.hft_footer {
    background: #0a0c1a;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0 30px;
}

/* Animated background */
.hft_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hft_background-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.hft_background-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
}

.hft_glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b35 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.hft_glow-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #4a69bd 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
}

/* Main container */
.hft_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Main footer content */
.hft_main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Company info */
.hft_company {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hft_logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.hft_logo i {
    font-size: 2.2rem;
    /* color: #ff6b35; */
}

.hft_logo-accent {
    color: #4a69bd;
}

.hft_company-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Social links */
.hft_social {
    display: flex;
    gap: 15px;
}

.hft_social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hft_social-link:hover {
    background: linear-gradient(135deg, #ff6b35, #4a69bd);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Links groups */
.hft_links-group {
    display: flex;
    flex-direction: column;
}

.hft_links-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.hft_links-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #2f4ab3, #4a69bd);
    border-radius: 2px;
}

.hft_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hft_links li {
    margin-bottom: 15px;
}

.hft_link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.hft_link:hover {
    color: white;
    transform: translateX(5px);
    padding-left: 10px;
}

.hft_link::before {
    content: '🡆';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #3048ad;
}

.hft_link:hover::before {
    /* left: 0; */
    opacity: 1;
}

/* Contact info */
.hft_contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.hft_contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hft_contact-item i {
    color: #4a69bd;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Newsletter */
.hft_newsletter {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hft_newsletter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.hft_newsletter-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.hft_newsletter-form {
    display: flex;
    gap: 10px;
}

.hft_newsletter-input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.hft_newsletter-input:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.08);
}

.hft_newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.hft_newsletter-button {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b35, #4a69bd);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hft_newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Divider */
.hft_divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 40px 0;
}

/* Bottom footer */
.hft_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.hft_copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.hft_legal {
    display: flex;
    gap: 25px;
}

.hft_legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.hft_legal-link:hover {
    color: white;
}

.hft_legal-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.hft_legal-link:hover::after {
    width: 100%;
}

.hft_badges {
    display: flex;
    gap: 15px;
}

.hft_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hft_badge i {
    color: #30d9c8;
    font-size: 0.9rem;
}

/* Back to top button */
.hft_back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #07d907, #01a009);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    box-shadow:0 10px 30px rgba(0, 0, 0, 0.3);
}

.hft_back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.hft_back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Floating elements */
.hft_floating {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    animation: hft_float 20s infinite ease-in-out;
    z-index: 1;
}

.hft_float-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.hft_float-2 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    right: 10%;
    animation-delay: -5s;
}

.hft_float-3 {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 15%;
    animation-delay: -10s;
}

@keyframes hft_float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(120deg); }
    66% { transform: translate(-15px, 15px) rotate(240deg); }
}

/* Responsive design */
@media (max-width: 992px) {
    .hft_main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .hft_company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hft_footer {
        padding: 60px 0 25px;
    }
    
    .hft_main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hft_bottom {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .hft_legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hft_badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hft_back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hft_footer {
        padding: 50px 0 20px;
    }
    
    .hft_newsletter-form {
        flex-direction: column;
    }
    
    .hft_newsletter-button {
        width: 100%;
        height: 45px;
    }
    
    .hft_back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ========== NAVBAR STYLES (.hnav_) ========== */
.hnav_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Top Bar (50% Orange, 50% Blue) */
.hnav_top-bar {
    height: 40px;
    background: linear-gradient(90deg, #016001 0%, #009201 50%, #3249ae 50%, #293a94 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.hnav_top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%);
}

.hnav_top-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hnav_top-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hnav_top-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hnav_top-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hnav_top-item:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.hnav_top-item i {
    font-size: 0.9rem;
}

/* Main Navbar */
.hnav_navbar {
    padding: 0 20px;
    background: white;
}

.hnav_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.hnav_logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0c2461;
    transition: all 0.3s ease;
}

.hnav_logo:hover {
    transform: translateY(-2px);
}

.hnav_logo i {
    font-size: 2rem;
    color: #ff6b35;
}

.hnav_logo-accent {
    color: #4a69bd;
    font-weight: 900;
}

/* Desktop Menu */
.hnav_menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hnav_link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.hnav_link:hover {
    color: #0c2461;
}

.hnav_link.active {
    color: #273e9e;
    font-weight: 800;
}

.hnav_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #304db073, #2d4aac , #304db073);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.hnav_link:hover::after,
.hnav_link.active::after {
    width: 100%;
}

/* CTA Buttons */
.hnav_actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hnav_button {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.hnav_button-primary {
    background: linear-gradient(135deg, #2e4cae, #263c9c);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.hnav_button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.hnav_button-outline {
    background: transparent;
    color: #0c2461;
    border: 2px solid #0c2461;
}

.hnav_button-outline:hover {
    background: rgba(12, 36, 97, 0.05);
    transform: translateY(-3px);
}

/* Mobile Menu Toggle */
.hnav_toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hnav_toggle-line {
    width: 100%;
    height: 3px;
    background: #0c2461;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hnav_toggle.active .hnav_toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hnav_toggle.active .hnav_toggle-line:nth-child(2) {
    opacity: 0;
}

.hnav_toggle.active .hnav_toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.hnav_mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.hnav_mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hnav_mobile-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hnav_mobile-link:hover,
.hnav_mobile-link.active {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
}

.hnav_mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Navbar scroll effect */
.hnav_header.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

/* .hnav_header.scrolled .hnav_top-bar {
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
} */

/* Responsive Design */
@media (max-width: 992px) {
    .hnav_menu {
        gap: 25px;
    }
    
    .hnav_button {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hnav_top-bar {
        font-size: 0.75rem;
        height: 35px;
    }
    
    .hnav_top-left,
    .hnav_top-right {
        gap: 15px;
    }
    
    .hnav_container {
        height: 60px;
    }
    
    .hnav_menu {
        display: none;
    }
    
    .hnav_actions {
        display: none;
    }
    
    .hnav_toggle {
        display: flex;
    }
    
    .hnav_mobile-actions {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hnav_top-bar {
        display: none;
    }
    
    .hnav_logo-text {
        font-size: 1.3rem;
    }
    
    .hnav_navbar {
        padding: 0 15px;
    }
}

.ab_hero-section {
            background: 
                linear-gradient(135deg, rgba(0, 20, 40, 0.92) 0%, rgba(0, 40, 80, 0.95) 100%),
                url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .ab_hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #26d0ce, #7CFC00);
            z-index: 10;
        }
        
        .ab_hero-content {
            position: relative;
            z-index: 2;
            padding: 40px 0;
        }
        
        .ab_page-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            color: white;
        }
        
        .ab_title-accent {
            background: linear-gradient(90deg, #26d0ce, #7CFC00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        
        .ab_tagline {
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 2rem;
            line-height: 1.4;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
        }
        
        .ab_tagline-accent {
            color: #7CFC00;
            font-weight: 400;
        }
        
        .ab_image-container {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }
        
        .ab_image-container:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .ab_image-container img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .ab_image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 20, 40, 0.9), transparent);
            padding: 30px;
            color: white;
        }
        
        .ab_glow-effect {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(38, 208, 206, 0.15) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }
        
        .ab_grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .ab_page-title {
                font-size: 3.2rem;
            }
            
            .ab_tagline {
                font-size: 1.5rem;
            }
            
            .ab_image-container {
                transform: none;
                margin-top: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .ab_page-title {
                font-size: 2.5rem;
            }
            
            .ab_tagline {
                font-size: 1.3rem;
            }
            
            .ab_hero-section {
                background-attachment: scroll;
            }
        }
        
        @media (max-width: 576px) {
            .ab_page-title {
                font-size: 2rem;
            }
            
            .ab_tagline {
                font-size: 1.1rem;
            }
        }

           .awwa_section {
            padding: 100px 0;
            background: #f8f9fa;
        }
        
        .awwa_container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .awwa_header {
            margin-bottom: 50px;
            text-align: center;
        }
        
        .awwa_section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1a2980;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .awwa_section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #26d0ce, #7CFC00);
            border-radius: 2px;
        }
        
        .awwa_section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 25px auto 0;
            line-height: 1.6;
        }
        
        .awwa_content-wrapper {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .awwa_content-text {
            flex: 1;
            padding: 20px;
        }
        
        .awwa_company-intro {
            font-size: 1.25rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 30px;
        }
        
        .awwa_highlight-text {
            color: #1a2980;
            font-weight: 600;
        }
        
        .awwa_accent-text {
            color: #26d0ce;
            font-weight: 500;
        }
        
        .awwa_features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 40px;
        }
        
        .awwa_feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .awwa_feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #01a100, #009600);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }
        
        .awwa_feature-content h4 {
            font-size: 1.1rem;
            color: #1a2980;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .awwa_feature-content p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.5;
        }
        
        .awwa_visual-section {
            flex: 1;
            position: relative;
        }
        
        .awwa_main-visual {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(26, 41, 128, 0.1);
        }
        
        .awwa_main-visual img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .awwa_stats-card {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            max-width: 250px;
        }
        
        .awwa_stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a2980;
            line-height: 1;
            margin-bottom: 5px;
        }
        
        .awwa_stat-label {
            font-size: 0.95rem;
            color: #26d0ce;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .awwa_company-badge {
            display: inline-block;
            background: linear-gradient(90deg, #1a2980, #3049ae);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .awwa_content-wrapper {
                flex-direction: column;
                gap: 40px;
            }
            
            .awwa_visual-section {
                width: 100%;
            }
            
            .awwa_stats-card {
                position: relative;
                bottom: auto;
                left: auto;
                margin-top: 30px;
                max-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .awwa_section {
                padding: 70px 0;
            }
            
            .awwa_section-title {
                font-size: 2.2rem;
            }
            
            .awwa_features-grid {
                grid-template-columns: 1fr;
            }
            
            .awwa_company-intro {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 576px) {
            .awwa_section-title {
                font-size: 1.8rem;
            }
            
            .awwa_section-subtitle {
                font-size: 1rem;
            }
            
            .awwa_company-intro {
                font-size: 1rem;
            }
            
            .awwa_stat-number {
                font-size: 2rem;
            }
        }

        .awwd_section {
            padding: 100px 0;
            background: #ffffff;
        }
        
        .awwd_header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .awwd_section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1a2980;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }
        
        .awwd_section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 400;
        }
        
        .awwd_services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }
        
        .awwd_service-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 45px 35px;
            border: 1px solid #eaeaea;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .awwd_service-card:hover {
            border-color: #26d0ce;
            box-shadow: 0 10px 30px rgba(38, 208, 206, 0.08);
        }
        
        .awwd_icon-container {
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .awwd_icon-box {
            width: 56px;
            height: 56px;
            background: #f8f9ff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a2980;
            font-size: 24px;
            font-weight: 400;
        }
        
        .awwd_service-number {
            font-size: 14px;
            color: #26d0ce;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .awwd_service-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a2980;
            margin-bottom: 18px;
            line-height: 1.3;
        }
        
        .awwd_service-desc {
            color: #555;
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 0;
        }
        
        .awwd_card-divider {
            height: 2px;
            background: #f0f0f0;
            margin: 25px 0;
            width: 40px;
            transition: all 0.3s ease;
        }
        
        .awwd_service-card:hover .awwd_card-divider {
            background: #26d0ce;
            width: 60px;
        }
        
        /* Service-specific styling */
        .awwd_card-surface .awwd_icon-box {
            background: rgba(38, 208, 206, 0.08);
            color: #26d0ce;
        }
        
        .awwd_card-ecommerce .awwd_icon-box {
            background: rgba(26, 41, 128, 0.08);
            color: #1a2980;
        }
        
        .awwd_card-warehouse .awwd_icon-box {
            background: rgba(124, 252, 0, 0.08);
            color: #26d0ce;
        }
        
        .awwd_card-lastmile .awwd_icon-box {
            background: rgba(38, 208, 206, 0.08);
            color: #1a2980;
        }
        
        .awwd_stat-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 12px;
            color: #666;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .awwd_services-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }
            
            .awwd_section {
                padding: 80px 0;
            }
        }
        
        @media (max-width: 768px) {
            .awwd_section-title {
                font-size: 2.2rem;
            }
            
            .awwd_service-card {
                padding: 35px 25px;
            }
            
            .awwd_service-title {
                font-size: 1.3rem;
            }
            
            .awwd_icon-box {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .awwd_section-title {
                font-size: 2rem;
            }
            
            .awwd_section-subtitle {
                font-size: 1rem;
            }
            
            .awwd_service-desc {
                font-size: 0.95rem;
            }
            
            .awwd_stat-badge {
                position: relative;
                top: 0;
                right: 0;
                margin-top: 15px;
                display: block;
            }
        }

        .awcu_section {
            padding: 140px 0;
            background: linear-gradient(135deg, #0a0f2e 0%, #1a2980 50%, #0a0f2e 100%);
            position: relative;
            overflow: hidden;
        }
        
        .awcu_section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(38, 208, 206, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(124, 252, 0, 0.1) 0%, transparent 40%);
        }
        
        .awcu_container {
            position: relative;
            z-index: 10;
        }
        
        .awcu_header {
            text-align: center;
            margin-bottom: 100px;
        }
        
        .awcu_title-wrapper {
            display: inline-block;
            position: relative;
        }
        
        .awcu_section-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0;
            position: relative;
            display: inline-block;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .awcu_title-gradient {
            background: linear-gradient(135deg, #26d0ce 0%, #7CFC00 50%, #26d0ce 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% auto;
            animation: gradient 3s ease infinite;
        }
        
        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .awcu_title-decoration {
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, #26d0ce, #7CFC00, transparent);
            border-radius: 2px;
        }
        
        .awcu_section-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            margin: 40px auto 0;
            line-height: 1.6;
            font-weight: 300;
            letter-spacing: 0.5px;
        }
        
        .awcu_features-container {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }
        
        .awcu_feature-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .awcu_feature-row:nth-child(even) {
            direction: rtl;
        }
        
        .awcu_feature-row:nth-child(even) .awcu_feature-content {
            direction: ltr;
        }
        
        .awcu_feature-content {
            padding: 40px;
        }
        
        .awcu_feature-index {
            font-size: 5rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
            line-height: 1;
        }
        
        .awcu_feature-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .awcu_feature-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #26d0ce, #7CFC00);
        }
        
        .awcu_feature-desc {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        
        .awcu_feature-highlight {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(38, 208, 206, 0.15);
            color: #7CFC00;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(38, 208, 206, 0.3);
        }
        
        .awcu_feature-visual {
            position: relative;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }
        
        .awcu_visual-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .awcu_feature-visual:hover .awcu_visual-image {
            transform: scale(1.05);
        }
        
        .awcu_image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 41, 128, 0.7), rgba(38, 208, 206, 0.4));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 120px;
            opacity: 0.8;
        }
        
        .awcu_stats-showcase {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 100px;
        }
        
        .awcu_stat-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .awcu_stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(38, 208, 206, 0.1), rgba(124, 252, 0, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .awcu_stat-card:hover {
            transform: translateY(-10px);
            border-color: rgba(38, 208, 206, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .awcu_stat-card:hover::before {
            opacity: 1;
        }
        
        .awcu_stat-value {
            font-size: 3rem;
            font-weight: 800;
            color: #7CFC00;
            margin-bottom: 10px;
            line-height: 1;
            font-family: 'Arial', sans-serif;
        }
        
        .awcu_stat-label {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            letter-spacing: 1px;
        }
        
        .awcu_stat-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #26d0ce, #7CFC00);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .awcu_stats-showcase {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .awcu_section {
                padding: 100px 0;
            }
            
            .awcu_feature-row {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .awcu_feature-row:nth-child(even) {
                direction: ltr;
            }
            
            .awcu_section-title {
                font-size: 2.8rem;
            }
            
            .awcu_feature-visual {
                height: 250px;
            }
            
            .awcu_image-overlay {
                font-size: 80px;
            }
        }
        
        @media (max-width: 768px) {
            .awcu_section-title {
                font-size: 2.3rem;
            }
            
            .awcu_section-subtitle {
                font-size: 1.1rem;
            }
            
            .awcu_feature-title {
                font-size: 1.5rem;
            }
            
            .awcu_feature-desc {
                font-size: 1rem;
            }
            
            .awcu_stats-showcase {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 80px auto 0;
            }
            
            .awcu_stat-value {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .awcu_section-title {
                font-size: 2rem;
            }
            
            .awcu_feature-content {
                padding: 30px 20px;
            }
            
            .awcu_feature-index {
                font-size: 3.5rem;
            }
            
            .awcu_feature-visual {
                height: 200px;
            }
            
            .awcu_image-overlay {
                font-size: 60px;
            }
        }

         .amv_section {
            padding: 100px 0;
            background: #ffffff;
        }
        
        .amv_header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .amv_section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #1a2980;
            margin-bottom: 15px;
        }
        
        .amv_title-line {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #1a2980, #26d0ce);
            margin: 20px auto 0;
            border-radius: 2px;
        }
        
        .amv_content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .amv_card {
            background: #ffffff;
            border-radius: 16px;
            padding: 50px 40px;
            position: relative;
            border: 2px solid #f0f0f0;
            transition: all 0.3s ease;
        }
        
        .amv_card:hover {
            border-color: #26d0ce;
            box-shadow: 0 10px 30px rgba(26, 41, 128, 0.1);
            transform: translateY(-5px);
        }
        
        .amv_vision-card:hover {
            border-color: #7CFC00;
        }
        
        .amv_card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #f8f9ff, #e8f6f6);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            color: #1a2980;
            font-size: 28px;
        }
        
        .amv_vision-card .amv_card-icon {
            background: linear-gradient(135deg, #f0fff0, #e8f6f6);
            color: #26d0ce;
        }
        
        .amv_card-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #1a2980;
            margin-bottom: 20px;
        }
        
        .amv_vision-card .amv_card-title {
            color: #1a2980;
        }
        
        .amv_card-content {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            margin: 0;
        }
        
        .amv_values-section {
            background: #f8f9fa;
            border-radius: 16px;
            padding: 50px;
        }
        
        .amv_values-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a2980;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .amv_values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .amv_value-item {
            text-align: center;
            padding: 30px;
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #eaeaea;
            transition: all 0.3s ease;
        }
        
        .amv_value-item:hover {
            border-color: #26d0ce;
            transform: translateY(-5px);
        }
        
        .amv_value-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: #f8f9ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #26d0ce;
            font-size: 24px;
        }
        
        .amv_value-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a2980;
            margin-bottom: 10px;
        }
        
        .amv_value-desc {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .amv_content-wrapper {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto 60px;
            }
            
            .amv_section {
                padding: 80px 0;
            }
            
            .amv_values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .amv_section-title {
                font-size: 2.3rem;
            }
            
            .amv_card {
                padding: 40px 30px;
            }
            
            .amv_card-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
                margin-bottom: 25px;
            }
            
            .amv_card-title {
                font-size: 1.5rem;
            }
            
            .amv_card-content {
                font-size: 1rem;
            }
            
            .amv_values-section {
                padding: 40px 30px;
            }
        }
        
        @media (max-width: 576px) {
            .amv_section-title {
                font-size: 2rem;
            }
            
            .amv_values-grid {
                grid-template-columns: 1fr;
            }
            
            .amv_card {
                padding: 35px 25px;
            }
            
            .amv_value-item {
                padding: 25px 20px;
            }
        }

         .c_hero_section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(10, 15, 35, 0.92), rgba(10, 15, 35, 0.96)),
                        url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .c_hero_container {
            position: relative;
            z-index: 10;
            width: 100%;
        }

        .c_hero_main_title {
            font-size: 3.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 0.5rem;
            line-height: 1;
            letter-spacing: -2px;
        }

        .c_hero_animated_text {
            font-size: 3.5rem;
            font-weight: 900;
            height: 100px;
            overflow: hidden;
            /* margin-bottom: 2rem; */
        }

        .c_hero_word {
            display: inline-block;
            background: linear-gradient(135deg, #7CFC00, #26d0ce);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            animation: slideUp 12s infinite;
        }

        .c_hero_word:nth-child(1) { animation-delay: 0s; }
        .c_hero_word:nth-child(2) { animation-delay: 4s; }
        .c_hero_word:nth-child(3) { animation-delay: 8s; }

        @keyframes slideUp {
            0%, 33% {
                transform: translateY(0%);
                opacity: 1;
            }
            36%, 66% {
                transform: translateY(-100%);
                opacity: 0;
            }
            69%, 100% {
                transform: translateY(-200%);
                opacity: 0;
            }
        }

        .c_hero_subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 500px;
            line-height: 1.6;
            margin-top: 2rem;
            font-weight: 300;
            opacity: 0;
            animation: fadeIn 1s ease forwards;
            animation-delay: 1.5s;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Gradient line animation */
        .c_hero_line {
            width: 200px;
            height: 3px;
            background: linear-gradient(90deg, #7CFC00, #26d0ce, #7CFC00);
            background-size: 200% 100%;
            /* margin: 2rem 0; */
            border-radius: 2px;
            animation: gradientMove 3s ease infinite;
        }

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

        /* Floating text elements */
        .c_hero_floating_text {
            position: absolute;
            color: rgba(255, 255, 255, 0.03);
            font-size: 10rem;
            font-weight: 900;
            z-index: 1;
            user-select: none;
            animation: floatSlow 20s infinite linear;
        }

        .c_hero_floating_text:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .c_hero_floating_text:nth-child(2) {
            bottom: 20%;
            right: 10%;
            animation-delay: 5s;
        }

        @keyframes floatSlow {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-50px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .c_hero_main_title,
            .c_hero_animated_text {
                font-size: 4rem;
            }
            
            .c_hero_animated_text {
                height: 80px;
            }
            
            .c_hero_floating_text {
                font-size: 8rem;
            }
        }

        @media (max-width: 992px) {
            .c_hero_main_title,
            .c_hero_animated_text {
                font-size: 3.5rem;
            }
            
            .c_hero_animated_text {
                height: 70px;
            }
            
            .c_hero_floating_text {
                font-size: 6rem;
            }
            
            .c_hero_subtitle {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .c_hero_main_title,
            .c_hero_animated_text {
                font-size: 2.8rem;
                letter-spacing: -1px;
            }
            
            .c_hero_animated_text {
                height: 60px;
            }
            
            .c_hero_floating_text {
                font-size: 4rem;
            }
            
            .c_hero_subtitle {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .c_hero_main_title,
            .c_hero_animated_text {
                font-size: 2.2rem;
            }
            
            .c_hero_animated_text {
                height: 50px;
            }
            
            .c_hero_floating_text {
                display: none;
            }
            
            .c_hero_subtitle {
                font-size: 1rem;
            }
        }

        .c_contact_section {
            padding: 100px 0;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        /* Decorative elements */
        .c_contact_section::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(38, 208, 206, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .c_contact_section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(124, 252, 0, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        /* Contact Details */
        .c_contact_title {
            font-size: 3rem;
            font-weight: 800;
            color: #1a2980;
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .c_contact_subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
            line-height: 1.6;
            max-width: 500px;
        }

        /* Contact Info Items */
        .c_contact_item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            margin-bottom: 20px;
            background: #f8f9fa;
            border-radius: 15px;
            border: 1px solid #eaeaea;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .c_contact_item:hover {
            background: #ffffff;
            border-color: #26d0ce;
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(26, 41, 128, 0.1);
        }

        .c_contact_icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #2b3f95, #314bb2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .c_contact_item:hover .c_contact_icon {
            transform: rotate(10deg) scale(1.1);
        }

        .c_contact_content h3 {
            font-size: 0.9rem;
            color: #666;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .c_contact_content p {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a2980;
            margin-bottom: 5px;
            line-height: 1.4;
        }

        .c_contact_note {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
            opacity: 0.8;
        }

        /* Hours Section */
        .c_hours_section {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
            border: 1px solid #eaeaea;
        }

        .c_hours_title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a2980;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .c_hours_list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .c_hours_item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #eaeaea;
            font-size: 1rem;
            color: #555;
        }

        .c_hours_item:last-child {
            border-bottom: none;
        }

        .c_hours_day {
            font-weight: 600;
            color: #1a2980;
        }

        .c_hours_time {
            font-weight: 500;
            color: #26d0ce;
        }

        /* Map Container */
        .c_map_container {
            height: 100%;
        }

        .c_map_wrapper {
            height: 600px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(26, 41, 128, 0.15);
            border: 1px solid #eaeaea;
            position: relative;
        }

        /* Map Iframe */
        .c_map_iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(10%) contrast(110%) brightness(105%);
            transition: filter 0.3s ease;
        }

        .c_map_iframe:hover {
            filter: grayscale(0%) contrast(100%) brightness(100%);
        }

        /* Map Overlay */
        .c_map_overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            max-width: 250px;
            z-index: 10;
        }

        .c_map_overlay_icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #2b3f95, #314bb2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .c_map_overlay h4 {
            color: #1a2980;
            font-size: 1rem;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .c_map_overlay p {
            color: #666;
            font-size: 0.85rem;
            margin: 0;
            line-height: 1.4;
        }

        /* Map Controls */
        .c_map_controls {
            position: absolute;
            bottom: 20px;
            right: 20px;
            z-index: 10;
            display: flex;
            gap: 10px;
        }

        .c_map_btn {
            background: linear-gradient(135deg, #1a2980, #2c3f8b);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 5px 15px rgba(26, 41, 128, 0.2);
        }

        .c_map_btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(26, 41, 128, 0.3);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .c_contact_title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            .c_contact_section {
                padding: 80px 0;
            }
            
            .c_map_wrapper {
                height: 500px;
                margin-top: 50px;
            }
            
            .c_contact_title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .c_contact_title {
                font-size: 2rem;
            }
            
            .c_contact_subtitle {
                font-size: 1rem;
            }
            
            .c_map_wrapper {
                height: 400px;
            }
            
            .c_contact_item {
                padding: 20px;
            }
            
            .c_contact_icon {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
            
            .c_contact_content p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .c_contact_title {
                font-size: 1.8rem;
            }
            
            .c_contact_item {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .c_contact_icon {
                margin: 0 auto;
            }
            
            .c_map_wrapper {
                height: 350px;
            }
            
            .c_map_overlay {
                top: 10px;
                left: 10px;
                padding: 12px;
                max-width: 200px;
            }
            
            .c_map_controls {
                bottom: 10px;
                right: 10px;
            }
            
            .c_map_btn {
                padding: 8px 15px;
                font-size: 0.85rem;
            }
        }

        .s_hero_section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: 
                linear-gradient(135deg, #0a0f2ed4 0%, #1a2980a3 100%), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=20');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .s_hero_section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(26, 41, 128, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(10, 15, 46, 0.4) 0%, transparent 50%);
        }

        .s_hero_container {
            position: relative;
            z-index: 10;
            width: 100%;
            text-align: center;
            padding: 0 20px;
        }

        .s_hero_title {
            font-size: 5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
            line-height: 1.1;
            letter-spacing: -2px;
            text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }

        .s_hero_title span {
            color: #4d5f9a;
            display: block;
            margin-top: -10px;
        }

        .s_hero_subtitle {
            font-size: 1.3rem;
            color: #a3b1d9;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 400;
            letter-spacing: 0.3px;
        }

        /* Dark blue line */
        .s_hero_line {
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, #0a0f2e, #2d3b7a, #0a0f2e);
            margin: 30px auto 40px;
            border-radius: 2px;
            position: relative;
            overflow: hidden;
        }

        .s_hero_line::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(77, 95, 154, 0.8), transparent);
            animation: slideLine 2.5s infinite;
        }

        @keyframes slideLine {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        /* Dark floating elements */
        .s_hero_floating {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .s_hero_shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(45, 59, 122, 0.2);
            animation: float 25s infinite linear;
        }

        .s_hero_shape:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .s_hero_shape:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 12%;
            animation-delay: 5s;
        }

        .s_hero_shape:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 25%;
            left: 15%;
            animation-delay: 10s;
        }

        .s_hero_shape:nth-child(4) {
            width: 120px;
            height: 120px;
            top: 35%;
            right: 18%;
            animation-delay: 15s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-40px) rotate(120deg);
            }
            66% {
                transform: translateY(20px) rotate(240deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 1400px) {
            .s_hero_title {
                font-size: 4.5rem;
            }
        }

        @media (max-width: 1200px) {
            .s_hero_title {
                font-size: 4rem;
            }
        }

        @media (max-width: 992px) {
            .s_hero_section {
                min-height: 85vh;
            }
            
            .s_hero_title {
                font-size: 3.5rem;
                letter-spacing: -1.5px;
            }
            
            .s_hero_subtitle {
                font-size: 1.2rem;
                max-width: 600px;
            }
            
            .s_hero_line {
                margin: 25px auto 35px;
            }
        }

        @media (max-width: 768px) {
            .s_hero_section {
                min-height: 75vh;
            }
            
            .s_hero_title {
                font-size: 3rem;
                margin-bottom: 0.8rem;
                letter-spacing: -1px;
            }
            
            .s_hero_subtitle {
                font-size: 1.1rem;
                padding: 0 15px;
            }
            
            .s_hero_line {
                width: 100px;
                margin: 20px auto 30px;
            }
            
            .s_hero_shape {
                opacity: 0.5;
            }
        }

        @media (max-width: 576px) {
            .s_hero_section {
                min-height: 65vh;
            }
            
            .s_hero_title {
                font-size: 2.5rem;
                margin-bottom: 0.6rem;
            }
            
            .s_hero_subtitle {
                font-size: 1rem;
                padding: 0 10px;
                line-height: 1.5;
            }
            
            .s_hero_line {
                width: 80px;
                margin: 15px auto 25px;
                height: 3px;
            }
            
            .s_hero_shape {
                opacity: 0.3;
            }
        }

        @media (max-width: 400px) {
            .s_hero_section {
                min-height: 60vh;
            }
            
            .s_hero_title {
                font-size: 2.2rem;
            }
            
            .s_hero_subtitle {
                font-size: 0.95rem;
            }
            
            .s_hero_line {
                width: 70px;
                margin: 12px auto 20px;
            }
        }

        .s_ms_section {
            padding: 120px 0;
            background: #ffffff;
        }

        .s_ms_item {
            display: flex;
            align-items: center;
            min-height: 500px;
            margin-bottom: 100px;
        }

        .s_ms_item:nth-child(even) .s_ms_content {
            order: 2;
        }

        .s_ms_item:nth-child(even) .s_ms_image {
            order: 1;
        }

        .s_ms_content {
            padding: 0 60px;
            position: relative;
            z-index: 2;
        }

        .s_ms_icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            display: inline-block;
        }

        .s_ms_title {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a2980;
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .s_ms_features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .s_ms_feature {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px 20px;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid #26d0ce;
            transition: all 0.3s ease;
        }

        .s_ms_feature:hover {
            background: #e8f6f6;
            transform: translateX(10px);
        }

        .s_ms_check {
            color: #26d0ce;
            font-size: 1.2rem;
            width: 24px;
            height: 24px;
            background: rgba(38, 208, 206, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .s_ms_feature_text {
            font-size: 1.1rem;
            color: #333;
            font-weight: 500;
        }

        .s_ms_image {
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 25px 50px rgba(26, 41, 128, 0.1);
        }

        .s_ms_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .s_ms_image:hover img {
            transform: scale(1.05);
        }

        .s_ms_overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 41, 128, 0.2), rgba(38, 208, 206, 0.1));
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .s_ms_title {
                font-size: 2.5rem;
            }
            
            .s_ms_content {
                padding: 0 40px;
            }
        }

        @media (max-width: 992px) {
            .s_ms_section {
                padding: 80px 0;
            }
            
            .s_ms_item {
                flex-direction: column;
                margin-bottom: 80px;
            }
            
            .s_ms_item:nth-child(even) .s_ms_content {
                order: 1;
            }
            
            .s_ms_item:nth-child(even) .s_ms_image {
                order: 2;
            }
            
            .s_ms_content {
                padding: 0;
                margin-bottom: 40px;
                text-align: center;
            }
            
            .s_ms_features {
                max-width: 500px;
                margin: 0 auto;
            }
            
            .s_ms_image {
                height: 350px;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .s_ms_title {
                font-size: 2.2rem;
            }
            
            .s_ms_icon {
                font-size: 3rem;
            }
            
            .s_ms_image {
                height: 300px;
            }
            
            .s_ms_feature {
                padding: 12px 15px;
            }
            
            .s_ms_feature_text {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .s_ms_title {
                font-size: 1.8rem;
            }
            
            .s_ms_icon {
                font-size: 2.5rem;
            }
            
            .s_ms_image {
                height: 250px;
            }
            
            .s_ms_feature {
                padding: 10px 12px;
                margin-bottom: 15px;
            }
            
            .s_ms_check {
                width: 20px;
                height: 20px;
                font-size: 1rem;
            }
        }

         .s_sc_section {
            padding: 120px 0;
            background: #f8f9fa;
        }

        .s_sc_header {
            text-align: center;
            margin-bottom: 80px;
        }

        .s_sc_title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1a2980;
            margin-bottom: 15px;
        }

        .s_sc_subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .s_sc_content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .s_sc_item {
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 15px;
            border: 1px solid #eaeaea;
            transition: all 0.3s ease;
        }

        .s_sc_item:hover {
            transform: translateY(-10px);
            border-color: #26d0ce;
            box-shadow: 0 20px 40px rgba(26, 41, 128, 0.1);
        }

        .s_sc_icon {
            font-size: 3rem;
            margin-bottom: 25px;
            display: inline-block;
        }

        .s_sc_item_title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a2980;
            margin-bottom: 20px;
        }

        .s_sc_stats {
            font-size: 2.8rem;
            font-weight: 800;
            color: #26d0ce;
            margin-bottom: 15px;
            line-height: 1;
        }

        .s_sc_desc {
            font-size: 1rem;
            color: #666;
            margin: 0;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .s_sc_section {
                padding: 80px 0;
            }
            
            .s_sc_title {
                font-size: 2.8rem;
            }
            
            .s_sc_content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .s_sc_title {
                font-size: 2.3rem;
            }
            
            .s_sc_subtitle {
                font-size: 1.1rem;
            }
            
            .s_sc_content {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .s_sc_item {
                padding: 35px 30px;
            }
            
            .s_sc_icon {
                font-size: 2.5rem;
            }
            
            .s_sc_stats {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 576px) {
            .s_sc_title {
                font-size: 2rem;
            }
            
            .s_sc_item {
                padding: 30px 25px;
            }
            
            .s_sc_item_title {
                font-size: 1.3rem;
            }
            
            .s_sc_stats {
                font-size: 2rem;
            }
        }

         .s_cta_section {
            padding: 100px 0;
            background: #ffffff;
        }

        .s_cta_jumbotron {
            background: linear-gradient(135deg, #1a2980 0%, #0a0f2e 100%);
            border-radius: 30px;
            padding: 70px 50px;
            position: relative;
            overflow: hidden;
            max-width: 1000px;
            margin: 0 auto;
            box-shadow: 0 25px 60px rgba(26, 41, 128, 0.15);
        }

        .s_cta_jumbotron::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(38, 208, 206, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(124, 252, 0, 0.1) 0%, transparent 50%);
        }

        .s_cta_content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
        }

        .s_cta_title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.1;
        }

        .s_cta_subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .s_cta_button {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #7CFC00 0%, #26d0ce 100%);
            color: white;
            padding: 18px 45px;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(124, 252, 0, 0.3);
        }

        .s_cta_button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(124, 252, 0, 0.4);
            color: white;
        }

        .s_cta_button_icon {
            transition: transform 0.3s ease;
        }

        .s_cta_button:hover .s_cta_button_icon {
            transform: translateX(5px);
        }

        /* Corner decorations */
        .s_cta_corner {
            position: absolute;
            width: 80px;
            height: 80px;
            z-index: 5;
        }

        .s_cta_corner_tl {
            top: -1px;
            left: -1px;
            border-top: 3px solid #26d0ce;
            border-left: 3px solid #26d0ce;
            border-top-left-radius: 30px;
        }

        .s_cta_corner_tr {
            top: -1px;
            right: -1px;
            border-top: 3px solid #7CFC00;
            border-right: 3px solid #7CFC00;
            border-top-right-radius: 30px;
        }

        .s_cta_corner_bl {
            bottom: -1px;
            left: -1px;
            border-bottom: 3px solid #7CFC00;
            border-left: 3px solid #7CFC00;
            border-bottom-left-radius: 30px;
        }

        .s_cta_corner_br {
            bottom: -1px;
            right: -1px;
            border-bottom: 3px solid #26d0ce;
            border-right: 3px solid #26d0ce;
            border-bottom-right-radius: 30px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .s_cta_jumbotron {
                max-width: 900px;
            }
        }

        @media (max-width: 992px) {
            .s_cta_section {
                padding: 80px 0;
            }
            
            .s_cta_jumbotron {
                padding: 60px 40px;
                max-width: 750px;
            }
            
            .s_cta_title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .s_cta_jumbotron {
                padding: 50px 30px;
                border-radius: 25px;
            }
            
            .s_cta_title {
                font-size: 2.2rem;
            }
            
            .s_cta_subtitle {
                font-size: 1.1rem;
            }
            
            .s_cta_button {
                padding: 16px 35px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .s_cta_section {
                padding: 60px 15px;
            }
            
            .s_cta_jumbotron {
                padding: 40px 25px;
                border-radius: 20px;
            }
            
            .s_cta_title {
                font-size: 1.8rem;
            }
            
            .s_cta_subtitle {
                font-size: 1rem;
            }
            
            .s_cta_button {
                padding: 14px 30px;
                font-size: 1rem;
            }
            
            .s_cta_corner {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 400px) {
            .s_cta_title {
                font-size: 1.6rem;
            }
            
            .s_cta_jumbotron {
                padding: 35px 20px;
            }
            
            .s_cta_button {
                padding: 12px 25px;
                font-size: 0.95rem;
            }
        }