/* ====================================
   ImpactAcademy Custom Styles
   Unique Design: Card-based, Purple Gradient, Accordions, Timeline
   ==================================== */

:root {
    --academy-primary: #6a0dad;
    --academy-secondary: #015bd9;
    --academy-gradient: linear-gradient(135deg, #6a0dad 0%, #015bd9 100%);
    --academy-light-purple: #f3e5ff;
    --academy-dark-purple: #4a0080;
}

/* ====================================
   HERO SECTION - Purple Gradient Theme
   ==================================== */

.academy-hero {
    position: relative;
    padding: 110px 0 70px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.academy-hero .content-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content-wrapper {
    flex: 1;
    max-width: 700px;
}

.academy-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: linear-gradient(135deg, var(--color-think), var(--color-ai));
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.academy-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-think), var(--color-ai));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.academy-hero-tagline {
    font-size: 1.35rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.academy-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 28px;
    max-width: 650px;
}

.hero-cta-wrapper {
    display: flex;
    gap: 16px;
}

.academy-cta {
    background: linear-gradient(135deg, var(--color-think), var(--color-ai));
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(1, 91, 217, 0.25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.academy-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(1, 91, 217, 0.35);
    text-decoration: none;
}

/* Floating Visual Elements */
.hero-visual-elements {
    flex: 1;
    position: relative;
    height: 320px;
    min-height: 280px;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--color-think), var(--color-ai));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.floating-badge i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--color-think), var(--color-ai));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-badge span {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.875rem;
    white-space: nowrap;
}

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

.badge-2 {
    top: 130px;
    right: 40px;
    animation-delay: 0.5s;
}

.badge-3 {
    bottom: 40px;
    left: 60px;
    animation-delay: 1s;
}

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

/* ====================================
   WHY IMPACTACADEMY SECTION
   ==================================== */

.why-academy-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9f7ff 100%);
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-subtitle-center {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.why-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--academy-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(106, 13, 173, 0.15);
    border-color: var(--academy-primary);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: var(--academy-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.why-icon i {
    font-size: 1.8rem;
    color: white;
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* ====================================
   WHO IT'S FOR SECTION
   ==================================== */

.who-section {
    padding: 80px 0;
    background: white;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.who-card {
    background: linear-gradient(135deg, #f9f7ff 0%, #ffffff 100%);
    padding: 48px 40px;
    border-radius: 24px;
    border: 2px solid #e8e0f5;
    text-align: center;
    transition: all 0.3s ease;
}

.who-card:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 48px rgba(106, 13, 173, 0.2);
    border-color: var(--academy-primary);
}

.who-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--academy-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.who-icon-wrapper i {
    font-size: 2.2rem;
    color: white;
}

.who-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.who-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* ====================================
   HOW LEARNING WORKS - TIMELINE
   ==================================== */

.how-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f0ebf7 100%);
}

.timeline-wrapper {
    max-width: 900px;
    margin: 60px auto 48px;
    position: relative;
}

.timeline-step {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 32px;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--academy-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 24px rgba(106, 13, 173, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #e8e0f5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--academy-gradient);
    border-radius: 2px;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f9f7ff 0%, #ffffff 100%);
    border: 3px solid var(--academy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
    color: var(--academy-primary);
}

.timeline-connector {
    display: none;
}

.certification-badge {
    background: var(--academy-gradient);
    padding: 32px 48px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 700px;
    margin: 48px auto 0;
    box-shadow: 0 12px 40px rgba(106, 13, 173, 0.25);
}

.certification-badge i {
    font-size: 3rem;
    color: white;
}

.cert-text h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.cert-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ====================================
   PROGRAMS SECTION - CARD-BASED WITH ACCORDIONS
   ==================================== */

.programs-section {
    padding: 80px 0;
    background: white;
}

.programs-main-title {
    margin-bottom: 8px;
}

.program-card {
    background: white;
    border-radius: 24px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

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

.program-a {
    border-color: #015bd9;
}

.program-b {
    border-color: #6a0dad;
}

.program-c {
    border-color: #8e44ad;
}

/* Program Image Wrapper - Visual indicators for image upload */
.program-image-wrapper {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(1, 91, 217, 0.05) 0%, rgba(106, 13, 173, 0.05) 100%);
}

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

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

/* Program Image Placeholder Overlay */
.program-image-placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(3px);
    border: 3px dashed rgba(1, 91, 217, 0.3);
    margin: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    transition: all 0.3s ease;
}

.program-a .program-image-placeholder-overlay {
    border-color: rgba(1, 91, 217, 0.4);
}

.program-b .program-image-placeholder-overlay {
    border-color: rgba(106, 13, 173, 0.4);
}

.program-c .program-image-placeholder-overlay {
    border-color: rgba(142, 68, 173, 0.4);
}

.program-image-placeholder-overlay i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.program-a .program-image-placeholder-overlay i {
    color: rgba(1, 91, 217, 0.5);
}

.program-b .program-image-placeholder-overlay i {
    color: rgba(106, 13, 173, 0.5);
}

.program-c .program-image-placeholder-overlay i {
    color: rgba(142, 68, 173, 0.5);
}

.program-image-placeholder-overlay span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-a .program-image-placeholder-overlay span {
    color: rgba(1, 91, 217, 0.7);
}

.program-b .program-image-placeholder-overlay span {
    color: rgba(106, 13, 173, 0.7);
}

.program-c .program-image-placeholder-overlay span {
    color: rgba(142, 68, 173, 0.7);
}

.program-card:hover .program-image-placeholder-overlay {
    background: rgba(255, 255, 255, 0.95);
    border-width: 4px;
}

.program-header {
    padding: 48px 48px 32px;
    background: linear-gradient(135deg, #f9f7ff 0%, #ffffff 100%);
    border-bottom: 2px solid #f0f0f0;
}

.program-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--academy-gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.program-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.program-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.program-body {
    padding: 48px;
}

.program-intro {
    margin-bottom: 40px;
}

.program-intro h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--academy-primary);
    margin-bottom: 16px;
}

.program-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.program-benefits,
.program-included {
    margin-bottom: 32px;
}

.program-benefits h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.program-benefits h4 i {
    color: #ffc107;
}

.benefits-grid {
    display: grid;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 4px solid var(--academy-primary);
}

.benefit-item i {
    color: var(--academy-primary);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item strong {
    color: #1a1a1a;
}

.benefit-item div {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Accordion Styles */
.accordion-toggle {
    width: 100%;
    background: linear-gradient(135deg, #6a0dad 0%, #015bd9 100%);
    color: white;
    border: none;
    padding: 20px 24px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.accordion-toggle:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(106, 13, 173, 0.3);
}

.accordion-toggle h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-toggle i.fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.accordion-toggle.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9f7ff;
    border-radius: 0 0 12px 12px;
}

.included-list {
    list-style: none;
    padding: 32px 24px;
    margin: 0;
}

.included-list li {
    padding: 16px 20px;
    margin-bottom: 16px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--academy-secondary);
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.included-list li:last-child {
    margin-bottom: 0;
}

.included-list strong {
    color: #1a1a1a;
    font-weight: 700;
}

.program-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--academy-gradient);
    color: white;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.program-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(106, 13, 173, 0.3);
    color: white;
}

/* ====================================
   WHAT SETS US APART
   ==================================== */

.sets-apart-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f9f7ff 0%, #ffffff 100%);
}

.apart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.apart-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    border: 2px solid #e8e0f5;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.apart-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(106, 13, 173, 0.2);
    border-color: var(--academy-primary);
}

.apart-icon {
    width: 80px;
    height: 80px;
    background: var(--academy-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.apart-icon i {
    font-size: 2.2rem;
    color: white;
}

.apart-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.apart-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* ====================================
   DELIVERY & CERTIFICATION
   ==================================== */

.delivery-section {
    padding: 80px 0;
    background: white;
}

.delivery-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.delivery-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.delivery-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.delivery-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background: #f9f7ff;
    border-radius: 16px;
    border: 2px solid #e8e0f5;
    transition: all 0.3s ease;
}

.delivery-item:hover {
    transform: translateX(8px);
    border-color: var(--academy-primary);
    box-shadow: 0 8px 24px rgba(106, 13, 173, 0.15);
}

.delivery-icon {
    width: 56px;
    height: 56px;
    background: var(--academy-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.delivery-icon i {
    font-size: 1.6rem;
    color: white;
}

.delivery-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.delivery-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

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

.certificate-showcase {
    width: 280px;
    height: 280px;
    background: var(--academy-gradient);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 48px rgba(106, 13, 173, 0.3);
    animation: float 4s ease-in-out infinite;
}

.certificate-showcase i {
    font-size: 5rem;
    color: white;
    margin-bottom: 16px;
}

.certificate-showcase p {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

/* ====================================
   GOVERNANCE & ETHICS
   ==================================== */

.governance-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f0ebf7 0%, #ffffff 100%);
}

.governance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.governance-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    border: 2px solid #e8e0f5;
    position: relative;
    transition: all 0.3s ease;
}

.governance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(106, 13, 173, 0.2);
    border-color: var(--academy-primary);
}

.governance-number {
    width: 56px;
    height: 56px;
    background: var(--academy-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.governance-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.governance-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* ====================================
   FINAL CTA SECTION
   ==================================== */

.final-cta-section {
    padding: 100px 0;
    background: var(--academy-gradient);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.final-cta-content > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-item a:hover {
    border-bottom-color: white;
}

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

.final-cta-btn {
    background: white;
    color: var(--academy-primary);
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.final-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.final-cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.final-cta-btn-secondary:hover {
    background: white;
    color: var(--academy-primary);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 1024px) {
    .academy-hero {
        padding: 100px 0 65px;
    }

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

    .academy-hero-tagline {
        font-size: 1.25rem;
    }

    .hero-visual-elements {
        height: 280px;
    }

    .timeline-step {
        grid-template-columns: 60px 1fr 60px;
        gap: 20px;
    }

    .step-number,
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-icon i {
        font-size: 1.5rem;
    }

    .delivery-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .certificate-showcase {
        width: 240px;
        height: 240px;
    }

    .certificate-showcase i {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .academy-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .academy-hero .content-container {
        flex-direction: column;
        gap: 30px;
    }

    .academy-hero-title {
        font-size: 2.25rem;
    }

    .academy-hero-tagline {
        font-size: 1.2rem;
    }

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

    .hero-visual-elements {
        height: 250px;
        width: 100%;
    }

    .floating-badge {
        padding: 12px 20px;
    }

    .floating-badge i {
        font-size: 1.4rem;
    }

    .floating-badge span {
        font-size: 0.85rem;
    }

    .badge-1 {
        top: 20px;
        left: 20px;
    }

    .badge-2 {
        top: 120px;
        right: 20px;
    }

    .badge-3 {
        bottom: 40px;
        left: 40px;
    }

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

    .academy-hero-tagline {
        font-size: 1.2rem;
    }

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

    .timeline-step {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 30px;
    }

    .step-number {
        margin: 0 auto;
    }

    .step-icon {
        display: none;
    }

    .timeline-connector {
        left: 50%;
        transform: translateX(-50%);
    }

    .certification-badge {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .program-header,
    .program-body {
        padding: 32px 24px;
    }

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

    .why-academy-grid,
    .who-grid,
    .apart-grid,
    .governance-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

    .final-cta-contact {
        flex-direction: column;
        gap: 16px;
    }
}

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

    .academy-hero-tagline {
        font-size: 1rem;
    }

    .academy-hero-subtitle {
        font-size: 0.95rem;
    }

    .program-label {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .program-title {
        font-size: 1.4rem;
    }

    .accordion-toggle h4 {
        font-size: 1.1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

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

    .final-cta-content h2 {
        font-size: 1.6rem;
    }
}

/* ====================================
   ADDITIONAL VISUAL ENHANCEMENTS
   ==================================== */

/* Asymmetric Grid Pattern for Programs */
.programs-section .content-container {
    max-width: 1200px;
}

/* Hover Effects for Interactive Elements */
.program-card,
.why-card,
.who-card,
.apart-card,
.governance-card,
.delivery-item {
    cursor: pointer;
}

/* Icon Animations */
.why-icon,
.who-icon-wrapper,
.apart-icon,
.delivery-icon {
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon,
.who-card:hover .who-icon-wrapper,
.apart-card:hover .apart-icon,
.delivery-item:hover .delivery-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Selection Colors */
::selection {
    background: var(--academy-primary);
    color: white;
}

::-moz-selection {
    background: var(--academy-primary);
    color: white;
}
