/* ===== CLIENTS SECTION STYLING ===== */
.clients-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(40, 167, 69, 0.05) 0%, transparent 50%);
}

/* Slider Container */
.clients-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 50px 0;
    padding: 20px 0;
}

.clients-slider-track {
    display: flex;
    animation: slide 30s linear infinite;
    gap: 40px;
    padding: 20px 0;
}

.clients-slider-container:hover .clients-slider-track {
    animation-play-state: paused;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6));
    }
}

/* Client Logo Styles */
.client-logo {
    min-width: 220px;
    height: 140px;
    flex-shrink: 0;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.client-logo:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.logo-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.client-logo:hover .logo-image img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.logo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 123, 255, 0.9);
    color: white;
    padding: 8px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.client-logo:hover .logo-overlay {
    transform: translateY(0);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 30px 0 50px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #007bff;
    border-radius: 50%;
    color: #007bff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #007bff;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: #007bff;
    transform: scale(1.2);
}

.dot:hover {
    background: #007bff;
}

/* Statistics */
.client-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    color: white;
    font-size: 1.8rem;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #6c757d;
}

/* For Image Placeholders (if images not available) */
.logo-image:not([src*=".png"]):not([src*=".jpg"]):not([src*=".jpeg"]):not([src*=".svg"])::before {
    content: attr(alt);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .clients-slider-track {
        gap: 30px;
    }
    
    .client-logo {
        min-width: 200px;
        height: 130px;
    }
    
    @keyframes slide {
        100% {
            transform: translateX(calc(-200px * 6));
        }
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0;
    }
    
    .clients-slider-track {
        gap: 20px;
        animation-duration: 40s;
    }
    
    .client-logo {
        min-width: 180px;
        height: 120px;
    }
    
    .slider-controls {
        flex-direction: column;
        gap: 20px;
    }
    
    .client-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .clients-slider-track {
        gap: 15px;
        animation-duration: 50s;
    }
    
    .client-logo {
        min-width: 150px;
        height: 100px;
    }
    
    .client-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
    }
}



/* ===== SERVICES SECTION STYLING ===== */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><path d="M500,500m-280,0a280,280 0 1,1 560,0a280,280 0 1,1 -560,0" fill="%23007bff"/></svg>') repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #007bff;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: #007bff;
    display: block;
}

.section-divider i {
    color: #007bff;
    font-size: 1.2rem;
    margin: 0 15px;
}

.section-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #0056b3, #003d82);
}

.service-icon i {
    color: white;
    font-size: 1.8rem;
}

.service-content {
    flex: 1;
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-description {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #007bff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link span {
    margin-right: 8px;
}

.service-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #0056b3;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== UBio SERIES SECTION ===== */
.ubio-series-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ubio-series-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><path d="M500,500m-250,0a250,250 0 1,1 500,0a250,250 0 1,1 -500,0" fill="%23ffffff"/></svg>') repeat;
}

.ubio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ubio-text {
    padding-right: 20px;
}

.ubio-badge {
    display: inline-block;
    background: rgba(0, 123, 255, 0.2);
    color: #4da3ff;
    padding: 6px 15px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.ubio-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ubio-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 30px;
}

.ubio-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: #007bff;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature span {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #ecf0f1;
}

.ubio-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.ubio-image {
    position: relative;
    text-align: center;
}

.ubio-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.ubio-image:hover img {
    transform: scale(1.02);
}

/* ===== CHAT HELP WIDGET ===== */
.chat-help-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow: hidden;
    display: none; /* Hidden by default, show with JS */
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.chat-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.chat-avatar i {
    font-size: 1.5rem;
}

.chat-info {
    flex: 1;
}

.chat-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.chat-status {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    opacity: 0.9;
}

.chat-status.online::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    margin-right: 5px;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.chat-close:hover {
    opacity: 1;
}

.chat-body {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 15px;
    max-width: 80%;
}

.chat-message.bot {
    background: #f8f9fa;
    border-bottom-left-radius: 5px;
}

.chat-message p {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
}

.message-time {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 5px;
    text-align: right;
}

.quick-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.quick-question {
    background: #e9ecef;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-question:hover {
    background: #007bff;
    color: white;
}

.chat-input {
    display: flex;
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.chat-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 25px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input input:focus {
    border-color: #007bff;
}

.send-button {
    background: #007bff;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-button:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .ubio-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ubio-text {
        padding-right: 0;
        text-align: center;
    }
    
    .ubio-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chat-help-widget {
        width: 320px;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .ubio-title {
        font-size: 2.2rem;
    }
    
    .ubio-features {
        grid-template-columns: 1fr;
    }
    
    .chat-help-widget {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .chat-help-widget {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        bottom: 20px;
    }
}

/* ===== HOW IT WORKS SECTION STYLING ===== */
.how-it-works-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 50%);
}

/* Steps Process */
.steps-process {
    max-width: 1200px;
    margin: 60px auto;
    position: relative;
}

.steps-process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(0, 123, 255, 0.3) 0%, 
        rgba(0, 123, 255, 0.6) 33%, 
        rgba(0, 123, 255, 0.8) 66%, 
        #28a745 100%);
    transform: translateY(-50%);
    z-index: 1;
    animation: progressLine 3s ease-in-out infinite alternate;
}

@keyframes progressLine {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.step-card:nth-child(1) {
    animation-delay: 0.2s;
}

.step-card:nth-child(2) {
    animation-delay: 0.4s;
}

.step-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 123, 255, 0.1);
    line-height: 1;
    min-width: 100px;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    color: rgba(0, 123, 255, 0.2);
    transform: scale(1.1);
}

.step-content {
    flex: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

.step-icon i {
    color: white;
    font-size: 2rem;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #495057;
}

.step-details i {
    color: #28a745;
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 2.5rem;
    color: rgba(0, 123, 255, 0.3);
    animation: bounceRight 2s ease-in-out infinite;
    min-width: 60px;
    text-align: center;
}

@keyframes bounceRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.step-checkmark {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    animation: pulseSuccess 2s ease-in-out infinite;
}

@keyframes pulseSuccess {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
}

.steps-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.cta-note {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 15px;
}

.cta-note i {
    color: #007bff;
    margin-right: 5px;
}

/* ===== DEALS SECTION STYLING ===== */
.deals-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.deals-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.deals-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.deals-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.deals-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.deals-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 20px;
}

.deals-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.deal-items {
    margin-bottom: 30px;
}

.deal-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.deal-item:hover {
    background: white;
    border-color: #007bff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
}

.deal-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-icon i {
    color: white;
    font-size: 1.3rem;
}

.deal-info {
    flex: 1;
}

.deal-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.deal-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.old-price {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: line-through;
}

.current-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
}

.discount {
    background: #ff6b6b;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.deals-timer {
    background: #2c3e50;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.timer-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 80px;
    animation: countdownPulse 1s ease-in-out infinite;
}

@keyframes countdownPulse {
    0%, 100% {
        background: rgba(255, 255, 255, 0.1);
    }
    50% {
        background: rgba(255, 255, 255, 0.2);
    }
}

.time-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 5px;
    text-transform: uppercase;
}

.timer-separator {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.deals-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.deals-image {
    position: relative;
    text-align: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-family: 'Roboto', sans-serif;
}

.image-placeholder i {
    font-size: 4rem;
    color: #adb5bd;
    margin-bottom: 15px;
}

.deal-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.tag-badge {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #2c3e50;
    padding: 5px 15px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.tag-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    color: white;
    background: rgba(44, 62, 80, 0.8);
    padding: 3px 10px;
    border-radius: 10px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .steps-process::before {
        display: none;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        animation: bounceDown 2s ease-in-out infinite;
    }
    
    @keyframes bounceDown {
        0%, 100% {
            transform: translateY(0) rotate(90deg);
        }
        50% {
            transform: translateY(10px) rotate(90deg);
        }
    }
    
    .deals-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .step-card {
        padding: 30px 20px;
    }
    
    .step-number {
        font-size: 3rem;
        min-width: 80px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .deals-content {
        padding: 30px 20px;
    }
    
    .deals-title {
        font-size: 2rem;
    }
    
    .deals-subtitle {
        font-size: 1.5rem;
    }
    
    .time-number {
        font-size: 2rem;
        min-width: 60px;
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .deals-timer {
        padding: 15px;
    }
    
    .timer-display {
        gap: 5px;
    }
    
    .time-number {
        font-size: 1.5rem;
        min-width: 50px;
        padding: 5px 8px;
    }
    
    .timer-separator {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}
/* ===== VIRDI AC SERIES SECTION ===== */
.virdi-series-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.virdi-series-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 123, 255, 0.03) 0%, transparent 50%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #007bff;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.product-badge.featured {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.product-badge.new {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-placeholder {
    text-align: center;
    color: #6c757d;
}

.image-placeholder i {
    font-size: 4rem;
    color: #adb5bd;
    margin-bottom: 15px;
    display: block;
}

.image-placeholder span {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    display: block;
}

.product-content {
    padding: 25px;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.product-category {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #ffc107;
}

.stars i {
    margin-right: 2px;
}

.rating-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
}

.product-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #495057;
}

.feature i {
    color: #007bff;
}

.product-action {
    display: flex;
    gap: 10px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Special Card with Keypad */
.special-card {
    grid-column: span 2;
}

@media (max-width: 992px) {
    .special-card {
        grid-column: span 1;
    }
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.keypad-section {
    background: #2c3e50;
    padding: 25px;
    border-radius: 15px 15px 0 0;
}

.keypad-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.keypad-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.keypad-key {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.keypad-key:hover {
    background: #007bff;
    transform: scale(1.05);
    border-color: #007bff;
}

.product-description {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.view-all-section {
    text-align: center;
    margin-top: 50px;
}

/* ===== SOLUTIONS SECTION ===== */
.solutions-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 65%, rgba(0, 123, 255, 0.02) 65%, rgba(0, 123, 255, 0.02) 100%),
        linear-gradient(-45deg, transparent 65%, rgba(40, 167, 69, 0.02) 65%, rgba(40, 167, 69, 0.02) 100%);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.solution-image {
    height: 200px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.solution-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.solution-image .image-placeholder {
    color: white;
    z-index: 1;
}

.solution-image .image-placeholder i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 4rem;
    margin-bottom: 15px;
}

.solution-image .image-placeholder span {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.solution-content {
    padding: 25px;
}

.solution-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.solution-description {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.solution-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #495057;
}

.solution-features i {
    color: #007bff;
    width: 20px;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #007bff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.solution-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.solution-link:hover {
    color: #0056b3;
}

.solution-link:hover i {
    transform: translateX(5px);
}

/* ===== ANIMATIONS ===== */
@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.product-card:hover {
    animation: floatCard 3s ease-in-out infinite;
}

@keyframes shineEffect {
    0% {
        background-position: -100px;
    }
    40%, 100% {
        background-position: 300px;
    }
}

.solution-card:hover .solution-image {
    background: linear-gradient(135deg, #007bff, #0056b3, #007bff);
    background-size: 200% 100%;
    animation: shineEffect 1.5s ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.08);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
    }
}

.special-card {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .virdi-series-section,
    .solutions-section {
        padding: 60px 0;
    }
    
    .products-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card,
    .solution-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .keypad-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .product-title,
    .solution-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .product-action,
    .deals-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .keypad-key {
        aspect-ratio: 1.5;
    }
    
    .product-features {
        flex-direction: column;
        gap: 8px;
    }
}
/* ===== SCROLL ANIMATIONS ===== */
.product-card,
.solution-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.product-card.animate-in,
.solution-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.product-card:nth-child(1) { transition-delay: 0.1s; }
.product-card:nth-child(2) { transition-delay: 0.2s; }
.product-card:nth-child(3) { transition-delay: 0.3s; }
.product-card:nth-child(4) { transition-delay: 0.4s; }

.solution-card:nth-child(1) { transition-delay: 0.1s; }
.solution-card:nth-child(2) { transition-delay: 0.2s; }
.solution-card:nth-child(3) { transition-delay: 0.3s; }
.solution-card:nth-child(4) { transition-delay: 0.4s; }
.solution-card:nth-child(5) { transition-delay: 0.5s; }