
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    a {
        text-decoration: none;
        transition: all 0.3s ease;
    }

    img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .fade-animate {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .fade-animate.active {
        opacity: 1;
        transform: translateY(0);
    }

    .home-swiper-wrap {
        width: 100%;
        height: calc(100vh - 1px);
        min-height: 600px;
        position: relative;
        overflow: hidden;
        margin-bottom: 0;
    }

    .home-swiper {
        width: 100%;
        height: 100%;
    }

    .home-swiper .swiper-slide {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        margin: 0 !important;
    }

    .slide-bg-video {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transform: scale(1);
        z-index: 1;
        will-change: auto;
        backface-visibility: hidden;
    }

    .slide-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0, 15, 40, 0.82) 0%, rgba(0, 15, 40, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
    }

    .slide-content {
        position: absolute;
        left: 16%;
        right: 8%;
        top: 40%;
        transform: translateY(-50%);
        max-width: 680px;
        color: #fff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 36px;
    }

    .slide-title-static {
        font-size: 70px;
        font-weight: 700;
        line-height: 1.25;
        word-break: break-word;
        opacity: 1;
        transform: none;
        width: 120%;
    }

    .slide-desc-static {
        font-size: 21px;
        line-height: 1.8;
        color: #e5e7eb;
        word-break: break-word;
        opacity: 1;
        transform: none;
    }

    .title-des {
        margin-left: 170px;
    }

    .home-swiper .swiper-pagination {
        bottom: 40px;
        left: 8%;
        width: auto;
        text-align: left;
    }

    .home-swiper .swiper-pagination-bullet {
        width: 40px;
        height: 4px;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.3);
        margin: 0 8px;
    }

    .home-swiper .swiper-pagination-bullet-active {
        width: 60px;
        background: #0066cc;
    }

    .home-swiper .swiper-button-next,
    .home-swiper .swiper-button-prev {
        display: none;
    }

    .section-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 16px 12px;
    }

    .section-head h2 {
        font-size: 38px;
        font-weight: 700;
        color: #1a1a2e;
        letter-spacing: -0.3px;
    }

    .section-head h2 span {
        color: #0066cc;
    }

    .more-btn {
        min-width: 120px;
        height: 50px;
        background-color: #0066cc;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        font-weight: 500;
        padding: 0 24px;
        font-size: 16px;
        transition: all 0.25s ease;
        box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
    }

    .more-btn:hover {
        background: #0052aa;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
    }

    .about-section {
        padding: 100px 0 80px;
        background: #f8faff;
    }

    .about-intro {
        display: flex;
        gap: 48px;
        align-items: center;
    }

    .intro-text {
        flex: 1;
    }

    .intro-text h2 {
        font-size: 38px;
        margin-bottom: 24px;
        color: #1a1a2e;
        line-height: 1.3;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .fade-animate.active .intro-text h2 {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    .intro-text p {
        font-size: 16px;
        line-height: 1.9;
        color: #444;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
    }

    .fade-animate.active .intro-text p:nth-of-type(1) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    .fade-animate.active .intro-text p:nth-of-type(2) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.6s;
    }

    .intro-text .more-btn {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease 0.8s;
    }

    .fade-animate.active .intro-text .more-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .intro-img {
        flex: 1;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        opacity: 0;
        transform: translateX(50px) scale(0.95);
        transition: all 0.8s ease 0.3s;
    }

    .fade-animate.active .intro-img {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

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

    .intro-img:hover img {
        transform: scale(1.04);
    }

    .cta-banner {
        position: relative;
        width: 100%;
        padding: 100px 0;
        overflow: hidden;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-banner.second {
        min-height: 450px;
    }

    .cta-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;
    }

    .cta-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.62);
        z-index: 1;
    }

    .cta-container {
        position: relative;
        z-index: 2;
        width: 100%;
        text-align: center;
    }

    .cta-content {
        max-width: 920px;
        margin: 0 auto 60px;
        color: #fff;
    }

    .cta-title {
        font-size: 44px;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -0.5px;
        margin-top: 45px;
        margin-bottom: 15px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease 0.2s;
    }

    .fade-animate.active .cta-title {
        opacity: 1;
        transform: translateY(0);
    }

    .cta-desc {
        font-size: 18px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s ease 0.4s;
    }

    .fade-animate.active .cta-desc {
        opacity: 1;
        transform: translateY(0);
    }

    .cta-banner.second .cta-title {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease 0.2s;
    }

    .cta-banner.second .cta-desc {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s ease 0.4s;
    }

    .cta-banner.second.fade-animate.active .cta-title {
        opacity: 1;
        transform: translateY(0);
    }

    .cta-banner.second.fade-animate.active .cta-desc {
        opacity: 1;
        transform: translateY(0);
    }

    .category-desc {
        font-size: 18px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .case-container {
        display: flex;
        gap: 12px;
        height: 490px;
    }

    .case-card {
        flex: 1;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        transition: flex 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-radius: 8px;
    }

    .case-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0);
        z-index: 0;
        pointer-events: none;
    }

    .case-card .case-card-title-wrap {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
        z-index: 2;
        transition: all 0.3s ease;
    }

    .case-card .case-card-title-wrap h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #fff;
        background: rgba(0, 0, 0, 0.55);
        display: inline-block;
        padding: 8px 18px;
        border-radius: 30px;
        transition: all 0.3s ease;
    }

    .case-card:hover .case-card-title-wrap h3 {
        background: rgba(0, 102, 204, 0.8);
        transform: scale(1.05);
    }

    .case-card .case-card-body {
        opacity: 0;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        transition: opacity 0.3s ease;
        pointer-events: none;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0) 100%);
        color: white;
        z-index: 2;
    }

    .case-card .case-card-body h3 {
        font-size: 22px;
        margin-bottom: 10px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease 0.1s;
    }

    .case-card .case-card-body p {
        font-size: 15px;
        line-height: 1.7;
        color: #eee;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease 0.2s;
    }

    .case-card:hover .case-card-body h3,
    .case-card:hover .case-card-body p {
        opacity: 1;
        transform: translateY(0);
    }

     .case-card:hover {
        flex: 4 !important;
    }

    .case-card:hover .case-card-title-wrap {
        opacity: 0;
    }

    .case-card:hover .case-card-body {
        opacity: 1;
    } 

    .case-card.active {
        flex: 4 !important;
    }

    .case-card.active .case-card-title-wrap {
        opacity: 0;
    }

    .case-card.active .case-card-body {
        opacity: 1;
    }


    .cta-banner.parallax-section {
        background-image: url('/static/product-bg.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-repeat: no-repeat;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-banner.parallax-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 0;
    }

    .cta-banner.parallax-section .container-cr {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .cta-banner.parallax-section .cta-container {
        position: relative;
        z-index: 2;
    }

    .stat-row {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 70px;
        text-align: center;
    }

    .stat-card {
        flex: 1;
        min-width: 180px;
        background: #fff;
        padding: 20px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        border-radius: 8px;
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .fade-animate.active .stat-card {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-animate.active .stat-card:nth-child(1) {
        transition-delay: 0.1s;
    }

    .fade-animate.active .stat-card:nth-child(2) {
        transition-delay: 0.2s;
    }

    .fade-animate.active .stat-card:nth-child(3) {
        transition-delay: 0.3s;
    }

    .fade-animate.active .stat-card:nth-child(4) {
        transition-delay: 0.4s;
    }

    .stat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);
    }

    .stat-num {
        font-size: 30px;
        display: flex;
        align-items: center;
        color: #0052aa;
        margin-bottom: 8px;
        font-weight: 700;
        justify-content: center;
    }

    .stat-num .plus-sign {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .stat-card:hover .plus-sign {
        transform: scale(1.2);
        color: #ff6b35;
    }

    .stat-desc {
        font-size: 14px;
        color: #666;
        transition: color 0.3s ease;
    }

    .stat-card:hover .stat-desc {
        color: #0052aa;
    }

    .news-section {
        padding: 80px 0 50px;
        background: #ffffff;
    }

    .news-swiper-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .news-swiper {
        width: 100%;
        overflow: hidden;
    }

    .news-swiper .swiper-wrapper {
        display: flex;
        align-items: stretch;
    }

    .news-swiper .swiper-slide {
        height: auto;
        display: flex;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .fade-animate.active .news-swiper .swiper-slide {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-animate.active .news-swiper .swiper-slide:nth-child(1) {
        transition-delay: 0.1s;
    }

    .fade-animate.active .news-swiper .swiper-slide:nth-child(2) {
        transition-delay: 0.2s;
    }

    .fade-animate.active .news-swiper .swiper-slide:nth-child(3) {
        transition-delay: 0.3s;
    }

    .news-card {
        background: #ffffff;
        overflow: hidden;
        border: 1px solid #fff;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }

    .news-card:hover {
        border-color: #fff;
    }

    .news-img {
        width: 100%;
        height: 300px;
        background: #fff;
        overflow: hidden;
        position: relative;
        flex-shrink: 0;
    }

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

    .news-card:hover .news-img img {
        transform: scale(0.9);
    }

    .news-card:hover .news-img {
        border: 2px solid #0052aa;
    }

    .news-body {
        padding: 22px 22px 26px;
        flex: 1;
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
        background-color: #f7f7f7;
    }

    .news-tag {
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
        color: #0066cc;
        background: #fff;
        padding: 4px 14px;
        border-radius: 30px;
        letter-spacing: 0.3px;
        margin-bottom: 14px;
        align-self: flex-start;
    }

    .news-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.4;
        color: #0b1a2e;
        margin-bottom: 12px;
        transition: color 0.2s;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-card:hover .news-title {
        color: #0066cc;
    }

    .news-meta {
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 14px;
        color: #7e8c9e;
        margin-top: 6px;
        border-top: 1px solid #eee;
        padding-top: 16px;
    }

    .news-meta .date {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .news-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .news-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #d0d8e3;
        opacity: 1;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        outline: none;
    }

    .news-pagination .swiper-pagination-bullet-active {
        background: #0066cc;
        transform: scale(1.2);
    }

    .news-swiper .swiper-pagination {
        display: none;
    }

    .section-head h2 {
        font-size: 38px;
        font-weight: 700;
        color: #1a1a2e;
        letter-spacing: -0.3px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
    }

    .fade-animate.active .section-head h2 {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.1s;
    }

    .section-head .more-btn {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease 0.3s;
    }

    .fade-animate.active .section-head .more-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .progress-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 3px;
        background: linear-gradient(90deg, #0066cc, #4A90D9, #0066cc);
        z-index: 9999;
        transition: width 0.1s linear;
        pointer-events: none;
    }

    @media (max-width: 992px) {
        .home-swiper-wrap {
            height: calc(100vh - 1px);
            min-height: 500px;
        }

        .slide-bg-video {
            object-fit: cover;
            min-height: 100%;
            min-width: 100%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

        }

        .slide-title-static {
            font-size: 42px;
        }

        .slide-desc-static {
            font-size: 18px;
        }

        .home-swiper .swiper-button-next,
        .home-swiper .swiper-button-prev {
            display: none;
        }

        .about-intro {
            flex-direction: column;
        }

        .intro-img img {
            height: 380px;
        }

        .stat-row {
            gap: 30px;
        }

        .news-swiper .swiper-slide {
            width: 50% !important;
        }

        .news-img {
            height: 240px;
        }

        .case-container {
            height: 360px;
        }

        .about-section,
        .news-section {
            padding: 60px 0;
        }

        .cta-title {
            font-size: 32px;
        }

        .intro-text h2 {
            font-size: 30px;
        }

        .stat-num {
            font-size: 30px;
        }
    }

    @media (max-width: 768px) {
        .container {
            padding-left: 20px;
            padding-right: 20px;
        }

        .home-swiper-wrap {
            height: calc(100vh - 1px);
            min-height: 440px;
        }

        .slide-bg-video {
            object-fit: cover;
        }

        .slide-title-static {
            font-size: 32px;
            width: 100%;
        }

        .slide-desc-static {
            font-size: 16px;
        }

        .slide-content {
            gap: 20px;
            left: 5%;
            right: 5%;
            max-width: 100%;

        }

        .title-des {
            margin-left: 50px;
        }

        .intro-img {
            flex: none;
            width: 100%;
        }

        .intro-img img {
            height: auto;
            aspect-ratio: 16 / 10;
            min-height: 220px;
            max-height: 380px;
        }

        .intro-text h2 {
            font-size: 28px;
        }

        .stat-row {
            gap: 16px;
        }

        .stat-card {
            min-width: 140px;
            padding: 16px;
            flex: 1 1 calc(50% - 16px);
        }

        .stat-num {
            font-size: 26px;
        }

        .case-container {
            flex-direction: column;
            height: auto;
            gap: 16px;
        }

        .case-card {
            flex: none;
            height: 200px;
            border-radius: 8px;
        }

        .case-card.active,
        .case-card:hover {
            flex: none !important;
        }

        .case-card .case-card-title-wrap {
            opacity: 1;
        }

        .case-card .case-card-body {
            opacity: 0;
        }

        .news-swiper .swiper-slide {
            width: 100% !important;
        }

        .news-img {
            height: 200px;
        }

        .news-body {
            padding: 16px;
        }

        .news-title {
            font-size: 17px;
        }

        .news-pagination {
            gap: 8px;
            margin-top: 24px;
        }

        .news-pagination .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
        }

        .cta-banner {
            padding: 50px 0;
            min-height: 300px;
        }

        .cta-banner.second {
            min-height: 350px;
        }

        .cta-bg {
            background-position: center;
            background-size: cover;
        }

        .cta-title {
            font-size: 28px;
            margin-top: 20px;
        }

        .cta-desc {
            font-size: 15px;
        }

        .category-desc {
            font-size: 15px;
            -webkit-line-clamp: 2;
        }

        .about-section,
        .news-section {
            padding: 40px 0;
        }

        .section-head {
            margin-bottom: 24px;
        }

        .section-head h2 {
            font-size: 28px;
        }

        .more-btn {
            min-width: 100px;
            height: 42px;
            font-size: 14px;
            padding: 0 18px;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding-left: 16px;
            padding-right: 16px;
        }

        .home-swiper-wrap {
            min-height: 360px;
            height: 60vh;
        }

        .slide-bg-video {
            object-fit: cover;
        }

        .slide-title-static {
            font-size: 24px;
            width: 100%;
        }

        .slide-desc-static {
            font-size: 14px;
            line-height: 1.6;
        }

        .slide-content {
            gap: 14px;
        }

        .title-des {
            margin-left: 50px;
        }

        .home-swiper .swiper-pagination {
            bottom: 20px;
            left: 5%;
        }

        .home-swiper .swiper-pagination-bullet {
            width: 24px;
            height: 3px;
            margin: 0 4px;
        }

        .home-swiper .swiper-pagination-bullet-active {
            width: 36px;
        }

        .intro-text h2 {
            font-size: 22px;
            margin-bottom: 16px;
        }

        .intro-text p {
            font-size: 14px;
            line-height: 1.8;
        }

        .intro-img img {
            aspect-ratio: 16 / 11;
            min-height: 180px;
        }

        .stat-card {
            flex: 1 1 calc(50% - 10px);
            padding: 14px 10px;
            min-width: 0;
        }

        .stat-num {
            font-size: 22px;
        }

        .stat-desc {
            font-size: 12px;
        }

        .case-card {
            height: 160px;
        }

        .case-card .case-card-title-wrap h3 {
            font-size: 1rem;
            padding: 6px 14px;
        }

        .case-card .case-card-body h3 {
            font-size: 18px;
        }

        .case-card .case-card-body p {
            font-size: 13px;
        }

        .news-img {
            height: 160px;
        }

        .news-title {
            font-size: 15px;
        }

        .news-body {
            padding: 12px 14px 18px;
        }

        .news-meta {
            font-size: 12px;
            padding-top: 12px;
        }

        .cta-banner {
            padding: 35px 0;
            min-height: 260px;
        }

        .cta-banner.second {
            min-height: 300px;
        }

        .cta-bg {
            background-position: center;
            background-size: cover;
        }

        .cta-title {
            font-size: 22px;
            margin-top: 10px;
        }

        .cta-desc {
            font-size: 14px;
            line-height: 1.6;
        }

        .category-desc {
            font-size: 14px;
            -webkit-line-clamp: 2;
        }

        .section-head h2 {
            font-size: 22px;
        }

        .more-btn {
            min-width: 80px;
            height: 36px;
            font-size: 13px;
            padding: 0 14px;
        }

        .about-section,
        .news-section {
            padding: 30px 0;
        }

        .stat-row {
            gap: 12px;
        }
    }

    @media (max-width: 380px) {
        .container {
            padding-left: 12px;
            padding-right: 12px;
        }

        .home-swiper-wrap {
            min-height: 320px;
            height: 50vh;
        }

        .slide-bg-video {
            object-fit: cover;
        }

        .slide-title-static {
            font-size: 20px;
            width: 100%;
        }

        .slide-desc-static {
            font-size: 12px;
        }

        .slide-content {
            gap: 10px;
        }

        .intro-text h2 {
            font-size: 19px;
        }

        .intro-text p {
            font-size: 13px;
        }

        .intro-img img {
            aspect-ratio: 16 / 12;
            min-height: 150px;
        }

        .stat-card {
            flex: 1 1 100%;
            padding: 12px;
        }

        .stat-num {
            font-size: 20px;
        }

        .case-card {
            height: 140px;
        }

        .case-card .case-card-title-wrap h3 {
            font-size: 0.9rem;
            padding: 4px 12px;
        }

        .news-img {
            height: 140px;
        }

        .news-title {
            font-size: 14px;
        }

        .cta-banner {
            padding: 25px 0;
            min-height: 220px;
        }

        .cta-banner.second {
            min-height: 260px;
        }

        .cta-bg {
            background-position: center;
            background-size: cover;
        }

        .cta-title {
            font-size: 18px;
        }

        .cta-desc {
            font-size: 13px;
        }

        .section-head h2 {
            font-size: 19px;
        }

        .more-btn {
            min-width: 70px;
            height: 32px;
            font-size: 12px;
            padding: 0 12px;
        }

        .about-section,
        .news-section {
            padding: 30px 0;
        }
    }

    @keyframes charReveal {
        0% {
            opacity: 0;
            transform: translateY(30px) rotateX(90deg);
        }

        100% {
            opacity: 1;
            transform: translateY(0) rotateX(0);
        }
    }

    @keyframes fadeInScale {
        0% {
            opacity: 0;
            transform: scale(0.8);
        }

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

    @keyframes slideInLeft {
        0% {
            opacity: 0;
            transform: translateX(-60px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInRight {
        0% {
            opacity: 0;
            transform: translateX(60px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes glowPulse {

        0%,
        100% {
            box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
        }

        50% {
            box-shadow: 0 0 40px rgba(0, 102, 204, 0.6);
        }
    }
