/* ============================================
   RELIANCE ANIMATION ACADEMY - ABOUT PAGE
   ============================================ */

/* ============================================
   BASE & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #ff6b35;
    --black: #000000;
    --white: #ffffff;
    --gray: #999999;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

/* ============================================
   HEADER & NAVIGATION (CONSISTENT WITH INDEX)
   ============================================ */
.logo {
    position: fixed;
    top: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    z-index: 100;
    color: var(--white);
    text-decoration: none;
}


.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.logo-dot {
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
}

.menu-btn {
    position: fixed;
    top: 30px;
    right: 40px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
}

.menu-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* ============================================
   MENU OVERLAY & SIDEBAR (CONSISTENT WITH INDEX)
   ============================================ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-sidebar {
    position: fixed;
    top: 0;
    left: -600px;
    width: 600px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 1000;
    padding: 40px;
    overflow-y: auto;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    scrollbar-width: none;
}

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

.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.menu-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(90deg);
}

.menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}

n.menu-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.menu-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}
.menu-logo-dot {
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-nav-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.menu-nav-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--white);
    transition: left 0.3s ease;
    z-index: 2;
}

.menu-nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--orange);
    transition: width 0.4s ease;
    z-index: -1;
}

.menu-nav-item:hover {
    color: #000000;
    padding-left: 30px;
}

.menu-nav-item:hover::before {
    left: 10px;
    background: #000000;
}

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

.menu-nav-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-nav-item:nth-child(1)::after { background: #FFD700; }
.menu-nav-item:nth-child(2)::after { background: #00D9FF; }
.menu-nav-item:nth-child(3)::after { background: #00FF88; }
.menu-nav-item:nth-child(4)::after { background: #FF10F0; }
.menu-nav-item:nth-child(5)::after { background: #FF6B35; }
.menu-nav-item:nth-child(6)::after { background: #8B5CF6; }

.menu-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-contact {
    margin-bottom: 20px;
}

.menu-contact-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.menu-contact-value {
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 200vh;
    overflow: hidden;
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.animated-background svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    padding: 0 80px;
    text-align: center;
    pointer-events: none;
}

.hero-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 60px;
    overflow: hidden;
}

.hero-title .line {
    display: block;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle .word {
    display: inline-block;
    margin: 0 0.3em 0 0;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.hero-subtitle .word.bright {
    color: rgba(255, 255, 255, 1);
}

.hero-subtitle .word.entertainment-1.bright,
.hero-subtitle .word.entertainment-2.bright {
    color: #FF3473;
}

.hero-subtitle .word.studios-1.bright,
.hero-subtitle .word.studios-2.bright,
.hero-subtitle .word.studios-3.bright {
    color: #93D7D6;
}

.hero-subtitle .word.games-1.bright,
.hero-subtitle .word.games-2.bright {
    color: #FE9BBA;
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

.scroll-arrow {
    font-size: 18px;
    animation: bounce 2s infinite;
    color: var(--orange);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ============================================
   VISION SECTION
   ============================================ */
.vision-mission-section {
    position: relative;
    min-height: 100vh;
    background: #f5f5f5;
    z-index: 100;
    padding: 120px 0;
}

.vision-mission-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 120px;
    align-items: start;
}

.vision-mission-left {
    position: sticky;
    top: 150px;
}

.section-number {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.vision-mission-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(50px, 6vw, 80px);
    font-weight: 900;
    line-height: 0.9;
    color: var(--black);
}

.vision-mission-title span {
    display: block;
}

.vision-mission-right {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.academy-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    text-align: justify;
}

.academy-intro p:last-child {
    margin-bottom: 0;
}

.vm-block {
    margin-bottom: 20px;
}

.vm-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.vm-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

/* ============================================
   MISSION SECTION WITH GRID PIXELATION
   ============================================ */
.mission-grid-section {
    position: relative;
    min-height: 120vh;
    background: #f5f5f5;
    z-index: 100;
}

.mission-grid-section-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: minmax(150px, 1fr);
    z-index: 1;
}

.grid-square {
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.grid-square.dark {
    background-color: #000000;
}

.mission-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 80px;
    opacity: 0;
    text-align: center;
}

.mission-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.mission-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.mission-text {
    font-size: clamp(18px, 2.5vw, 28px);
    line-height: 1.8;
    color: #ffffff;
    font-weight: 400;
}

/* ============================================
   THREE PILLARS SECTION
   ============================================ */
.pillars-section {
    position: relative;
    min-height: 400vh;
    background: #0a0a0a;
    z-index: 100;
    padding: 0;
}

.pillars-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.pillars-header-inline {
    text-align: center;
    padding: 120px 80px 100px;
    background: #0a0a0a;
}

.pillars-header-inline .section-number {
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.pillars-main-title-inline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 20px;
    white-space: nowrap;
}

.pillars-subtitle-inline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    white-space: nowrap;
}

.pillars-stack {
    position: relative;
    padding: 0;
}

.pillar-stack-card {
    position: sticky;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
    will-change: transform, filter;
    transform: translateZ(0);
}

#card-1 {
    top: 0;
    z-index: 1;
}

#card-1 .pillar-card-inner {
    background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 100%);
}

#card-2 {
    top: 0;
    z-index: 2;
}

#card-2 .pillar-card-inner {
    background: linear-gradient(135deg, #FFD54F 0%, #FFCA28 100%);
}

#card-3 {
    top: 0;
    z-index: 3;
}

#card-3 .pillar-card-inner {
    background: linear-gradient(135deg, #FFB74D 0%, #FF9800 100%);
}

.pillar-card-inner {
    width: 100%;
    max-width: 1400px;
    min-height: 600px;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
    will-change: transform;
    transform: translateZ(0);
    position: relative;
}

.pillar-card-content {
    max-width: 100%;
}

.pillar-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    line-height: 1;
}

.pillar-card-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(26, 26, 26, 0.6);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}

.pillar-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 30px;
    max-width: 800px;
    text-align: justify;
}

.view-site-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    display: inline-block;
    padding: 12px 28px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
    z-index: 10;
}

@media (max-width: 1024px) {
    .view-site-btn {
        position: relative;
        top: auto;
        right: auto;
        display: block;
        width: fit-content;
        margin: 0 auto 15px auto;
    }
}

.view-site-btn:hover {
    background: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pillar-projects-scroll {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0 40px 0;
}

.projects-scroll-track {
    display: flex;
    gap: 40px;
    animation: scroll-horizontal 300s linear infinite;
    width: fit-content;
    will-change: transform;
    transform: translateZ(0);
}

.pillar-projects-scroll:hover .projects-scroll-track {
    animation-play-state: paused;
}

@keyframes scroll-horizontal {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.mini-project {
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    width: 280px;
    will-change: transform;
    transform: translateZ(0);
}

.mini-project:hover {
    transform: translate3d(0, -10px, 0);
}

.mini-project img {
    width: 100%;
    height: 320px;
    object-fit: fill;
    border-radius: 12px;
    margin-bottom: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.mini-project span {
    font-size: 9px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block;
    width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
    line-height: 1.3;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-height: 24px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    z-index: 100;
    padding: 120px 0;
}

.why-choose-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
}

.why-choose-header {
    margin-bottom: 80px;
}

.why-choose-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(50px, 6vw, 80px);
    font-weight: 900;
    color: var(--black);
    line-height: 0.9;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.why-item {
    position: relative;
    padding-left: 80px;
}

.why-number {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.why-item-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.why-item-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* ============================================
   LEADERSHIP SECTION
   ============================================ */
.leadership-section {
    position: relative;
    background: #f5f5f5;
    z-index: 100;
    padding: 60px 0 40px 0;
    overflow: hidden;
}

.leadership-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.leadership-header-carousel {
    text-align: center;
    margin-bottom: 50px;
}

.leadership-title-carousel {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(45px, 5vw, 70px);
    font-weight: 900;
    line-height: 0.9;
    color: var(--black);
    margin-bottom: 15px;
}

.leadership-title-carousel span {
    display: block;
}

.leadership-description {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.leadership-carousel {
    overflow: hidden;
    position: relative;
}

.carousel-inner {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-card-inner {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.carousel-slide.center .carousel-card-inner {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.carousel-card-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.carousel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide:not(.center) .carousel-card-image img {
    filter: grayscale(70%);
    opacity: 0.7;
}

.carousel-slide.center .carousel-card-image img {
    filter: grayscale(0%);
    opacity: 1;
}

.carousel-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
}

.carousel-card-content {
    padding: 30px 20px;
    text-align: center;
}

.carousel-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide:not(.center) .carousel-card-name {
    opacity: 0.6;
}

.carousel-card-title {
    font-size: 12px;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide:not(.center) .carousel-card-title {
    opacity: 0.6;
}

.carousel-card-btn {
    padding: 12px 28px;
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.carousel-slide:not(.center) .carousel-card-btn {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.carousel-slide.center .carousel-card-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.carousel-card-btn:hover {
    background: transparent;
    color: #1a1a1a;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-prev {
    left: -70px;
}

.carousel-next {
    right: -70px;
}

.carousel-nav:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background: #d0d0d0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--orange);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   MODAL
   ============================================ */
.team-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.team-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    border-radius: 0;
    animation: modalSlideIn 0.4s ease;
    cursor: auto;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(90deg);
}

.modal-inner {
    display: grid;
    grid-template-columns: 400px 1fr;
    background: #ffffff;
    cursor: default;
}

.modal-image-wrapper {
    position: relative;
    overflow: hidden;
    cursor: default;
}

.modal-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-text {
    padding: 60px;
    cursor: default;
}

.modal-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 10px;
    cursor: default;
}

.modal-text h4 {
    font-size: 16px;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    cursor: default;
}

.modal-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    cursor: text;
    user-select: text;
    text-align: justify;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    min-height: 100vh;
    background: var(--black);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 80px;
    text-align: center;
}

.cta-content {
    max-width: 1000px;
}

.cta-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    color: #ffffff;
    line-height: 0.9;
    margin-bottom: 40px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 20px 50px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn-primary {
    background: var(--orange);
    color: #ffffff;
    border-color: var(--orange);
}

.cta-btn-primary:hover {
    background: transparent;
    color: var(--orange);
}

.cta-btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cta-btn-secondary:hover {
    background: #ffffff;
    color: var(--black);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #4A90E2;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
}

.custom-cursor.clicked {
    width: 30px;
    height: 30px;
}

a, button, .menu-nav-item, .mini-project, .carousel-nav, .carousel-dot, .carousel-card-btn {
    cursor: none;
}

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

/* Tablet */
@media (max-width: 1024px) {
    .vision-mission-container,
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }

    .vision-mission-left {
        position: relative;
        top: 0;
    }

    .pillar-stack-card {
        padding: 0 40px;
    }

    .pillar-card-inner {
        padding: 30px;
        min-height: 500px;
    }

    .view-site-btn {
        position: relative;
        top: auto;
        right: auto;
        font-size: 11px;
        padding: 9px 20px;
        display: block;
        width: fit-content;
        margin: 0 auto 20px auto;
    }

    .mini-project {
        width: 200px;
    }

    .mini-project img {
        height: 250px;
        margin-bottom: 5px;
    }
    
    .mini-project span {
        font-size: 8px;
        min-height: 22px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .modal-inner {
        grid-template-columns: 1fr;
    }

    .modal-image-wrapper {
        height: 300px;
    }

    .modal-text {
        padding: 40px;
    }

    .carousel-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .carousel-card-image {
        height: 300px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo {
        top: 20px;
        left: 20px;
        font-size: 12px;
        max-width: 60%;
    }

    .logo-dot {
        width: 10px;
        height: 10px;
    }

    .menu-btn {
        top: 20px;
        right: 20px;
        padding: 10px 18px;
        font-size: 10px;
    }

    .menu-sidebar {
        width: 100%;
        left: -100%;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .scroll-indicator {
        bottom: 40px;
    }

    .vision-mission-section,
    .why-choose-section,
    .leadership-section {
        padding: 80px 0;
    }

    .vision-mission-container,
    .why-choose-container {
        padding: 0 20px;
    }

    .pillars-section {
        min-height: 300vh;
    }

    .pillars-header-inline {
        padding: 80px 20px 60px;
    }

    .pillars-main-title-inline {
        font-size: 40px;
        white-space: normal;
        line-height: 1.1;
    }

    .pillars-subtitle-inline {
        font-size: 14px;
        white-space: normal;
        line-height: 1.4;
    }

    .pillar-stack-card {
        padding: 0 20px;
        height: auto;
        min-height: 85vh;
        margin-bottom: 40px;
    }

    .pillar-card-inner {
        padding: 40px 30px;
        min-height: auto;
    }

    .pillar-card-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .pillar-card-subtitle {
        font-size: 10px;
        margin-bottom: 15px;
    }

    .pillar-card-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 35px;
    }

    .view-site-btn {
        position: relative;
        top: auto;
        right: auto;
        font-size: 10px;
        padding: 8px 16px;
        display: block;
        width: fit-content;
        margin: 0 auto 20px auto;
    }

    .mini-project {
        width: 170px;
    }

    .mini-project img {
        height: 210px;
        margin-bottom: 5px;
    }

    .mini-project span {
        font-size: 8px;
        min-height: 20px;
    }

    .pillar-projects-scroll {
        padding: 35px 0 50px 0;
    }

    .modal-text {
        padding: 30px 20px;
    }

    .modal-text h3 {
        font-size: 32px;
    }

    .cta-section {
        padding: 80px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
    }

    .carousel-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .carousel-card-image {
        height: 350px;
    }

    .carousel-prev {
        left: 10px;
        width: 40px;
        height: 40px;
    }

    .carousel-next {
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   FOOTER - RELIANCE ANIMATION ACADEMY
   ============================================ */
.site-footer {
    position: relative;
    z-index: 2;
}

/* CTA STRIP */
.footer-cta-strip {
    background: var(--orange);
    padding: 48px 80px;
}

.footer-cta-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-cta-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.45);
    margin-bottom: 8px;
}

.footer-cta-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    color: var(--black);
    letter-spacing: 1px;
    line-height: 1;
}

.footer-cta-heading span {
    color: var(--white);
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    cursor: none;
}

.footer-cta-btn:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.footer-cta-btn svg {
    transition: transform 0.2s;
}

.footer-cta-btn:hover svg {
    transform: translateX(4px);
}

/* MAIN FOOTER BODY */
.footer-body {
    background: #f5f4f0;
    padding: 80px 80px 60px;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 14vw, 180px);
    letter-spacing: 10px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0,0,0,0.06);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* BRAND COL */
.footer-logo {
    width: 150px;
    margin-bottom: 20px;
    display: block;
}

.footer-tagline {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    color: #aaa;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    cursor: none;
}

.footer-social-link:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255,107,53,0.06);
}

/* NAV COLS */
.footer-col-heading {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list li a {
    font-size: 13px;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
    cursor: none;
}

.footer-nav-list li a:hover {
    color: #111;
}

.footer-hours {
    font-size: 12px;
    color: #bbb;
    margin-top: 4px;
}

.footer-location {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 18px;
}

.footer-location-name {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.footer-location-detail {
    font-size: 11px;
    color: #444;
    letter-spacing: 0.3px;
    line-height: 1.7;
}

.footer-map-link {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--orange);
    text-decoration: none;
    margin-top: 6px;
    transition: opacity 0.2s;
}

.footer-map-link:hover {
    opacity: 0.7;
}

/* BOTTOM BAR */
.footer-bottom-bar {
    background: #eeede9;
    border-top: 1px solid #e0dfd9;
    padding: 20px 80px;
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-copy {
    font-size: 11px;
    color: #aaa;
    letter-spacing: 1px;
}

.footer-bottom-divider {
    flex: 1;
    height: 1px;
    background: #ddd;
}

.footer-made {
    font-size: 11px;
    color: #aaa;
    letter-spacing: 1px;
}

/* RESPONSIVE */

/* Tablet — 1024px */
@media (max-width: 1024px) {
    .footer-cta-strip { padding: 44px 40px; }
    .footer-cta-heading { font-size: 36px; }
    .footer-body { padding: 60px 40px; }
    .footer-bottom-bar { padding: 20px 40px; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    .footer-brand-col { grid-column: span 2; }
}

/* Large mobile — 600px */
@media (max-width: 600px) {
    /* CTA strip */
    .footer-cta-strip { padding: 32px 20px; }
    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer-cta-label { font-size: 9px; }
    .footer-cta-heading { font-size: 28px; }
    .footer-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    /* Footer body */
    .footer-body { padding: 44px 20px 36px; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-brand-col { grid-column: span 1; }
    .footer-logo { width: 130px; }
    .footer-tagline { max-width: 100%; }

    /* Nav cols — tighter spacing */
    .footer-col-heading { margin-bottom: 16px; }
    .footer-nav-list { gap: 10px; }
    .footer-nav-list li a,
    .footer-location-name { font-size: 14px; }

    /* Socials */
    .footer-socials { gap: 8px; }
    .footer-social-link { width: 40px; height: 40px; }

    /* Watermark */
    .footer-watermark { font-size: 48px; letter-spacing: 4px; }

    /* Bottom bar */
    .footer-bottom-bar { padding: 16px 20px; }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    .footer-bottom-divider { display: none; }
    .footer-copy,
    .footer-made { font-size: 11px; letter-spacing: 0.5px; }
}