        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #4d4d4d;
            overflow-x: hidden;
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(100%);
        }

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

        .slide.prev {
            transform: translateX(-100%);
        }

        /* Slide backgrounds */
        .slide-1, .slide-2, .slide-3, .slide-4, .slide-5 {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            height: 100%;
        }

        .slide-text {
            animation: slideInLeft 0.8s ease-out 0.3s both;
        }

        .slide.active .slide-text {
            animation: slideInLeft 0.8s ease-out 0.3s both;
        }

        .slide-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .slide-text h1 span {
            background: linear-gradient(45deg, #f59e0b, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .slide-text h2 {
            font-size: 1.5rem;
            color: #cbd5e1;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .slide-text p {
            font-size: 1.2rem;
            color: #cbd5e1;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .slide-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            animation: slideInRight 0.8s ease-out 0.5s both;
        }

        .slide.active .slide-visual {
            animation: slideInRight 0.8s ease-out 0.5s both;
        }

        .slide-image {
            min-width: 100%;
            max-width: 500px;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            border: 2px solid #f59e0b;
            transition: transform 0.3s ease;
        }

        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.7s both;
        }

        .slide.active .cta-buttons {
            animation: fadeInUp 0.8s ease-out 0.7s both;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(45deg, #f59e0b, #fbbf24);
            color: #1e293b;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid #f59e0b;
        }

        .btn-secondary:hover {
            background: #f59e0b;
            color: #1e293b;
            transform: translateY(-3px);
        }

        /* Trust Badges */
        .trust-badges {
            display: flex;
            justify-content: space-between;
            width: 100%;
            gap: 1rem;
            margin-top: 2rem;
            animation: fadeInUp 0.8s ease-out 0.9s both;
        }

        .slide.active .trust-badges {
            animation: fadeInUp 0.8s ease-out 0.9s both;
        }


        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 10;
        }

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

        .control-dot.active {
            background: #f59e0b;
            box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
        }

        .control-dot:hover {
            background: rgba(245, 158, 11, 0.8);
            transform: scale(1.2);
        }

        /* Navigation Arrows */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(245, 158, 11, 0.9);
            color: #fff;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            backdrop-filter: blur(10px);
        }

        .slider-nav:hover {
            background: #f59e0b;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
        }

        .slider-nav.prev {
            left: 2rem;
        }

        .slider-nav.next {
            right: 2rem;
        }

        /* Progress Bar */
        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: #f59e0b;
            transition: width 0.1s ease;
            z-index: 10;
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .slide-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
                padding: 2rem 5%;
            }

            .slide-text h1 {
                font-size: 2.5rem;
            }

            .slide-text h2 {
                font-size: 1.2rem;
            }

            .slide-text p {
                font-size: 1rem;
            }

            .slide-image {
                max-width: 350px;
                height: 300px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .trust-badges {
                flex-direction: column;
                gap: 0.5rem;
            }

            .slider-nav {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .slider-nav.prev {
                left: 1rem;
            }

            .slider-nav.next {
                right: 1rem;
            }
        }

          /* Services Section */
        .services {
            padding: 8rem 5% 6rem;
            background: #f8fafc;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Card Slider Container */
        .card-slider-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }

        .card-slider-wrapper {
            overflow: hidden;
            border-radius: 20px;
            position: relative;
        }

        .card-slider {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 2rem;
            padding: 1rem;
        }

        .service-card {
            flex: 0 0 400px;
            background: #fff;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            height: auto;
            min-height: 600px;
            display: flex;
            flex-direction: column;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, #f59e0b, #fbbf24);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, #f59e0b, #fbbf24);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #fff;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin: 0;
        }

        .service-grid-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .service-description {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .service-list {
            list-style: none;
            flex-grow: 1;
        }

        .service-list li {
            padding: 0.6rem 0;
            color: #64748b;
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.3s ease;
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list li:hover {
            color: #1e293b;
            padding-left: 0.5rem;
        }

        .service-list li::before {
            content: '●';
            color: #f59e0b;
            font-weight: bold;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .service-features {
            margin-top: 0rem;
            padding-top: 1.5rem;
            border-top: 2px solid #f1f5f9;
        }

        .feature-badge {
            display: inline-block;
            background: linear-gradient(45deg, #f59e0b, #fbbf24);
            color: #fff;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }

        /* Slider Navigation */
        .slider-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(45deg, #f59e0b, #fbbf24);
            color: #fff;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-nav-btn:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
        }

        .slider-nav-btn:active {
            transform: translateY(-50%) scale(0.95);
        }

        .slider-nav-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

        .slider-nav-btn.prev {
            left: -30px;
        }

        .slider-nav-btn.next {
            right: -30px;
        }

        /* Slider Indicators */
        .slider-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .indicator-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e1;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator-dot.active {
            background: #f59e0b;
            transform: scale(1.2);
        }

        .indicator-dot:hover {
            background: #fbbf24;
        }

        /* Progress indicator */
        .slider-progress {
            width: 100%;
            height: 4px;
            background: #e2e8f0;
            border-radius: 2px;
            margin-top: 1rem;
            overflow: hidden;
        }

        .slider-progress-bar {
            height: 100%;
            background: linear-gradient(45deg, #f59e0b, #fbbf24);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        /* Card counter */
        .card-counter {
            text-align: center;
            margin-top: 1rem;
            color: #64748b;
            font-size: 0.9rem;
        }

        .card-counter .current {
            color: #f59e0b;
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .service-card {
                flex: 0 0 350px;
            }
        }

        @media (max-width: 768px) {
            .services {
                padding: 4rem 3% 3rem;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .service-card {
                flex: 0 0 300px;
                padding: 2rem;
                min-height: 550px;
            }

            .service-header {
                flex-direction: column;
                text-align: center;
            }

            .service-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }

            .service-grid-image {
                height: 150px;
            }

            .slider-nav-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .slider-nav-btn.prev {
                left: -25px;
            }

            .slider-nav-btn.next {
                right: -25px;
            }
        }

        @media (max-width: 480px) {
            .service-card {
                flex: 0 0 280px;
                padding: 1.5rem;
            }

            .card-slider {
                gap: 1rem;
            }
        }

        /* Animation classes */
        .card-slide-in {
            animation: slideInFromRight 0.5s ease-out;
        }

        .card-slide-out {
            animation: slideOutToLeft 0.5s ease-out;
        }

        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideOutToLeft {
            from {
                opacity: 1;
                transform: translateX(0);
            }
            to {
                opacity: 0;
                transform: translateX(-100px);
            }
        }

        /* Service card image container */
.service-card {
    position: relative;
}

.service-card .service-grid-image {
    position: relative;
    transition: all 0.3s ease;
}

/* Article button - initially hidden */
.article-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    backdrop-filter: blur(2px);
}

/* Show button on card hover */
.service-card:hover .article-button {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1.05);
}

/* Darken image on hover to make button more visible */
.service-card:hover .service-grid-image {
    filter: brightness(0.7);
}

/* Button hover effect */
.article-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

.article-button:active {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

/* Shine effect */
.article-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s;
    border-radius: 20px;
}

.article-button:hover::before {
    left: 100%;
}

.article-button i {
    margin-left: 6px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.article-button:hover i {
    transform: translateX(2px);
}

/* Existing CSS from index.css remains unchanged, new styles added below */

/* Brands Section */
.brands {
    padding: 4rem 5% 3rem;
    background: #1e293b;
    position: relative;
    overflow: hidden;
}

.brands .section-title h2 {
    color:#f59e0b !important;
}

.brands .section-title p {
    color: #cbd5e1;
}

.brand-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-slider-wrapper {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.brand-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1rem;
    padding: 1rem;
}

.brand-card {
    flex: 0 0 200px;
    background: rgba(245, 158, 11, 0.1);
    padding: 1rem;
        border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
        color: #cbd5e1;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.brand-logo {
    width: 100%;
    height: 80px;
    object-fit: contain;
    border-radius: 5px;
}

/* Responsive Design for Brands Slider */
@media (max-width: 768px) {
    .brand-card {
        flex: 0 0 150px;
    }

    .brand-logo {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .brand-card {
        flex: 0 0 120px;
    }

    .brand-logo {
        height: 50px;
    }
}

#slbrand-indicator-dot-1 {
    display: none;
}

#slbrand-indicator-dot-2 {
    display: none;
}

#slbrand-indicator-dot-3 {
    display: none;
}

@media screen and (max-width: 768px) {
    #slbrand-indicator-dot-1 {
        display: block;
    }

    #slbrand-indicator-dot-2 {
        display: block;
    }

    #slbrand-indicator-dot-3 {
        display: block;
    }

    .dropdown-content {
        margin-top: 8px !important;
    }
}

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a:hover {
            color: #f59e0b;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #fff;
            transition: all 0.3s;
            border-radius: 3px;
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
                width: 100%;
                height: calc(100vh - 70px);
                padding: 2rem;
                transition: left 0.3s ease-in-out;
                gap: 0;
                align-items: flex-start;
                overflow-y: auto;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            .nav-links a {
                display: block;
                padding: 1rem 0;
                width: 100%;
            }

            .dropdown-content {
                position: static;
                display: none;
                background: rgba(0,0,0,0.3);
                border: 1px solid rgba(255,255,255,0.1) !important;
                border-bottom: 0px !important;
                margin: 0;
                padding: 0;
                box-shadow: none;
                border-radius: 0 !important;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }

            .dropdown-content a {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }
        }


.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}