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

:root {
    --dark-blue: #1a3a52;
    --medium-blue: #2c5f7f;
    --light-blue: #4a8fb8;
    --red-orange: #e74c3c;
    --accent-orange: #ff6b35;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --text-dark: #2d3748;
    --text-light: #718096;
    --success: #10b981;
    --gradient-primary: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%);
    --gradient-accent: linear-gradient(135deg, #e74c3c 0%, #ff6b35 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-si {
    color: var(--dark-blue);
}

.logo-gma {
    background: var(--dark-blue);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

.logo-corp {
    color: var(--red-orange);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-blue);
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--dark-blue);
}

.btn-secondary:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

/* Hero Section - upGrad Style */
.hero {
    position: relative;
    padding: 160px 0 100px;
    margin-top: 70px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2940 0%, #1a3a52 50%, #2c5f7f 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 143, 184, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.hero-search {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    background: var(--white);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: var(--shadow-xl);
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    font-family: inherit;
    border-radius: 8px;
    outline: none;
}

.search-btn {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.hero-goals {
    margin-top: 1.5rem;
}

.goals-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.goals-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.goal-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.goal-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Visual - Floating Cards */
.hero-visual {
    position: relative;
    height: 450px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card .card-icon {
    font-size: 2.5rem;
}

.floating-card .card-content h4 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.floating-card .card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.card-1 {
    top: 50px;
    left: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 180px;
    right: 30px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 80px;
    left: 50px;
    animation-delay: 2s;
}

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

/* Partners Section */
.partners {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.partners-title {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Stats Banner */
.stats-banner {
    background: var(--gradient-primary);
    padding: 4rem 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--red-orange);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Program Categories Section */
.program-categories {
    background: var(--white);
    padding: 80px 0;
}

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

.categories-header h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 800;
}

.categories-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.categories-wrapper {
    position: relative;
    padding: 0 50px;
}

.categories-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-card {
    flex: 0 0 auto;
    width: 160px;
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--red-orange);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.category-icon svg {
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon svg {
    transform: scale(1.1);
}

.category-card h4 {
    font-size: 0.95rem;
    color: var(--dark-blue);
    font-weight: 600;
    line-height: 1.4;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--medium-gray);
    color: var(--dark-blue);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.scroll-btn:hover {
    background: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-orange);
}

.card-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Programs Section - New Layout */
.courses {
    background: #f5f7fa;
    padding: 80px 0;
}

.programs-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

/* Sidebar Categories */
.programs-sidebar {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.category-item {
    padding: 1rem 1.2rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.category-item:hover {
    background: rgba(26, 58, 82, 0.05);
}

.category-item.active {
    background: #0066ff;
    color: var(--white);
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Program Card */
.program-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.program-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-logo {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo-placeholder {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark-blue);
}

.program-content {
    padding: 1.5rem;
}

.program-content h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.program-meta {
    margin-bottom: 1.2rem;
}

.program-meta p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.program-meta strong {
    color: var(--text-dark);
    font-weight: 600;
}

.program-link {
    color: #0066ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.program-link:hover {
    gap: 0.8rem;
}

.program-link::after {
    content: '→';
    font-size: 1.2rem;
}

.course-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid var(--medium-gray);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--red-orange);
}

.course-card.featured {
    border: 3px solid var(--red-orange);
    background: linear-gradient(to bottom, rgba(231, 76, 60, 0.05) 0%, var(--white) 100%);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.course-image {
    background: var(--gradient-primary);
    padding: 3rem;
    text-align: center;
    position: relative;
}

.course-image-header {
    background: linear-gradient(135deg, #2c4a5e 0%, #1a3a52 100%);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-icon {
    font-size: 4rem;
}

.course-icon-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.course-card:hover .course-icon-img {
    transform: scale(1.1) translateY(-5px);
}

.course-highlights {
    list-style: none;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.03) 0%, rgba(231, 76, 60, 0.03) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--red-orange);
}

.course-highlights li {
    padding: 0.6rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-highlights li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red-orange);
    border-radius: 50%;
    flex-shrink: 0;
}

.course-content {
    padding: 2rem;
}

.course-content h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.course-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.course-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--medium-gray);
}

.course-meta span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

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

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

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.course-rating span:last-child {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Career Path Sections - upGrad Style */
.career-path-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-improve {
    background: linear-gradient(135deg, #8B1538 0%, #5a0e24 100%);
    color: var(--white);
}

.section-flourish {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: var(--white);
}

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

.career-path-text {
    z-index: 2;
}

.step-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.career-path-text h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.career-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.career-stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.career-stat p {
    font-size: 1rem;
    opacity: 0.9;
}

.btn-career {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #1a3a52;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-career:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.career-path-visual {
    position: relative;
    height: 500px;
}

.career-image-wrapper {
    position: relative;
    height: 100%;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 10;
}

.floating-badge .badge-icon {
    font-size: 1.5rem;
}

.floating-badge .badge-content h5 {
    color: var(--dark-blue);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.badge-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    right: 20px;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 80px;
    left: 40px;
    animation-delay: 2s;
}

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

/* Info Card - Section 1 */
.info-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 350px;
    max-width: 90%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.check-icon {
    background: #10b981;
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Job Portal Card - Section 2 */
.job-portal-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 320px;
    max-width: 90%;
}

.portal-header {
    margin-bottom: 1.5rem;
}

.portal-badge {
    background: var(--dark-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.job-listing {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.company-logo {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
}

.company-logo.microsoft {
    background: linear-gradient(135deg, #00a4ef 0%, #0078d4 100%);
}

.company-logo.amazon {
    background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%);
}

.job-info h5 {
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

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

.apply-link {
    color: var(--red-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.apply-link:hover {
    text-decoration: underline;
}

/* Resume Score Card */
.resume-score-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 200px;
}

.resume-score-card h5 {
    color: var(--dark-blue);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.score-display {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 0.8rem;
}

.score-bar {
    width: 100%;
    height: 8px;
    background: var(--medium-gray);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 10px;
    transition: width 1s ease;
}

.score-label {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Delivery Section */
.delivery {
    background: var(--light-gray);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.delivery-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.delivery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--red-orange);
}

.delivery-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.delivery-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.delivery-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.delivery-features {
    list-style: none;
}

.delivery-features li {
    color: var(--text-dark);
    padding: 0.6rem 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--medium-gray);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-orange);
}

.review-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--medium-gray);
}

.author-info h4 {
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

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

/* Contact Section - Enhanced */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    padding: 100px 0;
}

.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(26,58,82,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.contact-header h2 {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card h4 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

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

.contact-link:hover {
    gap: 0.8rem;
}

.contact-form-wrapper {
    position: relative;
    z-index: 1;
}

.contact-form-container {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    overflow: hidden;
}

.form-image-section {
    position: relative;
    overflow: hidden;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 58, 82, 0.95) 0%, rgba(26, 58, 82, 0.7) 50%, transparent 100%);
    padding: 2rem;
    color: var(--white);
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-badge span {
    font-weight: 600;
    font-size: 0.95rem;
}

.overlay-stats {
    display: flex;
    gap: 1.5rem;
}

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

.stat-badge h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--red-orange);
    margin-bottom: 0.25rem;
}

.stat-badge p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.form-section {
    padding: 3rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.elegant-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.6rem;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.required {
    color: var(--red-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-blue);
    box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

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

.form-group select {
    cursor: pointer;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.form-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-submit {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

.form-message {
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    background: white;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--red-orange);
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--red-orange);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .about-content,
    .courses-grid,
    .delivery-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-layout {
        grid-template-columns: 1fr;
    }

    .programs-sidebar {
        position: static;
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 1rem;
        scrollbar-width: none;
    }

    .programs-sidebar::-webkit-scrollbar {
        display: none;
    }

    .category-item {
        white-space: nowrap;
        margin-bottom: 0;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .career-path-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .career-path-visual {
        height: 400px;
    }

    .career-path-text h2 {
        font-size: 2.5rem;
    }
}

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

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

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-container {
        grid-template-columns: 1fr;
    }

    .form-image-section {
        min-height: 300px;
    }

    .form-section {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-search {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content,
    .courses-grid,
    .delivery-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .goals-tags {
        flex-direction: column;
    }

    .goal-tag {
        text-align: center;
    }
}
