/* ============================================
   PREMIUM ENHANCEMENTS - MODERN UI UPGRADE
   ============================================ */

/* Enhanced Root Variables */
:root {
    /* Premium Gradients */
    --gradient-premium: linear-gradient(135deg, #01735C 0%, #02A385 50%, #03B88F 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-glow: linear-gradient(135deg, rgba(2, 163, 133, 0.15) 0%, rgba(3, 184, 143, 0.05) 100%);
    --gradient-card: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    --gradient-hero-premium: linear-gradient(135deg, #f0fdf9 0%, #ecfdf5 50%, #f0fdfa 100%);

    /* Premium Shadows */
    --shadow-premium: 0 20px 60px -15px rgba(1, 115, 92, 0.25);
    --shadow-glow: 0 0 40px rgba(2, 163, 133, 0.15);
    --shadow-card-premium: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

    /* Animation Timings */
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   3D & DEPTH UTILITIES
   ============================================ */
.perspective-container {
    perspective: 1000px;
}

.hover-3d {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.hover-3d:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    box-shadow:
        20px 20px 60px rgba(0, 0, 0, 0.05),
        -20px -20px 60px rgba(255, 255, 255, 0.8);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border-radius: 24px;
}

.glass-panel-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 3D Buttons */
.btn-3d-primary {
    background: var(--gradient-premium);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 14px 34px;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 10px 20px -10px rgba(1, 115, 92, 0.5),
        0 6px 0 #005f4b,
        /* 3D Depth */
        0 15px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-3d-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 15px 25px -10px rgba(1, 115, 92, 0.6),
        0 6px 0 #005f4b,
        0 20px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-3d-primary:active {
    transform: translateY(4px);
    box-shadow:
        0 5px 10px -10px rgba(1, 115, 92, 0.5),
        0 2px 0 #005f4b,
        0 5px 10px rgba(0, 0, 0, 0.1);
}

.btn-3d-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-3d-primary:hover::after {
    left: 100%;
}

/* Section Backgrounds with Mesh Grid */
.bg-3d-mesh {
    background-color: #ffffff;
    /* Mesh Grid Pattern */
    background-image:
        linear-gradient(rgba(203, 213, 225, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(203, 213, 225, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    position: absolute;
    inset: 0;
    z-index: -1;
    /* Optional: Subtle vignette/spotlight at the top */
}

/* Add a subtle top highlight */
.bg-3d-mesh::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80vh;
    background: radial-gradient(circle at 50% -10%, rgba(1, 115, 92, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Remove old noise overlay or keep it very subtle if requested, but user asked for "White + Net" */
.bg-3d-mesh::after {
    display: none;
}

/* Smooth Reveal Animation */
@keyframes fadeInUp3D {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0) rotateX(10deg);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotateX(0);
    }
}

.reveal-3d {
    animation: fadeInUp3D 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ============================================
   PREMIUM NAVBAR & MENU
   ============================================ */
.navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04) !important;
    padding: 0.75rem 0 !important;
    transition: all 0.3s var(--ease-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
    padding: 0.5rem 0 !important;
}

/* 3D Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s var(--ease-smooth);
}

.navbar-logo:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.logo-icon {
    background: var(--gradient-premium) !important;
    box-shadow:
        0 4px 10px rgba(1, 115, 92, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
    border-radius: 10px !important;
    width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.3s var(--ease-bounce) !important;
}

.navbar-logo:hover .logo-icon {
    transform: scale(1.1) rotate(5deg) !important;
}

.logo-text {
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    font-size: 1.3rem !important;
}

/* Premium Pill Nav Links */
.navbar-menu {
    gap: 0.5rem !important;
}

.nav-link {
    position: relative;
    font-weight: 600 !important;
    color: #475569 !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 50px !important;
    transition: all 0.3s var(--ease-smooth) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
}

/* Remove old underline */
.nav-link::after {
    display: none !important;
}

.nav-link:hover {
    color: var(--primary) !important;
    background: rgba(1, 115, 92, 0.08) !important;
    transform: translateY(-1px);
}

.nav-link.active {
    background: var(--gradient-premium) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(1, 115, 92, 0.3) !important;
}

.nav-link i {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
}

/* Cart Icon Special */
.nav-link i.fa-shopping-cart {
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
}

.nav-link:not(.active) i.fa-shopping-cart {
    color: inherit;
    background: none;
}

/* Premium Login Button */
.btn-nav-cta {
    background: white !important;
    color: var(--text-dark) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s var(--ease-smooth) !important;
    border-radius: 50px !important;
    padding: 0.6rem 1.5rem !important;
    font-weight: 700 !important;
}

.btn-nav-cta:hover {
    background: var(--gradient-premium) !important;
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(1, 115, 92, 0.25) !important;
}

.btn-nav-cta span {
    position: relative;
    z-index: 1;
}

.btn-nav-cta i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-nav-cta:hover i {
    transform: translateX(3px) rotate(10deg);
}

/* ============================================
   PREMIUM HERO SECTION
   ============================================ */
.hero-section {
    background: transparent !important;
    position: relative;
    overflow: visible !important;
    padding-top: 180px !important;
    padding-bottom: 100px !important;
}

/* Decorative Blobs using CSS */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(2, 163, 133, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: pulseBlob 10s infinite alternate;
}

@keyframes pulseBlob {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    padding: 0.6rem 1.25rem !important;
    animation: fadeInUp 0.6s var(--ease-smooth);
}

.badge-dot {
    width: 8px !important;
    height: 8px !important;
    background: #10B981 !important;
    box-shadow: 0 0 10px #10B981;
}

.hero-title {
    font-size: 5rem !important;
    /* Larger */
    font-weight: 900 !important;
    letter-spacing: -2.5px !important;
    animation: fadeInUp 0.6s var(--ease-smooth) 0.1s both;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
    color: #0f172a;
}

.text-gradient {
    background: linear-gradient(135deg, #01735C 0%, #02A385 40%, #2DD4BF 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    position: relative;
    display: inline-block;
}

/* Add a subtle glow behind text */
/* .text-gradient::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(15px);
    opacity: 0.3;
} */

.hero-subtitle {
    font-size: 1.25rem !important;
    line-height: 1.8 !important;
    color: #475569 !important;
    animation: fadeInUp 0.6s var(--ease-smooth) 0.2s both;
    max-width: 600px;
}

.tech-pills {
    animation: fadeInUp 0.6s var(--ease-smooth) 0.3s both;
    margin-top: 2rem;
}

.tech-pill {
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    padding: 0.8rem 1.4rem !important;
    font-weight: 600 !important;
    transition: all 0.3s var(--ease-smooth) !important;
    border-radius: 12px !important;
}

.tech-pill:hover {
    background: white !important;
    border-color: var(--pill-color, var(--primary)) !important;
    color: var(--pill-color, var(--primary)) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.hero-search {
    animation: fadeInUp 0.6s var(--ease-smooth) 0.4s both;
    margin-top: 2.5rem;
}

.search-form {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s var(--ease-smooth) !important;
    padding: 0.5rem !important;
}

.search-form:focus-within {
    background: white !important;
    border-color: rgba(1, 115, 92, 0.3) !important;
    box-shadow: 0 15px 50px rgba(1, 115, 92, 0.1) !important;
    transform: translateY(-2px);
}

.search-input {
    background: transparent !important;
    font-size: 1.1rem !important;
    padding-left: 1.5rem !important;
}

.search-btn {
    background: var(--gradient-premium) !important;
    border-radius: 14px !important;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 115, 92, 0.3);
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(1, 115, 92, 0.4);
}

/* Floating Icons Premium Upgrade */
.float-icon {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    transition: all 0.4s var(--ease-smooth);
    border-radius: 24px !important;
    /* Softer shape */
}

.float-icon:hover {
    transform: scale(1.15) translateY(-5px) !important;
    background: white !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
    z-index: 10;
}

/* ============================================
   PREMIUM PROJECT CARDS
   ============================================ */
.project-card {
    background: var(--gradient-card) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.4s var(--ease-smooth) !important;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(1, 115, 92, 0.2) !important;
}

.project-card-image {
    position: relative;
    overflow: hidden;
}

.project-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.project-card:hover .project-card-image::after {
    opacity: 1;
}

.project-card-image img {
    transition: transform 0.6s var(--ease-smooth) !important;
}

.project-card:hover .project-card-image img {
    transform: scale(1.1) !important;
}

.discount-tag {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%) !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.35) !important;
    border-radius: 8px !important;
    font-size: 0.8rem !important;
    padding: 0.4rem 0.9rem !important;
}

.project-card-body {
    padding: 1.5rem !important;
}

.project-card-title {
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    transition: color 0.3s;
}

.project-card:hover .project-card-title {
    color: var(--primary);
}

.price-current {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   PREMIUM CATEGORY CARDS
   ============================================ */
.category-card {
    background: white !important;
    border-radius: 18px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    padding: 1.5rem !important;
    transition: all 0.4s var(--ease-smooth) !important;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--category-color, var(--primary)) !important;
}

.category-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 14px !important;
    transition: all 0.4s var(--ease-smooth) !important;
    /* Background handled inline */
}

.category-card:hover .category-icon {
    /* Background handled inline */
    transform: scale(1.1) rotate(5deg);
    /* box-shadow handled better without color override */
}

.category-card:hover h4,
.category-card:hover .category-info h4 {
    color: var(--category-color, var(--primary)) !important;
}

/* ============================================
   PREMIUM TESTIMONIAL CARDS
   ============================================ */
.testimonial-card {
    background: white !important;
    border-radius: 24px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    padding: 2.5rem !important;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(1, 115, 92, 0.05);
    position: absolute;
    top: -20px;
    right: 20px;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-rating i {
    color: #FBBF24 !important;
    font-size: 1rem !important;
}

.author-avatar {
    width: 54px !important;
    height: 54px !important;
    background: var(--gradient-premium) !important;
    box-shadow: 0 4px 15px rgba(1, 115, 92, 0.25);
}

/* ============================================
   PREMIUM CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-dark) !important;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.75rem !important;
    font-weight: 800 !important;
    letter-spacing: -1px;
}

.cta-buttons .btn-light {
    background: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    color: #0f172a !important;
    font-weight: 700 !important;
}

.cta-buttons .btn-light:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
}

/* ============================================
   PREMIUM FOOTER
   ============================================ */
.footer-new {
    background: #fafbfc !important;
}

.footer-main {
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.footer-logo-icon {
    background: var(--gradient-premium) !important;
    box-shadow: 0 4px 15px rgba(1, 115, 92, 0.25);
}

.footer-social a {
    width: 40px !important;
    height: 40px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s var(--ease-smooth) !important;
}

.footer-social a:hover {
    background: var(--gradient-premium) !important;
    border-color: transparent !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(1, 115, 92, 0.25);
}

/* ============================================
   PREMIUM BUTTONS (GLOBAL)
   ============================================ */
.btn-primary {
    background: var(--gradient-premium) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(1, 115, 92, 0.3) !important;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 35px rgba(1, 115, 92, 0.4) !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Scroll Animations */
.project-card,
.category-card,
.testimonial-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.6s var(--ease-smooth) forwards;
}

.project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.project-card:nth-child(2) {
    animation-delay: 0.15s;
}

.project-card:nth-child(3) {
    animation-delay: 0.2s;
}

.project-card:nth-child(4) {
    animation-delay: 0.25s;
}

.project-card:nth-child(5) {
    animation-delay: 0.3s;
}

.project-card:nth-child(6) {
    animation-delay: 0.35s;
}

.project-card:nth-child(7) {
    animation-delay: 0.4s;
}

.project-card:nth-child(8) {
    animation-delay: 0.45s;
}

.category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.category-card:nth-child(2) {
    animation-delay: 0.15s;
}

.category-card:nth-child(3) {
    animation-delay: 0.2s;
}

.category-card:nth-child(4) {
    animation-delay: 0.25s;
}

.category-card:nth-child(5) {
    animation-delay: 0.3s;
}

.category-card:nth-child(6) {
    animation-delay: 0.35s;
}

/* ============================================
   SECTION HEADERS PREMIUM
   ============================================ */
.section-badge {
    background: linear-gradient(135deg, rgba(1, 115, 92, 0.1) 0%, rgba(2, 163, 133, 0.08) 100%) !important;
    border: 1px solid rgba(1, 115, 92, 0.1);
    padding: 0.6rem 1.25rem !important;
    font-weight: 600 !important;
}

.section-title,
.section-label {
    font-weight: 800 !important;
    letter-spacing: -0.5px;
}

/* ============================================
   MOBILE ENHANCEMENTS
   ============================================ */
.mobile-nav {
    background: white !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.08) !important;
    overflow: visible !important;
    /* Allow FAB to float above */
}

.mobile-nav-item.active {
    background: linear-gradient(135deg, rgba(1, 115, 92, 0.1) 0%, rgba(2, 163, 133, 0.08) 100%);
    border-radius: 12px;
}

/* ============================================
   TECH BANNER PREMIUM
   ============================================ */
.tech-banner {
    background: var(--gradient-dark) !important;
}

/* ============================================
   NEW PRODUCTS SECTION PREMIUM
   ============================================ */
.new-products-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    position: relative;
}

.new-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(1, 115, 92, 0.2), transparent);
}

/* View All Link Enhancement */
.view-all-link {
    font-weight: 600 !important;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(1, 115, 92, 0.05);
    transition: all 0.3s var(--ease-smooth) !important;
}

.view-all-link:hover {
    background: var(--gradient-premium);
    color: white !important;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(1, 115, 92, 0.25);
}

.view-all-link:hover i {
    color: white;
}

/* ============================================
   RESPONSIVE PREMIUM
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem !important;
        letter-spacing: -1px !important;
    }

    .cta-content h2 {
        font-size: 1.75rem !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .project-card {
        border-radius: 16px !important;
    }
}

/* ============================================
   ULTRA PREMIUM ENHANCEMENTS V2
   ============================================ */

/* Glassmorphism Effect for Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

/* Animated Gradient Background */
.gradient-animate {
    background: linear-gradient(-45deg, #01735C, #02A385, #03B88F, #04D4A8);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Animation Enhancement */
@keyframes floatY {

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

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

@keyframes floatRotate {

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

    50% {
        transform: translateY(-12px) rotate(3deg);
    }
}

.float-icon.icon-1 {
    animation: floatY 4s ease-in-out infinite;
}

.float-icon.icon-2 {
    animation: floatRotate 5s ease-in-out infinite 0.3s;
}

.float-icon.icon-3 {
    animation: floatY 4.5s ease-in-out infinite 0.6s;
}

.float-icon.icon-4 {
    animation: floatRotate 5.5s ease-in-out infinite 0.9s;
}

.float-icon.icon-5 {
    animation: floatY 4.2s ease-in-out infinite 1.2s;
}

.float-icon.icon-6 {
    animation: floatRotate 4.8s ease-in-out infinite 1.5s;
}

.float-icon.icon-7 {
    animation: floatY 5s ease-in-out infinite 1.8s;
}

.float-icon.icon-8 {
    animation: floatRotate 4.5s ease-in-out infinite 2.1s;
}

/* Premium Card Shine Effect on Hover */
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.4) 50%, transparent 80%);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 1;
}

.project-card:hover::before {
    left: 100%;
}

/* Glow Effect on Focus */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(1, 115, 92, 0.15), 0 4px 20px rgba(1, 115, 92, 0.1) !important;
    border-color: var(--primary) !important;
}

/* Premium Badge Pulse */
.badge-new {
    position: relative;
}

.badge-new::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    opacity: 0.4;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

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

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* Section Separator Lines */
.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-premium);
    border-radius: 4px;
    opacity: 0.3;
}

/* Enhanced Stats Counter */
.stat-number {
    font-size: 3rem !important;
    font-weight: 900 !important;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Magnetic Button Effect */
.btn-magnetic {
    transition: transform 0.2s ease !important;
}

/* Loading Skeleton Premium */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonWave 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes skeletonWave {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Premium Tooltip */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1a202c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Smooth Image Load */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #01735C, #02A385);
    border-radius: 10px;
    border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #015A48, #01735C);
}

/* Highlight Text Selection */
::selection {
    background: rgba(1, 115, 92, 0.2);
    color: #01735C;
}

/* Improved Link Hover */
a {
    transition: color 0.2s ease, transform 0.2s ease;
}

/* Card Border Gradient on Hover */
.project-card:hover,
.category-card:hover,
.testimonial-card:hover {
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, rgba(1, 115, 92, 0.3), rgba(2, 163, 133, 0.1)) border-box !important;
    border: 2px solid transparent !important;
}

/* Premium Alert/Toast Notification */
.toast-premium {
    background: white !important;
    border-left: 4px solid var(--primary) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
}

/* Better Read More Link */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.read-more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-premium);
    transition: width 0.3s ease;
}

.read-more-link:hover::after {
    width: 100%;
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(5px);
}

/* Price Tag Enhancement */
.price-tag {
    background: linear-gradient(135deg, rgba(1, 115, 92, 0.08) 0%, rgba(2, 163, 133, 0.05) 100%);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(1, 115, 92, 0.1);
}

/* Icon Box Premium */
.icon-box-premium {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(1, 115, 92, 0.1) 0%, rgba(2, 163, 133, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-smooth);
}

.icon-box-premium:hover {
    background: var(--gradient-premium);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(1, 115, 92, 0.3);
}

.icon-box-premium:hover i {
    color: white !important;
}

/* Improved Form Styling */
.form-control-premium {
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 1rem 1.25rem !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    background: #fafbfc !important;
}

.form-control-premium:focus {
    background: white !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(1, 115, 92, 0.1) !important;
}

/* Premium Table Styling */
.table-premium {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.table-premium thead {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.table-premium tbody tr {
    transition: all 0.2s ease;
}

.table-premium tbody tr:hover {
    background: rgba(1, 115, 92, 0.03);
}

/* Micro-interaction: Click Ripple */
.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform .5s, opacity 1s;
}

.ripple-effect:active::after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}

/* Improved Loading State */
.loading-dots::after {
    content: '';
    animation: loadingDots 1.5s steps(4, end) infinite;
}

@keyframes loadingDots {

    0%,
    20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%,
    100% {
        content: '...';
    }
}

/* Enhanced Number Counter Animation */
.counter-animate {
    animation: countUp 0.8s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ============================================
   UNIFIED 3D HERO SECTION - PREMIUM
   ============================================ */
.unified-hero {
    background: linear-gradient(135deg, #0a0f1a 0%, #111827 40%, #0f172a 100%);
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

/* Premium Mesh Gradient Background */
.unified-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 100% 80% at 0% 0%, rgba(6, 182, 212, 0.25), transparent 50%),
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(139, 92, 246, 0.2), transparent 50%),
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(16, 185, 129, 0.25), transparent 50%),
        radial-gradient(ellipse 50% 40% at 80% 50%, rgba(251, 146, 60, 0.1), transparent 50%);
    animation: heroMeshMove 20s ease-in-out infinite;
}

@keyframes heroMeshMove {

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

    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

/* Grid Pattern Overlay */
.unified-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Floating Orb Elements - More Vibrant */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, rgba(16, 185, 129, 0.2) 50%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: heroOrbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, rgba(59, 130, 246, 0.15) 50%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: heroOrbFloat 12s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    top: 40%;
    left: 60%;
    animation: heroOrbPulse 6s ease-in-out infinite;
}

@keyframes heroOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes heroOrbPulse {

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

    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Badge - More Visible */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(6, 182, 212, 0.2) 100%);
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 20px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: heroBadgeFade 0.6s ease-out;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-badge i {
    color: #34d399;
    font-size: 1rem;
}

@keyframes heroBadgeFade {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }

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

/* Hero Title - Premium */
.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow:
        0 4px 30px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(6, 182, 212, 0.2);
    animation: heroTitleSlide 0.8s ease-out;
}

@keyframes heroTitleSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.75;
    animation: heroSubtitleFade 0.8s ease-out 0.2s backwards;
}

@keyframes heroSubtitleFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    animation: heroStatsFade 0.8s ease-out 0.4s backwards;
}

@keyframes heroStatsFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #5eead4;
    text-shadow: 0 0 30px rgba(94, 234, 212, 0.5);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 0.25rem;
}

/* Hero Search Box - Premium */
.hero-search-container {
    max-width: 650px;
    margin: 2.5rem auto 0;
    animation: heroSearchFade 0.8s ease-out 0.3s backwards;
}

@keyframes heroSearchFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-search-form {
    position: relative;
}

.hero-search-wrapper,
.search-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-search-wrapper:focus-within,
.search-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.search-icon-wrapper,
.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    transition: color 0.3s;
}

.hero-search-wrapper:focus-within .search-icon-wrapper,
.search-wrapper:focus-within .search-icon {
    color: #34d399;
}

.hero-search-input,
.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 0.5rem 1rem 0;
    color: white;
    font-size: 1.05rem;
    font-weight: 500;
    outline: none;
}

.hero-search-input::placeholder,
.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.hero-search-btn,
.search-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    padding: 0.9rem 1.75rem;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 15px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-search-btn::before,
.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-search-btn:hover::before,
.search-btn:hover::before {
    left: 100%;
}

.hero-search-btn:hover,
.search-btn:hover {
    transform: scale(1.05);
    box-shadow:
        0 8px 25px rgba(16, 185, 129, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-search-btn:active,
.search-btn:active {
    transform: scale(0.98);
}

.hero-search-btn i,
.search-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.hero-search-btn:hover i,
.search-btn:hover i {
    transform: translateX(3px);
}

/* Hero Meta for detail pages */
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    color: #94a3b8;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    animation: heroMetaFade 0.8s ease-out 0.3s backwards;
}

@keyframes heroMetaFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-meta-item i {
    color: #5eead4;
}

.hero-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #01735C 0%, #02A385 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .unified-hero {
        padding: 5rem 0 3rem;
        min-height: 280px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-value {
        font-size: 1.75rem;
    }

    .hero-search-wrapper {
        flex-direction: column;
        border-radius: 20px;
        padding: 0.5rem;
    }

    .hero-search-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem;
    }

    .hero-meta {
        gap: 1rem;
    }

    .hero-orb-1 {
        width: 250px;
        height: 250px;
    }

    .hero-orb-2 {
        width: 180px;
        height: 180px;
    }
}