/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables for consistent theming */
:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-blue: #02b8f1;
    --light-blue: #4facfe;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #6b7280;
    --gray-dark: #374151;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --error-red: #ef4444;
    --gradient-primary: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--primary-black);
    overflow-x: hidden;
}

/* Floating Background Elements */
.floating-element {
    position: fixed;
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
    animation: float 20s infinite ease-in-out;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: -7s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

/* Header */
.header {
    background: var(--secondary-black);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 2px solid var(--accent-blue);
}

/* Navigation */
.navbar {
    background: var(--primary-black);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--secondary-black);
}

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

.logo {
    font-family: 'Advent Pro', sans-serif;
    font-weight: 800;
    font-size: 45px;
    text-decoration: none;
}

.logo-fame {
    color: var(--white);
    
}

.logo-hub {
    color: var(--accent-blue);
}

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

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu li a:hover {
    color: var(--accent-blue);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-left {
    z-index: 2;
}

.hero-main-title {
    font-family: 'Advent Pro', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--white), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub-title {
    font-family: 'Advent Pro', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 2rem;
}

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

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-blue);
}

.hero-offerings {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.offering-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(2, 184, 241, 0.2);
    transition: var(--transition);
}

.offering-item:hover {
    background: rgba(2, 184, 241, 0.1);
    transform: translateY(-2px);
}

.offering-icon {
    font-size: 2rem;
    min-width: 60px;
}

.offering-content h3 {
    font-size: 1.2rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.offering-content p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Tech Universe - Orbiting Animation */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tech-universe {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-orbit {
    position: absolute;
    border: 2px solid rgba(2, 184, 241, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 150px;
    height: 150px;
    animation-duration: 15s;
}

.orbit-2 {
    width: 250px;
    height: 250px;
    animation-duration: 25s;
}

.orbit-3 {
    width: 350px;
    height: 350px;
    animation-duration: 35s;
}

.tech-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    animation: counter-rotate 20s linear infinite;
}

.orbit-1 .tech-icon {
    animation-duration: 15s;
}

.orbit-2 .tech-icon {
    animation-duration: 25s;
}

.orbit-3 .tech-icon {
    animation-duration: 35s;
}

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

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

.center-logo {
    font-family: 'Advent Pro', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white);
    text-align: center;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 10;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--gray-light);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(2, 184, 241, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(2, 184, 241, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-light);
}

/* Courses Section */
.courses-section {
    padding: 5rem 0;
    background: var(--secondary-black);
    position: relative;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

.shape:nth-child(1) { top: 10%; left: 80%; animation-delay: 0s; }
.shape:nth-child(2) { top: 70%; left: 10%; animation-delay: -5s; }
.shape:nth-child(3) { top: 40%; right: 15%; animation-delay: -10s; }

.courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.section-title {
    font-family: 'Advent Pro', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

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

.course-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(2, 184, 241, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    background: rgba(2, 184, 241, 0.1);
}

.specialty-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.course-description {
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-score {
    font-weight: 600;
    color: var(--accent-blue);
}

.stars {
    color: #ffd700;
}

.know-more-btn {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.know-more-btn:hover {
    transform: translateX(5px);
}

/* Institution Cards */
.institution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.institution-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(2, 184, 241, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.institution-card.yellow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.institution-card.green::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #10b981, #34d399);
}

.institution-card.rose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #f43f5e, #fb7185);
}

.institution-card:hover {
    transform: translateY(-5px);
    background: rgba(2, 184, 241, 0.1);
}

.institution-card .rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.institution-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.institution-card p {
    color: var(--gray-light);
    line-height: 1.6;
}

/* Hire Cards */
.hire-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.hire-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(2, 184, 241, 0.2);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hire-card.yellow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.hire-card.green::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #10b981, #34d399);
}

.hire-card.rose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #f43f5e, #fb7185);
}

.hire-card:hover {
    transform: translateY(-5px);
    background: rgba(2, 184, 241, 0.1);
}

.hire-card-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.hire-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.hire-card p {
    color: var(--gray-light);
    line-height: 1.6;
}
/* Enhanced Hiring Process Section */
.hiring-process-section {
    background: var(--primary-black);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hiring-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(2, 184, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(2, 184, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hiring-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.hiring-process-title {
    font-family: 'Advent Pro', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.hiring-process-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.hiring-process-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

.hiring-steps-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hiring-step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid rgba(2, 184, 241, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.hiring-step:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(2, 184, 241, 0.15);
    border-color: var(--accent-blue);
    box-shadow: 
        0 20px 40px rgba(2, 184, 241, 0.3),
        0 0 0 1px rgba(2, 184, 241, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(2, 184, 241, 0.4);
    border: 3px solid var(--primary-black);
}

.step-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.hiring-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--light-blue);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Advent Pro', sans-serif;
}

.step-description {
    color: var(--gray-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Individual step hover effects */
.hiring-step:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.hiring-step:nth-child(1) .step-number {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.hiring-step:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
    border-color: #10b981;
}

.hiring-step:nth-child(2) .step-number {
    background: linear-gradient(45deg, #10b981, #34d399);
}

.hiring-step:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(244, 63, 94, 0.3);
    border-color: #f43f5e;
}

.hiring-step:nth-child(3) .step-number {
    background: linear-gradient(45deg, #f43f5e, #fb7185);
}

.hiring-step:nth-child(4):hover {
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    border-color: #8b5cf6;
}

.hiring-step:nth-child(4) .step-number {
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
}

/* Call to action in hiring process */
.hiring-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(2, 184, 241, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(2, 184, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.hiring-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(2, 184, 241, 0.1) 50%,
        transparent 100%
    );
    animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hiring-cta h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Advent Pro', sans-serif;
}

.hiring-cta p {
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hiring-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hiring-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hiring-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hiring-cta-btn:hover::before {
    left: 100%;
}

.hiring-cta-btn.primary {
    background: var(--gradient-accent);
    color: var(--white);
}

.hiring-cta-btn.secondary {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.hiring-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(2, 184, 241, 0.4);
}

.hiring-cta-btn.secondary:hover {
    background: var(--accent-blue);
    color: var(--white);
}

/* Responsive Design for Hiring Process */
@media (max-width: 768px) {
    .hiring-process-title {
        font-size: 2rem;
    }
    
    .hiring-steps-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hiring-step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        top: -15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .hiring-cta {
        margin-top: 3rem;
        padding: 2rem 1rem;
    }
    
    .hiring-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hiring-cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hiring-process-title {
        font-size: 1.8rem;
    }
    
    .hiring-step {
        padding: 1.5rem 1rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .hiring-cta h3 {
        font-size: 1.5rem;
    }
    
    .hiring-cta p {
        font-size: 1rem;
    }
}
/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: var(--primary-black);
}

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

.feature-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(2, 184, 241, 0.2);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--gradient-accent);
    color: var(--white);
    transform: translateY(-2px);
}

.tab-pane {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tab-pane.active {
    display: grid;
}

.content-left h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

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

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-light);
}

.benefits-list li i {
    color: var(--accent-blue);
}

.feature-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Contact Cards */
.compact-elite-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(2, 184, 241, 0.2);
    margin: 3rem 0;
}

.compact-elite-header {
    text-align: center;
    margin-bottom: 3rem;
}

.compact-elite-header h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.compact-elite-header p {
    color: var(--gray-light);
}

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

.compact-elite-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(2, 184, 241, 0.2);
    transition: var(--transition);
}

.compact-elite-card:hover {
    transform: translateY(-5px);
    background: rgba(2, 184, 241, 0.1);
}

.compact-elite-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.compact-elite-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.phone-icon {
    background: linear-gradient(45deg, #10b981, #34d399);
}

.whatsapp-icon {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.email-icon {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.compact-elite-details h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.compact-contact-method {
    margin-bottom: 1rem;
}

.compact-contact-method span {
    display: block;
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.compact-contact-method a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.compact-elite-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    color: var(--white);
}

.phone-button {
    background: linear-gradient(45deg, #10b981, #34d399);
}

.whatsapp-button {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.email-button {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.compact-elite-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--secondary-black);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(2, 184, 241, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-medium);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-sub-title {
        font-size: 2rem;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }

    .tech-universe {
        width: 300px;
        height: 300px;
    }

    .orbit-1 {
        width: 100px;
        height: 100px;
    }

    .orbit-2 {
        width: 180px;
        height: 180px;
    }

    .orbit-3 {
        width: 260px;
        height: 260px;
    }

    .tech-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .center-logo {
        font-size: 1.2rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .course-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .tab-pane {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .institution-cards,
    .hire-cards,
    .compact-elite-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }

    .hero-sub-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .stats-section {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .course-card,
    .institution-card,
    .hire-card {
        padding: 1rem;
    }

    .tech-universe {
        width: 250px;
        height: 250px;
    }

    .orbit-1 {
        width: 80px;
        height: 80px;
    }

    .orbit-2 {
        width: 140px;
        height: 140px;
    }

    .orbit-3 {
        width: 200px;
        height: 200px;
    }

    .compact-elite-section {
        padding: 2rem 1rem;
    }

    .compact-elite-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Loading animations */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-blue);
}

/* Selection styling */
::selection {
    background: var(--accent-blue);
    color: var(--white);
}

::-moz-selection {
    background: var(--accent-blue);
    color: var(--white);
}

/* Focus states for accessibility */
.btn:focus,
.tab-btn:focus,
.nav-menu a:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .hero-buttons,
    .floating-element,
    .floating-shapes {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero,
    .courses-section,
    .why-choose-section {
        background: white;
    }
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-blue);
    transform: translateY(-3px);
}

/* Additional CSS for Why Choose Section - Add this to your existing styles.css */

/* Enhanced Why Choose Section Styles */
.why-choose-section {
    padding: 5rem 0;
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(2, 184, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(2, 184, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.feature-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(2, 184, 241, 0.2);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.5s ease;
    z-index: -1;
}

.tab-btn:hover::before,
.tab-btn.active::before {
    left: 0;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(2, 184, 241, 0.3);
    border-color: var(--accent-blue);
}

.tab-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.tab-btn:hover i,
.tab-btn.active i {
    transform: scale(1.1);
}

.tab-pane {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    animation: fadeIn 0.6s ease-in-out;
}

.tab-pane.active {
    display: grid;
}

.content-left {
    padding: 2rem 0;
}

.content-left h3 {
    font-family: 'Advent Pro', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
}

.content-left h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.content-left p {
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-light);
    padding: 0.5rem 0;
    transition: var(--transition);
}

.benefits-list li:hover {
    color: var(--white);
    transform: translateX(5px);
}

.benefits-list li i {
    color: var(--success-green);
    font-size: 1.2rem;
    min-width: 20px;
}

.benefits-list li span {
    font-weight: 500;
}

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

.feature-visual {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(2, 184, 241, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Expert Showcase Styles */
.expert-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.expert-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(2, 184, 241, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.expert-card:hover {
    transform: translateX(10px);
    background: rgba(2, 184, 241, 0.2);
}

.expert-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.expert-info h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.expert-info p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Projects Showcase Styles */
.projects-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(2, 184, 241, 0.3);
    text-align: center;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    background: rgba(2, 184, 241, 0.2);
}

.project-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1rem;
}

.project-card h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.project-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Career Journey Styles */
.career-journey {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.career-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(2, 184, 241, 0.2);
    transition: var(--transition);
    position: relative;
}

.career-step:hover {
    background: rgba(2, 184, 241, 0.1);
    transform: translateX(10px);
}

.career-step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 35px;
    width: 2px;
    height: 2rem;
    background: var(--gradient-accent);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    min-width: 50px;
}

.step-content h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Success Metrics Styles */
.success-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(2, 184, 241, 0.3);
    text-align: center;
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(2, 184, 241, 0.2);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    font-family: 'Advent Pro', sans-serif;
}

.metric-label {
    color: var(--gray-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .feature-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .tab-pane {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-left h3 {
        font-size: 1.8rem;
    }
    
    .feature-visual {
        height: 410px;
        padding: 1.5rem;
    }
    .tall-tab{
        height: 510px;
    }
    .tall-tab1{
        height: 60rem;
    }

    
    .projects-showcase {
        grid-template-columns: 1fr;
    }
    
    .success-metrics {
        grid-template-columns: 1fr;
    }
    
    .career-step {
        padding: 1rem 0.5rem;
    }
    
    .career-step:not(:last-child)::after {
        left: 25px;
    }
}

@media (max-width: 480px) {
    .features-container {
        padding: 0 10px;
    }
    
    .content-left h3 {
        font-size: 1.5rem;
    }
    
    .content-left p {
        font-size: 1rem;
    }
    
    .benefits-list li {
        gap: 0.5rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-visual {
        height: 350px;
        padding: 1rem;
    }
    .tall-tab{
        height: 560px;
    }
    .tall-tab1{
        height: 760px;
    }
    .expert-card,
    .project-card,
    .metric-card {
        padding: 1rem;
    }
    
    .expert-avatar,
    .project-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
}