.navbar-wrapper {
    font-family: 'Poppins', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base navbar styling */
.custom-navbar {
    background-color: rgba(255, 255, 255, 0.98);
    padding:0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    margin: 0px;
}

/* Scrolled state - more pronounced */
.custom-navbar.scrolled {
    padding: 0px;
    border-bottom: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7) border-box;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(0);
}

/* Rectangle logo styling */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: 0px;
    padding: 0px;
}

.logo-rectangle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    margin-right: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-rectangle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #2D3748;
    letter-spacing: -0.5px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

/* Logo hover effect */
.logo-container:hover .logo-rectangle {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.logo-container:hover .logo-text {
    color: #667eea;
}

/* Navigation links */
.nav-links-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item-custom {
    margin: 0 8px;
    position: relative;
}

.nav-link-custom {
    color: #4A5568;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 18px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-link-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 8px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.nav-link-custom:hover::before {
    transform: translateX(0);
}

.nav-link-custom:hover {
    color: #667eea;
    transform: translateY(-2px);
}

.nav-link-custom.active {
    color: #667eea;
    font-weight: 600;
}

.nav-link-custom.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 18px;
    right: 18px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Login and Tracking buttons */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    background: transparent;
    color: #4A5568;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-login:hover {
    background: #F7FAFC;
    border-color: #CBD5E0;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-tracking {
    background: linear-gradient(135deg, #005493 0%, #005e8f 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-tracking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

.btn-tracking:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-tracking:active {
    transform: translateY(-1px);
}

/* Mobile menu toggler */
.navbar-toggler-custom {
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.navbar-toggler-custom:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.navbar-toggler-custom:hover {
    border-color: #CBD5E0;
    background-color: #F7FAFC;
}

/* Mobile menu adjustments */
@media (max-width: 991.98px) {
    .nav-links-container {
        padding: 20px 0;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
        backdrop-filter: blur(10px);
    }

    .nav-item-custom {
        margin: 5px 0;
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #E2E8F0;
    }

    .btn-login,
    .btn-tracking {
        width: 100%;
        justify-content: center;
    }

    .custom-navbar {
        padding: 15px 0;
    }

    .custom-navbar.scrolled {
        padding: 10px 0;
    }
}

/* Additional scroll effect enhancements */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.scrolled .logo-rectangle {
    animation: fadeInDown 0.5s ease;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    width: 10px;
}

/* Track */
body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Handle */
body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #764ba2, #667eea);
}

/* Demo content to enable scrolling */
.demo-content {
    height: 200vh;
    padding-top: 120px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.scroll-hint {
    text-align: center;
    margin-top: 50px;
    color: #4A5568;
    font-size: 18px;
    max-width: 600px;
    padding: 0 20px;
}

.scroll-hint i {
    color: #667eea;
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}

.scroll-hint h2 {
    color: #2D3748;
    font-weight: 700;
    margin-bottom: 15px;
}


.pb_carousel_container {
    font-family: 'Inter', sans-serif;
    position: relative;
    /* margin: 40px auto; */
    /* max-width: 1400px; */
    /* border-radius: 20px; */
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin-top: 50px;
}

/* Carousel Items */
.pb_carousel_item {
    height: 650px;
    position: relative;
}

.pb_carousel_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Overlay */
.pb_content_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    display: flex;
    align-items: center;
    padding: 0 100px;
}

.pb_content_wrapper {
    max-width: 800px;
    color: white;
}

/* Badge */
.pb_badge {
    display: inline-block;
    background-color: #FFC107;
    color: #0f172a;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Title */
.pb_title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

.pb_title_highlight {
    color: #FFC107;
}

/* Description */
.pb_description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* Stats Container */
.pb_stats_container {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.pb_stat_item {
    text-align: center;
}

.pb_stat_number {
    font-size: 3rem;
    font-weight: 800;
    color: #FFC107;
    line-height: 1;
    margin-bottom: 8px;
}

.pb_stat_label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* CTA Button */
.pb_cta_button {
    background-color: #3B82F6;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.pb_cta_button:hover {
    background-color: #2563EB;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

/* Navigation Dots */
.pb_dots_container {
    position: absolute;
    bottom: 40px;
    left: 100px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.pb_dot {
    width: 50px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pb_dot.active {
    background-color: #FFC107;
    width: 70px;
}

/* Navigation Buttons */
.pb_nav_container {
    position: absolute;
    bottom: 30px;
    right: 100px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.pb_nav_btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pb_nav_btn:hover {
    background-color: #3B82F6;
    border-color: #3B82F6;
    transform: scale(1.1);
}

/* Slide Counter */
.pb_slide_counter {
    position: absolute;
    top: 40px;
    right: 100px;
    color: #FFC107;
    font-size: 1.3rem;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pb_current_slide {
    font-size: 2.5rem;
    color: white;
}

/* Responsive Design */
@media (max-width: 1400px) {
  

    .pb_content_overlay {
        padding: 0 80px;
    }

    .pb_dots_container {
        left: 80px;
    }

    .pb_nav_container {
        right: 80px;
    }

    .pb_slide_counter {
        right: 80px;
    }
}

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

    .pb_stats_container {
        gap: 30px;
    }

    .pb_stat_number {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .pb_carousel_item {
        height: 550px;
    }

    .pb_title {
        font-size: 3rem;
    }

    .pb_content_overlay {
        padding: 0 50px;
    }

    .pb_dots_container {
        left: 50px;
        bottom: 30px;
    }

    .pb_nav_container {
        right: 50px;
        bottom: 25px;
    }

    .pb_slide_counter {
        right: 50px;
        top: 30px;
    }

    .pb_nav_btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
      .pb_carousel_container {
        margin-top: 85px;
    }
}

@media (max-width: 768px) {
    .pb_carousel_item {
        height: 500px;
    }

    .pb_title {
        font-size: 2.5rem;
    }

    .pb_description {
        font-size: 1.1rem;
    }

    .pb_content_overlay {
        padding: 0 30px;
    }

    .pb_stats_container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .pb_stat_item {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .pb_stat_number {
        font-size: 2.2rem;
        margin-bottom: 0;
    }

    .pb_dots_container {
        left: 30px;
    }

    .pb_nav_container {
        right: 30px;
    }

    .pb_slide_counter {
        right: 30px;
    }
}

@media (max-width: 576px) {
    .pb_carousel_item {
        height: 450px;
    }

    .pb_title {
        font-size: 2rem;
    }

    .pb_description {
        font-size: 1rem;
    }

    .pb_content_overlay {
        padding: 0 20px;
    }

    .pb_cta_button {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .pb_dots_container {
        left: 20px;
        bottom: 20px;
    }

    .pb_nav_container {
        right: 20px;
        bottom: 15px;
    }

    .pb_slide_counter {
        right: 20px;
        top: 20px;
        font-size: 1.1rem;
    }

    .pb_current_slide {
        font-size: 2rem;
    }

    .pb_nav_btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .pb_badge {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Animation Classes */
.pb_fade_in {
    animation: pb_fadeIn 0.8s ease forwards;
}

.pb_slide_up {
    animation: pb_slideUp 0.8s ease forwards;
}

@keyframes pb_fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pb_slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

  .hss_services_section {
            font-family: 'Inter', sans-serif;
            padding: 100px 0;
            background-color: #f7f7f7;
        }
        
        .hss_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hss_row {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
        }
        
        /* Left Side Content */
        .hss_left_side {
            flex: 1;
            min-width: 300px;
            padding: 40px 0;
        }
        
        .hss_section_subtitle {
            display: inline-block;
            color: #FFC107;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            position: relative;
            padding-left: 30px;
        }
        
        .hss_section_subtitle::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 2px;
            background-color: #FFC107;
        }
        
        .hss_section_title {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.1;
            color: #1e293b;
            margin-bottom: 25px;
        }
        
        .hss_title_highlight {
            color: #3B82F6;
            display: block;
        }
        
        .hss_section_description {
            font-size: 1.2rem;
            line-height: 1.7;
            color: #64748b;
            margin-bottom: 30px;
            max-width: 500px;
        }
        
        /* Benefit Points */
        .hss_benefits_list {
            margin-top: 40px;
        }
        
        .hss_benefit_item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .hss_benefit_icon {
            width: 24px;
            height: 24px;
            background-color: rgba(59, 130, 246, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .hss_benefit_icon i {
            color: #3B82F6;
            font-size: 12px;
        }
        
        .hss_benefit_text {
            font-size: 1.1rem;
            color: #475569;
            line-height: 1.5;
        }
        
        /* Right Side Content - Compact Cards */
        .hss_right_side {
            flex: 1.1;
            min-width: 300px;
        }
        
        .hss_services_container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        /* Compact Service Card */
        .hss_service_card {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .hss_service_card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: #FFC107;
            transition: all 0.3s ease;
        }
        
        .hss_service_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            border-color: #3B82F6;
        }
        
        .hss_service_card:hover::before {
            background-color: #3B82F6;
        }
        
        /* Icon and Content Row */
        .hss_card_content {
            display: flex;
            align-items: flex-start;
            gap: 25px;
        }
        
        .hss_icon_container {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            background-color: rgba(255, 193, 7, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .hss_service_card:hover .hss_icon_container {
            background-color: rgba(59, 130, 246, 0.1);
        }
        
        .hss_icon {
            width: 40px;
            height: 40px;
            object-fit: contain;
            transition: all 0.3s ease;
        }
        
        .hss_service_card:hover .hss_icon {
            transform: scale(1.1);
        }
        
        /* Service Content */
        .hss_service_title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        
        .hss_service_card:hover .hss_service_title {
            color: #3B82F6;
        }
        
        .hss_service_description {
            font-size: 1rem;
            line-height: 1.6;
            color: #64748b;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .hss_row {
                gap: 50px;
            }
            
            .hss_section_title {
                font-size: 2.8rem;
            }
            
            .hss_service_card {
                padding: 30px;
                min-height: 180px;
            }
        }
        
        @media (max-width: 992px) {
            .hss_services_section {
                padding: 80px 0;
            }
            
            .hss_section_title {
                font-size: 2.4rem;
            }
            
            .hss_section_description {
                font-size: 1.1rem;
            }
            
            .hss_service_card {
                padding: 25px;
                min-height: 170px;
            }
            
            .hss_card_content {
                gap: 20px;
            }
            
            .hss_icon_container {
                width: 60px;
                height: 60px;
            }
            
            .hss_icon {
                width: 35px;
                height: 35px;
            }
        }
        
        @media (max-width: 768px) {
            .hss_services_section {
                padding: 60px 0;
            }
            
            .hss_row {
                flex-direction: column;
                gap: 40px;
            }
            
            .hss_left_side,
            .hss_right_side {
                width: 100%;
            }
            
            .hss_left_side {
                padding: 0;
            }
            
            .hss_section_title {
                font-size: 2.2rem;
            }
            
            .hss_service_title {
                font-size: 1.5rem;
            }
            
            .hss_service_description {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hss_services_section {
                padding: 50px 0;
            }
            
            .hss_container {
                padding: 0 15px;
            }
            
            .hss_section_title {
                font-size: 2rem;
            }
            
            .hss_section_description {
                font-size: 1rem;
            }
            
            .hss_service_card {
                padding: 25px;
                min-height: auto;
            }
            
            .hss_card_content {
                flex-direction: column;
                gap: 20px;
            }
            
            .hss_icon_container {
                width: 60px;
                height: 60px;
            }
            
            .hss_icon {
                width: 35px;
                height: 35px;
            }
            
            .hss_service_title {
                font-size: 1.4rem;
                margin-bottom: 10px;
            }
        }
        
        /* Animation Classes - Initially Hidden */
        .hss_animate_element {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .hss_animate_fade_in {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Different delays for staggered animation */
        .hss_delay_1 {
            transition-delay: 0.1s;
        }
        
        .hss_delay_2 {
            transition-delay: 0.2s;
        }
        
        .hss_delay_3 {
            transition-delay: 0.3s;
        }
        
        .hss_delay_4 {
            transition-delay: 0.4s;
        }
        
        .hss_delay_5 {
            transition-delay: 0.5s;
        }

          .hh_stats_section {
            font-family: 'Inter', sans-serif;
            padding: 80px 0;
            background-color: #ffffff;
            position: relative;
        }
        
        .hh_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Stats Grid */
        .hh_stats_grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        /* Stat Card */
        .hh_stat_card {
            background: #ffffff;
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #e2e8f0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        }
        
        /* Proper Border Animation Container */
        .hh_border_animation {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 18px;
            overflow: hidden;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .hh_border_animation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, 
                transparent 0%, 
                #FFC107 25%, 
                #3B82F6 50%, 
                #FFC107 75%, 
                transparent 100%
            );
            background-size: 300% 100%;
            animation: hh_border_flow 2s linear infinite;
            border-radius: 18px;
            padding: 2px;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }
        
        @keyframes hh_border_flow {
            0% { background-position: 300% 0; }
            100% { background-position: 0% 0; }
        }
        
        /* Card Hover Effect */
        .hh_stat_card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: transparent;
        }
        
        .hh_stat_card:hover .hh_border_animation {
            opacity: 1;
        }
        
        /* Card Content */
        .hh_card_content {
            position: relative;
            z-index: 2;
        }
        
        /* Icon Container */
        .hh_icon_wrapper {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 20px rgba(255, 193, 7, 0.15);
        }
        
        .hh_stat_card:hover .hh_icon_wrapper {
            transform: scale(1.1);
            background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
            box-shadow: 0 12px 25px rgba(59, 130, 246, 0.25);
        }
        
        .hh_icon {
            color: white;
            font-size: 1.5rem;
            transition: transform 0.4s ease;
        }
        
        .hh_stat_card:hover .hh_icon {
            transform: scale(1.1);
        }
        
        /* Stat Number */
        .hh_stat_number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e293b;
            line-height: 1;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .hh_stat_card:hover .hh_stat_number {
            color: #3B82F6;
        }
        
        /* Plus Symbol */
        .hh_plus {
            color: #FFC107;
            font-weight: 300;
            font-size: 2rem;
            margin-left: 3px;
            transition: color 0.3s ease;
        }
        
        .hh_stat_card:hover .hh_plus {
            color: #3B82F6;
        }
        
        /* Stat Label */
        .hh_stat_label {
            font-size: 1rem;
            color: #64748b;
            font-weight: 600;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        
        .hh_stat_card:hover .hh_stat_label {
            color: #475569;
        }
        
        /* Background Glow Effect */
        .hh_card_glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: all 0.6s ease;
            z-index: 1;
        }
        
        .hh_stat_card:hover .hh_card_glow {
            width: 200%;
            height: 200%;
            opacity: 1;
        }
        
        /* Animation Classes */
        .hh_animate_element {
            opacity: 0;
            transform: translateY(20px);
        }
        
        .hh_animate_fade_in {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        /* Stagger Delays */
        .hh_delay_1 { transition-delay: 0.1s; }
        .hh_delay_2 { transition-delay: 0.2s; }
        .hh_delay_3 { transition-delay: 0.3s; }
        .hh_delay_4 { transition-delay: 0.4s; }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hh_stats_grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .hh_stat_card {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 768px) {
            .hh_stats_section {
                padding: 60px 0;
            }
            
            .hh_stats_grid {
                grid-template-columns: 1fr;
                gap: 15px;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .hh_stat_card {
                padding: 25px 20px;
            }
        }
        
        /* Number Counter Animation */
        .hh_counting {
            animation: hh_count_up 0.6s ease-out forwards;
        }
        
        @keyframes hh_count_up {
            from { 
                opacity: 0;
                transform: translateY(10px) scale(0.9);
            }
            to { 
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .hwwa_section {
            font-family: 'Inter', sans-serif;
            padding: 120px 0;
            background: #f7f7f759;
            position: relative;
            overflow: hidden;
        }
        
        .hwwa_container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }
        
        .hwwa_content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        /* Text Content - Premium Animated */
        .hwwa_text {
            position: relative;
            padding-right: 40px;
        }
        
        .hwwa_label {
            display: inline-block;
            color: #FFC107;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 25px;
            padding: 8px 20px;
            background: rgba(255, 193, 7, 0.1);
            border-radius: 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: hwwa_label_appear 0.8s ease forwards 0.2s;
        }
        
        @keyframes hwwa_label_appear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hwwa_title {
            font-size: 3.5rem;
            font-weight: 900;
            color: #1e293b;
            line-height: 1.1;
            margin-bottom: 35px;
            opacity: 0;
            transform: translateY(40px);
            font-weight: 500;
        }
        
        .hwwa_highlight {
            color: #3B82F6;
            position: relative;
            display: inline-block;
        }
        
        .hwwa_highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(59, 130, 246, 0.15);
            z-index: -1;
            transform: scaleX(0);
            transform-origin: left;
            animation: hwwa_highlight_line 1s ease forwards 1.2s;
        }
        
        @keyframes hwwa_highlight_line {
            to {
                transform: scaleX(1);
            }
        }
        
        .hwwa_description {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #475569;
            margin-bottom: 25px;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .hwwa_desc_1 {
            animation: hwwa_text_appear 0.8s ease forwards 0.6s;
        }
        
        .hwwa_desc_2 {
            animation: hwwa_text_appear 0.8s ease forwards 0.8s;
        }
        
        @keyframes hwwa_text_appear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Image Section - Premium Animated */
        .hwwa_image_wrap {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            transform-style: preserve-3d;
            perspective: 1000px;
            opacity: 0;
            transform: translateX(50px) rotateY(15deg);
            animation: hwwa_image_appear 1s ease forwards 0.4s;
        }
        
        @keyframes hwwa_image_appear {
            to {
                opacity: 1;
                transform: translateX(0) rotateY(0);
            }
        }
        
        .hwwa_image {
            width: 100%;
            /* height: 520px; */
            object-fit: cover;
            display: block;
            transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform-origin: center;
        }
        
        .hwwa_image_wrap:hover .hwwa_image {
            transform: scale(1.08) rotate(1deg);
        }
        
        /* Floating Badge */
        .hwwa_badge {
            position: absolute;
            top: 30px;
            right: 30px;
            background: linear-gradient(135deg, #FFC107, #FF9800);
            color: white;
            padding: 14px 28px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 800;
            box-shadow: 0 15px 35px rgba(255, 152, 0, 0.3);
            z-index: 2;
            transform: translateY(-20px);
            opacity: 0;
            animation: hwwa_badge_appear 0.8s ease forwards 1s;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        @keyframes hwwa_badge_appear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hwwa_image_wrap:hover .hwwa_badge {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(255, 152, 0, 0.4);
        }
        
        /* Image Overlay */
        .hwwa_image_overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0) 100%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.6s ease;
        }
        
        .hwwa_image_wrap:hover .hwwa_image_overlay {
            opacity: 1;
        }
        
        /* Animated Border */
        .hwwa_border_animation {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 22px;
            background: linear-gradient(45deg, #FFC107, #3B82F6, #FFC107);
            background-size: 300% 300%;
            animation: hwwa_border_rotate 4s linear infinite;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        @keyframes hwwa_border_rotate {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .hwwa_image_wrap:hover .hwwa_border_animation {
            opacity: 1;
        }
        
        /* Background Elements */
        .hwwa_bg_element {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 1;
        }
        
        .hwwa_bg_1 {
            width: 300px;
            height: 300px;
            background: rgba(59, 130, 246, 0.08);
            top: 10%;
            left: 5%;
            animation: hwwa_float 20s infinite ease-in-out;
        }
        
        .hwwa_bg_2 {
            width: 250px;
            height: 250px;
            background: rgba(255, 193, 7, 0.06);
            bottom: 10%;
            right: 5%;
            animation: hwwa_float 25s infinite ease-in-out reverse;
        }
        
        @keyframes hwwa_float {
            0%, 100% { transform: translateY(0) translateX(0); }
            25% { transform: translateY(-30px) translateX(20px); }
            50% { transform: translateY(0) translateX(40px); }
            75% { transform: translateY(30px) translateX(20px); }
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .hwwa_content {
                gap: 60px;
            }
            
            .hwwa_title {
                font-size: 3rem;
            }
            
            .hwwa_image {
                height: 460px;
            }
        }
        
        @media (max-width: 992px) {
            .hwwa_section {
                padding: 100px 0;
            }
            
            .hwwa_content {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .hwwa_text {
                padding-right: 0;
                text-align: center;
            }
            
            .hwwa_title {
                font-size: 2.8rem;
                margin-bottom: 30px;
            }
            
            .hwwa_image {
                height: 420px;
            }
            
            /* Adjust animations for mobile */
            .hwwa_image_wrap {
                transform: translateY(50px);
                animation: hwwa_image_appear_mobile 1s ease forwards 0.4s;
            }
            
            @keyframes hwwa_image_appear_mobile {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }
        
        @media (max-width: 768px) {
            .hwwa_section {
                padding: 80px 0;
            }
            
            .hwwa_container {
                padding: 0 25px;
            }
            
            .hwwa_title {
                font-size: 2.4rem;
            }
            
            .hwwa_description {
                font-size: 1.1rem;
            }
            
            .hwwa_image {
                height: 380px;
            }
        }
        
        @media (max-width: 480px) {
            .hwwa_section {
                padding: 70px 0;
            }
            
            .hwwa_container {
                padding: 0 20px;
            }
            
            .hwwa_title {
                font-size: 2rem;
            }
            
            .hwwa_description {
                font-size: 1rem;
            }
            
            .hwwa_image {
                height: 320px;
            }
            
            .hwwa_badge {
                top: 20px;
                right: 20px;
                padding: 12px 24px;
                font-size: 14px;
            }
        }

         .clnt_section {
            font-family: 'Inter', sans-serif;
            position: relative;
            overflow: hidden;
        }
        
        .clnt_container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        /* Infinite Scroll Container */
        .clnt_scroll_container {
            position: relative;
            overflow: hidden;
            padding: 60px 0;
        }
        
        /* Scroll Track */
        .clnt_scroll_track {
            display: flex;
            gap: 40px;
            width: fit-content;
            animation: clnt_scroll 40s linear infinite;
        }
        
        /* Pause animation on hover */
        .clnt_scroll_container:hover .clnt_scroll_track {
            animation-play-state: paused;
        }
        
        @keyframes clnt_scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-200px * 8 - 40px * 8));
            }
        }
        
        /* Logo Card */
        .clnt_logo_card {
            flex: 0 0 200px;
            height: 140px;
            background: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(226, 232, 240, 0.5);
        }
        
        /* Logo Image */
        .clnt_logo_img {
            width: 120px;
            height: 60px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s ease;
        }
        
        /* Hover Effects */
        .clnt_logo_card:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border-color: #3B82F6;
        }
        
        .clnt_logo_card:hover .clnt_logo_img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }
        
        /* Card Background Animation */
        .clnt_card_bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(59, 130, 246, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }
        
        .clnt_logo_card:hover .clnt_card_bg {
            opacity: 1;
        }
        
        /* Animated Border */
        .clnt_card_border {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 22px;
            /* background: linear-gradient(45deg, #FFC107, #3B82F6, #FFC107); */
            background-size: 300% 300%;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
            animation: clnt_border_rotate 3s linear infinite;
        }
        
        @keyframes clnt_border_rotate {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .clnt_logo_card:hover .clnt_card_border {
            opacity: 1;
        }
        
        /* Pulse Indicator */
        .clnt_pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.1);
            opacity: 0;
            transition: all 0.6s ease;
            z-index: 0;
        }
        
        .clnt_logo_card:hover .clnt_pulse {
            width: 200px;
            height: 200px;
            opacity: 1;
        }
        
        /* Background Elements */
        .clnt_bg_element {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 1;
        }
        
        .clnt_bg_1 {
            width: 400px;
            height: 400px;
            background: rgba(59, 130, 246, 0.03);
            top: -200px;
            right: -100px;
            animation: clnt_float 25s infinite linear;
        }
        
        .clnt_bg_2 {
            width: 350px;
            height: 350px;
            background: rgba(255, 193, 7, 0.02);
            bottom: -150px;
            left: -100px;
            animation: clnt_float 30s infinite linear reverse;
        }
        
        @keyframes clnt_float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-30px, 30px) rotate(240deg); }
        }
        
        /* Scroll Gradient Overlays */
        .clnt_gradient_left, .clnt_gradient_right {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 2;
            pointer-events: none;
        }
        
        .clnt_gradient_left {
            left: 0;
            background: linear-gradient(to right, #ffffff 0%, transparent 100%);
        }
        
        .clnt_gradient_right {
            right: 0;
            background: linear-gradient(to left, #ffffff 0%, transparent 100%);
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .clnt_logo_card {
                flex: 0 0 180px;
                height: 130px;
            }
            
            .clnt_logo_img {
                width: 100px;
                height: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .clnt_section {
                padding: 80px 0;
            }
            
            .clnt_container {
                padding: 0 25px;
            }
            
            .clnt_scroll_container {
                padding: 40px 0;
            }
            
            .clnt_logo_card {
                flex: 0 0 160px;
                height: 120px;
            }
            
            .clnt_scroll_track {
                gap: 30px;
            }
            
            .clnt_logo_img {
                width: 90px;
                height: 45px;
            }
        }
        
        @media (max-width: 480px) {
            .clnt_section {
                padding: 60px 0;
            }
            
            .clnt_container {
                padding: 0 20px;
            }
            
            .clnt_logo_card {
                flex: 0 0 140px;
                height: 110px;
            }
            
            .clnt_scroll_track {
                gap: 20px;
            }
            
            .clnt_logo_img {
                width: 80px;
                height: 40px;
            }
            
            .clnt_gradient_left, .clnt_gradient_right {
                width: 60px;
            }
        }

             .rcl_footer {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }
        
        /* Subtle Texture Background */
        .rcl_footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.06) 0%, transparent 40%),
                linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.02) 50%, transparent 52%);
            background-size: 300px 300px, 300px 300px, 60px 60px;
            opacity: 0.6;
            z-index: 1;
        }
        
        .rcl_container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }
        
        /* Main Footer Content */
        .rcl_main_content {
            padding: 80px 0 50px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Company Info - Clean Design */
        .rcl_company_info {
            padding-right: 40px;
        }
        
        .rcl_logo_container {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .rcl_logo_box {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .rcl_logo_box i {
            color: #0f172a;
            font-size: 24px;
            font-weight: 900;
        }
        
        .rcl_logo_text {
            font-size: 28px;
            font-weight: 800;
            color: white;
        }
        
        .rcl_logo_text span {
            color: #FFC107;
        }
        
        .rcl_tagline {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        /* Developer Section - Prominent */
        .rcl_developer_section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 25px;
            margin-top: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .rcl_developed_by {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 10px;
            display: block;
        }
        
        .rcl_developer_name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #FFC107;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .rcl_developer_link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #3B82F6;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 10px 20px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .rcl_developer_link:hover {
            background: rgba(59, 130, 246, 0.2);
            transform: translateY(-2px);
        }
        
        /* Quick Links */
        .rcl_column_title {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .rcl_column_title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #FFC107;
            border-radius: 2px;
        }
        
        .rcl_link_list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .rcl_link_item {
            margin-bottom: 15px;
        }
        
        .rcl_link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .rcl_link i {
            color: #FFC107;
            font-size: 12px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }
        
        .rcl_link:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .rcl_link:hover i {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Contact Info */
        .rcl_contact_item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .rcl_contact_icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 193, 7, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFC107;
            flex-shrink: 0;
        }
        
        .rcl_contact_text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .rcl_contact_text strong {
            color: white;
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        /* Bottom Bar - Clean and Simple */
        .rcl_bottom_bar {
            padding: 30px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .rcl_copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.95rem;
        }
        
        .rcl_design_line {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            text-align: right;
        }
        
        .rcl_design_line a {
            color: #FFC107;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .rcl_design_line a:hover {
            color: #3B82F6;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .rcl_main_content {
                grid-template-columns: 1.5fr 1fr 1fr;
                gap: 50px;
            }
        }
        
        @media (max-width: 992px) {
            .rcl_main_content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
                padding: 60px 0 40px;
            }
            
            .rcl_company_info {
                grid-column: 1 / -1;
                padding-right: 0;
            }
        }
        
        @media (max-width: 768px) {
            .rcl_container {
                padding: 0 25px;
            }
            
            .rcl_main_content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 50px 0 30px;
            }
            
            .rcl_bottom_bar {
                flex-direction: column;
                gap: 15px;
                text-align: center;
                padding: 25px 0;
            }
            
            .rcl_design_line {
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .rcl_container {
                padding: 0 20px;
            }
            
            .rcl_main_content {
                padding: 40px 0 20px;
            }
            
            .rcl_logo_container {
                justify-content: center;
                text-align: center;
                flex-direction: column;
                gap: 10px;
            }
            
            .rcl_tagline {
                text-align: center;
            }
            
            .rcl_column_title {
                text-align: center;
            }
            
            .rcl_column_title::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }