/* index.css - Ultra Modern Hero Slider with Icons */


body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #f9fafc;
}

/* Ultra Modern Hero Slider */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
    padding-top: 100px;
   
    
    box-shadow: 0 30px 80px rgba(0, 123, 255, 0.25);
    background: linear-gradient(135deg, #fefeff 0%, #084383 100%);
}

.hero-slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 123, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(40, 167, 69, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-slide {
    position: absolute;
    
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1), transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    padding: 0 8%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.05);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                rgba(0, 31, 63, 0.9) 0%, 
                rgba(0, 31, 63, 0.7) 40%, 
                rgba(0, 31, 63, 0.4) 100%);
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 123, 255, 0.1) 100%);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: scale(1);
}

/* Slide Backgrounds */
.slide-1 {
    background-image: url('../img/homeslider/backsl1.png');
    background-position: center;
}

.slide-2 {
    background-image: url('../img/homeslider/backsl2.jpg');
    background-position: center;
}

.slide-3 {
    background-image: url('../img/homeslider/backsl1.png');
    background-position: center left;
}



.slide-4 {
    background-image: url('../img/homeslider/backsl2.jpg');
    background-position: center left;
}




/* Slide Content */
.slide-content {
    flex: 0 0 55%;
    max-width: 650px;
    transform: translateX(-100px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
    position: relative;
    z-index: 3;
    padding: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    
    
    
}

.hero-slide.active .slide-content {
    transform: translateX(0);
    opacity: 1;
    animation: slideInContent 1s cubic-bezier(0.77, 0, 0.175, 1) 0.3s forwards;
}

@keyframes slideInContent {
    0% {
        transform: translateX(-100px) rotateY(-20deg);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotateY(0);
        opacity: 1;
    }
}

/* Icons Container - Hidden on Mobile & Tablet */
.icons-container {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

/* Slide Tag - Hidden on Mobile & Tablet */
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #007bff, #00bfff);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
    position: relative;
    overflow: hidden;
    animation: tagPulse 3s infinite;
}

.slide-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

@keyframes tagPulse {
    0%, 100% { 
        transform: scale(1) translateY(0);
        box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
    }
    50% { 
        transform: scale(1.05) translateY(-2px);
        box-shadow: 0 15px 35px rgba(0, 123, 255, 0.6);
    }
}

/* Individual Icon Items */
.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #00bfff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
}

.icon-item:hover .icon-circle {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.4);
}

.icon-item:hover .icon-circle::before {
    left: 100%;
}

.icon-text {
    font-size: 12px;
    font-weight: 600;
    color: #007bff;
    text-align: center;
    max-width: 70px;
    line-height: 1.2;
}

/* Slide Title */
.slide-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #001f3f, #007bff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    animation: titleReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.5s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title span {
    color: #28a745;
    position: relative;
    display: inline-block;
}

.slide-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
    animation: underlineGrow 1s ease-out 1s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes underlineGrow {
    to { transform: scaleX(1); }
}

/* Slide Description */
.slide-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
    max-width: 90%;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #007bff;
    animation: descReveal 1s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes descReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Button - Updated for Mobile */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.4);
    position: relative;
    overflow: hidden;
    animation: buttonReveal 1s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(20px);
    border: none;
    cursor: pointer;
}

@keyframes buttonReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(40, 167, 69, 0.6);
    background: linear-gradient(45deg, #20c997, #28a745);
}

.cta-button i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.cta-button:hover i {
    transform: translateX(10px) scale(1.2);
}

/* Slide Image */
.slide-image {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100px) rotate(10deg);
    opacity: 0;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
    position: relative;
    z-index: 3;
}

.hero-slide.active .slide-image {
    transform: translateX(0) rotate(0);
    opacity: 1;
    animation: imageFloat 6s ease-in-out infinite 1.5s;
}

.glove-image {
    width: 100%;
    max-width: 550px;
    filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.3));
    animation: productFloat 8s ease-in-out infinite;
}

@keyframes productFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-25px) rotate(3deg); 
    }
    50% { 
        transform: translateY(0) rotate(0deg); 
    }
    75% { 
        transform: translateY(15px) rotate(-3deg); 
    }
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.slider-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.slider-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #007bff, #00bfff);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.slider-dot.active {
    background: transparent;
    border-color: #007bff;
    transform: scale(1.4);
}

.slider-dot.active::before {
    transform: scale(1);
}

.slider-dot:hover:not(.active) {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.6);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border: 2px solid transparent;
    font-size: 1.5rem;
    color: #007bff;
    animation: arrowPulse 3s infinite;
}

@keyframes arrowPulse {
    0%, 100% { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 20px 50px rgba(0, 123, 255, 0.4); }
}

.slider-arrow:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 25px 60px rgba(0, 123, 255, 0.4);
}

.prev-arrow {
    left: 40px;
}

.next-arrow {
    right: 40px;
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    bottom: 50px;
    right: 50px;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-counter .current {
    font-size: 2.2rem;
    color: #007bff;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

.slide-counter .total {
    font-size: 1.6rem;
    opacity: 0.8;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet Screens (1024px and below) */
@media (max-width: 1024px) {
    .hero-slider-container {
        height: 90vh;
        min-height: 600px;
        border-radius: 0 0 40px 40px;
    }
    
    .hero-slide {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 40px 5%;
    }
    
    .slide-content {
        flex: 0 0 auto;
        max-width: 90%;
        margin-bottom: 40px;
        padding: 40px;
        transform: translateY(-50px);
    }
    
    .hero-slide.active .slide-content {
        transform: translateY(0);
    }
    
    .slide-image {
        flex: 0 0 auto;
        max-width: 500px;
        margin: 0 auto;
        transform: translateY(50px);
    }
    
    .hero-slide.active .slide-image {
        transform: translateY(0);
    }
    
    .slide-title {
        font-size: 3.2rem;
    }
    
    .slide-description {
        max-width: 100%;
        font-size: 1.1rem;
    }
    
    /* Hide icons and tag on tablet */
    .icons-container,
    .slide-tag {
        display: none;
    }
    
    /* Adjust button for tablet */
    .cta-button {
        padding: 18px 40px;
        font-size: 1rem; /* Smaller font for tablet */
    }
    
    .slider-arrow {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .prev-arrow {
        left: 20px;
    }
    
    .next-arrow {
        right: 20px;
    }
    
    .slide-counter {
        bottom: 30px;
        right: 30px;
        font-size: 1.2rem;
    }
    
    .slide-counter .current {
        font-size: 1.8rem;
    }
}

/* Mobile Screens (768px and below) */
@media (max-width: 768px) {
    .hero-slider-container {
        height: 85vh;
        min-height: 500px;
        border-radius: 0 0 30px 30px;
    }
    
    .hero-slide {
        padding: 30px 4%;
    }
    
    .slide-content {
        padding: 30px 25px;
        max-width: 95%;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1rem;
        padding-left: 15px;
        border-left-width: 3px;
        margin-bottom: 30px;
    }
    
    /* Ensure icons and tag are hidden on mobile */
    .icons-container,
    .slide-tag {
        display: none;
    }
    
    /* Mobile-optimized button with smaller font */
    .cta-button {
        padding: 16px 35px;
        font-size: 0.9rem; /* Smaller font for mobile */
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    .slide-image {
        max-width: 350px;
    }
    
    .glove-image {
        max-width: 300px;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .slider-controls {
        bottom: 40px;
        gap: 15px;
    }
    
    .slider-dot {
        width: 14px;
        height: 14px;
    }
    
    .slide-counter {
        bottom: 25px;
        right: 25px;
        padding: 10px 20px;
        font-size: 1.1rem;
    }
    
    .slide-counter .current {
        font-size: 1.6rem;
    }
}

/* Mobile Landscape Mode */
@media (orientation: landscape) and (max-width: 992px) {
    .hero-slider-container {
        height: 100vh;
        min-height: auto;
        border-radius: 0 0 25px 25px;
    }
    
    .hero-slide {
        flex-direction: row;
        align-items: center;
        padding: 20px 4%;
    }
    
    .slide-content {
        flex: 0 0 50%;
        max-width: 45%;
        margin-bottom: 0;
        padding: 25px;
        transform: translateX(-50px);
    }
    
    .hero-slide.active .slide-content {
        transform: translateX(0);
    }
    
    .slide-image {
        flex: 0 0 45%;
        max-width: 40%;
        transform: translateX(50px);
    }
    
    .hero-slide.active .slide-image {
        transform: translateX(0);
    }
    
    .slide-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .slide-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    /* Hide icons and tag in landscape mode too */
    .icons-container,
    .slide-tag {
        display: none;
    }
    
    /* Landscape button adjustments */
    .cta-button {
        padding: 14px 30px;
        font-size: 0.85rem; /* Even smaller font for landscape */
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .prev-arrow {
        left: 15px;
    }
    
    .next-arrow {
        right: 15px;
    }
    
    .slider-controls {
        bottom: 25px;
        gap: 12px;
    }
    
    .slide-counter {
        bottom: 25px;
        right: 25px;
        padding: 8px 18px;
        font-size: 1rem;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .hero-slider-container {
        height: 80vh;
        min-height: 450px;
        border-radius: 0 0 20px 20px;
    }
    
    .hero-slide {
        padding: 20px 3%;
    }
    
    .slide-content {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .slide-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .slide-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    /* Ensure hidden on small mobile */
    .icons-container,
    .slide-tag {
        display: none;
    }
    
    /* Extra small button font for small screens */
    .cta-button {
        padding: 14px 28px;
        font-size: 0.85rem; /* Extra small font for small screens */
    }
    
    .slide-image {
        max-width: 280px;
    }
    
    .glove-image {
        max-width: 250px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .prev-arrow {
        left: 10px;
    }
    
    .next-arrow {
        right: 10px;
    }
    
    .slider-controls {
        bottom: 30px;
        gap: 10px;
    }
    
    .slider-dot {
        width: 12px;
        height: 12px;
    }
    
    .slide-counter {
        bottom: 20px;
        right: 20px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .slide-counter .current {
        font-size: 1.4rem;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    .hero-slider-container {
        height: 75vh;
        min-height: 400px;
    }
    
    .slide-content {
        padding: 20px 15px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
    
    /* Ensure hidden on extra small screens */
    .icons-container,
    .slide-tag {
        display: none;
    }
    
    /* Smallest button font for extra small screens */
    .cta-button {
        padding: 12px 24px;
        font-size: 0.8rem; /* Smallest font size */
    }
    
    .slide-image {
        max-width: 220px;
    }
    
    .glove-image {
        max-width: 200px;
    }
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-size: 3rem;
    font-weight: 900;
    color: #007bff;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(0, 123, 255, 0.5);
    animation: logoPulse 2s infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* CATEGORY SECTION - KEEPING YOUR ORIGINAL STYLES */
/* Enhanced Category Section */
.categories-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #28a745, #ff6b6b);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #054585, #007bff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #28a745);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: #007bff;
    box-shadow: 0 25px 60px rgba(0, 123, 255, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #007bff;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.category-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00bfff);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.category-card:hover .category-icon {
    transform: rotateY(180deg);
    color: white;
}

.category-card:hover .category-icon::after {
    opacity: 1;
}

.category-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.category-card:hover .category-icon i {
    transform: scale(1.2);
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: #007bff;
}

.category-card .view-link {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.category-card:hover .view-link {
    color: #007bff;
    transform: translateX(5px);
}

/* Responsive Design for Category Section */
@media (max-width: 768px) {
    .categories-section {
        padding: 60px 3%;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        gap: 15px;
    }
    
    .categories-section {
        padding: 60px 3%;
    }
}

@media (max-width: 380px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .category-card {
        padding: 25px 15px;
    }
}

/* Mobile Landscape Orientation Fixes for Category Section */
@media (orientation: landscape) and (max-width: 992px) {
    .categories-section {
        padding: 40px 3%;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
}