/* ======================================
   GLOBAL SPACING
====================================== */
.section-padding {
    padding: 80px 0;
}

/* ======================================
   HERO SECTION - SAME AS OTHER PAGES
====================================== */
#about-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 100%), url('../images/about.jpg') center/cover no-repeat;
    height: 85vh;
    position: relative;
    color: white;
    overflow: hidden;
}

#about-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Animated Shapes */
.animated-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.6;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.hero-badge i {
    color: #ffd700;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    animation: bounce 2s infinite;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ======================================
   OUR STORY
====================================== */
#our-story .about-img {
    border-radius: 18px;
    transition: transform .3s ease, box-shadow .3s ease;
}

#our-story .about-img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ======================================
   FACILITIES
====================================== */
.facility-box {
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 16px;
}

.facility-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.facility-img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.facility-box i {
    color: #081c34ff;
}

/* ===========================
   OUR VALUES — CARDS
   =========================== */
#values {
    background: #f9f9f9;
}

.value-card {
    background: #fff;
    height: 150px;
    border-left: 6px solid #081c34;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

/* Hover animation */
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ===========================
   VERTICAL INFINITE CAROUSEL
   =========================== */
.vertical-carousel {
    width: 320px;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform-style: preserve-3d;
}

/* Smooth scrolling track */
.vertical-carousel .carousel-track {
    display: flex;
    flex-direction: column;
    animation: scrollDown 14s linear infinite;
}

.vertical-carousel img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;

    /* slight pop effect when loaded */
    transform: scale(1);
    animation: fadeZoomIn 1s ease forwards;
}

/* Infinite downward scrolling */
@keyframes scrollDown {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Smooth zoom fade for each image */
@keyframes fadeZoomIn {
    0%   { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

/* ======================================
   TYPOGRAPHY
====================================== */
h2 {
    font-weight: 700;
}

p {
    line-height: 1.7;
}

/* ======================================
   RESPONSIVE DESIGN
====================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    #about-hero {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    #about-hero {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* ======================================
   AOS SMOOTH TRANSITION
====================================== */
[data-aos] {
    transition-duration: 900ms !important;
}