.about-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 3rem;
            backdrop-filter: blur(10px);
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
        }
        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-neon);
            border-color: rgba(0, 243, 255, 0.4);
        }
        .about-icon {
            font-size: 3.5rem;
            color: var(--neon-blue);
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.4));
        }
        .about-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #fff;
        }
        .about-card p {
            color: var(--text-muted);
            line-height: 1.7;
        }
        
        .mission-vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 5rem;
        }
        .text-box {
            background: rgba(0, 81, 255, 0.05);
            border-left: 4px solid var(--brand-blue);
            padding: 2.5rem;
            border-radius: 0 15px 15px 0;
            position: relative;
        }
        .text-box::before {
            content: '\f10d'; /* Quote icon */
            font-family: 'FontAwesome';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 4rem;
            color: rgba(0, 243, 255, 0.05);
        }
        .text-box h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .text-box h2 i {
            color: var(--neon-blue);
        }
        .text-box p {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .mission-vision-grid {
                grid-template-columns: 1fr;
            }
        }



























































.hero-title { font-size: 4.5rem; line-height: 1.1; margin-bottom: 1rem; font-weight: 800; text-shadow: 0 0 30px rgba(0,243,255,0.3); }
        .hero-img { max-height: 250px; }
        .responsive-pad { padding: 4rem; }
        .form-grid-mobile { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
        
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem !important; }
            .responsive-pad { padding: 2.5rem 1.5rem !important; }
            .form-grid-mobile { grid-template-columns: 1fr !important; }
            .hero-img { max-height: 180px !important; }
            h2 { font-size: 1.8rem !important; flex-wrap: wrap; }
        }



























































































































































.hero-title { font-size: 3.5rem; }
        .hero { min-height: 40vh; padding-top: 150px; }
        
        @media (max-width: 768px) {
            .hero-title { font-size: 2.2rem !important; }
            .hero { padding-top: 100px !important; min-height: 30vh !important; }
            .reveal { padding: 1.5rem !important; }
            h3 { font-size: 1.25rem !important; }
        }

































.service-detail-section {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 4rem;
            backdrop-filter: blur(10px);
            margin-bottom: 4rem;
        }
        .service-detail-section h2 { color: #fff; margin-bottom: 1.5rem; font-size: 2.2rem; }
        .service-detail-section p { color: var(--text-muted); line-height: 1.8; font-size: 1.1rem; margin-bottom: 2rem; }
        .feature-list { list-style: none; margin-bottom: 2rem; }
        .feature-list li { margin-bottom: 1rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px;}
        .feature-list li i { color: var(--neon-blue); margin-top: 5px; }
        .page-form-container {
            background: linear-gradient(135deg, rgba(0, 81, 255, 0.05), rgba(0, 0, 0, 0.5));
            border: 1px solid var(--neon-blue);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
        }



























































.tech-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
                    gap: 1.5rem;
                    margin-top: 3.5rem;
                    align-items: center;
                    justify-items: center;
                }
                .tech-card {
                    background: rgba(13, 22, 45, 0.4);
                    border: 1px solid rgba(255, 255, 255, 0.05);
                    border-radius: 16px;
                    padding: 1.5rem;
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
                    backdrop-filter: blur(10px);
                }
                .tech-logo {
                    max-height: 45px;
                    max-width: 100%;
                    object-fit: contain;
                    transition: all 0.4s ease;
                    filter: grayscale(100%) opacity(0.6) brightness(1.5);
                }
                .tech-card:hover {
                    border-color: rgba(0, 243, 255, 0.4);
                    background: rgba(0, 243, 255, 0.03);
                    transform: translateY(-8px);
                    box-shadow: 0 15px 30px rgba(0, 243, 255, 0.15);
                }
                .tech-card:hover .tech-logo {
                    filter: grayscale(0%) opacity(1) brightness(1) drop-shadow(0 0 10px rgba(0,243,255,0.3));
                    transform: scale(1.1);
                }

















































































/* Modern Enhancements for Internship Page */
        :root {
            --gradient-primary: linear-gradient(135deg, var(--neon-blue) 0%, var(--brand-blue) 100%);
            --glass-bg: rgba(10, 15, 25, 0.7);
        }

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

        .intern-hero h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .intern-hero h1 span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
        }

        /* Partners */
        .partners-strip {
            background: rgba(0, 0, 0, 0.4);
            border-top: 1px solid var(--border-glass);
            border-bottom: 1px solid var(--border-glass);
            padding: 3rem 0;
            overflow: hidden;
        }

        .partner-logos {
            display: flex;
            gap: 4rem;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            opacity: 0.5;
            transition: 0.3s ease;
        }

        .partner-logos:hover {
            opacity: 0.8;
        }

        .partner-logos h3 {
            font-family: 'Arial', sans-serif;
            font-size: 1.8rem;
            letter-spacing: 2px;
            color: #fff;
            margin: 0;
        }

        /* Super Premium Cards */
        .glass-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            padding: 3rem 2.5rem;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 24px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.5), transparent, transparent, rgba(0, 81, 255, 0.5));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: 0.5s;
            z-index: -1;
        }

        .glass-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 243, 255, 0.1);
        }

        .glass-card:hover::before {
            opacity: 1;
        }

        .card-icon-container {
            width: 80px;
            height: 80px;
            background: rgba(0, 243, 255, 0.05);
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--neon-blue);
            margin: 0 auto 2rem auto;
            position: relative;
            transition: 0.5s;
        }

        .glass-card:hover .card-icon-container {
            background: var(--neon-blue);
            color: var(--bg-dark);
            box-shadow: 0 0 25px var(--neon-blue);
            transform: scale(1.1) rotate(5deg);
        }

        /* Timeline Redesign */
        .timeline-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .timeline-container::after {
            content: '';
            position: absolute;
            width: 2px;
            background: linear-gradient(to bottom, transparent, var(--neon-blue), transparent);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1px;
            z-index: 0;
            opacity: 0.3;
        }

        .timeline-row {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
            margin-bottom: 2rem;
            z-index: 1;
        }

        .timeline-row:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .timeline-row:nth-child(even) {
            left: 50%;
            text-align: left;
        }

        .timeline-dot {
            position: absolute;
            width: 40px;
            height: 40px;
            background: var(--bg-dark);
            border: 3px solid var(--neon-blue);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-blue);
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
        }

        .timeline-row:nth-child(odd) .timeline-dot {
            right: -20px;
        }

        .timeline-row:nth-child(even) .timeline-dot {
            left: -20px;
        }

        .timeline-content {
            background: var(--glass-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            transition: 0.3s;
        }

        .timeline-content:hover {
            border-color: rgba(0, 243, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
        }

        @media (max-width: 768px) {
            .timeline-container::after {
                left: 31px;
            }

            .timeline-row {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
                text-align: left !important;
                left: 0 !important;
            }

            .timeline-row:nth-child(odd) .timeline-dot,
            .timeline-row:nth-child(even) .timeline-dot {
                left: 11px;
                right: auto;
            }
        }

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

        .testimonial-card {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0));
            border-top: 2px solid var(--neon-blue);
            border-radius: 15px;
            padding: 2.5rem;
            text-align: left;
            position: relative;
        }

        .quote-icon {
            font-size: 3rem;
            color: rgba(0, 243, 255, 0.1);
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .student-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 2rem;
        }

        .student-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(0, 243, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--neon-blue);
            border: 2px solid var(--neon-blue);
        }

        /* FAQ enhancements */
        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            margin-bottom: 1rem;
            border-radius: 15px;
            overflow: hidden;
        }

        /* CTA Block */
        .cta-mega {
            background: linear-gradient(135deg, rgba(0, 81, 255, 0.1), rgba(0, 243, 255, 0.05));
            border: 1px solid rgba(0, 243, 255, 0.3);
            border-radius: 30px;
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-mega::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(0, 243, 255, 0.1) 0%, transparent 50%);
            animation: rotate 20s linear infinite;
        }

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











































































































.legal-box {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 4rem;
            backdrop-filter: blur(10px);
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 1.05rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            margin-bottom: 3rem;
        }
        .legal-box h2 {
            color: #fff;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            border-bottom: 1px solid var(--border-glass);
            padding-bottom: 1rem;
            margin-top: 3rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .legal-box h2:first-child {
            margin-top: 0;
        }
        .legal-box h2 i {
            color: var(--neon-blue);
            filter: drop-shadow(0 0 5px var(--neon-blue));
        }
        .legal-box h3 {
            color: #ddd;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            margin-top: 2rem;
        }
        .legal-box ul {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .legal-box li {
            margin-bottom: 0.5rem;
        }
        .legal-box p {
            margin-bottom: 1.5rem;
        }
        .legal-highlight {
            background: rgba(0, 243, 255, 0.05);
            padding: 1.5rem;
            border-left: 4px solid var(--neon-blue);
            border-radius: 0 10px 10px 0;
            margin-bottom: 1.5rem;
        }















.service-detail-section {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 4rem;
            backdrop-filter: blur(10px);
            margin-bottom: 4rem;
        }
        .service-detail-section h2 { color: #fff; margin-bottom: 1.5rem; font-size: 2.2rem; }
        .service-detail-section p { color: var(--text-muted); line-height: 1.8; font-size: 1.1rem; margin-bottom: 2rem; }
        .feature-list { list-style: none; margin-bottom: 2rem; }
        .feature-list li { margin-bottom: 1rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px;}
        .feature-list li i { color: var(--neon-blue); margin-top: 5px; }
        
        .page-form-container {
            background: linear-gradient(135deg, rgba(0, 81, 255, 0.05), rgba(0, 0, 0, 0.5));
            border: 1px solid var(--neon-blue);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
        }

.service-detail-section {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 4rem;
            backdrop-filter: blur(10px);
            margin-bottom: 4rem;
        }
        .service-detail-section h2 { color: #fff; margin-bottom: 1.5rem; font-size: 2.2rem; }
        .service-detail-section p { color: var(--text-muted); line-height: 1.8; font-size: 1.1rem; margin-bottom: 2rem; }
        .feature-list { list-style: none; margin-bottom: 2rem; }
        .feature-list li { margin-bottom: 1rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px;}
        .feature-list li i { color: var(--neon-blue); margin-top: 5px; }
        
        /* Form specific styles */
        .page-form-container {
            background: linear-gradient(135deg, rgba(0, 81, 255, 0.05), rgba(0, 0, 0, 0.5));
            border: 1px solid var(--neon-blue);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
        }

.detailed-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 2rem;
            display: flex;
            gap: 3rem;
            align-items: center;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .detailed-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-neon);
            border-color: rgba(0, 243, 255, 0.4);
        }
        .detailed-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 4px; height: 100%;
            background: var(--gradient-primary);
        }
        .detailed-card-icon {
            font-size: 5rem;
            color: var(--neon-blue);
            filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.4));
            min-width: 100px;
            text-align: center;
        }
        .detailed-card-content h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        .detailed-card-content p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        .detailed-card-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            color: #fff;
        }
        .detailed-card-list li i {
            color: var(--neon-blue);
            margin-right: 12px;
            filter: drop-shadow(0 0 5px var(--neon-blue));
        }
        .detailed-card-action {
            margin-left: auto;
            text-align: center;
            min-width: 180px;
        }
        @media (max-width: 900px) {
            .detailed-card {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
                padding: 2rem;
            }
            .detailed-card::before {
                top: 0; left: 0; width: 100%; height: 4px;
            }
            .detailed-card-action {
                margin-left: 0;
                width: 100%;
            }
            .detailed-card-list {
                align-items: center;
            }
        }