/* Service Card Specifics */
.service-card-num {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    /* Clean, modern card look */
}

.service-card-num:hover {
    transform: translateY(-10px);
}

.service-num {
    font-size: 3rem;
    font-weight: 700;
    color: #f1f5f9;
    /* Subtle background number color */
    position: absolute;
    top: -10px;
    right: 10px;
    z-index: 0;
}

.service-img {
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}

/* Product Circle Card */
.product-circle-card {
    transition: var(--transition);
}

.product-circle-card:hover {
    transform: scale(1.05);
}

.circle-icon {
    width: 120px;
    height: 120px;
    border: 2px dashed #f87171;
    /* Reddish dashed border like in original */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: white;
    padding: 20px;
    position: relative;
}

.circle-icon::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    border: 1px solid #eee;
    border-radius: 50%;
}

.circle-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

/* Update grid for larger items */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

/* New Product Grid Styles */
.product-filter-btn {
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 5px;
}

.product-filter-btn.active,
.product-filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.product-item {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 5px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-icon-small {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.product-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.product-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.category-header {
    width: 100%;
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    color: var(--secondary-color);
}

/* Creative Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Background Image Animation */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 6s linear;
}

.slide.active .slide-bg {
    transform: scale(1.1);
}

/* Overlay */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.slide-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 800px;
    padding: 20px;
    color: #fff;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out;
    transition-delay: 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #cbd5e1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modern Page Header - Light & Creative */
.page-header {
    background: linear-gradient(135deg, #fff5eb 0%, #f3e8ff 100%);
    position: relative;
    padding: 100px 0 50px;
    /* Reduced height by ~30% */
    text-align: center;
    overflow: hidden;
    color: var(--secondary-color);
}

/* Decorative circles for creative feel */
.page-header::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237, 108, 1, 0.1) 0%, rgba(237, 108, 1, 0) 70%);
    top: -100px;
    left: -100px;
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(104, 28, 111, 0.1) 0%, rgba(104, 28, 111, 0) 70%);
    bottom: -150px;
    right: -100px;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
    color: #64748b;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Breadcrumb Styles - Light Version */
.breadcrumb-nav {
    display: inline-block;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-list li {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

.breadcrumb-list li a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: var(--primary-color);
}

.breadcrumb-list li i {
    font-size: 0.7rem;
    color: #cbd5e1;
    margin: 0 5px;
}

/* Page Header Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.slide-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
    color: #e2e8f0;
}

.slide .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    transition-delay: 0.6s;
}

.slide.active .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.slider-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2.5rem;
    }

    .slider-nav {
        display: none;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}