/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ffff;
    --secondary-color: #ff0080;
    --accent-color: #7c3aed;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --gradient-primary: linear-gradient(135deg, #00ffff, #7c3aed);
    --gradient-secondary: linear-gradient(135deg, #ff0080, #00ffff);
    --shadow-neon: 0 0 20px rgba(0, 255, 255, 0.3);
    --shadow-pink: 0 0 20px rgba(255, 0, 128, 0.3);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

/* Sidebar Navigation for Home Page */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 2rem 0;
    border-right: 1px solid rgba(0, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.sidebar-nav .nav-logo {
    padding: 0 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.sidebar-nav .nav-menu {
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
}

.sidebar-nav .nav-menu li {
    width: 100%;
}

.sidebar-nav .nav-link {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    background: rgba(0, 255, 255, 0.1);
    border-left: 3px solid var(--primary-color);
    padding-left: 2.5rem;
}

.sidebar-nav .nav-link::after {
    display: none;
}

/* Adjust main content for sidebar */
.home-page {
    margin-left: 280px;
}

.home-page .hero {
    padding-top: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-gray);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
}

.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--primary-color), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--secondary-color), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--accent-color), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: networkPulse 4s ease-in-out infinite;
    opacity: 0.3;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: var(--shadow-neon);
}

.floating-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: -2s;
}

.floating-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: -4s;
    background: var(--secondary-color);
    box-shadow: var(--shadow-pink);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: titleReveal 1s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.glow {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.hero-subtitle {
    margin-bottom: 2rem;
    overflow: hidden;
}

.typing-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-right: 2px solid var(--primary-color);
    animation: typing 3s steps(30) 1s forwards, blink 1s infinite;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
}

.hero-roles {
    margin-bottom: 1.5rem;
}

.role-highlight {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.highlight:hover {
    text-shadow: 0 0 10px var(--primary-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-avatar {
    position: relative;
    width: 400px;
    height: 400px;
}

.avatar-ring-1,
.avatar-ring-2,
.avatar-ring-3 {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: rotate 15s linear infinite;
}

.avatar-ring-1 {
    width: 100%;
    height: 100%;
    border-color: var(--primary-color);
    opacity: 0.8;
}

.avatar-ring-2 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-color: var(--secondary-color);
    opacity: 0.6;
    animation-direction: reverse;
    animation-duration: 20s;
}

.avatar-ring-3 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-color: var(--accent-color);
    opacity: 0.4;
    animation-duration: 25s;
}

.avatar-ring-1::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: var(--shadow-neon);
    animation: pulse 2s ease-in-out infinite;
}

.avatar-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 10;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-neon), inset 0 0 50px rgba(0, 255, 255, 0.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.2) saturate(1.1);
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    mix-blend-mode: overlay;
}

.hologram-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 255, 0.1) 50%, transparent 100%);
    animation: hologramScan 3s ease-in-out infinite;
}

.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.stream {
    position: absolute;
    width: 3px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: dataFlow 4s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary-color);
}

.stream-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.stream-2 {
    top: 70%;
    right: 15%;
    animation-delay: -1s;
    background: var(--gradient-secondary);
    box-shadow: 0 0 10px var(--secondary-color);
}

.stream-3 {
    top: 40%;
    left: 85%;
    animation-delay: -2s;
    height: 40px;
}

.stream-4 {
    bottom: 20%;
    left: 20%;
    animation-delay: -3s;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 0 10px var(--accent-color);
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.icon-orbit {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    animation: iconFloat 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.icon-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.icon-2 {
    top: 20%;
    right: 10%;
    animation-delay: -1s;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: rgba(255, 0, 128, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.icon-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: -2s;
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(124, 58, 237, 0.1);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.icon-4 {
    bottom: 15%;
    right: 25%;
    animation-delay: -3s;
}

.icon-5 {
    top: 50%;
    left: 5%;
    animation-delay: -4s;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: rgba(255, 0, 128, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.icon-6 {
    top: 60%;
    right: 5%;
    animation-delay: -5s;
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(124, 58, 237, 0.1);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--gradient-primary);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    position: relative;
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon), 0 20px 40px rgba(0, 255, 255, 0.2);
}

.stat-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    transition: opacity 0.3s ease;
}

.stat-card:hover .stat-bg {
    opacity: 0.1;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Gallery Preview Styles */
.gallery-preview {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.05) 0%, transparent 100%);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.preview-card {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.preview-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-neon), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.preview-card:hover .preview-overlay {
    transform: translateY(0);
}

.preview-overlay h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.preview-overlay p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.preview-cta {
    text-align: center;
}

/* Innovation Section */
.innovation-section {
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

.innovation-content {
    text-align: center;
}

.innovation-header {
    margin-bottom: 4rem;
}

.innovation-showcase {
    display: flex;
    justify-content: center;
}

.innovation-main {
    max-width: 800px;
}

.innovation-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.innovation-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon), 0 20px 40px rgba(0, 255, 255, 0.2);
}

.innovation-visual {
    margin-bottom: 2rem;
}

.neural-web {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.node-2 { top: 30%; right: 0; }
.node-3 { bottom: 30%; right: 0; }
.node-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.node-5 { top: 30%; left: 0; }

.connection {
    position: absolute;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.6;
    animation: dataFlow 3s ease-in-out infinite;
}

.con-1 { top: 20px; left: 60px; width: 80px; transform: rotate(45deg); }
.con-2 { top: 80px; right: 20px; width: 60px; transform: rotate(-45deg); }
.con-3 { bottom: 80px; right: 20px; width: 60px; transform: rotate(45deg); }
.con-4 { bottom: 20px; left: 60px; width: 80px; transform: rotate(-45deg); }

.innovation-text {
    text-align: left;
}

.innovation-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.innovation-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.innovation-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.innovation-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.innovation-link:hover {
    text-shadow: 0 0 10px var(--primary-color);
    transform: translateX(5px);
}

/* Research Section */
.research-section {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, transparent 100%);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.research-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.research-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon), 0 20px 40px rgba(0, 255, 255, 0.2);
}

.research-card.primary {
    grid-column: span 2;
    text-align: left;
}

.research-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.research-content h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.research-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.research-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.research-card.primary .research-meta {
    justify-content: flex-start;
}

.research-type,
.research-year {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.research-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.research-link:hover {
    text-shadow: 0 0 10px var(--primary-color);
    transform: translateX(5px);
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-title span {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-top: 1rem;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto;
}

/* Highlights Section */
.highlights-section {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.05) 0%, transparent 100%);
}

.highlights-showcase {
    margin-bottom: 3rem;
}

.highlight-main {
    margin-bottom: 3rem;
}

.highlight-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.highlight-card.featured {
    min-height: 400px;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon), 0 20px 40px rgba(0, 255, 255, 0.2);
}

.highlight-card:hover::before {
    opacity: 0.5;
}

.highlight-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.highlight-info h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-info p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.highlight-meta {
    display: flex;
    gap: 2rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.highlight-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-grid .highlight-card {
    min-height: 300px;
}

.highlight-overlay {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-overlay h4 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.highlight-overlay p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.highlight-tags span {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.highlights-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.highlight-card:hover .highlight-glow {
    opacity: 0.1;
}

.highlight-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.highlight-card:hover .highlight-bg {
    opacity: 0.4;
}

/* Featured Section */
.featured-section {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, transparent 100%);
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.achievement-card.modern {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    min-height: 400px;
}

.achievement-card.modern:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon), 0 20px 40px rgba(0, 255, 255, 0.2);
}

.achievement-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.achievement-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.achievement-card.modern:hover .achievement-bg {
    transform: scale(1.1);
}

.achievement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.achievement-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
    z-index: 2;
}

.achievement-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.achievement-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 700;
}

.achievement-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.achievement-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

/* About Page Styles */
.about-page {
    padding-top: 120px;
}

.about-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--primary-color);
}

.btn-con {
    margin-top: 2rem;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.tl-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
}

.tl-duration {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item h5 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.timeline-item h5 span {
    color: var(--text-gray);
}

.timeline-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Gallery Page Styles */
.gallery-page {
    padding-top: 120px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.album {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.album:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon);
}

.album-cover {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album:hover .album-cover img {
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.album-info {
    padding: 1.5rem;
}

.album-info h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.album-info p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hashtags span {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Media Page Styles */
.media-page {
    padding-top: 120px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-neon);
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.video-info p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.platform-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.platform-tag.youtube {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.platform-tag.facebook {
    background: rgba(24, 119, 242, 0.2);
    color: #1877f2;
}

.platform-tag.reel {
    background: rgba(255, 0, 128, 0.2);
    color: var(--secondary-color);
}

/* Blog Page Styles */
.blog-page {
    padding-top: 120px;
}

.blog-hero-image {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-neon);
}

.blog-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-image:hover {
    transform: scale(1.05);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon);
}

.blog-card.featured {
    grid-column: span 2;
}

.blog-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.blog-content h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.blog-tags span {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    text-shadow: 0 0 10px var(--primary-color);
}

.external-links {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.external-links h3 {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.external-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.external-link:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon);
    transform: translateY(-5px);
}

.external-link i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-page {
    padding-top: 120px;
}

.contact-container {
    margin-bottom: 4rem;
}

.contact-content-con {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.left-contact p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact-item .icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 150px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-shadow: 0 0 10px var(--primary-color);
}

.social-links h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.social-icon:hover .tooltip {
    opacity: 1;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.quick-contact {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.quick-contact h3 {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

/* Appointment Scheduling Styles */
.appointment-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.appointment-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 2px 8px rgba(0,255,255,0.05);
}

.appointment-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 10px 30px rgba(0,255,255,0.15);
}

.appointment-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.appointment-card h4 {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.appointment-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.2);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 0.5rem;
}

.appointment-form .btn-primary {
    margin-top: 1rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    background: var(--gradient-primary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.appointment-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.4);
}

.appointment-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .appointment-types {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .appointment-card {
        padding: 1.5rem;
    }
    
    .appointment-card i {
        font-size: 2rem;
    }
    
    .appointment-card h4 {
        font-size: 1.1rem;
    }
    
    .appointment-card p {
        font-size: 0.9rem;
    }
    
    .appointment-form .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typing {
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@keyframes networkPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

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

@keyframes dataFlow {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-30px) scale(1.1);
    }
}

@keyframes hologramScan {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(120deg);
    }
    66% {
        transform: translateY(-5px) rotate(240deg);
    }
}

@keyframes techPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile sidebar adjustments */
    .sidebar-nav {
        width: 100%;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar-nav.active {
        transform: translateX(0);
    }
    
    .home-page {
        margin-left: 0;
    }
    
    .home-page .hero {
        padding-top: 80px;
    }
    
    .sidebar-toggle {
        display: block;
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1001;
        background: var(--primary-color);
        color: var(--bg-dark);
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
    }
}
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .sidebar-toggle {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-container,
    .contact-content-con {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievement-grid,
    .stats-grid,
    .gallery,
    .video-grid,
    .blog-grid,
    .research-grid,
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured,
    .research-card.primary {
        grid-column: span 1;
    }
    
    .hero-buttons,
    .highlights-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-main {
        margin-bottom: 2rem;
    }
    
    .highlight-card.featured {
        min-height: 300px;
    }
    
    .highlight-grid .highlight-card {
        min-height: 250px;
    }
    
    .innovation-features {
        justify-content: center;
    }
    
    .neural-web {
        width: 150px;
        height: 150px;
    }
    
    .node {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
        justify-content: center;
    }
    
    .social-icons {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .ai-avatar {
        width: 250px;
        height: 250px;
    }
    
    .avatar-core {
        width: 180px;
        height: 180px;
    }
    

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .typing-text {
        font-size: 1rem;
    }
    
    .ai-avatar {
        width: 200px;
        height: 200px;
    }
    
    .avatar-core {
        width: 150px;
        height: 150px;
    }
    
    .floating-icons {
        display: none;
    }
    
    .social-icons {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .highlight-card.featured {
        min-height: 250px;
    }
    
    .highlight-grid .highlight-card {
        min-height: 200px;
    }
    
    .highlight-content,
    .highlight-overlay {
        padding: 1.5rem;
    }
    
    .innovation-card {
        padding: 2rem;
    }
    
    .neural-web {
        width: 120px;
        height: 120px;
    }
    
    .node {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .achievement-stats {
        gap: 1rem;
    }
    
    .research-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Background images for highlight cards */
.highlight-card[data-bg="img/photo 8 main.jpg"]::before {
    background-image: url('img/photo 8 main.jpg');
}

.highlight-card[data-bg="img/26.jpg"]::before {
    background-image: url('img/26.jpg');
}

.highlight-card[data-bg="img/4.jpg"]::before {
    background-image: url('img/4.jpg');
}

.highlight-card[data-bg="img/7.jpg"]::before {
    background-image: url('img/7.jpg');
}

.highlight-card[data-bg="img/27.jpg"]::before {
    background-image: url('img/27.jpg');
}

.highlight-card.featured[data-bg="img/photo 8 main.jpg"]::before {
    background-image: url('img/photo 8 main.jpg');
}

/* Fix text rendering and HTML entities */
* {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure proper font loading */
body {
    font-display: swap;
}

/* Fix any layout issues */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure sections are properly spaced */
section {
    width: 100%;
    min-height: auto;
    display: block;
}

/* Fix any flexbox issues */
.hero-content,
.innovation-content,
.highlights-showcase,
.research-grid,
.achievement-grid {
    width: 100%;
    display: block;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Ensure proper text display */
h1, h2, h3, h4, h5, h6, p, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fix any z-index issues */
.navbar {
    z-index: 1000;
}

.hero {
    z-index: 1;
}

/* Ensure proper background rendering */
.hero-bg,
.neural-network,
.floating-particles {
    pointer-events: none;
}

/* Fix button styling */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

/* Ensure proper grid layouts */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    width: 100%;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    width: 100%;
}

/* Fix any overflow issues */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Ensure proper image loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fix any animation issues */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Ensure proper font fallbacks */
body {
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
}

.logo-text,
.hero-title,
.section-title {
    font-family: 'Orbitron', 'Courier New', monospace;
}

/* Fix any color contrast issues */
.section-title,
.hero-title {
    color: var(--text-light);
}

.section-title span {
    color: var(--primary-color);
}

/* Ensure proper spacing */
.section-header {
    margin-bottom: 4rem;
    width: 100%;
}

.highlights-showcase,
.innovation-showcase,
.research-grid,
.achievement-grid {
    margin-bottom: 3rem;
    width: 100%;
}

/* Fix any positioning issues */
.highlight-card,
.research-card,
.achievement-card,
.innovation-card {
    position: relative;
    width: 100%;
}

/* Ensure proper text alignment */
.section-header {
    text-align: center;
}

.highlight-content,
.research-content,
.achievement-content {
    text-align: left;
}

.highlight-overlay {
    text-align: center;
}

/* Fix any display issues */
.highlights-section,
.innovation-section,
.research-section,
.featured-section {
    display: block;
    width: 100%;
    position: relative;
}

/* Stats Section Fixes */
.stats-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    display: block;
    width: 100%;
}

.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 2rem !important;
    width: 100% !important;
}

.stat-card {
    position: relative !important;
    text-align: center !important;
    padding: 2.5rem 2rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
    display: block !important;
}

.stat-card:hover {
    transform: translateY(-15px) !important;
    border-color: var(--primary-color) !important;
    box-shadow: var(--shadow-neon), 0 20px 40px rgba(0, 255, 255, 0.2) !important;
}

.stat-icon {
    font-size: 2rem !important;
    color: var(--primary-color) !important;
    margin-bottom: 1rem !important;
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
}

.stat-number {
    font-family: 'Orbitron', monospace !important;
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: var(--primary-color) !important;
    margin-bottom: 0.5rem !important;
    position: relative !important;
    z-index: 2 !important;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5) !important;
    display: block !important;
}

.stat-label {
    color: var(--text-gray) !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
}

/* Highlights Section Fixes */
.highlights-section {
    padding: 6rem 0 !important;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.05) 0%, transparent 100%) !important;
    display: block !important;
}

.highlights-showcase {
    margin-bottom: 3rem !important;
    display: block !important;
    width: 100% !important;
}

.highlight-main {
    margin-bottom: 3rem !important;
    display: block !important;
    width: 100% !important;
}

.highlight-card {
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(0, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    display: block !important;
    width: 100% !important;
}

.highlight-card.featured {
    min-height: 400px !important;
    display: block !important;
}

.highlight-content {
    position: relative !important;
    z-index: 2 !important;
    padding: 2.5rem !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.highlight-badge {
    display: inline-block !important;
    background: var(--gradient-primary) !important;
    color: var(--bg-dark) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
    width: fit-content !important;
}

.highlight-info h3 {
    color: var(--text-light) !important;
    font-size: 1.8rem !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
    display: block !important;
}

.highlight-info p {
    color: var(--text-gray) !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.1rem !important;
    display: block !important;
}

.highlight-meta {
    display: flex !important;
    gap: 2rem !important;
    color: var(--primary-color) !important;
    font-size: 0.9rem !important;
}

.highlight-meta span {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.highlight-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
    width: 100% !important;
}

.highlight-grid .highlight-card {
    min-height: 300px !important;
    display: block !important;
}

.highlight-overlay {
    position: relative !important;
    z-index: 2 !important;
    padding: 2rem !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: center !important;
}

.highlight-icon {
    font-size: 2.5rem !important;
    color: var(--primary-color) !important;
    margin-bottom: 1rem !important;
    display: block !important;
}

.highlight-overlay h4 {
    color: var(--text-light) !important;
    font-size: 1.3rem !important;
    margin-bottom: 0.8rem !important;
    font-weight: 600 !important;
    display: block !important;
}

.highlight-overlay p {
    color: var(--text-gray) !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
}

.highlight-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    justify-content: center !important;
}

.highlight-tags span {
    background: rgba(0, 255, 255, 0.1) !important;
    color: var(--primary-color) !important;
    padding: 0.3rem 0.8rem !important;
    border-radius: 15px !important;
    font-size: 0.8rem !important;
    display: inline-block !important;
}

.highlights-cta {
    text-align: center !important;
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-top: 2rem !important;
}

/* Innovation Section Fixes */
.innovation-section {
    padding: 6rem 0 !important;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%) !important;
    display: block !important;
}

.innovation-content {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

.innovation-header {
    margin-bottom: 4rem !important;
    display: block !important;
}

.innovation-showcase {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

.innovation-main {
    max-width: 800px !important;
    width: 100% !important;
}

.innovation-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0, 255, 255, 0.1) !important;
    padding: 3rem !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    display: block !important;
    width: 100% !important;
}

.innovation-text h3 {
    font-family: 'Orbitron', monospace !important;
    font-size: 2rem !important;
    color: var(--text-light) !important;
    margin-bottom: 1.5rem !important;
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: block !important;
}

.innovation-text p {
    color: var(--text-gray) !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
    display: block !important;
}

.innovation-features {
    display: flex !important;
    gap: 1rem !important;
    margin-bottom: 2rem !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

.feature-pill {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(0, 255, 255, 0.1) !important;
    color: var(--primary-color) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px !important;
    font-size: 0.9rem !important;
    border: 1px solid rgba(0, 255, 255, 0.2) !important;
}

.innovation-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

/* Research Section Fixes */
.research-section {
    padding: 6rem 0 !important;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, transparent 100%) !important;
    display: block !important;
}

.research-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    width: 100% !important;
}

.research-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0, 255, 255, 0.1) !important;
    padding: 2.5rem !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

.research-card.primary {
    grid-column: span 2 !important;
    text-align: left !important;
}

.research-icon {
    font-size: 3rem !important;
    color: var(--primary-color) !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
}

.research-content h3 {
    color: var(--text-light) !important;
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
    display: block !important;
}

.research-content p {
    color: var(--text-gray) !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
}

.research-meta {
    display: flex !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
    justify-content: center !important;
}

.research-type,
.research-year {
    background: rgba(0, 255, 255, 0.1) !important;
    color: var(--primary-color) !important;
    padding: 0.3rem 0.8rem !important;
    border-radius: 15px !important;
    font-size: 0.8rem !important;
    display: inline-block !important;
}

.research-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

/* Featured Section Fixes */
.featured-section {
    padding: 6rem 0 !important;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, transparent 100%) !important;
    display: block !important;
}

.achievement-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
    width: 100% !important;
}

.achievement-card.modern {
    position: relative !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    overflow: hidden !important;
    min-height: 400px !important;
    display: block !important;
    width: 100% !important;
}

.achievement-visual {
    position: relative !important;
    height: 200px !important;
    overflow: hidden !important;
    display: block !important;
}

.achievement-icon {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 3rem !important;
    color: var(--primary-color) !important;
    text-shadow: 0 0 20px var(--primary-color) !important;
    z-index: 2 !important;
    display: block !important;
}

.achievement-content {
    padding: 2rem !important;
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
}

.achievement-content h3 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
    color: var(--text-light) !important;
    font-weight: 700 !important;
    display: block !important;
}

.achievement-content p {
    color: var(--text-gray) !important;
    line-height: 1.6 !important;
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
}

.achievement-stats {
    display: flex !important;
    gap: 2rem !important;
}

.stat-item {
    text-align: center !important;
    display: block !important;
}

.stat-number {
    font-family: 'Orbitron', monospace !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    display: block !important;
}

.stat-label {
    color: var(--text-gray) !important;
    font-size: 0.9rem !important;
    margin-top: 0.2rem !important;
    display: block !important;
}
/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.blog-modal-content {
    background-color: var(--bg-darker);
    margin: 2% auto;
    padding: 0;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.blog-close {
    color: var(--primary-color);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1001;
    cursor: pointer;
    background: var(--bg-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-close:hover {
    color: #ffffff;
    background: var(--primary-color);
}

#blogContent {
    padding: 3rem;
    color: var(--text-light);
    line-height: 1.8;
}

#blogContent h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

#blogContent h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
}

#blogContent p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

#blogContent ul {
    margin: 1rem 0 1.5rem 2rem;
}

#blogContent li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .blog-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    #blogContent {
        padding: 2rem 1.5rem;
    }
    
    #blogContent h1 {
        font-size: 2rem;
    }
    
    #blogContent h2 {
        font-size: 1.5rem;
    }
}