        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #009ecd;
            --secondary-blue: #4cbbdc;
            --dark-blue: #0d3d8f;
            --navy-dark: #0d3d8f;
            --brown: #8B6F47;
            --text-gray: #868686;
            --background-gray: #f7f7f7;
            --text-dark: #313131;
            --white: #ffffff;
            overflow-x: hidden;
            margin: 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        header {
            position: sticky;
            top: 0;
            width: 100%;
            height: 110px;
            background: white;
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0.04);
            z-index: 1000;
        }

        .header-content {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .logo {
            width: 230px;
            height: 65px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
            height: 75px;
        }

        nav a {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 18px;
            color: var(--text-gray);
            text-decoration: none;
            position: relative;
            transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
        }

        nav a.active {
            font-weight: 700;
            font-size: 20px;
            color: var(--dark-blue);
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--dark-blue);
        }

        nav a:hover {
            color: var(--dark-blue);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark-blue);
        }

        .mobile-close-btn {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--dark-blue);
            position: absolute;
            top: 18px;
            right: 18px;
        }

        @media (max-width: 992px) {
            nav#mainNav .mobile-close-btn {
                display: block;
            }
        }

        .hero-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding-top: 56px;
        }

        .hero-content {
            position: relative;
            padding: 250px 1rem 144px;
            text-align: center;
            z-index: 10;
        }

        .hero-title {
            font-family: 'Readex Pro', sans-serif;
            font-weight: 600;
            font-size: 42px;
            color: white;
            margin-bottom: 7px;
            max-width: 1408px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            animation-delay: 0.1s;
        }

        .hero-subtitle {
            font-family: 'Readex Pro', sans-serif;
            font-weight: 400;
            font-size: 26px;
            color: white;
            max-width: 1175px;
            margin: 0 auto 7px;
            opacity: 0;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            animation-delay: 0.3s;
        }

        .hero-question {
            font-family: 'Readex Pro', sans-serif;
            font-weight: 300;
            font-size: 26px;
            color: white;
            max-width: 870px;
            margin: 144px auto 7px;
            opacity: 0;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            animation-delay: 0.5s;
        }

        .hero-buttons {
            display: flex;
            gap: 37.5px;
            justify-content: center;
            margin-top: 7px;
            flex-wrap: wrap;
        }

        /* Increased hero button width per request */
        .hero-buttons .btn {
            min-width: 320px;
            width: auto;
            padding: 0.7rem 1.8rem;
            height: 55px;
            font-size: 20px;
        }

        .btn {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 17px;
            padding: 0.5rem 1.2rem;
            height: auto;
            width: auto;
            max-width: 100%;
            border-radius: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.18s;
        }

        .btn-primary {
            background: var(--primary-blue);
            color: white;
        }

        .btn-primary:hover {
            opacity: 0.9;
        }

        .btn-secondary {
            background: white;
            color: var(--primary-blue);
        }

        .btn-secondary:hover {
            background: #f0f0f0;
        }

        .section {
            position: relative;
            width: 100%;
            padding: 4rem 1rem;
        }

        .section-blue {
            background: var(--primary-blue);
            overflow: hidden;
        }

        .section-white {
            background: white;
        }

        .section-gray {
            background: var(--background-gray);
        }

        .section-title {
            font-family: 'Readex Pro', sans-serif;
            font-weight: 600;
            font-size: 42px;
            text-align: center;
            margin-bottom: 3rem;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 24px;
                margin-bottom: 1.5rem;
            }
        }

        .section-title-white {
            color: white;
        }

        .section-title-blue {
            color: var(--dark-blue);
        }

        .section-text {
            font-family: 'Readex Pro', sans-serif;
            font-weight: 400;
            font-size: 28px;
            color: white;
            text-align: center;
            line-height: 45px;
            max-width: 1483px;
            margin: 0 auto 2rem;
        }

        .grid {
            display: grid;
            gap: 2rem;
            max-width: 1726px;
            margin: 0 auto;
        }

        .grid-4 {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        @media (max-width: 768px) {
            .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .grid-4 {
                grid-template-columns: repeat(1, 1fr);
            }
        }

        .grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .card-blue {
            background: var(--primary-blue);
            height: 350px;
        }

        .card-image {
            width: 100%;
            height: 270px;
            object-fit: cover;
        }

        .card-content {
            padding: 1.5rem;
            text-align: center;
        }

        .card-title {
            font-family: 'Readex Pro', sans-serif;
            font-weight: 600;
            font-size: 20px !important;
            color: white !important;
            margin-top: -10px;
            white-space: normal;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        .card-title--center {
            text-align: center;
        }

        /* Center all card titles inside the Services section */
        #services .card-title {
            text-align: center;
        }

        .stats-card {
            background: white;
            border-radius: 50px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 385px;
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0.04);
        }

        .stats-icon {
            width: 140px;
            height: 140px;
            margin-bottom: 2rem;
        }

        .stats-number {
            font-family: 'Readex Pro', sans-serif;
            font-weight: 700;
            font-size: 48px;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }

        .stats-label {
            font-family: 'Readex Pro', sans-serif;
            font-weight: 600;
            font-size: 28px;
            color: rgba(0, 0, 0, 0.8);
            text-align: center;
        }

        .feature-card {
            background: var(--background-gray);
            border-radius: 20px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 19px;
        }

        .feature-icon {
            width: 150px;
            height: 150px;
        }

        .feature-title {
            font-family: 'Readex Pro', sans-serif;
            font-weight: 500;
            font-size: 24px;
            color: var(--text-gray);
            text-align: center;
        }

        .grid .solution-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 4px var(--primary-blue);

    height: 364px;
    display: flex;
    flex-direction: column;
}

        .grid .index-solution-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 4px var(--primary-blue);

    height: 364px;
    display: flex;
    flex-direction: column;
}

/* الجزء الأبيض */
.grid .solution-image-wrapper {
    height: calc(364px - 140px); /* الكارت - الفوتر */
    
    display: flex;
    align-items: center;
    justify-content: center;

    background: white;
    padding: 20px;
}

/* الصورة */
.grid .solution-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* الجزء الأزرق */
.grid .solution-footer {
    height: 140px; /* ⭐ ارتفاع ثابت يمنع أي فراغ */
    width: 100%;

    background: var(--primary-blue);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 14px;
    padding: 0;
    margin: 0;
}

.grid .index-solution-card .solution-footer {
    flex: 1;
    width: 100%;

    background: var(--primary-blue);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 0.5rem 0;
}

/* العنوان */
.grid .solution-title {
    margin: 0 0 10px 0;
    color: white;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

/* الزرار */
.grid .solution-btn {
    width: 90%;
    height: 55px;

    background: white;
    border-radius: 20px;
    border: none;

    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 24px;

    color: var(--primary-blue);
    cursor: pointer;
}

.grid .solution-btn:hover {
    background: #f2f2f2;
}

.grid .index-solution-card .solution-btn {
    width: 90%;
    height: 45px;
    font-size: 20px;
}


        .membership-section {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 4rem;
            flex-wrap: nowrap;
            padding: 3.5rem 1rem;
        }

        .membership-logo {
            max-width: 100%;
            height: auto;
        }

        @media (max-width: 1024px) {
            .membership-section {
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .membership-section {
                flex-direction: column;
                gap: 2rem;
                align-items: center;
                padding: 2rem 1rem;
            }

            .membership-logo {
                max-width: 100%;
                height: auto;
            }
        }

        @media (max-width: 480px) {
            .membership-section {
                padding: 1.5rem 1rem;
                gap: 1.5rem;
            }
        }

        footer {
            background: var(--primary-blue);
            padding: 4rem 1rem 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto 2rem;
        }

        @media (max-width: 768px) {
            footer {
                padding: 2rem 1rem 0;
            }

            .footer-content {
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            footer {
                padding: 1.5rem 1rem 0;
            }

            .footer-content {
                gap: 1.5rem;
                grid-template-columns: 1fr;
            }
        }

        .footer-section h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: white;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .footer-section h3 {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .footer-section h3 {
                font-size: 18px;
            }
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-links a {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 18px;
            color: white;
            text-decoration: none;
            transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @media (max-width: 768px) {
            .footer-links a {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .footer-links a {
                font-size: 14px;
            }
        }

        .footer-links a:hover {
            opacity: 0.8;
        }

        .contact-item {
            display: flex;
            align-items: start;
            gap: 10px;
            margin-bottom: 1.5rem;
            color: white;
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .contact-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 18px;
            color: white;
        }

        @media (max-width: 768px) {
            .contact-text {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .contact-text {
                font-size: 14px;
            }
        }

        .contact-text a {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 2px;
        }

        .contact-text a:hover {
            text-decoration: underline;
        }

        .footer-image {
            width: 100%;
            max-width: 603px;
            height: 400px;
            border-radius: 20px;
            margin-bottom: 2rem;
        }

        @media (max-width: 768px) {
            .footer-image {
                height: 300px;
                margin-bottom: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .footer-image {
                height: 250px;
                margin-bottom: 1rem;
            }
        }

        img.social-links {
            width: 272px;
            height: 51px;
        }

        /* small SVG social icons inside footer */
        .social-icons .social-links {
            width: 48px;
            height: 48px;
            display: block;
            margin: 0;
            padding: 0;
        }

        .footer-bottom {
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            background: var(--dark-blue);
            padding: 1.5rem 0;
            text-align: center;
        }

        .footer-copyright {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 24px;
            color: white;
        }

        @media (max-width: 768px) {
            .footer-copyright {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .footer-copyright {
                font-size: 14px;
            }
        }

        @media (max-width: 1200px) {
            nav {
                gap: 1.5rem;
            }

            nav a {
                font-size: 16px;
            }

            nav a.active {
                font-size: 18px;
            }
        }

        @media (max-width: 992px) {
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 250px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
                transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1001;
            }

            nav.active {
                right: 0;
            }

            .mobile-menu-btn {
                display: block;
                padding: 10px;
                background: var(--primary-blue);
                color: white;
                border-radius: 5px;
                border: none;
                cursor: pointer;
                font-size: 18px;
            }

            .hero-title {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 22px;
            }

            .hero-question {
                font-size: 22px;
            }

            .section-title {
                font-size: 32px;
            }

            .section-text {
                font-size: 22px;
                line-height: 36px;
            }

            .btn {
                font-size: 20px;
                height: 65px;
                width: 100%;
            }

            .hero-buttons {
                gap: 1rem;
            }

            .membership-section {
                gap: 3rem;
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .logo {
                width: 180px;
                height: 50px;
            }

            .hero-content {
                padding: 200px 1rem 80px;
            }

            .hero-question {
                margin-top: 80px;
            }

            .section {
                padding: 3rem 1rem;
            }

            .section-title {
                font-size: 28px;
                margin-bottom: 2rem;
            }

            .section-text {
                font-size: 18px;
                line-height: 30px;
            }

            .stats-card {
                min-height: 300px;
                padding: 1.5rem;
            }

            .stats-icon {
                width: 100px;
                height: 100px;
                margin-bottom: 1.5rem;
            }

            .grid .index-solution-card {
                height: 280px;
            }

            .stats-number {
                font-size: 36px;
            }

            .stats-label {
                font-size: 22px;
            }

            .feature-icon {
                width: 120px;
                height: 120px;
            }

            .feature-title {
                font-size: 20px;
            }

            .footer-copyright {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                width: 150px;
                height: 40px;
            }

            .hero-title {
                font-size: 24px;
            }

            .hero-subtitle,
            .hero-question {
                font-size: 16px;
            }

            .section-title {
                font-size: 24px;
            }

            .section-text {
                font-size: 16px;
                line-height: 26px;
            }

            .btn {
                font-size: 18px;
                height: 55px;
            }

            .stats-number {
                font-size: 28px;
            }

            .stats-label {
                font-size: 18px;
            }

            .footer-copyright {
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .roadmap-card {
                height: auto;
                flex-direction: column;
            }

            .timeline-text {
                display: none !important;
                background: var(--primary-blue);
                color: white;
                padding: 4px 8px;
                border-radius: 4px;
            }

            .roadmap-content {
                padding: 16px 24px;
            }

            .roadmap-content h3 {
                font-size: 20px;
            }

            .roadmap-content p {
                font-size: 18px;
            }

            .core-values-grid {
                grid-template-columns: 1fr;
                grid-template-areas: none;
            }
        }

        @media (max-width: 480px) {
            .timeline-text {
                display: none !important;
            }

            .roadmap-content h3 {
                font-size: 18px;
            }

            .roadmap-content p {
                font-size: 16px;
            }
        }

        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--navy-dark);
            color: white;
            border: none;
            border-radius: 30px;
            width: 70px;
            height: 50px;
            cursor: pointer;
            display: none;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(13, 61, 143, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            transform: scale(0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        #backToTop svg {
            transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #backToTop:hover svg {
            transform: translateY(-2px);
        }

        #backToTop.show {
            opacity: 1;
            transform: scale(1);
            display: flex;
        }

        #backToTop:hover {
            background: var(--navy-dark);
            box-shadow: 0 6px 20px rgba(13, 61, 143, 0.4);
            transform: scale(1.1);
        }

        #backToTop:active {
            background: var(--brown);
            box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
            transform: scale(0.95);
        }

        /* Floating Action Buttons & Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .floating-buttons {
            position: fixed;
            bottom: 30px;
            left: 30px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .floating-buttons.show {
            opacity: 1;
            visibility: visible;
        }

        .floating-buttons.show .floating-btn {
            animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .floating-buttons.show .floating-btn:nth-child(2) {
            animation-delay: 0.1s;
        }

        .floating-btn {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: var(--navy-dark);
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(13, 61, 143, 0.35), 
                        0 0 0 0 rgba(13, 61, 143, 0.1);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        .floating-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 50%;
        }

        .floating-btn:hover {
            background: var(--navy-dark);
            box-shadow: 0 12px 32px rgba(13, 61, 143, 0.5), 
                        0 0 20px rgba(13, 61, 143, 0.4);
            transform: scale(1.15) translateY(-5px);
            animation: float 3s ease-in-out infinite;
        }

        .floating-btn:hover::before {
            left: 100%;
        }

        .floating-btn:active {
            background: var(--brown);
            box-shadow: 0 8px 20px rgba(139, 111, 71, 0.4);
            transform: scale(0.85) translateY(0px);
        }

        .floating-btn svg {
            width: 28px;
            height: 28px;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
            animation: iconPulse 2s ease-in-out infinite;
        }

        .floating-btn:nth-child(1) svg {
            animation: iconPulse 2s ease-in-out infinite;
        }

        .floating-btn:nth-child(2) svg {
            animation: iconPulse 2s ease-in-out infinite 0.2s;
        }

        .floating-btn:hover svg {
            transform: scale(1.3) rotate(10deg);
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) 
                    drop-shadow(0 0 20px rgba(76, 187, 220, 0.6));
        }

        @keyframes iconPulse {
            0%, 100% {
                transform: scale(1) translateY(0px);
                filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
            }
            50% {
                transform: scale(1.08) translateY(-5px);
                filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
            }
        }

        /* About Cards Section */
        .about-cards-section {
            background: var(--primary-blue);
            padding: 52px 0;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            max-width: 1482px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        @media (max-width: 768px) {
            .about-cards-section {
                padding: 40px 1rem;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0;
            }

            .about-card {
                min-height: auto;
                padding: 20px;
            }

            .card-description {
                font-size: 18px;
                line-height: 28px;
            }
        }

        @media (max-width: 480px) {
            .cards-grid {
                gap: 16px;
            }

            .about-card {
                padding: 16px;
            }

            .card-icon {
                width: 40px;
                height: 40px;
            }

            .about-card .card-title {
                font-size: 20px !important;
            }

            .card-description {
                font-size: 16px;
                line-height: 24px;
            }
        }

        .about-card {
            background: var(--white);
            border-radius: 20px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            min-height: 341px;
        }

        .card-header {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }

        .card-icon {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
        }

        .card-title {
            font-family: 'Readex Pro', sans-serif;
            font-size: 20px !important;
            font-weight: 600;
            color: white !important;
            text-align: left;
            margin: 0;
        }

        .about-card .card-title {
            color: var(--text-dark) !important;
            font-size: 25px !important;
        }

        .card-description {
            font-family: 'Readex Pro', sans-serif;
            font-size: 20px;
            font-weight: 400;
            color: var(--text-dark);
            line-height: 40px;
            text-align: left;
            flex: 1;
        }

        /* About BIT Section */
        .about-bit-section {
            padding: 80px 0;
        }

        .about-bit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 64px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-bit-content .section-title {
            text-align: left;
            margin-bottom: 16px;
        }

        .about-bit-text {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .about-bit-text p {
            font-family: 'Readex Pro', sans-serif;
            font-size: 22px;
            font-weight: 400;
            color: var(--text-dark);
            line-height: 35px;
        }

        .about-bit-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        @media (max-width: 768px) {
            .about-bit-section {
                padding: 40px 1rem;
            }

            .about-bit-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-bit-text p {
                font-size: 18px;
                line-height: 28px;
            }
        }

        @media (max-width: 480px) {
            .about-bit-section {
                padding: 30px 1rem;
            }

            .about-bit-text p {
                font-size: 16px;
                line-height: 24px;
            }
        }

        /* Roadmap Section */
        .roadmap-section {
            padding: 80px 0;
        }

        .roadmap-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .roadmap-card {
            display: flex;
            height: auto;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 20px;
            overflow: hidden;
        }

        .roadmap-timeline {
            width: 154px;
            background: var(--primary-blue);
            border-radius: 20px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .roadmap-timeline span {
            font-family: 'Readex Pro', sans-serif;
            font-size: 32px;
            font-weight: 600;
            color: var(--white);
            text-align: center;
        }

        .roadmap-content {
            flex: 1;
            padding: 24px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .roadmap-content h3 {
            font-family: 'Readex Pro', sans-serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .roadmap-content p {
            font-family: 'Readex Pro', sans-serif;
            font-size: 24px;
            font-weight: 400;
            color: var(--text-gray);
        }

        .timeline-text {
            display: none;
        }

        @media (min-width: 993px) {
            .roadmap-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .roadmap-section {
                padding: 40px 1rem;
            }

            .roadmap-grid {
                padding: 0;
            }

            .roadmap-card {
                flex-direction: column;
            }

            .roadmap-timeline {
                width: 100%;
                height: 60px;
                border-radius: 20px 20px 0 0;
            }

            .roadmap-timeline span {
                font-size: 16px;
            }

            .timeline-text {
                display: inline;
                background: var(--primary-blue);
                color: white;
                padding: 4px 8px;
                border-radius: 4px;
                font-size: 14px;
            }

            .roadmap-content {
                padding: 20px 24px;
            }

            .roadmap-content h3 {
                font-size: 20px;
            }

            .roadmap-content p {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .roadmap-section {
                padding: 30px 1rem;
            }

            .roadmap-content {
                padding: 16px 12px;
            }

            .roadmap-content h3 {
                font-size: 18px;
            }

            .roadmap-content p {
                font-size: 14px;
            }
        }

        /* Core Values Section */
        .core-values-section {
            background: var(--background-gray);
            padding: 80px 0;
        }

        .core-values-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            max-width: 1480px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .value-card {
            width: calc(33.333% - 16px);
            background: var(--white);
            border-radius: 20px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 350px;
        }

        @media (max-width: 1200px) {
            .value-card {
                width: calc(50% - 12px);
            }
        }

        @media (max-width: 768px) {
            .core-values-section {
                padding: 40px 1rem;
            }

            .core-values-grid {
                flex-direction: column;
                gap: 20px;
                padding: 0;
            }

            .value-card {
                width: 100%;
                max-width: 720px;
                min-height: auto;
                padding: 24px;
            }

            .value-card .value-icon {
                margin-top: 24px;
                margin-bottom: 16px;
            }

            .value-card p {
                max-width: 100%;
                line-height: 1.5;
                font-size: 18px;
            }

            .value-card h3 {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .core-values-section {
                padding: 30px 1rem;
            }

            .value-card {
                padding: 16px;
            }

            .value-card p {
                font-size: 14px;
            }

            .value-card h3 {
                font-size: 18px !important;
                line-height: 1.2 !important;
                font-weight: bold !important;
            }
        }

        .value-icon {
            margin-top: 35px;
            margin-bottom: 19px;
        }

        .large-icon-1 {
            width: 130px;
            height: 126px;
        }

        .large-icon-2 {
            width: 150px;
            height: 117px;
        }

        .large-icon-3 {
            width: 170px;
            height: 124px;
        }

        .large-icon-4 {
            width: 122px;
            height: 122px;
        }

        .large-icon-5 {
            width: 172px;
            height: 117px;
        }

        .value-card h3 {
            font-family: 'Readex Pro', sans-serif;
            font-size: 36px;
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 10px;
        }

        .value-card p {
            font-family: 'Readex Pro', sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: var(--text-dark);
            text-align: center;
            line-height: 40px;
            max-width: 434px;
        }

        /* Why Choose Section */
        .why-choose-section {
            background: var(--primary-blue);
            padding: 113px 20px;
        }

        .white-title {
            color: var(--white);
            max-width: 843px;
            margin: 0 auto 30px;
        }

        .why-choose-description {
            font-family: 'Readex Pro', sans-serif;
            font-size: 28px;
            font-weight: 400;
            color: var(--white);
            text-align: center;
            line-height: 45px;
            max-width: 1464px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        @media (max-width: 768px) {
            .why-choose-description {
                font-size: 20px;
                line-height: 32px;
            }
        }

        @media (max-width: 480px) {
            .why-choose-description {
                font-size: 16px;
                line-height: 26px;
            }
        }

        /* Solutions Section */
        .solutions-section {
            padding: 80px 0;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            /* force two columns */
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        @media (max-width: 768px) {
            .solutions-section {
                padding: 40px 1rem;
            }

            .solutions-grid {
                grid-template-columns: 1fr;
                /* single column on mobile */
                gap: 20px;
                padding: 0;
            }
        }

        @media (max-width: 480px) {
            .solutions-section {
                padding: 30px 1rem;
            }

            .solutions-grid {
                gap: 16px;
            }
        }

        /* Tighter styles for the solutions cards used in the 2x2 grid */
        .solutions-grid .solution-card {
            height: auto !important;
            min-height: 120px;
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            border: 1px solid rgba(0, 0, 0, 0.02);
            /* even lighter border */
            border-radius: 16px;
            background: transparent;
        }

        .solutions-grid .solution-icon {
            width: 40px;
            height: 40px;
        }

        .solutions-grid .solution-card p {
            font-size: 18px;
            line-height: 1.4;
        }

        @media (max-width: 480px) {
            .solutions-grid .solution-card {
                padding: 12px;
                gap: 12px;
                min-height: auto;
            }

            .solutions-grid .solution-icon {
                width: 36px;
                height: 36px;
            }

            .solutions-grid .solution-card p {
                font-size: 16px;
            }
        }

        .solution-card {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 24px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 20px;
            min-height: 146px;
            background: transparent;
        }

        .solution-icon {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
        }

        .solution-card p {
            font-family: 'Readex Pro', sans-serif;
            font-size: 24px;
            font-weight: 400;
            color: var(--text-dark);
            flex: 1;
        }

        /* Technical Section */
        .technical-section {
            background: var(--primary-blue);
            padding: 80px 0;
        }

        .technical-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            max-width: 1480px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        @media (max-width: 768px) {
            .technical-section {
                padding: 40px 1rem;
            }

            .technical-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0;
            }

            .technical-card {
                padding: 20px;
            }

            .technical-icon {
                height: 80px;
            }

            .technical-card h3 {
                font-size: 20px;
                min-height: auto;
            }
        }

        @media (max-width: 480px) {
            .technical-section {
                padding: 30px 1rem;
            }

            .technical-grid {
                gap: 16px;
            }

            .technical-card {
                padding: 16px;
            }

            .technical-icon {
                height: 60px;
            }

            .technical-card h3 {
                font-size: 18px;
            }
        }

        .technical-card {
            background: var(--white);
            border-radius: 20px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

        .technical-icon {
            width: auto;
            height: 111px;
            max-width: 100%;
        }

        .technical-card h3 {
            font-family: 'Readex Pro', sans-serif;
            font-size: 24px;
            font-weight: 500;
            color: var(--text-dark);
            text-align: center;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Implementation Section */
        .implementation-section {
            padding: 80px 0;
        }

        .implementation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .implementation-card {
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 20px;
            height: 208px;
            overflow: hidden;
        }

        .implementation-icon-box {
            position: absolute;
            top: 0;
            left: 0;
            width: 192px;
            height: 100%;
            background: var(--background-gray);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .implementation-icon-box img {
            width: 120px;
            height: 120px;
        }

        .implementation-content {
            position: absolute;
            top: 50%;
            left: calc(192px + 24px);
            transform: translateY(-50%);
            text-align: left;
            padding-right: 20px;
            width: calc(100% - 240px);
        }

        .implementation-content h3 {
            font-family: 'Readex Pro', sans-serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .implementation-content p {
            font-family: 'Readex Pro', sans-serif;
            font-size: 24px;
            font-weight: 400;
            color: var(--text-gray);
        }

        @media (max-width: 768px) {
            .implementation-section {
                padding: 40px 1rem;
            }

            .implementation-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0;
            }

            .implementation-card {
                height: auto;
                min-height: auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .implementation-icon-box {
                position: static;
                width: 100%;
                height: auto;
                padding: 30px;
                background: transparent;
                border-radius: 0;
                margin-bottom: 20px;
            }

            .implementation-icon-box img {
                width: 80px;
                height: 80px;
            }

            .implementation-content {
                position: static;
                transform: none;
                padding: 0 20px 20px;
                text-align: center;
                width: 100%;
            }

            .implementation-content h3 {
                font-size: 22px;
            }

            .implementation-content p {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .implementation-section {
                padding: 30px 1rem;
            }

            .implementation-grid {
                gap: 16px;
            }

            .implementation-card {
                padding: 0;
            }

            .implementation-icon-box {
                padding: 20px;
            }

            .implementation-icon-box img {
                width: 60px;
                height: 60px;
            }

            .implementation-content {
                padding: 0 16px 16px;
            }

            .implementation-content h3 {
                font-size: 18px;
            }

            .implementation-content p {
                font-size: 16px;
            }
        }

        /* Mobile override for Core Values Section */
        @media (max-width: 768px) {
            .core-values-grid {
                display: flex;
                flex-direction: column;
                gap: 20px;
                align-items: center;
                padding: 0 1rem;
            }

            .core-values-grid .value-card {
                width: 100%;
                max-width: 720px;
                min-height: auto;
                padding: 24px;
            }

            .core-values-grid .value-card .value-icon {
                margin-top: 24px;
                margin-bottom: 16px;
            }

            .core-values-grid .value-card p {
                max-width: 100%;
                line-height: 1.5;
            }

            .large-icon-1,
            .large-icon-2,
            .large-icon-3,
            .large-icon-4,
            .large-icon-5 {
                width: 60px !important;
                height: 60px !important;
            }
        }

        /* Mobile override for Integrated Solutions in index.html */
        @media (max-width: 768px) {
            .grid .solution-card {
                height: auto;
                min-height: 300px;
            }

            .grid .solution-image-wrapper {
                height: 150px;
            }

            .grid .solution-image {
                width: 180px;
                height: 100px;
            }

            .grid .solution-footer {
                flex: 1;
                padding: 1rem 0;
            }

            .grid .solution-title {
                font-size: 16px;
                white-space: normal;
                padding: 0 1rem;
            }

            .grid .solution-btn {
                height: 40px;
                font-size: 18px;
                margin: 0 1rem;
            }

            /* Floating buttons responsive */
            .floating-buttons {
                bottom: 20px;
                left: 20px;
                gap: 14px;
            }

            .floating-btn {
                width: 58px;
                height: 58px;
            }

            .floating-btn svg {
                width: 24px;
                height: 24px;
            }

            .floating-btn:hover svg {
                transform: scale(1.25) rotate(10deg);
                filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7))
                        drop-shadow(0 0 15px rgba(76, 187, 220, 0.5));
            }
        }

        /* ============================================
           ANIMATION KEYFRAMES
           ============================================ */

        /* Fade in from bottom */
        /* Fade in from top */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Fade in from left */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Fade in from right */
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Fade in smoothly */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Scale up animation */
        @keyframes scaleUp {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Smooth bounce effect */
        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.85);
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: scale(1);
            }
        }

        /* Glow effect */
        @keyframes glowPulse {
            0%, 100% {
                box-shadow: 0 0 10px rgba(0, 158, 205, 0.3);
            }
            50% {
                box-shadow: 0 0 20px rgba(0, 158, 205, 0.6);
            }
        }

        /* Shimmer effect */
        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        /* Elements start invisible and appear on scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* When animated class is added, element becomes visible */
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered animation delays */
        .animate-on-scroll.animated {
            animation: none;
        }

        /* Slide from left */
        .animate-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-left.animated {
            opacity: 1;
            transform: translateX(0);
        }

        /* Slide from right */
        .animate-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

        /* Scale up + fade */
        .animate-scale {
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-scale.animated {
            opacity: 1;
            transform: scale(1);
        }

        /* Rotate + zoom */
        .animate-rotate {
            opacity: 0;
            transform: rotate(-5deg) scale(0.9);
            transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-rotate.animated {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        /* Bounce effect */
        .animate-bounce {
            opacity: 0;
            transform: translateY(30px);
            transition: none;
        }

        .animate-bounce.animated {
            animation: bounceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        /* Zoom in from center */
        .animate-zoom {
            opacity: 0;
            transform: scale(0.7);
            transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-zoom.animated {
            opacity: 1;
            transform: scale(1);
        }

        /* Flip effect */
        .animate-flip {
            opacity: 0;
            transform: rotateY(-90deg);
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-flip.animated {
            opacity: 1;
            transform: rotateY(0deg);
        }

        /* Bounce in keyframe */
        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            50% {
                opacity: 1;
                transform: translateY(-8px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Card specific animations on scroll */
        .card {
            transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                        box-shadow 0.25s ease, 
                        filter 0.25s ease;
        }

        .card:hover {
            filter: brightness(1.05);
            animation: glowPulse 2s ease-in-out infinite;
        }

        /* Solution Cards */
        .index-solution-card {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                        box-shadow 0.3s ease;
        }

        .index-solution-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 158, 205, 0.2);
        }

        /* Feature Cards */
        .feature-card {
            transition: all 0.25s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        /* Stats Cards */
        .stats-card {
            transition: all 0.25s ease;
        }

        .stats-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .stats-number {
            transition: color 0.25s ease;
        }

        .stats-card:hover .stats-number {
            color: var(--secondary-blue);
            text-shadow: 0 0 10px rgba(76, 187, 220, 0.4);
        }

        .stats-icon {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stats-card:hover .stats-icon {
            transform: scale(1.15) rotate(10deg);
        }

        /* ============================================
           IMAGE ANIMATIONS
           ============================================ */

        .card-image,
        .solution-image {
            transition: transform 0.3s ease;
        }

        .card:hover .card-image,
        .index-solution-card:hover .solution-image {
            transform: scale(1.05);
        }

        /* ============================================
           BUTTON ANIMATIONS
           ============================================ */

        .btn {
            position: relative;
            overflow: hidden;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.3s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        /* ============================================
           ABOUT PAGE ANIMATIONS
           ============================================ */

        .about-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .card-icon {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-card:hover .card-icon {
            transform: scale(1.15) rotate(-10deg);
        }

        .roadmap-card {
            transition: all 0.25s ease;
        }

        .roadmap-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
        }

        /* ============================================
           CORE VALUES SECTION ANIMATIONS
           ============================================ */

        .value-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .value-icon {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .value-card:hover .value-icon {
            transform: scale(1.15) rotate(8deg);
        }

        /* ============================================
           TECHNICAL SECTION ANIMATIONS
           ============================================ */

        .technical-card {
            transition: all 0.25s ease;
        }

        .technical-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .technical-icon {
            transition: transform 0.25s ease;
        }

        .technical-card:hover .technical-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        /* ============================================
           IMPLEMENTATION SECTION ANIMATIONS
           ============================================ */

        .implementation-card {
            transition: all 0.25s ease;
        }

        .implementation-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
        }

        /* ============================================
           MEMBERSHIP SECTION ANIMATIONS
           ============================================ */

        .membership-logo {
            transition: transform 0.25s ease;
        }

        .membership-logo:hover {
            transform: scale(1.05);
        }

        /* ============================================
           SOLUTION CARD ANIMATIONS (CIS, RIS, LIS, HMS)
           ============================================ */

        .solution-card {
            transition: all 0.25s ease;
        }

        .solution-card:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .solution-icon {
            transition: transform 0.25s ease;
        }

        .solution-card:hover .solution-icon {
            transform: scale(1.15) rotate(5deg);
        }

        /* ============================================
           SMOOTH TRANSITIONS FOR INTERACTIVE ELEMENTS
           ============================================ */

        .card-title,
        .feature-title,
        .stats-label,
        .value-card h3,
        .technical-card h3 {
            transition: color 0.25s ease;
        }

        .card:hover .card-title,
        .feature-card:hover .feature-title,
        .stats-card:hover .stats-label,
        .value-card:hover h3,
        .technical-card:hover h3 {
            color: var(--primary-blue);
        }

        /* ============================================
           ENHANCED HOVER EFFECTS FOR ALL INTERACTIVE ELEMENTS
           ============================================ */

        a[href^="#"] {
            position: relative;
            transition: color 0.25s ease;
        }

        nav a {
            position: relative;
            overflow: hidden;
        }

        nav a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: -100%;
            width: 100%;
            height: 2px;
            background: var(--primary-blue);
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav a:hover::before {
            left: 0;
        }

        /* ============================================
           IMAGE AND ICON ANIMATIONS
           ============================================ */
        
        img {
            will-change: opacity, transform;
        }
        
        img.animate-on-scroll,
        img.animate-left,
        img.animate-right,
        img.animate-scale,
        img.animate-bounce,
        img.animate-zoom,
        img.animate-rotate {
            display: block;
        }

        /* ============================================
           REDUCE ANIMATIONS FOR ACCESSIBILITY
           ============================================ */

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
        