/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0D1B2A, #1B263B); /* Dark Blue-Gray to Darker Blue-Gray */
    color: #E0E0E0; /* Soft Gray */
    overflow-x: hidden;
    min-height: 100vh; /* Ensures gradient covers full height */
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E0E0E0; /* Soft Gray */
}

/* Neon Text Effect */
.neon-text {
    background: linear-gradient(45deg, #00D4FF, #1B263B); /* Bright Cyan to Darker Blue-Gray */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5); /* Subtle Cyan glow */
}

.gradient-text {
    background: linear-gradient(to right, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

/* Slider Styles */
.slider {
    position: relative;
    overflow: hidden;
    height: 70vh;
    border: 2px solid #00D4FF; /* Bright Cyan */
    border-radius: 12px;
}

.slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    height: 70vh;
    object-fit: cover;
    border-radius: 12px;
}

.parallax-bg {
    background-attachment: fixed;
    background-size: cover;
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #E0E0E0; /* Soft Gray */
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, background 0.3s;
}

.dot.active {
    opacity: 1;
    background: #00D4FF; /* Bright Cyan */
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* Hover Effects */
.hover-effect:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3); /* Subtle Cyan glow */
    transition: all 0.3s ease;
}

/* Section Styles */
.section-bg {
    background: transparent; /* Transparent to show body gradient */
}

.card-bg {
    background: #152238; /* Deep Blue */
    color: #E0E0E0; /* Soft Gray */
    border: 2px solid #1B263B; /* Darker Blue-Gray */
    border-radius: 12px;
}

.section-accent {
    background: linear-gradient(135deg, #088ba5, #151e30);/*  Bright Cyan to Darker Blue-Gray */
    color: #E0E0E0; /* Soft Gray */
    border-radius: 12px;
    padding: 2rem;
}

.box {
    border: 2px solid #00D4FF; /* Bright Cyan */
    border-radius: 12px;
    padding: 1.5rem;
    background: #152238; /* Deep Blue */
}

/* Tech Icon */
.tech-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background-size: cover;
    border-radius: 50%;
    border: 2px solid #00D4FF; /* Bright Cyan */
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5); /* Subtle Cyan glow */
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .slider {
        height: 50vh;
    }
    .slide {
        height: 50vh;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .sticky-sidebar {
        display: none; /* Hide sidebar on mobile */
    }
}