/**
 * Hero Slider - Modern Design
 * GRPCMedia Theme
 * Version: 2.0.0
 */

/* Hero Container */
.grpc-hero-slider {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
}

/* Slides Container */
.grpc-hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Single Slide */
.grpc-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.grpc-hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Background Image */
.grpc-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.grpc-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(47, 36, 131, 0.4) 100%);
}

/* Content */
.grpc-hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.grpc-hero-text {
    max-width: 700px;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.grpc-hero-title {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.grpc-hero-subtitle {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.grpc-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.grpc-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.grpc-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.grpc-hero-btn-primary {
    background: #fff;
    color: #2F2483;
}

.grpc-hero-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #005a8b;
}

.grpc-hero-btn-secondary {
    background: linear-gradient(135deg, #2F2483 0%, #005a8b 100%);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.grpc-hero-btn-secondary:hover {
    background: linear-gradient(135deg, #005a8b 0%, #004070 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Navigation Arrows */
.grpc-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.grpc-hero-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.grpc-hero-nav i {
    font-size: 24px;
    color: #fff;
}

.grpc-hero-prev {
    left: 30px;
}

.grpc-hero-next {
    right: 30px;
}

/* Dots Navigation */
.grpc-hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.grpc-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.grpc-hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.grpc-hero-dot.active {
    background: #fff;
    width: 40px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
    .grpc-hero-slider {
        height: 700px;
    }
    
    .grpc-hero-title {
        font-size: 48px;
    }
    
    .grpc-hero-subtitle {
        font-size: 32px;
    }
    
    .grpc-hero-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .grpc-hero-slider {
        height: 600px;
    }
    
    .grpc-hero-title {
        font-size: 36px;
    }
    
    .grpc-hero-subtitle {
        font-size: 24px;
    }
    
    .grpc-hero-description {
        font-size: 14px;
    }
    
    .grpc-hero-buttons {
        flex-direction: column;
    }
    
    .grpc-hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .grpc-hero-nav {
        width: 50px;
        height: 50px;
    }
    
    .grpc-hero-prev {
        left: 15px;
    }
    
    .grpc-hero-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .grpc-hero-slider {
        height: 500px;
    }
    
    .grpc-hero-title {
        font-size: 28px;
    }
    
    .grpc-hero-subtitle {
        font-size: 20px;
    }
}


