/** ADD YOUR AWESOME CODES HERE **/

:root {
    /* Primary Colors */
    --primary: #0892fd;
    --primary-dark: #07528d;
    --primary-light: #57cef8;
    
    /* Secondary Colors */
    --secondary: #0b1c2c;
    --secondary-light: #1e3851;
    
    /* Accent Colors */
    --accent-success: #1e9649;
    --accent-danger: #ed1c24;
    
    /* Neutral Colors */
    --neutral-100: #ffffff;
    --neutral-200: #f8f9fa;
    --neutral-300: #e9ecef;
    --neutral-400: #ced4da;
    --neutral-500: #adb5bd;
    --neutral-600: #6c757d;
    --neutral-700: #495057;
    --neutral-800: #343a40;
    --neutral-900: #212529;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider .swiper {
    width: 100%;
    height: 100vh;
    max-height: 800px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
    z-index: 2;
}

.slider-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.slider-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* Swiper Pagination Styles */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

/* Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-slider .swiper {
        height: 80vh;
    }
    
    .slider-title {
        font-size: 3.5rem;
    }
    
    .slider-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {
    .hero-slider .swiper {
        height: 70vh;
    }
    
    .slider-title {
        font-size: 3rem;
    }
    
    .slider-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .hero-slider .swiper {
        height: 60vh;
    }
    
    .slider-title {
        font-size: 2.5rem;
    }
    
    .slider-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-slider .swiper {
        height: 50vh;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .slider-subtitle {
        font-size: 1rem;
    }
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--secondary);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

/* Service Cards */
.service-card {
    background: var(--neutral-100);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: var(--primary-dark);
    color: var(--neutral-100);
}