/* --- 1. SETUP & VARIABLES --- */
:root {
    --bg-main: #0a0a0a;
    --text-main: #ededed;
    --accent: #3b82f6;
    /* Premium Blue */
    --accent-dark: #1e3a8a;
    --border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Clash Display', sans-serif;
    --font-body: 'Satoshi', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
    /* Hide default cursor */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
}

/* --- 2. PRELOADER --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-text-wrap {
    overflow: hidden;
    margin-bottom: 20px;
}

.l-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    display: block;
    transform: translateY(100%);
}

.loader-progress {
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.5s;
}

/* --- 3. CURSOR --- */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.cursor-circle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

body.hovering .cursor-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-color: transparent;
}

/* --- 4. NAVBAR --- */
.navbar {
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    transition: transform 0.3s;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.dot {
    color: var(--accent);
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 15px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

/* Premium Dropdown */
.premium-dropdown {
    background: #111;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 0;
    min-width: 250px;
}

.dropdown-item {
    padding: 15px 20px;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.dropdown-item:hover {
    background: #1a1a1a;
    color: #fff;
    padding-left: 25px;
}

.dropdown-item span {
    color: var(--accent);
    font-family: var(--font-heading);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Button Rawas */
.btn-rawas {
    position: relative;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    overflow: hidden;
    display: inline-block;
    color: #fff;
}

.btn-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: color 0.4s;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-rawas:hover .btn-fill {
    transform: translateY(0);
}

.btn-rawas:hover .btn-text {
    color: #000;
}

/* --- 5. HERO SECTION --- */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.sub-heading {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    font-size: clamp(3.5rem, 8vw, 7rem);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator .line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

/* --- 6. STATS --- */
.stats-section {
    border-bottom: 1px solid var(--border);
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.border-x {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    display: inline-block;
    color: #fff;
}

.plus,
.percent {
    font-size: 2rem;
    color: var(--accent);
    vertical-align: super;
}

.stat-label {
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-top: 10px;
}

/* --- 7. ABOUT --- */
.py-large {
    padding: 120px 0;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 30px;
}

.text-accent {
    color: var(--accent);
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
}

.about-slider p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #ccc;
}

.link-underline {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
    transition: 0.3s;
}

.link-underline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.reveal-img-wrap {
    overflow: hidden;
    border-radius: 8px;
}

.reveal-img {
    transform: scale(1.2);
    transition: transform 1s;
    width: 100%;
}

/* --- 8. HORIZONTAL SCROLL SERVICES (FIXED) --- */
.services-wrapper {
    overflow: hidden;
    position: relative;
    /* Force full height so it doesn't look cut off */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0a0a0a;
}

.service-intro {
    /* Absolute position allows cards to use full center space */
    position: absolute;
    top: 12%;
    left: 0;
    width: 100%;
    z-index: 5;
    pointer-events: none;
    /* Let clicks pass through */
    padding: 0;
    border-bottom: none;
}

.horizontal-scroll-container {
    display: flex;
    flex-wrap: nowrap;
    width: 400%;
    /* 4 cards */
    height: 100%;
    /* Take full height of wrapper */
    align-items: center;
    /* Vertically center cards */
}

.h-card {
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border);
    position: relative;
    padding: 100px 5vw 0 5vw;
    /* Top padding clears the header */
}

.h-card-inner {
    display: flex;
    gap: 50px;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.h-card-img {
    width: 500px;
    height: 55vh;
    /* Responsive height */
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    flex-shrink: 0;
    filter: grayscale(100%);
    transition: 0.5s;
}

.h-card:hover .h-card-img {
    filter: grayscale(0%);
}

.h-card-content {
    max-width: 400px;
}

.h-card-content span {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.1);
    display: block;
    margin-bottom: 20px;
}

.h-card-content h3 {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.h-card-content p {
    color: #aaa;
    font-size: 1.1rem;
}

/* Responsive H-Scroll */
@media (max-width: 991px) {
    .services-wrapper {
        height: auto;
        display: block;
    }

    .service-intro {
        position: relative;
        top: 0;
        height: auto;
        padding: 60px 0;
    }

    .horizontal-scroll-container {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .h-card {
        width: 100%;
        height: auto;
        padding: 60px 20px;
        border-bottom: 1px solid var(--border);
    }

    .h-card-inner {
        flex-direction: column;
    }

    .h-card-img {
        width: 100%;
        height: 300px;
    }
}

/* --- PREMIUM REVIEW SLIDER --- */

:root {
    --card-bg-dark: #0a0a0a;
    --accent: #3b82f6;
    /* Your blue */
}

/* 1. Slider Wrapper */
.review-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    /* Space for hover lift */
    display: flex;
}

/* 2. The Moving Track */
.review-track {
    display: flex;
    gap: 30px;
    width: max-content;
    /* Allows content to flow horizontally */
    animation: scroll 40s linear infinite;
    /* Adjust speed here (40s) */
}

/* The Animation Loop */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Moves half way (since we duplicated content) */
}

/* Pause on Hover (Important UX) */
.review-slider-wrapper:hover .review-track {
    animation-play-state: paused;
}

/* 3. The Review Card */
.review-card {
    position: relative;
    width: 400px;
    /* Fixed width for consistency */
    padding: 40px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    /* Slightly sharp premium corners */
    flex-shrink: 0;
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

/* The Quote Icon in Background */
.quote-bg {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.03);
    /* Very subtle */
    transition: 0.4s;
}

/* Text Styling */
.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 3px;
}

/* Reviewer Profile Section */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #333, #111);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
}

.review-author {
    font-size: 1rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
}

.review-role {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- HOVER EFFECTS (PREMIUM) --- */

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    background: #141414;
}

.review-card:hover .quote-bg {
    color: rgba(59, 130, 246, 0.1);
    /* Blue glow on quote */
    transform: translateY(-5px);
}

/* Gradient Fade Edges (Makes it look expensive) */
.slider-fade-left,
.slider-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 5;
    pointer-events: none;
    /* Allows click through */
}

.slider-fade-left {
    left: 0;
    background: linear-gradient(to right, #050505, transparent);
}

.slider-fade-right {
    right: 0;
    background: linear-gradient(to left, #050505, transparent);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .review-card {
        width: 300px;
        /* Smaller cards on mobile */
        padding: 25px;
    }
}

/* --- 10. FAQ ACCORDION --- */
.acc-item {
    border-bottom: 1px solid var(--border);
}

.acc-header {
    padding: 30px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    transition: 0.3s;
}

.acc-header:hover {
    color: var(--accent);
}

.acc-body {
    height: 0;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.acc-body p {
    padding-bottom: 30px;
    color: #999;
    width: 90%;
}

/* Active State for Accordion */
.acc-item.active .acc-body {
    height: auto;
    /* Fallback */
}

.acc-item.active .icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.icon {
    font-size: 1.5rem;
    transition: 0.3s;
}

/* --- 11. CTA SECTION (PREMIUM UPGRADE) --- */

.cta-section {
    padding: 160px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    /* Background Glow Spot */
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
}

/* 1. Big Text with Shimmer Effect */
.cta-big-text {
    font-size: clamp(4rem, 12vw, 9rem);
    /* Massive Size */
    font-family: var(--font-heading);
    line-height: 0.9;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff 20%, #666 50%, #fff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 5s linear infinite;
    /* Text Shimmer */
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.cta-subtext {
    color: #888;
    font-size: 1.25rem;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* 2. Button Wrapper */
.cta-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* 3. The Main Button Container */
.premium-circle-btn {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.5s ease;
}

/* 4. The Spinning Text Ring */
.spin-text-box {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate-slow 20s linear infinite;
    /* By default slow rotate */
}

.spin-text-box svg {
    width: 100%;
    height: 100%;
    fill: #fff;
    /* Text Color */
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

/* 5. The Center Circle (Blue Dot) */
.btn-center {
    width: 60px;
    height: 60px;
    background: var(--accent);
    /* Blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.btn-center i {
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.4s;
}

/* --- HOVER ANIMATIONS (THE CORE REQUEST) --- */

/* Hover: Rotate Fast */
.premium-circle-btn:hover .spin-text-box {
    animation: rotate-fast 4s linear infinite;
    /* Speed up on hover */
}

/* Hover: Scale Center Dot */
.premium-circle-btn:hover .btn-center {
    width: 90px;
    height: 90px;
    background: #fff;
    /* Turn white */
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

/* Hover: Arrow Interaction */
.premium-circle-btn:hover .btn-center i {
    color: #000;
    /* Arrow turns black */
    transform: rotate(-45deg) scale(1.2);
    /* Point diagonally */
}

/* --- KEYFRAMES --- */
@keyframes rotate-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-fast {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- 12. FOOTER --- */
.main-footer {
    padding: 80px 0 30px;
    background: #000;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 0;
}

.back-top {
    font-size: 1rem;
    text-transform: uppercase;
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
}

.back-top:hover {
    background: #fff;
    color: #000;
}

.footer-head {
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 5px;
}

.footer-links a {
    display: block;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    color: #555;
    font-size: 0.9rem;
}

/* --- ULTRA PREMIUM CARD CSS --- */

:root {
    --card-bg: #0f0f0f;
    --card-border: rgba(255, 255, 255, 0.08);
    --text-muted: #888;
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    /* Blue Gradient */
}

/* 1. Base Card Styling */
.product-premium-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 60px 40px;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    /* Smooth Transition for base properties */
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.6s ease,
        border-color 0.4s ease;
}

/* 2. The Gradient Background (Hidden by default) */
.product-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    /* Invisible initially */
    z-index: -1;
    transform: scaleY(0);
    /* Squashed down */
    transform-origin: bottom;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s;
}

/* 3. Text & Content Wrapper */
.product-premium-card .card-body-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* 4. Icon Styling - The "Hero" Element */
.product-premium-card .card-icon {
    font-size: 3.5rem;
    color: var(--accent);
    /* Start with blue */
    margin-bottom: 35px;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s;
    /* Defines pivot point for rotation */
    transform-origin: center left;
}

/* 5. Typography */
.product-premium-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-premium-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    flex-grow: 1;
    transition: color 0.3s ease;
}

/* 6. The "Explore" Link */
.product-premium-card .link-underline {
    position: relative;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    padding-bottom: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

/* Underline Animation */
.product-premium-card .link-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    /* Small line initially */
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease, background-color 0.3s;
}

/* --- HOVER EFFECTS (THE MAGIC) --- */

/* Card Lift & Glow */
.product-premium-card:hover {
    transform: translateY(-12px);
    /* Higher lift */
    border-color: transparent;
    /* Remove border to let gradient shine */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    /* Deep shadow */
}

/* Reveal Gradient Background */
.product-premium-card:hover::before {
    opacity: 1;
    transform: scaleY(1);
    /* Slide up full height */
}

/* Content Interactions */
.product-premium-card:hover h3 {
    color: #fff;
}

.product-premium-card:hover p {
    color: rgba(255, 255, 255, 0.9);
    /* Make text bright white */
}

/* Icon Pop Effect */
.product-premium-card:hover .card-icon {
    color: #fff;
    transform: scale(1.15) translateZ(20px);
    /* 3D pop */
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Link Interaction */
.product-premium-card:hover .link-underline {
    gap: 15px;
    /* Text moves slightly away from potential arrow */
}

.product-premium-card:hover .link-underline::after {
    width: 100%;
    /* Line grows full width */
    background: #fff;
}

/* =========================================
   UNIQUE LOGO PRELOADER (ABOUT PAGE ONLY)
   ID: #ab-logo-loader
   ========================================= */

/* Main Loader Container */
#ab-logo-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000; /* Pitch black */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

/* Hide State */
#ab-logo-loader.ab-fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Wrapper for Logo */
.ab-logo-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Image Itself */
.ab-main-logo {
    width: 50px; /* Adjust size based on your logo */
    height: auto;
    position: relative;
    z-index: 2;
    animation: ab-breathe 2s infinite ease-in-out;
}

/* The Glowing Ring Behind */
.ab-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: rgba(59, 130, 246, 0.4); /* Your Blue Accent */
    filter: blur(20px);
    border-radius: 50%;
    animation: ab-pulse-glow 2s infinite ease-in-out;
    z-index: 1;
}

/* Animations */
@keyframes ab-breathe {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes ab-pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

/* Body Freeze Class */
body.ab-loading {
    overflow: hidden;
}


/* =========================================
   ABOUT PAGE CONTENT STYLING
   ========================================= */

/* Hero Height Adjustment */
.about-hero {
    height: 70vh; 
}

/* Section Headings */
.section-heading-sm {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
}

/* --- TIMELINE / JOURNEY STYLING --- */
.timeline-wrap {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    padding-left: 50px;
    border-left: 1px solid var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 60px;
}

/* Timeline Dots */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -55px; /* Aligns dot on the line */
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
}

/* Phase Title (Replaces Year) */
.time-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Content */
.time-content h4 {
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.time-content p {
    color: #888;
    max-width: 600px;
    line-height: 1.6;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .section-heading-sm {
        font-size: 1.8rem;
    }
    .timeline-wrap {
        padding-left: 30px;
        border-left: 1px solid rgba(255,255,255,0.1);
    }
    .timeline-item::before {
        left: -35px;
    }
    .time-year {
        font-size: 1.2rem;
    }
}

/* =========================================
   NEW STRATEGY GRID (Mission, Vision, Aim, Goal)
   ========================================= */

.strategy-grid {
    position: relative;
    overflow: hidden;
}

.strategy-card {
    background: linear-gradient(145deg, #111, #0a0a0a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

/* 1. Icon Styling */
.strat-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.5s ease;
}

/* 2. Typography */
.strategy-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.strategy-card p {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

/* 3. The Glow Overlay (Hidden initially) */
.strat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.1), transparent);
    transition: height 0.5s ease;
    z-index: 1;
}

/* --- HOVER EFFECTS --- */

.strategy-card:hover {
    transform: translateY(-10px); /* Lift Up */
    border-color: rgba(59, 130, 246, 0.4); /* Blue Border */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.strategy-card:hover .strat-icon {
    transform: scale(1.2) rotate(-10deg); /* Icon Animation */
    color: #fff;
    text-shadow: 0 0 15px var(--accent);
}

.strategy-card:hover h3 {
    color: #fff;
}

.strategy-card:hover p {
    color: #ccc;
}

.strategy-card:hover .strat-overlay {
    height: 100%; /* Fill background slightly */
}

/* Responsive Grid Fix */
@media (max-width: 991px) {
    .strategy-card {
        padding: 30px 20px;
        text-align: center;
    }
}

/* =========================================
   NEW "WHO WE ARE" SECTION
   ========================================= */

.who-we-are .reveal-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.who-we-are .reveal-img {
    width: 100%;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.who-we-are:hover .reveal-img {
    transform: scale(1.05);
}

/* Image Reveal Effect Overlay */
.img-overlay-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 2;
    /* This needs JS to trigger usually, but we can set it to auto-reveal 
       or use a simple animation if JS isn't controlling it */
    animation: slideReveal 1.5s ease-out forwards;
}

@keyframes slideReveal {
    0% { transform: translateX(0); }
    100% { transform: translateX(101%); }
}

/* =========================================
   STRATEGY GRID (Updated with better spacing)
   ========================================= */

.strategy-grid {
    position: relative;
    overflow: hidden;
}

.strategy-card {
    background: linear-gradient(145deg, #111, #0a0a0a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    height: 100%; /* Ensures equal height in grid */
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Icon Styling */
.strat-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.5s ease;
}

/* Typography */
.strategy-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.strategy-card p {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

/* Glow Overlay */
.strat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.1), transparent);
    transition: height 0.5s ease;
    z-index: 1;
}

/* Hover Effects */
.strategy-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.strategy-card:hover .strat-icon {
    transform: scale(1.2) rotate(-10deg);
    color: #fff;
    text-shadow: 0 0 15px var(--accent);
}

.strategy-card:hover h3 { color: #fff; }
.strategy-card:hover p { color: #ccc; }
.strategy-card:hover .strat-overlay { height: 100%; }


/* =========================================
   CORE VALUES FIX (Equal Height)
   ========================================= */

/* Important: .h-100 class in HTML takes care of the height, 
   but we ensure flexbox behavior here just in case */

.values-section .row {
    align-items: stretch; /* Forces all columns to stretch to the tallest one */
}

/* Adjust card body to fill space if needed */
.product-premium-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-premium-card .card-body-wrap {
    flex-grow: 1; /* Pushes content to fill space */
}


/* --- CONTACT PAGE PREMIUM DESIGN --- */

/* 1. Hero Adjustment */
.contact-hero {
    height: 70vh;
}

/* 2. Info Cards Style */
.contact-info-wrapper {
    position: sticky;
    top: 120px;
}

.info-card-premium {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    margin-bottom: 20px;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-card-premium:hover {
    background: #111;
    transform: translateX(10px);
    border-color: var(--accent);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 4px;
}

.info-text span {
    display: block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-text p {
    margin: 0;
    color: #ccc;
    font-size: 1.1rem;
}

/* 3. Form Styling - Ultra Sleek */
.contact-form-card {
    background: #0f0f0f;
    padding: 60px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-form-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.input-group-vitesse {
    position: relative;
    width: 100%;
}

.input-group-vitesse input, 
.input-group-vitesse select, 
.input-group-vitesse textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.1rem;
    outline: none;
    transition: 0.3s;
}
.input-group-vitesse select{
    color: #c00000;
}
.input-group-vitesse label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #666;
    pointer-events: none;
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 1rem;
}

/* Label Animation when typing */
.input-group-vitesse input:focus ~ label,
.input-group-vitesse input:valid ~ label,
.input-group-vitesse select:focus ~ label,
.input-group-vitesse select:not([value=""]):valid ~ label,
.input-group-vitesse textarea:focus ~ label,
.input-group-vitesse textarea:valid ~ label {
    top: -15px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.4s;
}

.input-group-vitesse input:focus ~ .focus-border,
.input-group-vitesse select:focus ~ .focus-border,
.input-group-vitesse textarea:focus ~ .focus-border {
    width: 100%;
}

/* Map Section Adjustment */
.map-section {
    position: relative;
    line-height: 0;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #0a0a0a, transparent, #0a0a0a);
    pointer-events: none;
}

/* Mobile Fixes */
@media (max-width: 991px) {
    .contact-form-card {
        padding: 30px;
    }
    .contact-info-wrapper {
        position: static;
    }
}

/* =========================================
   CAREER PAGE STYLING (Cleaned & Optimized)
   ========================================= */

/* Hero Section Height */
.career-hero {
    height: 60vh;
}

/* --- 1. UNIQUE CAREER LOADER --- */
#cr-loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: #000;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.8s ease;
}
#cr-loader.cr-fade-out {
    opacity: 0; visibility: hidden; pointer-events: none;
}
.cr-text {
    font-family: var(--font-heading);
    color: #fff; letter-spacing: 3px; font-size: 1.5rem;
}
.cr-line {
    width: 0%; height: 2px; background: var(--accent);
    margin-top: 10px;
    animation: cr-line-anim 1.5s ease forwards;
}
@keyframes cr-line-anim { to { width: 100%; } }

/* --- 2. STATUS CARD (The "No Vacancy" Premium Look) --- */
.status-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.status-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}

.status-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Blinking Dot (Amber for Wait) */
.blink-dot {
    width: 10px; height: 10px;
    background-color: #f59e0b; /* Amber Color */
    border-radius: 50%;
    box-shadow: 0 0 10px #f59e0b;
    animation: blinkStatus 2s infinite;
}

@keyframes blinkStatus {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.status-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #888;
}

.status-body {
    padding: 50px 30px;
}

/* Radar Animation */
.icon-radar {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    position: relative;
    width: fit-content;
}

.icon-radar i {
    animation: radarPulse 3s infinite ease-out;
}

@keyframes radarPulse {
    0% { transform: scale(1); opacity: 0.1; color: #333; }
    50% { transform: scale(1.1); opacity: 0.8; color: var(--accent); }
    100% { transform: scale(1); opacity: 0.1; color: #333; }
}


/* --- 3. TALENT POOL FORM (Added Missing Styles) --- */

/* Card Container */
.cv-drop-card {
    background: #111;
    padding: 50px;
    border: 1px solid var(--border);
    position: relative;
    border-radius: 4px;
}

/* Premium Floating Input */
.input-group-vitesse {
    position: relative;
}

.input-group-vitesse input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 15px 0;
    color: #fff;
    font-size: 1.1rem;
    outline: none;
    transition: 0.3s;
}

.input-group-vitesse label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #666;
    pointer-events: none;
    transition: 0.3s ease all;
}

/* Floating Label Animation */
.input-group-vitesse input:focus ~ label,
.input-group-vitesse input:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--accent);
}

.input-group-vitesse input:focus {
    border-bottom-color: var(--accent);
}

/* Focus Border Effect */
.focus-border {
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 1px;
    background-color: var(--accent);
    transition: 0.4s;
}
.input-group-vitesse input:focus ~ .focus-border {
    width: 100%;
}

/* Custom File Upload */
.custom-file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: 0.3s;
    color: #666;
    border-radius: 4px;
}

.custom-file-upload:hover {
    border-color: var(--accent);
    color: #fff;
    background: rgba(59, 130, 246, 0.05);
}

.custom-file-upload i {
    font-size: 2.5rem;
}


/* --- 4. LISTS (Future Roles & Benefits) --- */

/* Role List */
.role-list { list-style: none; padding: 0; margin: 0; }

.role-list li {
    font-size: 1.2rem;
    color: #ccc;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.role-list li:hover {
    padding-left: 10px;
    color: #fff;
    border-color: var(--accent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .status-body { padding: 30px 20px; }
    .cv-drop-card { padding: 30px 20px; }
}


/* Hero Glow Text */
.dot-text {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

/* Domain Cards Styling */
.domain-card {
    display: block;
    height: 450px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.domain-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
    filter: grayscale(40%) brightness(0.7);
}

.domain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 10%, rgba(0,0,0,0.3) 50%, transparent 100%);
    transition: 0.5s;
}

.domain-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    z-index: 2;
    width: 100%;
    transform: translateY(30px);
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.d-number {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    opacity: 0.7;
}

.domain-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.domain-content p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0;
    transition: 0.5s;
    max-width: 90%;
}

.d-link {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    display: inline-block;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 5px;
    opacity: 0;
    transition: 0.5s;
}

/* Hover States */
.domain-card:hover {
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.domain-card:hover .domain-img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(0.6);
}

.domain-card:hover .domain-content {
    transform: translateY(0);
}

.domain-card:hover .domain-content p,
.domain-card:hover .d-link {
    opacity: 1;
}

.domain-card:hover .domain-overlay {
    background: linear-gradient(to top, rgba(30, 58, 138, 0.8) 0%, rgba(0,0,0,0.4) 100%);
}

@media (max-width: 768px) {
    .domain-card { height: 380px; }
    .domain-content { transform: translateY(0); }
    .domain-content p, .d-link { opacity: 1; }
}

/* =========================================
   PREMIUM TRADING TABS & SUB-PRODUCTS
   ========================================= */

/* 1. The Tabs Navigation */
.vitesse-tabs {
    border: none;
    gap: 15px;
    flex-wrap: wrap;
}

.vitesse-tabs .nav-link {
    background: rgba(255, 255, 255, 0.05);
    color: #888;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px; /* Pill Shape */
    padding: 12px 30px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Tab Hover */
.vitesse-tabs .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

/* Tab Active State */
.vitesse-tabs .nav-link.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* 2. Sub-Product Card Container */
.sub-product-card {
    background: #141414; /* Slightly lighter than body */
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    height: 100%;
    border-radius: 8px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Card Hover Effect */
.sub-product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5); /* Blue Border */
    background: #1a1a1a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* 3. Icon */
.sp-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    transition: transform 0.5s;
}

.sub-product-card:hover .sp-icon {
    transform: scale(1.1) rotate(-10deg);
}

/* 4. Card Typography */
.sub-product-card h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.sp-desc {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes content down */
}

/* 5. Specifications List (The "Detailed" part) */
.sp-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.sp-specs li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.sp-specs li span {
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* 6. Link / Button */
.sp-link {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s, color 0.3s;
}

.sp-link:hover {
    color: var(--accent);
    gap: 15px;
}

/* Responsive Tweak for Tabs */
@media (max-width: 768px) {
    .vitesse-tabs {
        flex-direction: column;
        width: 100%;
    }
    .vitesse-tabs .nav-link {
        width: 100%;
        text-align: center;
    }
}

/* Metal Category Headers (New Addition) */
.metal-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 10px;
}

.metal-category-header h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 0;
    white-space: nowrap; /* Text ko break hone se rokega */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.metal-category-header .h-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
    opacity: 0.5;
}

/* Copper Icon Color Override for realism */
.sub-product-card .sp-icon.text-warning {
    color: #d97706 !important; /* Copper color */
}

/* ===== MOBILE SERVICES FIX ===== */
@media (max-width: 991px) {

    #services {
        padding: 60px 0;
        overflow: visible;
    }

    .horizontal-scroll-container {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 20px;
    }

    /* Hide scrollbar */
    .horizontal-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .h-card {
        min-width: 85%;
        scroll-snap-align: center;
        border-right: none;
        border-bottom: none;
        padding: 30px 15px;
        height: auto;
    }

    .h-card-inner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .h-card-img {
        width: 100%;
        height: 220px;
        border-radius: 10px;
    }

    .h-card-content {
        max-width: 100%;
    }

    .h-card-content span {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .h-card-content h3 {
        font-size: 1.6rem;
    }

    .h-card-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}
