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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Navbar */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.cta-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.hero-cta {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.cta-btn-large {
    background: var(--bg-white);
    color: var(--primary-color);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Hero Section */
.hero {
    background: var(--gradient);
    color: white;
    padding: 5rem 0;
}

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

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.company-logos {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.company-badge {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.company-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.company-badge img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.salary-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin: 1rem 0 2rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.salary-icon {
    font-size: 1.5rem;
}

.salary-text {
    color: white;
    font-size: 1.05rem;
}

.salary-text strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fbbf24;
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    max-width: 280px;
    height: 280px;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 6px solid rgba(255, 255, 255, 0.2);
}

.hero-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Program Overview */
.program-overview {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

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

.overview-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.overview-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

/* Pain Points Section */
.pain-points {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.journey-path {
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
}

.journey-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.journey-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    z-index: 2;
}

.journey-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.journey-content:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.15);
    border-left-color: var(--secondary-color);
}

.journey-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.journey-content p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
}

.journey-connector {
    position: absolute;
    left: 24px;
    top: 50px;
    width: 3px;
    height: calc(100% + 2rem);
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 1;
}

.journey-final .journey-connector {
    display: none;
}

.pain-points-cta {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--gradient);
    border-radius: 16px;
    margin-top: 2rem;
    position: relative;
}

.cta-arrow {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.dream-section {
    padding: 2rem 0;
}

.dream-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.dream-companies {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.dream-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.dream-logo {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    padding: 1rem;
}

.dream-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dream-company:hover .dream-logo {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.dream-name {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.dream-text {
    font-size: 1.4rem;
    color: white;
    margin: 2rem 0 1.5rem;
    font-weight: 600;
    line-height: 1.6;
}

.dream-text strong {
    font-size: 1.6rem;
    color: #fbbf24;
    font-weight: 800;
}

.cta-text {
    color: white;
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

/* Mentor Section */
.mentor-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.mentor-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mentor-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.mentor-photo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.mentor-photo img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.mentor-intro h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.mentor-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

.stat-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.highlight-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.highlight-item p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
}

.highlight-item strong {
    color: var(--primary-color);
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.video-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* Curriculum */
.curriculum {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.curriculum-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.curriculum-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.curriculum-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

/* Features */
.features {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

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

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateX(8px);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Selection Process */
.selection-process {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.process-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 16px;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.testimonials-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.testimonial-featured {
    grid-column: span 1;
    border-left-color: var(--secondary-color);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 2px solid var(--border-color);
    padding-top: 1rem;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-role {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.review-links {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-links > p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.links-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.review-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.review-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.review-link span {
    font-size: 1.2rem;
}

/* Pricing Highlight Section */
.pricing-highlight {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--gradient);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0.95;
}

.price-container {
    margin-bottom: 1rem;
}

.original-price {
    font-size: 2rem;
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 1rem;
    font-weight: 600;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
    margin-top: 0.5rem;
}

.price-subtext {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.price-features li {
    font-size: 1.05rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-features li:last-child {
    border-bottom: none;
}

.pricing-card .cta-btn {
    background-color: white;
    color: var(--primary-color);
    margin-top: 1.5rem;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.pricing-card .cta-btn:hover {
    background-color: rgba(255, 255, 255, 0.95);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    color: var(--text-dark);
    line-height: 1.7;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    max-width: 700px;
    max-height: 85vh;
    position: relative;
    animation: slideIn 0.3s ease-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    flex-shrink: 0;
}

.form-container {
    flex: 1;
    overflow-y: auto;
    margin: 0 -2rem;
    padding: 0 2rem;
}

.form-container iframe {
    display: block;
    border: none;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

footer p {
    opacity: 0.8;
    margin: 0;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links span {
    opacity: 0.8;
    font-size: 0.95rem;
}

.social-links a {
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-handle {
    font-weight: 600;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-fab svg {
    width: 32px;
    height: 32px;
}

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

    .hero-text {
        text-align: center;
    }

    .company-logos {
        justify-content: center;
    }

    .salary-highlight {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        max-width: 300px;
        height: 300px;
    }

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

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

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

    .overview-grid,
    .curriculum-grid,
    .features-grid,
    .process-steps,
    .mentor-stats,
    .mentor-highlights,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-featured {
        grid-column: span 1;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .original-price {
        font-size: 1.5rem;
    }

    .current-price {
        font-size: 2.5rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .journey-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .journey-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .journey-connector {
        left: 19px;
        top: 40px;
    }

    .journey-content {
        width: 100%;
        margin-left: 0;
    }

    .journey-icon {
        font-size: 1.5rem;
    }

    .cta-arrow {
        font-size: 2rem;
    }

    .mentor-intro h3 {
        font-size: 1.6rem;
    }

    .mentor-title {
        font-size: 1.1rem;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-content {
        margin: 5% 20px;
        padding: 1.5rem;
        max-width: 95%;
        max-height: 90vh;
    }

    .form-container {
        margin: 0 -1.5rem;
        padding: 0 1.5rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .hero-cta,
    .cta-btn-large {
        width: 100%;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-image img {
        max-width: 250px;
        height: 250px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

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

    .mentor-photo img {
        width: 120px;
        height: 120px;
    }

    .dream-companies {
        gap: 1.5rem;
    }

    .dream-logo {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        padding: 0.75rem;
    }

    .company-badge img {
        height: 24px;
    }

    .whatsapp-fab {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-fab svg {
        width: 26px;
        height: 26px;
    }

    .dream-text {
        font-size: 1.2rem;
    }

    .dream-text strong {
        font-size: 1.3rem;
    }

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

    .program-overview,
    .curriculum,
    .features,
    .selection-process,
    .cta-section {
        padding: 3rem 0;
    }
}
