/* ================================
   ABOUT HERO SECTION - ULTRA MODERN
================================ */
.about-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #ebf4fe 100%);
}

/* Animated Background Shapes */
.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #155dfc, #3b82f6);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4d9fff, #155dfc);
    bottom: -150px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #3b82f6, #155dfc);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.08;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.12;
    }
}

/* Content Container */
.about-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    padding: 0 40px;
    margin: 0 auto;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(21, 93, 252, 0.08);
    border: 1px solid rgba(21, 93, 252, 0.15);
    border-radius: 50px;
    color: #155dfc;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge svg {
    stroke: #155dfc;
    animation: rotate 3s linear infinite;
}

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

/* Hero Title */
.about-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, #155dfc 0%, #4d9fff 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #155dfc 0%, #3b82f6 100%);
    border-radius: 2px;
    animation: slideIn 0.8s ease-out 0.5s backwards;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Hero Description */
.about-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    max-width: 750px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Hero Buttons */
.about-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: #155dfc;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #155dfc;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(21, 93, 252, 0.2);
}

.btn-primary:hover {
    background: #1249d6;
    border-color: #1249d6;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(21, 93, 252, 0.3);
}

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

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #155dfc;
    color: #155dfc;
    transform: translateY(-2px);
}


/* Scroll Indicator - Hidden for compact hero */
.scroll-indicator {
    display: none;
}

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

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

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

/* Large Tablets and Below */
@media (max-width: 1024px) {
    .about-hero {
        padding: 80px 0 60px;
    }

    .about-hero-title {
        font-size: 48px;
    }

    .hero-shape-1 {
        width: 400px;
        height: 400px;
    }

    .hero-shape-2 {
        width: 300px;
        height: 300px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 50px;
    }

    .about-hero .container {
        padding: 0 20px;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-description {
        font-size: 16px;
    }

    .about-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0 40px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }

    .about-hero-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-hero-description {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .hero-shape-1,
    .hero-shape-2 {
        display: none;
    }
}

/* ================================
   ACHIEVEMENTS SECTION
================================ */
.achievements-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(235, 244, 254, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.achievements-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    padding: 0 40px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin: 0;
}

.section-title span {
    color: #155dfc;
}

.highlight-text {
    color: #155dfc;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Achievement Card */
.achievement-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    background: #ffffff;
    border: 1px solid rgba(21, 93, 252, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 93, 252, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: rgba(21, 93, 252, 0.2);
    box-shadow: 0 15px 40px rgba(21, 93, 252, 0.12);
}

/* Achievement Icon */
.achievement-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ebf4fe 0%, #f5f9ff 100%);
    border-radius: 20px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.achievement-card:hover .achievement-icon {
    background: linear-gradient(135deg, #155dfc 0%, #3b82f6 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(21, 93, 252, 0.3);
}

.achievement-icon svg {
    stroke: #155dfc;
    transition: all 0.4s ease;
}

.achievement-card:hover .achievement-icon svg {
    stroke: #ffffff;
    transform: scale(1.1);
}

/* Achievement Number */
.achievement-number {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    line-height: 1;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-number {
    color: #155dfc;
    transform: scale(1.05);
}

/* Achievement Label */
.achievement-label {
    font-size: 15px;
    color: #666;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* Staggered Animation on Scroll */
.achievement-card {
    animation: fadeInScale 0.6s ease-out backwards;
}

.achievement-card:nth-child(1) { animation-delay: 0.1s; }
.achievement-card:nth-child(2) { animation-delay: 0.15s; }
.achievement-card:nth-child(3) { animation-delay: 0.2s; }
.achievement-card:nth-child(4) { animation-delay: 0.25s; }
.achievement-card:nth-child(5) { animation-delay: 0.3s; }
.achievement-card:nth-child(6) { animation-delay: 0.35s; }
.achievement-card:nth-child(7) { animation-delay: 0.4s; }
.achievement-card:nth-child(8) { animation-delay: 0.45s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ================================
   ACHIEVEMENTS RESPONSIVE
================================ */

/* Large Tablets */
@media (max-width: 1024px) {
    .achievements-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 38px;
    }

    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .achievement-card {
        padding: 32px 20px;
    }

    .achievement-icon {
        width: 70px;
        height: 70px;
    }

    .achievement-number {
        font-size: 28px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .achievements-section {
        padding: 60px 0;
    }

    .achievements-section .container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .achievement-card {
        padding: 28px 16px;
    }

    .achievement-icon {
        width: 64px;
        height: 64px;
    }

    .achievement-icon svg {
        width: 32px;
        height: 32px;
    }

    .achievement-number {
        font-size: 24px;
    }

    .achievement-label {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .achievements-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .achievement-card {
        padding: 24px 16px;
    }

    .achievement-icon {
        width: 60px;
        height: 60px;
    }

    .achievement-icon svg {
        width: 28px;
        height: 28px;
    }

    .achievement-number {
        font-size: 26px;
    }

    .achievement-label {
        font-size: 13px;
    }
}

/* ================================
   HISTORY & MISSION SECTION
================================ */
.history-mission-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

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

.history-mission-wrapper {
    margin-top: 60px;
}

/* History & Mission Grid */
.history-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}

.hm-card {
    background: #ffffff;
    border: 1px solid rgba(21, 93, 252, 0.1);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #155dfc 0%, #3b82f6 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hm-card:hover {
    transform: translateY(-8px);
    border-color: rgba(21, 93, 252, 0.25);
    box-shadow: 0 15px 40px rgba(21, 93, 252, 0.12);
}

/* Icon Wrapper */
.hm-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.hm-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ebf4fe 0%, #f5f9ff 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hm-card:hover .hm-icon {
    background: linear-gradient(135deg, #155dfc 0%, #3b82f6 100%);
    transform: scale(1.1) rotate(5deg);
}

.hm-icon svg {
    stroke: #155dfc;
    transition: all 0.3s ease;
}

.hm-card:hover .hm-icon svg {
    stroke: #ffffff;
}

/* Card Title */
.hm-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
    letter-spacing: 1px;
}

.text-blue {
    color: #155dfc;
    font-weight: 700;
}

/* Card Text */
.hm-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Image Section */
.hm-image-section {
    display: flex;
    justify-content: center;
}

.hm-image-container {
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(21, 93, 252, 0.1);
    transition: all 0.4s ease;
}

.hm-image-container:hover {
    box-shadow: 0 20px 60px rgba(21, 93, 252, 0.15);
    transform: translateY(-5px);
}

.hm-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hm-image-container:hover img {
    transform: scale(1.05);
}

/* ================================
   HISTORY & MISSION RESPONSIVE
================================ */

/* Large Tablets */
@media (max-width: 1024px) {
    .history-mission-section {
        padding: 80px 0;
    }

    .hm-container {
        padding: 0 30px;
    }

    .history-mission-wrapper {
        margin-top: 50px;
    }

    .hm-card {
        padding: 32px 24px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .history-mission-section {
        padding: 60px 0;
    }

    .hm-container {
        padding: 0 20px;
    }

    .history-mission-wrapper {
        margin-top: 40px;
    }

    .history-mission-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .hm-card {
        padding: 28px 20px;
    }

    .hm-icon {
        width: 64px;
        height: 64px;
    }

    .hm-icon svg {
        width: 24px;
        height: 24px;
    }

    .hm-card-title {
        font-size: 15px;
    }

    .hm-card-text {
        font-size: 14px;
    }

    .hm-image-container {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .history-mission-section {
        padding: 50px 0;
    }

    .history-mission-wrapper {
        margin-top: 30px;
    }

    .history-mission-grid {
        gap: 20px;
        margin-bottom: 30px;
    }

    .hm-card {
        padding: 24px 20px;
    }

    .hm-icon {
        width: 60px;
        height: 60px;
    }

    .hm-icon svg {
        width: 22px;
        height: 22px;
    }

    .hm-card-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .hm-card-text {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* ================================
   MEDIA PRESENCE SECTION
================================ */
.media-presence {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f7ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.media-presence::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(21, 93, 252, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.media-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.media-presence .section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* Media Slider Wrapper */
.media-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.media-slider-wrapper::before,
.media-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.media-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #f8fafc 0%, transparent 100%);
}

.media-slider-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #f8fafc 0%, transparent 100%);
}

/* Media Slider */
.media-slider {
    display: flex;
    gap: 30px;
    animation: slideMedia 30s linear infinite;
    width: fit-content;
}

.media-slider:hover {
    animation-play-state: paused;
}

@keyframes slideMedia {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Media Card */
.media-card {
    flex-shrink: 0;
    width: 340px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(21, 93, 252, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.media-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #155dfc 0%, #3b82f6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(21, 93, 252, 0.15);
    border-color: rgba(21, 93, 252, 0.2);
}

/* Media Logo */
.media-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(21, 93, 252, 0.03) 0%, rgba(21, 93, 252, 0.01) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.media-card:hover .media-logo {
    background: linear-gradient(135deg, rgba(21, 93, 252, 0.08) 0%, rgba(21, 93, 252, 0.04) 100%);
    transform: scale(1.05);
}

.media-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.media-card:hover .media-logo img {
    filter: grayscale(0%);
}

/* Media Logo Text */
.media-logo-text {
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(21, 93, 252, 0.03) 0%, rgba(21, 93, 252, 0.01) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.media-card:hover .media-logo-text {
    background: linear-gradient(135deg, rgba(21, 93, 252, 0.08) 0%, rgba(21, 93, 252, 0.04) 100%);
    transform: scale(1.05);
}

/* Media Description */
.media-description {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
}

.media-card:hover .media-description {
    color: #1a1a2e;
}

/* Media Presence Responsive */
@media (max-width: 768px) {
    .media-presence {
        padding: 60px 0;
    }

    .media-container {
        padding: 0 20px;
    }

    .media-presence .section-title {
        margin-bottom: 40px;
    }

    .media-slider {
        gap: 20px;
    }

    .media-card {
        width: 300px;
        padding: 32px 24px;
    }

    .media-logo,
    .media-logo-text {
        height: 70px;
        margin-bottom: 20px;
    }

    .media-description {
        font-size: 14px;
    }

    .media-slider-wrapper::before,
    .media-slider-wrapper::after {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .media-presence {
        padding: 50px 0;
    }

    .media-slider {
        gap: 16px;
    }

    .media-card {
        width: 280px;
        padding: 28px 20px;
    }

    .media-logo,
    .media-logo-text {
        height: 60px;
        margin-bottom: 16px;
    }

    .media-logo-text {
        font-size: 28px;
    }

    .media-description {
        font-size: 13px;
    }

    .media-slider-wrapper::before,
    .media-slider-wrapper::after {
        width: 50px;
    }
}
