        /* Floating Icons Animation */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .floating-icon {
            position: absolute;
            font-size: 120px;
            color: rgba(255, 255, 255, 0.08);
            animation: floatIcon 20s ease-in-out infinite;
        }

        .floating-icon-1 {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-icon-2 {
            top: 60%;
            right: 8%;
            animation-delay: 7s;
        }

        .floating-icon-3 {
            bottom: 15%;
            left: 15%;
            animation-delay: 14s;
        }

        @keyframes floatIcon {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0.08;
            }
            33% {
                transform: translate(30px, -30px) rotate(5deg);
                opacity: 0.12;
            }
            66% {
                transform: translate(-20px, 20px) rotate(-5deg);
                opacity: 0.10;
            }
        }

        .tools-content-section {
            position: relative;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .tool-card {
            background: #fff;
            border-radius: 18px;
            padding: 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #126082 0%, #FF7B07 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

        .tool-card:hover::before {
            transform: scaleX(1);
        }

        .tool-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(18, 96, 130, 0.2);
            border-color: rgba(18, 96, 130, 0.2);
        }

        .tool-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #126082 0%, #0d4d66 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(18, 96, 130, 0.2);
        }

        .tool-card:hover .tool-icon {
            background: linear-gradient(135deg, #FF7B07 0%, #e66a00 100%);
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 8px 25px rgba(255, 123, 7, 0.4);
        }

        .tool-icon i {
            font-size: 32px;
            color: #fff;
        }

        .tool-title {
            color: #126082;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            transition: color 0.3s ease;
            line-height: 1.3;
        }

        .tool-card:hover .tool-title {
            color: #FF7B07;
        }

        .tool-description {
            color: #6c757d;
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .tool-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #126082;
            font-weight: 600;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: auto;
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 10px;
            border: 2px solid rgba(18, 96, 130, 0.15);
            position: relative;
            overflow: hidden;
        }

        .tool-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #126082 0%, #0d435b 60%, #FF7B07 100%);
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }

        .tool-link span,
        .tool-link i {
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .tool-link:hover {
            color: #fff;
            border-color: transparent;
            box-shadow: 0 6px 20px rgba(18, 96, 130, 0.25);
            transform: translateY(-2px);
        }

        .tool-link:hover::before {
            left: 0;
        }

        .tool-link i {
            transition: transform 0.3s ease;
        }

        .tool-link:hover i {
            transform: translateX(8px);
        }

        .category-section {
            margin-top: 0;
        }

        .category-title {
            color: #126082;
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 4px solid;
            border-image: linear-gradient(90deg, #126082 0%, #FF7B07 100%) 1;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .category-title i {
            color: #FF7B07;
            font-size: 32px;
        }