@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* SUPPORTIVE CONTENT CSS - FULLY COMPATIBLE */
.ih-supportive-content {
width: 100%;
color: #1e293b;
line-height: 1.6;
}
/* Force standard Font Awesome Solid display */
.ih-supportive-content i {
font-family: "Font Awesome 6 Free", "Font Awesome 6 Solid" !important;
font-weight: 900 !important;
font-style: normal !important;
}
.ih-container-1200 {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.support-block { padding: 80px 0; }
.bg-pure-white { background-color: #ffffff; }
.bg-light-blue { background-color: #f0f7ff; }
/* Headers */
.section-heading-group {
text-align: center;
margin-bottom: 50px;
}
.wh-title {
font-size: clamp(24px, 5vw, 32px);
font-weight: 800;
color: #1a75c6; /* Inherited/Primary Blue */
margin-bottom: 12px;
}
.wh-subtitle {
font-size: 17px;
color: #64748b;
max-width: 700px;
margin: 0 auto;
}
/* 4 Column Grid */
.card-layout {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}
/* Feature Card Basic */
.feature-box {
padding: 35px 20px;
border-radius: 10px; /* Requested Radius */
text-align: center;
transition: all 0.4s ease;
border: 1px solid rgba(0,0,0,0.03);
}
.feature-box h3 {
font-size: 19px;
font-weight: 700;
margin-bottom: 12px;
color: #ec407a; /* Tool Pink Accent */
}
.feature-box p {
font-size: 14px;
color: #475569;
}
.f-icon, .icon-bubble, .icon-grow {
font-size: 34px;
margin-bottom: 20px;
display: inline-block;
transition: all 0.4s ease;
}
/* --- Section 1 Variant: Elevation & Spin Icon --- */
.v1-hover { background-color: #f0f7ff; }
.icon-teal i { color: #57EBDE; }
.v1-hover:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(30, 136, 229, 0.1);
}
.v1-hover:hover .f-icon {
transform: rotateY(360deg);
}
/* --- Section 2 Variant: Scale & Background Circle Pulse --- */
.v2-hover { background-color: #ffffff; box-shadow: 0 5px 15px rgba(0,0,0,0.02);  text-align: left;}
.icon-bubble {
width: 60px; height: 60px;
background-color: #f0f7ff;
border-radius: 50%;
display: flex !important;
align-items: center; justify-content: center;
color: #1e88e5;
}
.v2-hover:hover {
transform: scale(1.04);
}
.v2-hover:hover .icon-bubble {
background-color: #ec407a;
color: white !important;
}
.v2-hover:hover .icon-bubble i { color: white !important; }
/* --- Section 3 Variant: Inner Shadow & Skew Icon --- */
.v3-hover { background-color: #f0f7ff; }
.icon-grow i {
background: linear-gradient(135deg, #AEFB2A, #57EBDE);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.v3-hover:hover {
box-shadow: inset 0 0 15px rgba(174, 251, 42, 0.2);
}
.v3-hover:hover .icon-grow {
transform: skewX(-15deg);
}
/* Responsive Breakpoints */
@media (max-width: 1024px) {
.card-layout { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
.support-block { padding: 50px 0; }
.wh-title { font-size: 26px; }
}
@media (max-width: 550px) {
.card-layout { grid-template-columns: 1fr; }
.feature-box { padding: 30px 15px; }
}

.ih-body {
          
            margin-bottom:40px;
            font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
            position: relative;
            padding: 20px;
            box-sizing: border-box;
        }

        .ih-wrapper {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .ih-animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 0;
            pointer-events: none;
			
            animation: ih-bgMove 12s linear infinite alternate;
           
        }

        @keyframes ih-bgMove {
            0% {
                background-position: 80% 10%, 10% 90%;
            }

            100% {
                background-position: 70% 20%, 20% 80%;
            }
        }



        .ih-main-card {
            position: relative;
            z-index: 2;
            width: 100%;
            border-radius: 32px;
         background: hsla(175, 79%, 63%, 1) !important;

background: linear-gradient(90deg, hsla(175, 79%, 63%, 1) 0%, hsla(82, 96%, 57%, 1) 100%) !important;

background: -moz-linear-gradient(90deg, hsla(175, 79%, 63%, 1) 0%, hsla(82, 96%, 57%, 1) 100%) !important;

background: -webkit-linear-gradient(90deg, hsla(175, 79%, 63%, 1) 0%, hsla(82, 96%, 57%, 1) 100%) !important;

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#57EBDE", endColorstr="#AEFB2A", GradientType=1 ) !important;
            box-shadow: 0 8px 32px rgba(30, 136, 229, 0.13), 0 1.5px 16px 0 rgba(236, 64, 122, 0.10);
            padding: 38px 36px 30px 36px;
            backdrop-filter: blur(18px);
            border: 2.5px solid rgba(236, 64, 122, 0.10);
            overflow: hidden;
        }

        .ih-main-card::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 36px;
            z-index: 0;
            background: linear-gradient(90deg, #f8fafc 0%, #e0e7ff 100%);
            filter: blur(6px) brightness(1.1);
            opacity: 0.18;
            animation: ih-borderSpin 8s linear infinite;
        }

        @keyframes ih-borderSpin {
            0% {
                filter: blur(6px) brightness(1.1) hue-rotate(0deg);
            }

            100% {
                filter: blur(6px) brightness(1.1) hue-rotate(360deg);
            }
        }

        .ih-logo-anim {
            font-size: 2.7rem;
            color: #ec407a;
            margin-bottom: 8px;
        }

        @keyframes ih-logoPulse {

            0%,
            100% {
                transform: scale(1);
                filter: drop-shadow(0 2px 8px #ec407a33);
            }

            50% {
                transform: scale(1.08);
                filter: drop-shadow(0 4px 16px #ec407a55);
            }
        }

        .ih-h1 {
            font-family: 'Montserrat', 'Inter', Arial, sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            margin: 0 0 8px 0;
            letter-spacing: -1.5px;
            background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            animation: ih-logoPulse 3s ease-in-out infinite;
        }

        .ih-h2 {
            font-family: 'Montserrat', 'Inter', Arial, sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: #64748b;
            margin-bottom: 6px;
            letter-spacing: -0.5px;
            text-align: center;
            margin-top: 0;
        }

        .ih-desc {
            color: #64748b;
            font-size: 1.08rem;
            margin-bottom: 24px;
            font-weight: 500;
        }

        .ih-input-group {
            display: flex;
            gap: 10px;
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
        }

        .ih-input-group input {
            flex: 1;
            padding: 14px 16px;
            border-radius: 12px;
            border: 1.5px solid #e0e7ef;
            font-size: 1.08rem;
            outline: none;
            background: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            color: #1e293b;
            transition: border 0.2s, box-shadow 0.2s;
            box-shadow: 0 1.5px 8px 0 rgba(30, 136, 229, 0.04);
        }

        .ih-input-group input:focus {
            border: 1.5px solid #ec407a;
            box-shadow: 0 2px 12px 0 rgba(236, 64, 122, 0.10);
        }

        .ih-input-group button {
            background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
            color: #fff;
            border: none;
            border-radius: 12px;
            padding: 0 22px;
            font-size: 1.08rem;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 2px 12px 0 rgba(30, 136, 229, 0.10);
            transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ih-input-group button:hover {
            background: linear-gradient(45deg, #4f5bd5, #962fbf, #d62976, #fa7e1e, #feda75);
            box-shadow: 0 4px 18px 0 rgba(236, 64, 122, 0.13);
            transform: translateY(-2px) scale(1.04);
        }

        .ih-error {
            color: #fff;
            background: linear-gradient(90deg, #d62976 0%, #fa7e1e 100%);
            border-radius: 8px;
            margin-bottom: 12px;
            display: none;
            font-weight: 700;
            letter-spacing: 0.2px;
            padding: 10px 0;
            box-shadow: 0 2px 12px 0 rgba(236, 64, 122, 0.10);
            font-size: 1.01rem;
            animation: ih-fadeIn 0.5s;
        }

        @keyframes ih-fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

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

        .ih-results {
            margin-top: 18px;
            z-index: 2;
            position: relative;
        }

        .ih-img-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 28px;
            margin-top: 10px;
            align-items: stretch;
        }

        .ih-profile-img-block {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 18px;
            box-shadow: 0 4px 24px rgba(30, 136, 229, 0.10), 0 1.5px 16px 0 rgba(236, 64, 122, 0.08);
            border: 1.5px solid #e0e7ef;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            min-width: 0;
            animation: ih-fadeIn 0.7s;
            overflow: hidden;
            transition: box-shadow 0.2s, transform 0.2s;
        }

        .ih-profile-img-block:hover {
            box-shadow: 0 8px 32px rgba(236, 64, 122, 0.13), 0 2px 24px 0 rgba(30, 136, 229, 0.10);
            transform: translateY(-2px) scale(1.025);
        }

        .ih-profile-img-block .ih-img-wrap {
            width: 100%;
            aspect-ratio: 1.3/1;
            background: linear-gradient(120deg, #e0e7ff 0%, #f8fafc 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .ih-profile-img-block img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: none;
            border-radius: 0;
            box-shadow: none;
            margin: 0;
            transition: transform 0.2s;
            cursor: pointer;
            display: block;
        }

        .ih-profile-img-block img:hover {
            transform: scale(1.04);
        }

        .ih-profile-img-block .ih-label {
            font-size: 1.04rem;
            color: #1e293b;
            margin: 14px 0 2px 0;
            font-weight: 700;
            text-align: center;
            word-break: break-all;
            font-family: 'Montserrat', 'Inter', Arial, sans-serif;
        }

        .ih-profile-img-block .ih-resolution {
            font-size: 0.97rem;
            color: #1e88e5;
            font-weight: 700;
            margin-bottom: 12px;
            text-align: center;
        }

        .ih-profile-img-block .ih-img-actions {
            display: flex;
            justify-content: center;
            margin-bottom: 18px;
        }

        .ih-profile-img-block .ih-download-btn {
            background: linear-gradient(90deg, #feda75 0%, #d62976 100%);
            color: #fff;
            border: none;
            border-radius: 7px;
            padding: 10px 28px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 2px 12px 0 rgba(253, 218, 117, 0.13);
            transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ih-profile-img-block .ih-download-btn:hover {
            background: linear-gradient(90deg, #d62976 0%, #feda75 100%);
            box-shadow: 0 4px 18px 0 rgba(236, 64, 122, 0.18);
            transform: translateY(-2px) scale(1.05);
        }

        .ih-username {
            font-size: 1.18rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 2px;
            letter-spacing: 0.2px;
            font-family: 'Montserrat', 'Inter', Arial, sans-serif;
        }

        .ih-fullname {
            font-size: 1.05rem;
            color: #64748b;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .ih-skeleton-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 28px;
            margin-top: 10px;
        }

        .ih-skeleton-img-block {
            background: rgba(255, 255, 255, 0.97);
            border-radius: 18px;
            box-shadow: 0 4px 24px rgba(30, 136, 229, 0.10), 0 1.5px 16px 0 rgba(236, 64, 122, 0.08);
            border: 1.5px solid #e0e7ef;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            min-width: 0;
            animation: ih-fadeIn 0.7s;
            overflow: hidden;
        }

        .ih-skeleton-img {
            width: 100%;
            aspect-ratio: 1.3/1;
            background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
            background-size: 1000px 100%;
            animation: ih-shimmer 2s infinite linear;
            margin: 0;
        }

        .ih-skeleton-label,
        .ih-skeleton-res {
            height: 16px;
            width: 80px;
            background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
            background-size: 1000px 100%;
            animation: ih-shimmer 2s infinite linear;
            border-radius: 4px;
            margin: 14px auto 8px auto;
        }

        .ih-skeleton-actions {
            width: 60%;
            height: 32px;
            background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
            background-size: 1000px 100%;
            animation: ih-shimmer 2s infinite linear;
            border-radius: 7px;
            margin: 0 auto 18px auto;
        }

        @keyframes ih-shimmer {
            0% {
                background-position: -1000px 0;
            }

            100% {
                background-position: 1000px 0;
            }
        }
			
			.ih-main-card {
	position: relative;
	z-index: 2;
	width: 100%;
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.80);
	box-shadow: 0 8px 32px rgba(30, 136, 229, 0.13), 0 1.5px 16px 0 rgba(236, 64, 122, 0.10);
	padding: 38px 36px 30px 36px;
	backdrop-filter: blur(18px);
	border: 2.5px solid rgba(236, 64, 122, 0.10);
	overflow: hidden;
	text-align: center;
}

      @media (max-width: 992px) {
    .ih-main-card {
        padding: 30px 28px 25px 28px;
        border-radius: 28px;
    }

    .ih-main-card::before {
        border-radius: 32px;
    }

    .ih-h1 {
        font-size: 2.4rem;
        margin-bottom: 6px;
    }

    .ih-h2 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .ih-desc {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .ih-input-group input {
        padding: 12px 14px;
        font-size: 1rem;
    }

    .ih-input-group button {
        padding: 0 18px;
        font-size: 1rem;
    }

    .ih-img-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }

    .ih-profile-img-block {
        border-radius: 16px;
    }

    .ih-profile-img-block .ih-label {
        font-size: 1rem;
        margin: 12px 0 2px 0;
    }

    .ih-profile-img-block .ih-resolution {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .ih-profile-img-block .ih-download-btn {
        padding: 9px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .ih-body {
        padding: 15px;
    }

    .ih-main-card {
        padding: 25px 20px 20px 20px;
        border-radius: 24px;
    }

    .ih-main-card::before {
        border-radius: 28px;
    }

    .ih-h1 {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .ih-h2 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .ih-desc {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .ih-input-group {
        flex-direction: column;
        gap: 8px;
    }

    .ih-input-group input {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .ih-input-group button {
        width: 100%;
        padding: 10px 12px;
        font-size: 0.95rem;
        justify-content: center;
    }

    .ih-img-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .ih-profile-img-block {
        border-radius: 14px;
    }

    .ih-profile-img-block .ih-label {
        font-size: 0.95rem;
        margin: 10px 0 2px 0;
    }

    .ih-profile-img-block .ih-resolution {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .ih-profile-img-block .ih-download-btn {
        padding: 8px 20px;
        font-size: 0.95rem;
    }

    .ih-error {
        font-size: 0.95rem;
        padding: 8px 0;
    }

    .ih-skeleton-label,
    .ih-skeleton-res {
        height: 14px;
        width: 70px;
        margin: 10px auto 6px auto;
    }

    .ih-skeleton-actions {
        width: 70%;
        height: 30px;
        margin: 0 auto 16px auto;
    }
}

@media (max-width: 600px) {
    .ih-main-card {
        padding: 20px 15px 15px 15px;
        border-radius: 20px;
    }

    .ih-main-card::before {
        border-radius: 24px;
    }

    .ih-h1 {
        font-size: 1.8rem;
        margin-bottom: 4px;
    }

    .ih-h2 {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .ih-desc {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .ih-input-group input {
        padding: 9px 10px;
        font-size: 0.9rem;
    }

    .ih-input-group button {
        padding: 9px 10px;
        font-size: 0.9rem;
    }

    .ih-img-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .ih-profile-img-block {
        border-radius: 12px;
    }

    .ih-profile-img-block .ih-label {
        font-size: 0.9rem;
        margin: 8px 0 1px 0;
    }

    .ih-profile-img-block .ih-resolution {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .ih-profile-img-block .ih-download-btn {
        padding: 7px 18px;
        font-size: 0.9rem;
    }

    .ih-error {
        font-size: 0.9rem;
        padding: 7px 0;
    }

    .ih-skeleton-label,
    .ih-skeleton-res {
        height: 12px;
        width: 60px;
        margin: 8px auto 5px auto;
    }

    .ih-skeleton-actions {
        width: 75%;
        height: 28px;
        margin: 0 auto 14px auto;
    }
	.ih-logo-anim {
	font-size: 2.7rem;
	color: #ec407a;
	margin-bottom: 8px;
	text-align: center;
}
	.ih-h1 {
	font-size: 1.4rem;
	margin-bottom: 4px;
}
}

@media (max-width: 400px) {
    .ih-main-card {
        padding: 18px 12px 12px 12px;
        border-radius: 18px;
    }

    .ih-main-card::before {
        border-radius: 22px;
    }

    .ih-h1 {
        font-size: 1.6rem;
        margin-bottom: 3px;
    }

    .ih-h2 {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .ih-desc {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .ih-input-group input,
    .ih-input-group button {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .ih-img-grid {
        grid-template-columns: 1fr; /* Stack items on very small screens */
        gap: 12px;
    }

    .ih-profile-img-block {
        border-radius: 10px;
    }

    .ih-profile-img-block .ih-label {
        font-size: 0.85rem;
        margin: 7px 0 1px 0;
    }

    .ih-profile-img-block .ih-resolution {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }

    .ih-profile-img-block .ih-download-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }

    .ih-error {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .ih-skeleton-label,
    .ih-skeleton-res {
        height: 11px;
        width: 55px;
        margin: 7px auto 4px auto;
    }

    .ih-skeleton-actions {
        width: 80%;
        height: 25px;
        margin: 0 auto 12px auto;
    }
	.ih-logo-anim {
	font-size: 2.7rem;
	color: #ec407a;
	margin-bottom: 8px;
	text-align: center;
}
	.ih-h1 {
	font-size: 1.4rem;
	margin-bottom: 4px;
}
}

@media (max-width: 375px) {
    .ih-main-card {
        padding: 15px 10px 10px 10px;
        border-radius: 16px;
    }

    .ih-main-card::before {
        border-radius: 20px;
    }

    .ih-h1 {
        font-size: 1.5rem;
    }

    .ih-h2 {
        font-size: 0.85rem;
    }

    .ih-desc {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .ih-input-group input,
    .ih-input-group button {
        padding: 7px 8px;
        font-size: 0.8rem;
    }

    .ih-img-grid {
        gap: 10px;
    }

    .ih-profile-img-block .ih-label {
        font-size: 0.8rem;
        margin: 6px 0 0 0;
    }

    .ih-profile-img-block .ih-resolution {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }

    .ih-profile-img-block .ih-download-btn {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .ih-error {
        font-size: 0.8rem;
        padding: 5px 0;
    }

    .ih-skeleton-label,
    .ih-skeleton-res {
        height: 10px;
        width: 50px;
        margin: 6px auto 3px auto;
    }

    .ih-skeleton-actions {
        width: 85%;
        height: 22px;
        margin: 0 auto 10px auto;
    }
	.ih-logo-anim {
	font-size: 2.7rem;
	color: #ec407a;
	margin-bottom: 8px;
	text-align: center;
}
	.ih-h1 {
	font-size: 1.4rem;
	margin-bottom: 4px;
}
}

/* SUPPORTIVE CONTENT CSS - FULLY COMPATIBLE */
.ih-supportive-content {
    width: 100%;
    color: #1e293b;
    line-height: 1.6;
}

/* Force standard Font Awesome Solid display */
.ih-supportive-content i {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Solid" !important;
    font-weight: 900 !important;
    font-style: normal !important;
}

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

.support-block { padding: 80px 0; }
.bg-pure-white { background-color: #ffffff; }
.bg-light-blue { background-color: #f0f7ff; }

/* Headers */
.section-heading-group {
    text-align: center;
    margin-bottom: 50px;
}

.wh-title {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    color: #1a75c6; /* Inherited/Primary Blue */
    margin-bottom: 12px;
}

.wh-subtitle {
    font-size: 17px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* 4 Column Grid */
.card-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Feature Card Basic */
.feature-box {
    padding: 35px 20px;
    border-radius: 10px; /* Requested Radius */
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-box h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ec407a; /* Tool Pink Accent */
}

.feature-box p {
    font-size: 14px;
    color: #475569;
}

.f-icon, .icon-bubble, .icon-grow {
    font-size: 34px;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s ease;
}

/* --- Section 1 Variant: Elevation & Spin Icon --- */
.v1-hover { background-color: #f0f7ff; }
.icon-teal i { color: #57EBDE; }

.v1-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.1);
}

.v1-hover:hover .f-icon {
    transform: rotateY(360deg);
}

/* --- Section 2 Variant: Scale & Background Circle Pulse --- */
.v2-hover { background-color: #ffffff; box-shadow: 0 5px 15px rgba(0,0,0,0.02);  text-align: left;}

.icon-bubble {
    width: 60px; height: 60px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex !important;
    align-items: center; justify-content: center;
    color: #1e88e5;
}

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

.v2-hover:hover .icon-bubble {
    background-color: #ec407a;
    color: white !important;
}

.v2-hover:hover .icon-bubble i { color: white !important; }

/* --- Section 3 Variant: Inner Shadow & Skew Icon --- */
.v3-hover { background-color: #f0f7ff; }

.icon-grow i {
    background: linear-gradient(135deg, #AEFB2A, #57EBDE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.v3-hover:hover {
    box-shadow: inset 0 0 15px rgba(174, 251, 42, 0.2);
}

.v3-hover:hover .icon-grow {
    transform: skewX(-15deg);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .card-layout { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .support-block { padding: 50px 0; }
    .wh-title { font-size: 26px; }
}

@media (max-width: 550px) {
    .card-layout { grid-template-columns: 1fr; }
    .feature-box { padding: 30px 15px; }
}