/* CSS Variables for Theme Customization */
:root {
    --primary-color: #00f0ff;
    --secondary-color: #7b2ff7;
    --accent-color: #ff006e;
    --dark-bg: #0a0e27;
    --darker-bg: #050814;
    --light-text: #ffffff;
    --gray-text: #b8b8b8;
    --card-bg: rgba(15, 23, 42, 0.8);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --neon-glow: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-3);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Matrix Effect */
.matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.gradient-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    opacity: 0.3;
    animation: moveLine 20s infinite linear;
}

.line-1 {
    left: 20%;
    animation-delay: 0s;
}

.line-2 {
    left: 50%;
    animation-delay: -7s;
}

.line-3 {
    left: 80%;
    animation-delay: -14s;
}

@keyframes moveLine {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: -2s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: -4s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: -6s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: -8s;
}

.particle:nth-child(6) {
    left: 20%;
    animation-delay: -10s;
}

.particle:nth-child(7) {
    left: 60%;
    animation-delay: -12s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00f0ff 0%, #7b2ff7 50%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtext {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    position: relative;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    background: var(--gradient-3);
    border: none;
    border-radius: 50px;
    color: var(--light-text);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.cta-button:hover .button-glow {
    width: 300px;
    height: 300px;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.about-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: pulse 8s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-4);
    bottom: -150px;
    left: -150px;
    animation-delay: -4s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.about-content {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.about-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.15rem;
    line-height: 2;
    color: var(--gray-text);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-text p:first-child {
    font-size: 1.2rem;
    color: var(--light-text);
    font-weight: 500;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.key-point-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.key-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.key-point-card:hover::before {
    left: 100%;
}

.key-point-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--neon-glow);
    border-color: var(--primary-color);
    background: rgba(15, 23, 42, 0.95);
}

.key-point-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.key-point-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(20px);
}

.key-point-card:hover .key-point-icon {
    transform: rotate(10deg) scale(1.1);
}

.key-point-card:hover .key-point-icon::after {
    opacity: 0.6;
}

.key-point-icon svg {
    width: 45px;
    height: 45px;
    transition: transform 0.4s ease;
}

.key-point-card:hover .key-point-icon svg {
    transform: scale(1.1);
}

.key-point-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.key-point-card:hover h3 {
    color: var(--light-text);
}

.key-point-card p {
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.key-point-card:hover p {
    color: var(--light-text);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Services Section */
.services {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.services-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.subsection {
    position: relative;
    z-index: 1;
    margin-bottom: 5rem;
}

.subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-3);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--neon-glow);
    border-color: var(--primary-color);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
}

.service-icon svg {
    width: 50px;
    height: 50px;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Technology Stack Subsection */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.tech-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.tech-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.tech-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--neon-glow);
    border-color: var(--primary-color);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    transition: transform 0.3s ease;
}

.tech-card:hover .tech-icon {
    transform: rotate(5deg) scale(1.1);
}

.tech-icon svg {
    width: 40px;
    height: 40px;
}

.tech-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-list li {
    color: var(--gray-text);
    padding: 0.6rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.tech-list li:last-child {
    border-bottom: none;
}

.tech-card:hover .tech-list li {
    color: var(--light-text);
    padding-left: 10px;
}

/* AI & NLP Algorithms Subsection */

.algorithm-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: pulseAlgorithm 10s infinite ease-in-out;
}

.algorithm-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-3);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.algorithm-shape.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--gradient-2);
    bottom: -175px;
    left: -175px;
    animation-delay: -5s;
}

@keyframes pulseAlgorithm {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

.algorithms-subtext {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.algorithms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.algorithm-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.algorithm-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.algorithm-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--neon-glow);
    border-color: var(--primary-color);
}

.algorithm-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    transition: transform 0.3s ease;
    position: relative;
}

.algorithm-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(20px);
}

.algorithm-card:hover .algorithm-icon::after {
    opacity: 0.6;
}

.algorithm-card:hover .algorithm-icon {
    transform: rotate(5deg) scale(1.1);
}

.algorithm-icon svg {
    width: 45px;
    height: 45px;
}

.algorithm-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.algorithm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.algorithm-list li {
    color: var(--gray-text);
    padding: 1rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    transition: color 0.3s ease, transform 0.3s ease, padding-left 0.3s ease;
}

.algorithm-list li:last-child {
    border-bottom: none;
}

.algorithm-item-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 20px;
    transition: transform 0.3s ease;
}

.algorithm-card:hover .algorithm-list li {
    color: var(--light-text);
    padding-left: 10px;
}

.algorithm-card:hover .algorithm-item-icon {
    transform: scale(1.3) rotate(360deg);
}

/* Careers Section */
.careers {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.careers-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: floatOrb 15s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-2);
    top: 10%;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-4);
    bottom: 10%;
    right: -200px;
    animation-delay: -7s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.careers-subtext {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.career-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.career-card:hover::before {
    left: 100%;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-glow);
    border-color: var(--primary-color);
}

.career-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--gradient-2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.career-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.career-location {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.career-description {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.ai-intern-card .career-description {
    flex-grow: 1;
}

.career-skills {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 240, 255, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 5px;
    flex-grow: 1;
}

.career-skills strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.career-button-wrapper {
    margin-top: auto;
    padding-top: 1rem;
}

.career-button {
    width: 100%;
    padding: 0.8rem;
    background: var(--gradient-3);
    border: none;
    border-radius: 10px;
    color: var(--light-text);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.career-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

/* Insights & Blogs Section */
.blogs {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.blogs-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.blog-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: pulseBlog 12s infinite ease-in-out;
}

.blog-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-3);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.blog-shape.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--gradient-2);
    bottom: -175px;
    right: -175px;
    animation-delay: -6s;
}

@keyframes pulseBlog {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.3) rotate(180deg);
    }
}

.blogs-subtext {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blog-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--neon-glow);
    border-color: var(--primary-color);
}

.blog-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: var(--gradient-3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover .blog-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.blog-icon svg {
    width: 35px;
    height: 35px;
}

.blog-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--light-text);
}

.blog-card p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.blog-card:hover p {
    color: var(--light-text);
}

.blog-read-more {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.blog-read-more:hover {
    background: var(--gradient-3);
    border-color: transparent;
    color: var(--light-text);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

/* Contact Section */
.contact {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: floatShape 20s infinite ease-in-out;
}

.floating-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--gradient-2);
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.floating-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--gradient-4);
    bottom: 20%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 30px) scale(1.05);
    }
}

.contact-subtext {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    color: var(--gray-text);
    margin: 0.3rem 0;
    line-height: 1.6;
}

.contact-info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--light-text);
    text-decoration: underline;
}

.contact-form {
    max-width: 700px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
}

.contact-form .form-group {
    position: relative;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    margin-top: 0.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 10px;
    color: var(--light-text);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.contact-form .form-group label {
    position: static;
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    opacity: 1;
}

.form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: var(--darker-bg);
    padding: 0 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    opacity: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    position: relative;
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    background: var(--gradient-3);
    border: none;
    border-radius: 10px;
    color: var(--light-text);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
}

.submit-button .button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.submit-button:hover .button-glow {
    width: 400px;
    height: 400px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-3);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-location,
.footer-email {
    margin-top: 1.5rem;
}

.footer-location p,
.footer-email p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.footer-location strong,
.footer-email strong {
    color: var(--primary-color);
}

.footer-email a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: var(--light-text);
    text-decoration: underline;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    color: var(--gray-text);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Internship Timeline Modal */
.internship-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.internship-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 20, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--dark-bg);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3);
    animation: slideUp 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 2.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10002;
}

.modal-close:hover {
    background: rgba(0, 240, 255, 0.2);
    transform: rotate(90deg);
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 0.5rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    text-align: center;
    color: var(--gray-text);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.timeline-container {
    margin: 3rem 0;
}

.timeline-road {
    position: relative;
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.road-path {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--primary-color) 5%,
        var(--primary-color) 95%,
        transparent 100%
    );
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    animation: roadGlow 3s ease-in-out infinite;
}

.road-dots {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    transform: translateY(-50%);
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(0, 240, 255, 0.3) 20px,
        rgba(0, 240, 255, 0.3) 22px
    );
    animation: roadMove 10s linear infinite;
}

@keyframes roadGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 240, 255, 0.8);
    }
}

@keyframes roadMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 0;
    }
}

.timeline-milestone {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: milestoneFadeIn 0.6s ease forwards;
}

.timeline-milestone:nth-child(1) { animation-delay: 0.1s; }
.timeline-milestone:nth-child(2) { animation-delay: 0.2s; }
.timeline-milestone:nth-child(3) { animation-delay: 0.3s; }
.timeline-milestone:nth-child(4) { animation-delay: 0.4s; }
.timeline-milestone:nth-child(5) { animation-delay: 0.5s; }
.timeline-milestone:nth-child(6) { animation-delay: 0.6s; }

@keyframes milestoneFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.milestone-marker {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    z-index: 2;
}

.marker-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.timeline-milestone:hover .marker-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.8);
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.milestone-card {
    flex: 1;
    margin-left: 2rem;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.timeline-milestone:hover .milestone-card {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.milestone-month {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.milestone-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.milestone-details {
    color: var(--gray-text);
    line-height: 1.8;
}

.milestone-details p {
    margin: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.milestone-details p::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.program-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.highlight-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

.modal-actions {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.apply-button {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    background: var(--gradient-3);
    border: none;
    border-radius: 50px;
    color: var(--light-text);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.apply-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
}

.ai-intern-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-intern-card:hover {
    transform: translateY(-10px) scale(1.02);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.blog-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-modal-content {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

.blog-content {
    padding: 1rem 0;
}

.blog-article {
    animation: slideUp 0.4s ease;
}

.blog-article-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.blog-date,
.blog-category {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-article-body {
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-article-body p {
    margin-bottom: 1.5rem;
}

.blog-applications,
.blog-key-takeaways {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--card-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
}

.blog-applications h3,
.blog-key-takeaways h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.blog-applications ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-applications li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-text);
    line-height: 1.6;
}

.blog-applications li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.blog-key-takeaways p {
    color: var(--light-text);
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

.blog-card {
    cursor: pointer;
}

/* Apply Now Modal */
.apply-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.apply-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-modal-content {
    max-width: 800px;
    max-height: 90vh;
}

.apply-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.apply-form .form-group {
    margin-bottom: 1.5rem;
}

.apply-form .form-group {
    position: relative;
}

.apply-form .form-group input,
.apply-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 10px;
    color: var(--light-text);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    margin-top: 0.5rem;
}

.apply-form .form-group input:focus,
.apply-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.apply-form .form-group input::placeholder,
.apply-form .form-group textarea::placeholder {
    color: rgba(184, 184, 184, 0.5);
}

.form-label {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.file-upload-group {
    margin: 2rem 0;
    position: relative;
    width: 100%;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border: 2px dashed rgba(0, 240, 255, 0.5);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 200px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.file-upload-label svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.file-upload-label:hover svg {
    transform: translateY(-5px);
}

.file-upload-text {
    color: var(--light-text);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.file-upload-hint {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.file-name {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 8px;
    display: inline-block;
    min-width: 200px;
}

.file-upload-group input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.cancel-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 10px;
    color: var(--gray-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-button:hover {
    border-color: var(--primary-color);
    color: var(--light-text);
    background: rgba(0, 240, 255, 0.1);
}

.submit-apply-button {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    background: var(--gradient-3);
    border: none;
    border-radius: 10px;
    color: var(--light-text);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.submit-apply-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
}

.submit-apply-button .button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.submit-apply-button:hover .button-glow {
    width: 300px;
    height: 300px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 240, 255, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .key-points {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers-grid {
        grid-template-columns: 1fr;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .service-card,
    .career-card,
    .key-point-card,
    .blog-card {
        padding: 1.5rem;
    }

    .blog-card h3 {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Blogs Section Responsive */
    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        padding: 2rem;
    }

    .blog-card h3 {
        font-size: 1.2rem;
    }

    /* Internship Modal Responsive */
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .timeline-road {
        padding: 3rem 1rem;
    }

    .milestone-card {
        margin-left: 1rem;
        padding: 1rem;
    }

    .milestone-marker {
        width: 60px;
        height: 60px;
    }

    .marker-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .marker-pulse {
        width: 60px;
        height: 60px;
    }

    .program-highlights {
        grid-template-columns: 1fr;
    }

    .timeline-milestone {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
    }

    .milestone-card {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }

    .road-path {
        top: 30px;
        left: 30px;
        right: auto;
        width: 4px;
        height: calc(100% - 60px);
        transform: none;
        background: linear-gradient(180deg, 
            transparent 0%,
            var(--primary-color) 5%,
            var(--primary-color) 95%,
            transparent 100%
        );
    }

    .road-dots {
        top: 30px;
        left: 30px;
        right: auto;
        width: 4px;
        height: calc(100% - 60px);
        transform: none;
        background-image: repeating-linear-gradient(
            180deg,
            transparent,
            transparent 20px,
            rgba(0, 240, 255, 0.3) 20px,
            rgba(0, 240, 255, 0.3) 22px
        );
    }

    .timeline-road {
        padding: 2rem 1rem;
    }

    .modal-title {
        font-size: 1.8rem;
    }

    .modal-subtitle {
        font-size: 1rem;
    }

    /* Apply Form Responsive */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .apply-modal-content {
        width: 95%;
        padding: 2rem 1.5rem;
    }

    .file-upload-label {
        padding: 2rem 1rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .cancel-button,
    .submit-apply-button {
        width: 100%;
    }
}

