/* Modern CSS for ADN NET Website - Blue Gradient Theme */

:root {
    --primary-color: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #475569;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --light-color: #f8fafc;
    --dark-color: #0f172a;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --gradient-light: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Global Styles */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    background: var(--light-color);
    color: var(--dark-color);
    padding-top: 85px; /* Space for fixed navbar */
}

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

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* Navigation */
.navbar {
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: none;
    border: none;
    padding: 1.2rem 0;
    border-bottom: none;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    width: 100%;
}

/* Navbar Fixed Top Styling */
.navbar-fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-fixed-top.scrolled {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.25);
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

/* Modern Navbar Brand Styles */
.modern-brand {
    position: relative;
    overflow: visible;
    border-radius: 0;
    padding: 0.25rem !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    background: none;
}

.modern-brand:hover {
    transform: scale(1.05);
    background: none;
    backdrop-filter: none;
    box-shadow: none;
}

/* Navbar Logo Styles */
.navbar-logo {
    height: 45px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.navbar-logo:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.navbar.scrolled .navbar-logo {
    height: 32px;
    max-width: 100px;
}

/* Fallback Logo Icon */
.navbar-logo-fallback {
    width: 45px;
    height: 45px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.navbar-logo-fallback:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: none;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.navbar.scrolled .navbar-logo-fallback {
    width: 32px;
    height: 32px;
    font-size: 1.6rem;
}

.navbar-logo-fallback i {
    background: linear-gradient(135deg, #06b6d4, #3b82f6, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(15, 23, 42, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0;
}



/* Enhanced Navbar Animations */
.navbar {
    will-change: transform, background, box-shadow;
}

.navbar-brand {
    will-change: transform;
}

/* Navbar Always Visible */
.navbar {
    transform: translateY(0) !important;
}

/* Modern Navigation Menu */
.navbar-nav {
    position: relative;
}

.navbar-nav::before {
    display: none;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.navbar-nav .nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #06b6d4, transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 0;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Slideshow Section */
.hero-slideshow {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: -85px; /* Offset body padding for fullscreen */
    padding-top: 85px; /* Maintain content positioning */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Default slide backgrounds (fallback) */
.slide-1 {
    background: var(--gradient-primary);
}

.slide-2 {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #0ea5e9 100%);
}

.slide-3 {
    background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 50%, #06b6d4 100%);
}

/* Image positioning classes */
.slide.bg-cover { background-size: cover; }
.slide.bg-contain { background-size: contain; }
.slide.bg-center { background-position: center; }
.slide.bg-top { background-position: top; }
.slide.bg-bottom { background-position: bottom; }

/* Overlay classes for better text readability */
.slide-overlay-none::before { display: none; }
.slide-overlay-light::before { background: rgba(0, 0, 0, 0.2); }
.slide-overlay-medium::before { background: rgba(0, 0, 0, 0.4); }
.slide-overlay-dark::before { background: rgba(0, 0, 0, 0.6); }

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.slideshow-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 40px;
    height: 2px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
}

.indicator.active {
    background: white;
    transform: scaleX(1.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
}

.slideshow-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: none;
}

.slideshow-nav.prev {
    left: 30px;
}

.slideshow-nav.next {
    right: 30px;
}

.hero-animation {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.1;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-30px) rotate(3deg); }
}

.speed-indicator {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.speed-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.service-card:hover::before {
    left: 0;
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.2);
    border-color: var(--primary-light);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
}

.service-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card ul li {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Package Cards */
.package-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.package-card:hover::before {
    opacity: 0.05;
}

.package-card.popular {
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
    transform: scale(1.05);
    background: linear-gradient(white, white) padding-box, var(--gradient-primary) border-box;
}

.package-card.popular::after {
    content: 'TERPOPULER';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 45px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(30, 58, 138, 0.2);
    border-color: var(--primary-light);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 35px 70px rgba(30, 58, 138, 0.25);
}

.package-price {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5rem 0;
    position: relative;
}

.package-price::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-color);
}

/* Stats */
.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* About Section */
.about-section {
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-image {
    text-align: center;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.about-image i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(30, 58, 138, 0.3));
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.05) rotate(2deg); }
    50% { transform: scale(1.1) rotate(0deg); }
    75% { transform: scale(1.05) rotate(-2deg); }
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
}

.stat-item h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* Contact Section */
.contact-item {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.15);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
}

/* Modern Buttons */
.btn {
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
    color: white;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a, #06b6d4);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    background: transparent;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Modern Mobile Menu Animation */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 0;
    background: none;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: none;
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.navbar-collapse {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    margin-top: 1rem;
    padding: 1rem 0;
    border: none;
}

/* Mobile Navbar Improvements */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        border-radius: 0;
        transition: all 0.3s ease;
        border-bottom: none;
    }
    
    .navbar-nav .nav-link:hover {
        background: none;
        transform: translateX(10px);
        border-bottom: none;
    }
    
    .navbar-logo {
        height: 38px;
        max-width: 120px;
    }
    
    .navbar.scrolled .navbar-logo {
        height: 30px;
        max-width: 90px;
    }
    
    .navbar-logo-fallback {
        width: 38px;
        height: 38px;
        font-size: 1.8rem;
    }
    
    .navbar.scrolled .navbar-logo-fallback {
        width: 30px;
        height: 30px;
        font-size: 1.4rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slideshow {
        height: 100vh;
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slideshow-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .slideshow-nav.prev {
        left: 15px;
    }
    
    .slideshow-nav.next {
        right: 15px;
    }
    
    .package-card.popular {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .package-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .service-card,
    .package-card {
        margin-bottom: 2rem;
    }
    
    .service-icon,
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-slideshow {
        height: 90vh;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .speed-indicator {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .speed-number {
        font-size: 2.5rem;
    }
    
    .slideshow-indicators {
        bottom: 20px;
    }
    
    .hero-animation {
        display: none;
    }
    
    .floating-element {
        font-size: 8rem !important;
    }
}\n\n/* Large screens optimization */\n@media (min-width: 1200px) {\n    .hero-title {\n        font-size: 4rem;\n    }\n    \n    .hero-subtitle {\n        font-size: 1.4rem;\n    }\n    \n    .container {\n        max-width: 1200px;\n    }\n    \n    .service-icon,\n    .contact-icon {\n        width: 100px;\n        height: 100px;\n        font-size: 2.5rem;\n    }\n}\n\n/* Ultra-wide screens */\n@media (min-width: 1400px) {\n    .hero-slideshow {\n        height: 100vh;\n    }\n    \n    .hero-title {\n        font-size: 4.5rem;\n    }\n    \n    .speed-number {\n        font-size: 5rem;\n    }\n}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Modern Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.shadow-lg-custom {
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.15);
}

.shadow-xl-custom {
    box-shadow: 0 35px 70px rgba(30, 58, 138, 0.2);
}

/* Glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.glass-dark {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* Neon glow effect */
.neon-glow {
    box-shadow: 0 0 20px var(--accent-color),
                0 0 40px var(--accent-color),
                0 0 60px var(--accent-color);
}

/* Modern scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Selection styling */
::selection {
    background: var(--accent-color);
    color: white;
}

::-moz-selection {
    background: var(--accent-color);
    color: white;
}

/* Focus styles */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
    outline: none;
}

/* Admin Panel Link */
.navbar .btn-outline-light:hover {
    background: rgba(245, 158, 11, 0.9);
    border-color: var(--warning-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Login Dropdown Styling */
.navbar .dropdown-toggle::after {
    margin-left: 0.5rem;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.navbar .dropdown-menu {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.5rem 0;
    min-width: 200px;
    margin-top: 0.5rem;
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    margin: 0.25rem 0.5rem;
}

.navbar .dropdown-item:hover {
    background: rgba(59, 130, 246, 0.2);
    color: white;
    transform: translateX(5px);
}

.navbar .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Hero Dropdown Styling */
.hero-buttons .btn-group .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.5rem 0;
    min-width: 200px;
    margin-top: 0.5rem;
}

.hero-buttons .btn-group .dropdown-item {
    color: var(--dark-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    margin: 0.25rem 0.5rem;
}

.hero-buttons .btn-group .dropdown-item:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Footer Dropdown Styling */
.btn-group.dropup .dropdown-menu {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.5rem 0;
    min-width: 180px;
}

.btn-group.dropup .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    margin: 0.25rem 0.5rem;
}

.btn-group.dropup .dropdown-item:hover {
    background: rgba(59, 130, 246, 0.2);
    color: white;
    transform: translateX(5px);
}

/* Preloader (optional) */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.preloader.active {
    opacity: 1;
    visibility: visible;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ===========================
   MODERN ABOUT SECTION STYLES
   =========================== */

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Divider */
.about-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1e3a8a 0%, #06b6d4 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* Statistics Cards */
.stats-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e3a8a 0%, #06b6d4 100%);
}

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

.stats-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.stats-label {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #1e3a8a, #06b6d4);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 45%;
}

.timeline-left {
    left: 0;
    text-align: right;
}

.timeline-right {
    left: 55%;
    text-align: left;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-left .timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-left-color: white;
    transform: translateY(-50%);
}

.timeline-right .timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-right-color: white;
    transform: translateY(-50%);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #1e3a8a, #06b6d4);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
}

.timeline-left::before {
    right: -55px;
}

.timeline-right::before {
    left: -55px;
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a, #06b6d4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.timeline-text {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

/* Vision Mission Values Cards */
.vmv-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e3a8a 0%, #06b6d4 100%);
}

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

.vmv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.vmv-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.vmv-content {
    color: var(--secondary-color);
    line-height: 1.7;
}

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

.vmv-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.vmv-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: bold;
}

/* Team & Culture Section */
.team-culture-section {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-content {
    padding-right: 2rem;
}

.team-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--dark-color);
}

.feature-item i {
    width: 25px;
    font-size: 1.1rem;
}

.team-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 300px;
}

.team-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: block;
}

.team-card span {
    font-size: 0.9rem;
    color: var(--dark-color);
    font-weight: 600;
}

/* Responsive Design for About Section */
@media (max-width: 1200px) {
    .team-content {
        padding-right: 1rem;
    }
    
    .team-grid {
        max-width: 250px;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 70px;
    }
    
    .timeline-item::before {
        left: 20px !important;
        right: auto !important;
    }
    
    .timeline-content::after {
        display: none;
    }
    
    .stats-card {
        margin-bottom: 2rem;
    }
    
    .vmv-card {
        margin-bottom: 2rem;
    }
    
    .team-culture-section {
        padding: 2rem 1.5rem;
    }
    
    .team-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .team-grid {
        max-width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 10px !important;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .vmv-card {
        padding: 2rem 1.5rem;
    }
    
    .team-culture-section {
        padding: 1.5rem;
    }
}