/* ===== Global Styles ===== */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #0ea5e9;
    --purple-color: #8b5cf6;
    --green-color: #10b981;
    --orange-color: #f59e0b;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    --gradient-purple: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    --gradient-green: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --gradient-accent: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* ===== Navigation ===== */
.navbar {
    padding: 1rem 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.98) 0%, rgba(30, 64, 175, 0.95) 100%);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(30, 58, 138, 0.15);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(30, 58, 138, 1) 0%, rgba(30, 64, 175, 1) 100%);
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.25);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.navbar-brand .logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.navbar-brand:hover .logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
    transform: scale(1.1);
}

.navbar-brand .logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-primary);
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.3);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .btn-primary {
    background: var(--secondary-color);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.hero-section .btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.hero-section .btn-outline-light {
    border: 2px solid #fff;
    padding: 0.875rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.hero-section .btn-outline-light:hover {
    background: #fff;
    color: var(--dark-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

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

/* ===== Features Section ===== */
.features-section {
    background: #fff;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.35);
}

/* Different colors for each feature card */
.feature-card:nth-child(1) .feature-icon {
    background: var(--gradient-primary);
}

.feature-card:nth-child(2) .feature-icon {
    background: var(--gradient-purple);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
}

.feature-card:nth-child(2):hover .feature-icon {
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.35);
}

.feature-card:nth-child(3) .feature-icon {
    background: var(--gradient-secondary);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}

.feature-card:nth-child(3):hover .feature-icon {
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.35);
}

.feature-card:nth-child(4) .feature-icon {
    background: var(--gradient-green);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.feature-card:nth-child(4):hover .feature-icon {
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: var(--transition);
}

.feature-card:hover::before {
    left: 100%;
}

/* ===== Services Section ===== */
.services-overview {
    background: var(--light-color);
}

.service-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.15);
    padding: 1rem;
}

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

.service-card:hover .service-icon {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.25);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

/* Different colors for each service card */
.service-card:nth-child(1)::after {
    background: var(--gradient-primary);
}

.service-card:nth-child(2)::after {
    background: var(--gradient-purple);
}

.service-card:nth-child(3)::after {
    background: var(--gradient-green);
}

.service-card:nth-child(4)::after {
    background: var(--gradient-secondary);
}

.service-card:nth-child(5)::after {
    background: var(--gradient-accent);
}

.service-card:nth-child(6)::after {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.service-link:hover::after {
    width: calc(100% - 30px);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--gradient-accent);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.stat-item {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.stat-item h2 {
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== CTA Section ===== */
.cta-section .btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.4);
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, rgba(30, 58, 138, 1) 0%, rgba(30, 64, 175, 1) 100%);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    box-shadow: 0 -4px 20px rgba(30, 58, 138, 0.25);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.8), transparent);
}

.footer h3, .footer h5 {
    color: #fff;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}
.text-muted {
   
    color: rgb(255 255 255 / 75%) !important;
}
/* ===== Services Page Specific Styles ===== */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

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

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

.page-header h1 {
    animation: fadeInUp 0.8s ease-out;
}

.page-header p {
    animation: fadeInUp 1s ease-out;
}

.service-detail-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.service-detail-card:hover {
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-5px);
}

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

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
    padding: 1.25rem;
}

.service-detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.feature-list li::before {
    content: '\F26B';
    font-family: 'Bootstrap Icons';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

/* ===== About Page Specific Styles ===== */
.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--box-shadow-lg);
}

.team-card:hover::after {
    opacity: 0.05;
}

.team-img {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #fff;
}

.team-content {
    padding: 2rem;
}

.value-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.value-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-8px);
}

.value-card:hover .value-icon {
    animation: pulse 1s ease-in-out infinite;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
}

/* Different colors for each value card */
.value-card:nth-child(1) .value-icon {
    background: var(--gradient-primary);
}

.value-card:nth-child(2) .value-icon {
    background: var(--gradient-green);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.value-card:nth-child(3) .value-icon {
    background: var(--gradient-secondary);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
}

.value-card:nth-child(4) .value-icon {
    background: var(--gradient-purple);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

/* ===== Contact Page Specific Styles ===== */
.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.form-control,
.form-select {
    padding: 0.875rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.15);
}

.contact-info-card {
    background: var(--gradient-green);
    padding: 3rem;
    border-radius: 20px;
    color: #fff;
    height: 100%;
    box-shadow: var(--box-shadow-lg);
}

.contact-info-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* ===== Responsive Styles ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 14, 39, 0.98);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 10px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .service-detail-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .feature-card,
    .service-card {
        margin-bottom: 1rem;
    }
}

/* ===== Utility Classes ===== */
.btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.25);
}

.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ===== Hero Image Slider ===== */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1.2) contrast(1.1);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.35) 0%, rgba(30, 64, 175, 0.3) 50%, rgba(59, 130, 246, 0.25) 100%);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 100px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

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

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.slider-indicator.active {
    background: #fff;
    width: 40px;
    border-radius: 6px;
}

.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
    .slider-controls {
        bottom: 80px;
        right: 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-indicators {
        bottom: 30px;
    }
}