/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    /* Futuristic color scheme */
    --primary-color: #00f0ff; /* Neon cyan */
    --primary-dark: #00c8d4;
    --secondary-color: #6610f2; /* Electric purple */
    --accent-color: #ff2a6d; /* Neon pink */
    --light-color: #1a1a2e; /* Dark blue background */
    --dark-color: #e1e1e6; /* Light text on dark background */
    --gray-color: #8a8a9a;
    --light-gray: #2a2a3a;
    --success-color: #00ff9d; /* Neon green */
    --warning-color: #ffb700; /* Neon yellow */
    --danger-color: #ff2a6d; /* Neon pink */
    --border-radius: 12px;
    --box-shadow: 0 8px 32px rgba(0, 240, 255, 0.15);
    --neon-shadow: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 20px rgba(0, 240, 255, 0.3), 0 0 30px rgba(0, 240, 255, 0.1);
    --glass-background: rgba(26, 26, 46, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --container-width: 1200px;
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(102, 16, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, var(--light-color) 0%, rgba(26, 26, 46, 0.9) 100%),
        url('https://source.unsplash.com/random/1920x1080/?tech,abstract') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

/* Futuristic Navigation bar styling */
.navbar {
    background-color: var(--glass-background);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    transition: var(--transition);
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
    opacity: 0.6;
}

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.navbar-brand span {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: var(--neon-shadow);
    letter-spacing: 1px;
    position: relative;
}

.navbar-brand span::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.5;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.navbar-logo {
    height: 40px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.navbar-links {
    display: flex;
    list-style: none;
}

.navbar-links li {
    position: relative;
}

.navbar-links a {
    color: var(--dark-color);
    text-decoration: none;
    padding: 25px 15px;
    display: block;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.navbar-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.navbar-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
}

.navbar-links a:hover::before {
    transform: translateX(0);
}

.navbar-links a.active {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
}

.navbar-links a.active::before {
    transform: translateX(0);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Futuristic Dropdown menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--glass-background);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 220px;
    box-shadow: var(--glass-shadow);
    z-index: 1;
    border-radius: var(--border-radius);
    border: var(--glass-border);
    overflow: hidden;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
    pointer-events: none;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(102, 16, 242, 0.05) 100%);
    pointer-events: none;
}

.dropdown-content a {
    color: var(--dark-color);
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.dropdown-content a:hover {
    background-color: rgba(0, 240, 255, 0.1);
    color: var(--primary-color);
    padding-left: 25px;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
}

.dropdown-content a:hover::before {
    transform: scaleY(1);
}

.dropdown:hover .dropdown-content {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Futuristic Hamburger menu for mobile */
.navbar-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark-color);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 240, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.navbar-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-toggle:hover {
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.navbar-toggle:hover::before {
    opacity: 1;
}

/* Futuristic Search bar */
.navbar-search {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    padding: 10px 40px 10px 20px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    width: 200px;
    background-color: rgba(26, 26, 46, 0.3);
    color: var(--dark-color);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.search-input::placeholder {
    color: rgba(225, 225, 230, 0.6);
    transition: var(--transition);
}

.search-input:hover {
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    background-color: rgba(26, 26, 46, 0.5);
    width: 240px;
    animation: neon-pulse 1.5s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
    0% { box-shadow: 0 0 5px rgba(0, 240, 255, 0.4), 0 0 10px rgba(0, 240, 255, 0.2); }
    100% { box-shadow: 0 0 15px rgba(0, 240, 255, 0.6), 0 0 20px rgba(0, 240, 255, 0.3); }
}

.search-input:focus::placeholder {
    opacity: 0.5;
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.navbar-search::after {
    content: "🔍";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(225, 225, 230, 0.6);
    font-size: 14px;
    pointer-events: none;
    transition: var(--transition);
}

.navbar-search:focus-within::after {
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
}

/* Futuristic Responsive design */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--glass-background);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        box-shadow: var(--glass-shadow);
        border-right: var(--glass-border);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        overflow-y: auto;
        z-index: 1000;
    }

    .navbar-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(102, 16, 242, 0.05) 100%);
        pointer-events: none;
    }

    .navbar-links::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 100%;
        background: linear-gradient(to bottom, 
            transparent 0%, 
            var(--primary-color) 50%, 
            transparent 100%);
        opacity: 0.6;
    }

    .navbar-links.active {
        left: 0;
        animation: glow-entrance 0.5s ease-out;
    }

    @keyframes glow-entrance {
        0% { box-shadow: var(--glass-shadow); }
        50% { box-shadow: 0 0 30px rgba(0, 240, 255, 0.4); }
        100% { box-shadow: var(--glass-shadow); }
    }

    .navbar-links a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-links a::before {
        display: none;
    }

    .navbar-links a::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background: var(--primary-color);
        transform: scaleY(0);
        transition: transform 0.3s ease;
        opacity: 0;
    }

    .navbar-links a:hover::after,
    .navbar-links a.active::after {
        transform: scaleY(1);
        opacity: 0.8;
    }

    .navbar-links a.active {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--primary-color);
        background-color: rgba(0, 240, 255, 0.05);
        text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        background-color: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: none;
        border-radius: 0;
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding-left: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .dropdown.active .dropdown-content {
        display: block;
        animation: fade-in 0.3s ease-out;
    }

    @keyframes fade-in {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .navbar-search {
        display: none;
    }

    /* Show search on mobile when expanded */
    .navbar-links.active ~ .navbar-search {
        display: flex;
        margin: 15px 20px;
        width: calc(100% - 40px);
        position: fixed;
        top: 70px;
        left: 0;
        padding: 10px 20px;
        background-color: var(--glass-background);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: var(--glass-shadow);
        z-index: 999;
        border-bottom: var(--glass-border);
    }

    .navbar-links.active ~ .navbar-search .search-input {
        width: 100%;
        background-color: rgba(26, 26, 46, 0.5);
        border: 1px solid rgba(0, 240, 255, 0.3);
    }

    /* Adjust hero section for mobile */
    .hero-section {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

/* Futuristic Main content styling */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 50px 20px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(0, 240, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(102, 16, 242, 0.03) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

h1 {
    margin-bottom: 30px;
    color: var(--dark-color);
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
}

h1::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.3;
    color: var(--primary-color);
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 1.5px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

h2 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 2.2rem;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.6rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    position: relative;
}

h3::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 0;
    background: var(--primary-color);
    border-radius: 2.5px;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.3s ease;
}

h3:hover::before {
    height: 70%;
    opacity: 0.8;
}

p {
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.8;
    font-weight: 300;
    font-size: 1.05rem;
}

/* Futuristic section styling */
.section {
    margin: 80px 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
    opacity: 0.3;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    margin-bottom: 0;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
    opacity: 0.8;
}

/* Futuristic card styling */
.card {
    background-color: var(--glass-background);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: var(--glass-border);
    padding: 30px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(102, 16, 242, 0.05) 100%);
    z-index: -1;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 240, 255, 0.3);
}

/* Futuristic Footer styling */
.footer {
    background-color: var(--glass-background);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--dark-color);
    padding: 80px 0 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border-top: var(--glass-border);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(102, 16, 242, 0.05) 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="%2300f0ff" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    z-index: -1;
    opacity: 0.5;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
    opacity: 0.6;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.footer-column h3 {
    color: var(--dark-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 12px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
}

.footer-links li::before {
    content: '›';
    position: absolute;
    left: -15px;
    top: 0;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li:hover::before {
    opacity: 1;
    left: -10px;
}

.footer-links a {
    color: var(--gray-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.3);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 240, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-5px) scale(1.1);
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.social-icon:hover::before {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-color);
    font-size: 0.9rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 240, 255, 0.3) 50%, 
        transparent 100%);
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.3);
}

.footer-bottom a:hover::after {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Futuristic Hero Section Slider Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    height: 600px;
    margin-bottom: 60px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--glass-shadow);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 16, 242, 0.2) 0%, rgba(0, 240, 255, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
    opacity: 0.6;
    z-index: 2;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    transform: scale(1.05);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(26, 26, 46, 0.8) 0%, 
        rgba(26, 26, 46, 0.5) 50%, 
        rgba(26, 26, 46, 0.8) 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-content {
    max-width: 800px;
    padding: 30px;
    background-color: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: relative;
    z-index: 2;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s ease;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
    opacity: 0.8;
}

.slide-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.slide-content h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
}

.slide-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 240, 255, 0.8) 100%);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(255, 42, 109, 0.8) 100%);
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
    color: white;
}

.slide-btn:hover::before {
    transform: translateX(0);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.slider-dot.active {
    background-color: rgba(255, 255, 255, 0.6);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.slider-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.slider-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.slider-arrow:hover::before {
    opacity: 1;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Products specific styling */
.products-intro, .services-intro {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.products-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-card, .service-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover, .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image, .service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.product-content, .service-content {
    padding: 20px;
}

.product-content h3, .service-content h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.product-content p, .service-content p {
    color: #666;
    margin-bottom: 15px;
}

.product-price {
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Futuristic Button styles */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 240, 255, 0.8) 100%);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    font-family: 'Rajdhani', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(255, 42, 109, 0.8) 100%);
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 200%;
    border-radius: 32px;
    z-index: -2;
    animation: border-animation 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes border-animation {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
    color: white;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn:hover::after {
    opacity: 1;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(102, 16, 242, 0.8) 100%);
    box-shadow: 0 0 15px rgba(102, 16, 242, 0.4);
}

.btn-secondary::before {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 240, 255, 0.8) 100%);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(255, 42, 109, 0.8) 100%);
    box-shadow: 0 0 15px rgba(255, 42, 109, 0.4);
}

.btn-accent::before {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 240, 255, 0.8) 100%);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 240, 255, 0.8) 100%);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-outline:hover {
    color: var(--light-color);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
}

/* Button with icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-icon i {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.btn-icon:hover i {
    transform: translateX(3px);
}

/* Authentication pages styling */
.auth-page {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 8px 15px rgba(0, 0, 0, 0.07);
    background-color: #ffffff;
}

.auth-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8) 0%, rgba(41, 128, 185, 0.9) 100%);
}

.auth-image-content {
    position: relative;
    color: white;
    text-align: center;
    padding: 0 30px;
    max-width: 400px;
}

.auth-image-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.auth-image-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.auth-form {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 700px;
    overflow-y: auto;
}

.auth-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    background-color: #fff;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 42px;
    color: #aaa;
    transition: var(--transition);
}

.form-control:focus + .form-icon {
    color: var(--primary-color);
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 8px;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #777;
}

.divider::before, .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--light-gray);
}

.divider span {
    padding: 0 15px;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: var(--border-radius);
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.btn-social i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-google {
    background-color: #DB4437;
}

.btn-facebook {
    background-color: #4267B2;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.auth-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.auth-links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.form-check label {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.password-strength {
    height: 5px;
    margin-top: 8px;
    border-radius: 3px;
    background-color: var(--light-gray);
    overflow: hidden;
}

.password-strength-meter {
    height: 100%;
    width: 0;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.password-strength-text {
    font-size: 0.8rem;
    margin-top: 5px;
    color: #777;
}

@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        max-width: 500px;
    }

    .auth-image {
        display: none;
    }

    .auth-form {
        padding: 30px;
    }
}
/* Futuristic Features section styling */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 70px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
    opacity: 0.6;
}

.feature-card {
    background-color: var(--glass-background);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: var(--glass-border);
    padding: 40px 30px;
    box-shadow: var(--glass-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(102, 16, 242, 0.05) 100%);
    z-index: -1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 240, 255, 0.3);
}

.feature-card:hover::after {
    opacity: 0.8;
}

.feature-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    position: relative;
}

.feature-card i::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.feature-card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(255, 42, 109, 0.6);
}

.feature-card:hover i::after {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(255, 42, 109, 0.2) 0%, transparent 70%);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.feature-card p {
    color: var(--gray-color);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 0;
    transition: var(--transition);
}

.feature-card:hover p {
    color: var(--dark-color);
}

/* Futuristic Call to action section styling */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(102, 16, 242, 0.1) 100%);
    border-radius: var(--border-radius);
    padding: 60px 50px;
    text-align: center;
    margin: 80px 0;
    border: var(--glass-border);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 16, 242, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="%2300f0ff" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.cta-section h2 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 2.5rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.cta-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
    opacity: 0.8;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--gray-color);
    font-size: 1.2rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-buttons::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 20px;
    background: var(--primary-color);
    opacity: 0.5;
}

/* Animated background effect */
@keyframes pulse-bg {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.cta-section {
    animation: pulse-bg 20s ease infinite alternate;
    background-size: 200% 200%;
}

/* Futuristic Animation Effects */
.clicked {
    animation: pulse 0.3s ease-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.slider-arrow.clicked {
    background-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

.slider-dot.clicked {
    transform: scale(1.3);
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.7);
}

/* Reveal animations */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for feature cards */
.feature-card.reveal-element {
    transition-delay: calc(var(--reveal-index, 0) * 0.1s);
}

/* Glitch effect for headings on hover */
h1:hover, h2:hover {
    animation: glitch 0.5s linear forwards;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    100% {
        text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

/* Futuristic cursor */
body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2300f0ff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="2"/></svg>') 12 12, auto;
}

a, button, .btn, .feature-card, .slider-arrow, .slider-dot, .navbar-toggle {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ff2a6d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="12" y1="8" x2="12" y2="16"/><line x1="8" y1="12" x2="16" y2="12"/></svg>') 12 12, pointer;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .features-section {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    /* Adjust animations for mobile */
    .reveal-element {
        transform: translateY(20px);
    }

    /* Disable glitch effect on mobile for performance */
    @media (max-width: 768px) {
        h1:hover, h2:hover {
            animation: none;
        }
    }
}
