/* ============================================
   Global Styles
   ============================================ */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #6366f1;
    --dark-blue: #0f172a;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Prevent container from affecting banner */
.hero-banner-image .container,
.hero-banner-image .row,
.hero-banner-image .col {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar .row {
    align-items: center;
}

.top-bar .col-md-6 {
    display: flex;
    align-items: center;
}

.top-bar .col-md-6.text-end {
    justify-content: flex-end;
}

.top-bar p {
    color: var(--white);
    margin: 0;
    display: flex;
    align-items: center;
}

.btn-download {
    background: var(--white);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
    vertical-align: middle;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
    background: #f0f0f0;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

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

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

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

/* ============================================
   Hero Banner Image (Full Width)
   ============================================ */
.hero-banner-image {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: block;
    position: relative;
    box-sizing: border-box;
}

.banner-carousel-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-carousel {
    position: relative;
    width: 100%;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 2;
}

.banner-slide.prev {
    transform: translateX(-100%) scale(0.95);
    opacity: 0;
}

.banner-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: block;
    transition: transform 0.5s ease;
    box-sizing: border-box;
    text-align: center;
    height: 100%;
}

.banner-slide.active .banner-image-wrapper {
    animation: zoomIn 1.5s ease-out;
}

.banner-slide.active .banner-image-full {
    animation: fadeInImage 1s ease-out;
}

@keyframes zoomIn {
    0% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInImage {
    0% {
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

.banner-image-full {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 600px;
    max-height: 800px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease, filter 0.6s ease;
    box-sizing: border-box;
}

.banner-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 10;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    margin: 0 auto;
    width: auto;
    backdrop-filter: blur(10px);
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.carousel-indicators .indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: transform 0.4s ease;
}

.carousel-indicators .indicator:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.carousel-indicators .indicator.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.carousel-indicators .indicator.active::before {
    transform: translate(-50%, -50%) scale(1);
    background: rgba(255, 255, 255, 0.2);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   Hero Banner Text Content (Below Image)
   ============================================ */
.hero-banner-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-banner-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, 30px) rotate(180deg);
    }
}

.banner-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    display: block;
    word-wrap: break-word;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    overflow: hidden;
}

.banner-title .text-animate {
    display: inline-block;
}

.banner-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
    animation: slideInLetter 0.6s ease forwards;
}

.banner-title .char.space {
    width: 0.3em;
}

.hero-banner-text:hover .banner-title {
    transform: translateY(-5px);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.banner-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    display: block;
    word-wrap: break-word;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, color 0.3s ease;
    overflow: hidden;
}

.banner-subtitle .text-animate {
    display: inline-block;
}

.banner-subtitle .char {
    display: inline-block;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.5s ease forwards;
}

.banner-subtitle .char.space {
    width: 0.3em;
}

.hero-banner-text:hover .banner-subtitle {
    transform: translateY(-3px);
    color: rgba(255, 255, 255, 1);
}

.banner-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    display: block;
    word-wrap: break-word;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.banner-description .text-animate {
    display: inline-block;
}

.banner-description .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.4s ease forwards;
}

.banner-description .char.space {
    width: 0.3em;
}

.hero-banner-text:hover .banner-description {
    transform: translateY(-3px);
    opacity: 1;
}

.btn-animate {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    animation: bounceIn 0.8s ease 2s forwards;
}

@keyframes slideInLetter {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) rotateX(45deg) scale(1.05);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.9);
    }
    60% {
        opacity: 0.8;
        transform: translateX(5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.animate-fade-in-delay-3 {
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    background: var(--gradient-3);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.4);
    background: var(--gradient-3);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-outline-light {
    border: 2px solid var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================================
   Sections
   ============================================ */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-3);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.intro-content-container:hover .section-title::after {
    width: 120px;
}

.intro-section {
    padding: 80px 0;
    background: var(--light-bg);
    position: relative;
}

.intro-content-container {
    background: var(--white);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInScale 1.2s ease-out 0.5s both;
    border: 1px solid rgba(79, 172, 254, 0.1);
}

.intro-content-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.15), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.intro-content-container:hover::before {
    left: 100%;
}

.intro-content-container::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.08) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.intro-content-container > * {
    position: relative;
    z-index: 2;
}

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

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.intro-content-container:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(79, 172, 254, 0.25);
    border-color: rgba(79, 172, 254, 0.3);
}

.intro-content-container .section-title {
    animation: slideInDown 0.8s ease-out 0.7s both;
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.intro-content-container:hover .section-title {
    transform: translateY(-3px);
    color: var(--secondary-color);
}

.intro-content-container .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
    line-height: 1.7;
    transition: all 0.4s ease;
}

.intro-content-container:hover .lead {
    transform: translateY(-2px);
    color: var(--text-dark);
}

.intro-content-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 1.1s both;
    line-height: 1.8;
    transition: all 0.4s ease;
}

.intro-content-container:hover p {
    transform: translateY(-2px);
}

.intro-content-container p strong {
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.intro-content-container:hover p strong {
    color: var(--secondary-color);
}

.highlight-text-container {
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    padding: 25px 30px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.highlight-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    transition: width 0.5s ease;
    z-index: -1;
}

.highlight-text:hover::before {
    width: 100%;
}

.highlight-text:hover {
    border-left-color: var(--accent-color);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

/* ============================================
   Stats Container
   ============================================ */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 0;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

/* ============================================
   Quick Links / Link Cards
   ============================================ */
.quick-links {
    padding: 80px 0;
}

.link-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.link-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.link-card:hover::after {
    transform: scaleX(1);
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.link-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.link-card:hover .link-icon {
    transform: rotate(-5deg) scale(1.1);
}

.link-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.link-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

.btn-link i {
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   Content Pages
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #667eea 100%);
    background-size: 200% 200%;
    padding: 100px 0 60px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite, rotate 20s linear infinite;
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 1s ease-out 0.3s forwards;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.page-header:hover h1 {
    transform: translateY(-5px) scale(1.05);
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: width 0.6s ease;
}

.page-header:hover h1::after {
    width: 100px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.page-header:hover p {
    transform: translateY(-3px);
    opacity: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

.content-section {
    padding: 80px 0;
    background: var(--light-bg);
    min-height: 60vh;
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.content-section .container {
    position: relative;
    z-index: 2;
}

.content-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(79, 172, 254, 0.1);
    animation: fadeInScale 1s ease-out both;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.content-card:hover::before {
    left: 100%;
}

.content-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.content-card > * {
    position: relative;
    z-index: 2;
}

.content-card:nth-child(1) {
    animation-delay: 0.1s;
}

.content-card:nth-child(2) {
    animation-delay: 0.3s;
}

.content-card:nth-child(3) {
    animation-delay: 0.5s;
}

.content-card:nth-child(4) {
    animation-delay: 0.7s;
}

.content-card:hover {
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.2);
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(79, 172, 254, 0.3);
}

.content-card h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--gradient-3);
    transition: all 0.4s ease;
    position: relative;
}

.content-card:hover h2 {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.content-card h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-3);
    transition: width 0.4s ease;
}

.content-card:hover h2::after {
    width: 100%;
}

.content-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-card ul {
    list-style: none;
    padding-left: 0;
}

.content-card ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInRight 0.6s ease forwards;
}

.content-card ul li:nth-child(1) { animation-delay: 0.1s; }
.content-card ul li:nth-child(2) { animation-delay: 0.2s; }
.content-card ul li:nth-child(3) { animation-delay: 0.3s; }
.content-card ul li:nth-child(4) { animation-delay: 0.4s; }
.content-card ul li:nth-child(5) { animation-delay: 0.5s; }
.content-card ul li:nth-child(6) { animation-delay: 0.6s; }
.content-card ul li:nth-child(7) { animation-delay: 0.7s; }
.content-card ul li:nth-child(8) { animation-delay: 0.8s; }

.content-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.content-card ul li:hover {
    color: var(--primary-color);
    padding-left: 35px;
    transform: translateX(5px);
}

.content-card ul li:hover::before {
    color: var(--accent-color);
    transform: scale(1.2);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlight-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    transition: width 0.5s ease;
    z-index: 0;
}

.highlight-box:hover::before {
    width: 100%;
}

.highlight-box:hover {
    transform: translateX(5px);
    border-left-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(79, 172, 254, 0.2);
}

.highlight-box > * {
    position: relative;
    z-index: 1;
}

.highlight-box h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.highlight-box:hover h4 {
    color: var(--secondary-color);
}

.objective-list {
    list-style: none;
    padding: 0;
}

.objective-list li {
    background: var(--white);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.objective-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent-color);
}

.country-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.country-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.country-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.country-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.organization-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.organization-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.organization-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.organization-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.organization-item:hover i {
    color: var(--accent-color);
    transform: scale(1.2);
}

.organization-item span {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.organization-item:hover span {
    color: var(--primary-color);
}

/* ============================================
   Contact Page
   ============================================ */
.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--gradient-3);
    color: var(--white);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--secondary-color);
    width: 40px;
}

.contact-item:hover i {
    color: var(--white);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .hero-banner-image {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    .banner-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: block !important;
        text-align: center !important;
    }
    
    .banner-carousel {
        min-height: 400px !important;
        max-height: 550px !important;
    }
    
    .banner-image-full {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 400px !important;
        max-height: 550px !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    .carousel-indicators {
        bottom: 10px !important;
        padding: 8px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
    
    .carousel-indicators .indicator {
        width: 10px !important;
        height: 10px !important;
    }
    
    .carousel-indicators .indicator.active {
        width: 25px !important;
    }
    
    .hero-banner-text {
        padding: 40px 15px;
    }
    
    .banner-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .banner-title .char {
        animation-duration: 0.4s;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .banner-subtitle .char {
        animation-duration: 0.3s;
    }
    
    .banner-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .banner-description .char {
        animation-duration: 0.25s;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 70px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
        animation-duration: 0.8s;
    }
    
    .page-header p {
        font-size: 1rem;
        animation-duration: 0.8s;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 60px 0 30px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
    
    .hero-banner-image {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        left: 0 !important;
        right: 0 !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .banner-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        overflow: hidden !important;
        display: block !important;
        text-align: center !important;
    }
    
    .banner-carousel {
        min-height: 300px !important;
        max-height: 450px !important;
    }
    
    .banner-image-full {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 300px !important;
        max-height: 450px !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .carousel-indicators {
        bottom: 8px !important;
        padding: 6px !important;
        gap: 8px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
    
    .carousel-indicators .indicator {
        width: 8px !important;
        height: 8px !important;
    }
    
    .carousel-indicators .indicator.active {
        width: 20px !important;
    }
    
    .banner-image-overlay {
        width: 100% !important;
        height: 100% !important;
    }
}

/* Additional fix for very small screens */
@media (max-width: 400px) {
    .hero-banner-image {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .banner-image-wrapper {
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    .banner-image-full {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 250px !important;
        max-height: 350px !important;
        margin: 0 auto !important;
    }
    
    .hero-banner-text {
        padding: 30px 10px;
    }
    
    .banner-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .banner-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .top-bar {
        text-align: center;
    }
    
    .top-bar .text-end {
        text-align: center !important;
        margin-top: 10px;
    }
    
    .btn-download {
        font-size: 12px;
        padding: 6px 15px;
    }
}

/* ============================================
   Scroll Animations
   ============================================ */
.scroll-animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure content cards are always visible */
.content-card.scroll-animate,
.contact-info.scroll-animate,
.objective-list.scroll-animate {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* ============================================
   Video Section
   ============================================ */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.video-container-wrapper {
    position: relative;
    z-index: 1;
    animation: fadeInScale 1.2s ease-out 0.3s both;
}

.video-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    animation: slideInDown 0.8s ease-out 0.5s both;
}

.video-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-3);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.video-container-wrapper:hover .video-section-title::after {
    width: 150px;
}

.video-section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.video-wrapper {
    position: relative;
    padding: 30px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: fadeInScale 1s ease-out 0.9s both;
    border: 1px solid rgba(79, 172, 254, 0.1);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 1;
    pointer-events: none;
}

.video-wrapper:hover::before {
    left: 100%;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.video-wrapper:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 80px rgba(79, 172, 254, 0.25);
    border-color: rgba(79, 172, 254, 0.3);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: var(--dark-blue);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    z-index: 2;
}

.video-container:hover {
    box-shadow: 0 20px 50px rgba(79, 172, 254, 0.4);
    transform: scale(1.02);
}

.jci-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: all 0.5s ease;
    background: #000;
    aspect-ratio: 9 / 16; /* Portrait aspect ratio */
    object-fit: cover;
}

.video-container:hover .jci-video {
    filter: brightness(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: auto;
    border-radius: 20px;
    z-index: 3;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-container.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-button-wrapper {
    position: relative;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border: 4px solid var(--white);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.play-button:hover::before {
    width: 120px;
    height: 120px;
}

.play-button:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.6);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.play-button:active {
    transform: scale(1.05) rotate(0deg);
}

.play-button i {
    margin-left: 5px; /* Adjust play icon position */
    transition: transform 0.3s ease;
}

.play-button:hover i {
    transform: scale(1.2);
}

.video-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
    pointer-events: none;
    z-index: 4;
    opacity: 0;
}

.video-container:hover .video-shine {
    opacity: 1;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(79, 172, 254, 0.6);
    }
}

/* Video controls styling */
.jci-video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.5);
}

.jci-video::-webkit-media-controls-play-button {
    background-color: var(--secondary-color);
    border-radius: 50%;
}

/* ============================================
   New About Page Styles
   ============================================ */

/* Animated Images */
.image-card {
    padding: 0 !important;
    overflow: hidden;
}

.animated-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeInScale 0.8s ease-out;
    transition: all 0.5s ease;
}

.animated-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
    object-fit: cover;
    min-height: 300px;
    max-height: 400px;
}

.animated-image-wrapper:hover .animated-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.animated-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.animated-image-wrapper:hover::before {
    left: 100%;
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
}

.info-box:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.15);
    border-left-color: var(--secondary-color);
}

.info-box h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.info-box p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.8;
}

/* Concept Boxes */
.concept-box {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    height: 100%;
    animation: fadeInScale 0.6s ease-out;
}

.concept-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(79, 172, 254, 0.2);
    border-color: var(--primary-color);
}

.concept-box h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.concept-box p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Meeting Types */
.meeting-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.meeting-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.4s ease;
    animation: slideInLeft 0.6s ease-out;
}

.meeting-item:nth-child(1) { animation-delay: 0.1s; }
.meeting-item:nth-child(2) { animation-delay: 0.2s; }
.meeting-item:nth-child(3) { animation-delay: 0.3s; }
.meeting-item:nth-child(4) { animation-delay: 0.4s; }

.meeting-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.15);
    border-left-color: var(--secondary-color);
}

.meeting-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
    transition: all 0.4s ease;
}

.meeting-item:hover .meeting-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.meeting-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.meeting-content p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Roles Grid */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.role-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    animation: fadeInScale 0.6s ease-out;
}

.role-item:nth-child(1) { animation-delay: 0.1s; }
.role-item:nth-child(2) { animation-delay: 0.2s; }
.role-item:nth-child(3) { animation-delay: 0.3s; }
.role-item:nth-child(4) { animation-delay: 0.4s; }
.role-item:nth-child(5) { animation-delay: 0.5s; }
.role-item:nth-child(6) { animation-delay: 0.6s; }

.role-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.2);
    border-color: var(--primary-color);
}

.role-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.role-item:hover i {
    color: var(--secondary-color);
    transform: scale(1.2) rotate(5deg);
}

.role-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.role-item p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Highlight Card */
.highlight-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid var(--primary-color);
}

.highlight-card:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-color: var(--secondary-color);
}

.growth-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.growth-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.growth-list li i {
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

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

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.4s ease;
    animation: slideInRight 0.6s ease-out;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }
.step-item:nth-child(5) { animation-delay: 0.5s; }

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.15);
    border-left-color: var(--secondary-color);
}

.step-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
    transition: all 0.4s ease;
}

.step-item:hover .step-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.step-item p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Policy Box */
.policy-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ff9800;
    margin-top: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.policy-box p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.policy-box ul {
    list-style: none;
    padding-left: 0;
}

.policy-box ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.policy-box ul li::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ff9800;
}

/* Guidelines Box */
.guidelines-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.guidelines-box h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

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

.guidelines-box ol {
    padding-left: 25px;
    color: var(--text-light);
}

.guidelines-box ol li {
    padding: 8px 0;
    line-height: 1.8;
}

/* Presentation Box */
.presentation-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.presentation-box ul {
    list-style: none;
    padding-left: 0;
}

.presentation-box ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.presentation-box ul li::before {
    content: '\f0c8';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* G-Notes Box */
.gnotes-box {
    padding: 20px 0;
}

.gnotes-box p.lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.gnotes-box ul {
    list-style: none;
    padding-left: 0;
}

.gnotes-box ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.gnotes-box ul li::before {
    content: '\f004';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #e91e63;
}

/* Learning Box */
.learning-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.learning-box ul {
    list-style: none;
    padding-left: 0;
}

.learning-box ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.learning-box ul li::before {
    content: '\f19d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Invitees Box */
.invitees-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.invitees-box ul {
    list-style: none;
    padding-left: 0;
}

.invitees-box ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.invitees-box ul li::before {
    content: '\f234';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Growth Grid */
.growth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.growth-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    color: var(--text-light);
    font-weight: 500;
    animation: fadeInScale 0.6s ease-out;
}

.growth-item:nth-child(1) { animation-delay: 0.1s; }
.growth-item:nth-child(2) { animation-delay: 0.2s; }
.growth-item:nth-child(3) { animation-delay: 0.3s; }
.growth-item:nth-child(4) { animation-delay: 0.4s; }
.growth-item:nth-child(5) { animation-delay: 0.5s; }
.growth-item:nth-child(6) { animation-delay: 0.6s; }

.growth-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(79, 172, 254, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.growth-item i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Quote Card */
.quote-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid var(--primary-color);
    text-align: center;
    padding: 50px 40px !important;
}

.quote-content {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 3s ease-in-out infinite;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 30px 0 20px;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.quote-author {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 50px 40px !important;
    border: none;
}

.cta-card h2 {
    color: var(--white) !important;
    margin-bottom: 0;
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.4);
}

/* ============================================
   Responsive Styles for New About Page Elements
   ============================================ */

@media (max-width: 768px) {
    .animated-image {
        min-height: 250px;
        max-height: 300px;
    }
    
    .roles-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .growth-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
    
    .cta-card h2 {
        font-size: 1.8rem;
    }
    
    .meeting-item {
        flex-direction: column;
        text-align: center;
    }
    
    .meeting-number {
        margin: 0 auto;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon {
        margin: 0 auto;
    }
    
    /* Video Section Responsive */
    .video-section {
        padding: 60px 0;
    }
    
    .video-section-title {
        font-size: 2.2rem;
    }
    
    .video-section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .video-wrapper {
        padding: 20px;
        border-radius: 20px;
    }
    
    .video-container {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .jci-video {
        border-radius: 15px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .animated-image {
        min-height: 200px;
        max-height: 250px;
    }
    
    .content-card {
        padding: 25px 20px;
    }
    
    /* Video Section Responsive */
    .video-section {
        padding: 40px 0;
    }
    
    .video-section-title {
        font-size: 1.8rem;
    }
    
    .video-section-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .video-wrapper {
        padding: 15px;
        border-radius: 15px;
    }
    
    .video-container {
        border-radius: 12px;
    }
    
    .jci-video {
        border-radius: 12px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-width: 3px;
    }
    
    .info-box,
    .concept-box,
    .policy-box,
    .guidelines-box,
    .presentation-box,
    .learning-box,
    .invitees-box {
        padding: 20px 15px;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
    }
    
    .role-item {
        padding: 25px 15px;
    }
    
    .meeting-item,
    .step-item {
        padding: 20px 15px;
    }
    
    .quote-card {
        padding: 30px 20px !important;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
    
    .cta-card {
        padding: 35px 25px !important;
    }
    
    .cta-card h2 {
        font-size: 1.5rem;
    }
    
    .growth-item {
        padding: 15px;
        font-size: 0.95rem;
    }
}

