/* ============================================
   OUR STORY PAGE STYLES
   ============================================ */

/* Hero Section */
.our-story-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../assets/images/Asset 6 1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: 0;
    overflow: hidden;
}

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

.hero-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    animation: heroFloat 25s infinite ease-in-out;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

.hero-shape-4 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 25%;
    animation-delay: 9s;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translate(40px, -40px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translate(30px, 40px) rotate(270deg);
        opacity: 0.7;
    }
}

.our-story-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.75) 0%, rgba(13, 27, 42, 0.65) 100%);
    z-index: 1;
}

.our-story-hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

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

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.hero-badge i {
    color: #4ade80;
}

.our-story-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.our-story-hero-subtitle {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.our-story-hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Hero Highlights */
.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 180px;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content {
    text-align: left;
}

.highlight-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.highlight-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.our-story-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.our-story-learn-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 35px;
    border-radius: 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.our-story-learn-btn:hover {
    background-color: white;
    color: #00399E;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.our-story-cta-arrow {
    width: 45px;
    height: 45px;
    /* filter: brightness(0) invert(1); */
    transition: transform 0.3s ease;
}

.our-story-hero-cta:hover .our-story-cta-arrow {
    transform: translateY(-5px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CEO's Message Section */
.ceo-message-section {
    background-color: #00399E;
    padding: 100px 0;
    padding-bottom: 0px !important;
    position: relative;
    overflow: hidden;
}

.ceo-message-section .container {
    position: relative;
    z-index: 1;
}

.ceo-message-section .row {
    position: relative;
    align-items: flex-start !important;
}

.ceo-message-section .col-lg-6:first-child {
    position: relative;
    z-index: 2;
    /* padding-right: 2rem; */
}

.ceo-message-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.ceo-message-content {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.ceo-message-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.ceo-message-content p:last-child {
    margin-bottom: 0;
    text-align: justify;
}

/* CEO Image Wrapper */
/* .ceo-message-section .col-lg-6:last-child {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
} */

.ceo-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 11rem 0;
    padding-bottom: 0px;
    margin-top: 12px;
}

.ceo-image-wrapper {
    position: relative;
}

.ceo-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.ceo-image-wrapper img {
    width: 100%;
    max-width: 622px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 3;
    padding-bottom: 0px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CEO Signature */
.ceo-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.signature-line {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
}

.signature-text {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 0.95rem;
    margin: 0;
}

/* Key Aspiration Section */
.key-aspiration-content {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.key-aspiration-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 20px;
    color: #fbbf24;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.key-aspiration-badge i {
    color: #fbbf24;
}

.key-aspiration-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.key-aspiration-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 30px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(26, 54, 93, 0.2), transparent);
}

.mission-vision-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(26, 54, 93, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue, #1a365d) 0%, #4299e1 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(26, 54, 93, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue, #1a365d) 0%, #4299e1 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.25);
    transition: all 0.3s ease;
}

.mission-vision-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(26, 54, 93, 0.35);
}

/* ============================================
   STATS SECTION (from About)
   ============================================ */
.stats-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #00399E;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* ============================================
   TIMELINE / ACHIEVEMENTS SECTION (from About)
   ============================================ */
.timeline-section {
    padding: 80px 0;
    background-color: white;
}

.achievements-carousel-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.achievements-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00399E;
    border: 2px solid #00399E;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    opacity: 1;
}

.achievements-nav-btn:hover {
    background: white;
    color: #00399E;
    border-color: #00399E;
}

.achievements-nav-btn i {
    font-size: 1rem;
}

.achievements-nav-btn.carousel-control-prev,
.achievements-nav-btn.carousel-control-next {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: 50px;
    height: 50px;
    opacity: 1;
}

.achievements-nav-btn .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Show/hide carousels based on screen size */
.achievements-carousel-desktop {
    display: block;
}

.achievements-carousel-mobile {
    display: none;
}

@media (max-width: 767.98px) {
    .achievements-carousel-desktop {
        display: none;
    }
    
    .achievements-carousel-mobile {
        display: block;
    }
}

/* ============================================
   SUSTAINABLE FUTURE SECTION (from About)
   ============================================ */
.sustainable-future-section {
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.sustainable-future-wrapper {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.sustainable-future-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sustainable-future-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sustainable-future-overlay {
    position: relative;
    z-index: 2;
    width: 50%;
    margin-left: auto;
    padding: 81px 110px;
    min-height: 600px;
    display: flex;
    align-items: center;
    /* clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%); */

}

.sustainable-future-content {
    color: white;
}

.sustainable-future-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.sustainable-future-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.sustainable-future-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.sustainable-learn-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sustainable-learn-btn:hover {
    background: white;
    color: #00399E;
}

.sustainable-arrow-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sustainable-arrow-circle:hover {
    background: white;
}

.sustainable-arrow-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.sustainable-arrow-circle:hover .sustainable-arrow-icon {
    filter: brightness(0) invert(0);
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.25rem;
}

.card-content {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}
.ceo-logo-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    overflow: visible;
    pointer-events: none;
}

.ceo-logo-bg-element {
    position: absolute;
    width: 400px;
    height: auto;
    opacity: 0.3;
}

.ceo-logo-bg-1 {
    position: absolute;
    top: -276px;
    right: 62px;
}

.ceo-logo-bg-2 {
    bottom: -100px;
    left: -150px;
    transform: rotate(-15deg);
}

/* Beaconhouse Group Header Section */
.beaconhouse-group-header-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.beaconhouse-group-header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.02) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.beaconhouse-group-header-section .container {
    position: relative;
    z-index: 1;
}

.beaconhouse-group-header-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.beaconhouse-group-logo-wrapper {
    display: inline-block;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 102, 204, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 102, 204, 0.05);
    position: relative;
    overflow: hidden;
}

.beaconhouse-group-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.beaconhouse-group-logo-wrapper:hover::before {
    left: 100%;
}

.beaconhouse-group-logo-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 102, 204, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 102, 204, 0.1);
}

.beaconhouse-group-header-content .beaconhouse-group-logo {
    max-width: 220px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.beaconhouse-group-header-content .beaconhouse-group-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #00399E;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
    position: relative;
}

.beaconhouse-group-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00399E, rgba(0, 102, 204, 0.3));
    border-radius: 2px;
    margin-top: 10px;
}

.beaconhouse-group-description-wrapper {
    padding-left: 40px;
    position: relative;
}

.beaconhouse-group-description-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00399E, rgba(0, 102, 204, 0.3));
    border-radius: 2px;
}

.beaconhouse-group-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.beaconhouse-group-description:last-child {
    margin-bottom: 0;
}

.beaconhouse-group-description strong {
    color: #00399E;
    font-weight: 600;
    position: relative;
}

.beaconhouse-group-section-connector {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.2), transparent);
    margin: 0 auto;
    width: 80%;
    position: relative;
    bottom: 0;
}

/* .beaconhouse-group-section-connector::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #00399E;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 1), 0 0 0 6px rgba(0, 102, 204, 0.2);
} */

/* Beaconhouse Group Section */
.beaconhouse-group-section {
    position: relative;
    width: 100%;
    min-height: 77vh;
    overflow: hidden;
    padding: 0;
    margin-top: -1px;
}

.beaconhouse-group-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.beaconhouse-group-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.3) 50%);
    z-index: 1;
}

.beaconhouse-group-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.05) contrast(1.02);
}

.beaconhouse-group-content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 77vh;
    padding: 100px 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 32%, rgba(255, 255, 255, 0.85) 38%, rgba(255, 255, 255, 0) 52%);
}

.beaconhouse-group-content .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
}

.beaconhouse-group-header {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 15px;
    margin-bottom: 40px;
}

.beaconhouse-group-logo {
    max-width: 180px;
    height: auto;
}

.beaconhouse-group-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00399E;
    margin: 0;
    line-height: 1.2;
}

.beaconhouse-logos-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 
        0 20px 60px rgba(0, 102, 204, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.beaconhouse-logos-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00399E, rgba(0, 102, 204, 0.5), #00399E);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

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

.logo-category {
    margin-bottom: 35px;
}

.logo-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #00399E;
    margin-bottom: 24px;
    text-align: left;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 12px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00399E, rgba(0, 102, 204, 0.3));
    border-radius: 2px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    align-items: center;
}

.logo-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 100%; */
    height: 0;
    /* padding-bottom: 100%; */
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 102, 204, 0.05);
    overflow: hidden;
    height: 150px !important;
    width: 150px;
}

.logo-item > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.05), transparent);
    transition: left 0.5s;
}

.logo-item:hover::before {
    left: 100%;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 32px rgba(0, 102, 204, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 102, 204, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
}

.logo-item img {
    filter: grayscale(10%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .our-story-hero-section {
        background-attachment: scroll;
    }
    
    .our-story-hero-title {
        font-size: 3.5rem;
    }
    
    .our-story-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .our-story-hero-description {
        font-size: 1.05rem;
    }
    
    .hero-highlights {
        gap: 2rem;
    }
    
    .highlight-item {
        min-width: 160px;
        padding: 1rem 1.5rem;
    }
    
    .highlight-number {
        font-size: 1.75rem;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .ceo-message-title {
        font-size: 2.5rem;
    }
    
    .ceo-message-section {
        padding: 80px 0;
    }
    
    .mission-vision-section {
        padding: 80px 0;
    }
    
    .mission-vision-card {
        padding: 2.5rem 2rem;
    }
    
    /* .ceo-message-section .col-lg-6:first-child {
        padding-right: 1rem;
    } */
    
    .key-aspiration-content {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .key-aspiration-title {
        font-size: 2rem;
    }
    
    .key-aspiration-text {
        font-size: 1rem;
    }
    
    .ceo-image-wrapper {
        margin-top: 2rem;
        padding: 0rem 0;
        justify-content: center;
    }
    
    .ceo-image-wrapper img {
        max-width: 400px;
    }
    
    .beaconhouse-group-header-section {
        padding: 80px 0 60px;
    }
    
    .beaconhouse-group-header-content {
        gap: 25px;
    }
    
    .beaconhouse-group-logo-wrapper {
        padding: 20px;
    }
    
    .beaconhouse-group-header-content .beaconhouse-group-title {
        font-size: 2.75rem;
    }
    
    .beaconhouse-group-header-content .beaconhouse-group-logo {
        max-width: 190px;
    }
    
    .beaconhouse-group-description-wrapper {
        padding-left: 25px;
    }
    
    .beaconhouse-group-description {
        font-size: 1.1rem;
    }
    
    .beaconhouse-group-content {
        padding: 80px 0;
    }
    
    .beaconhouse-group-content {
        padding: 60px 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0.3) 60%);
    }
    
    .beaconhouse-group-content .container-fluid {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .beaconhouse-group-title {
        font-size: 2rem;
    }
    
    .beaconhouse-group-logo {
        max-width: 150px;
    }
    
    .beaconhouse-logos-container {
        padding: 25px 20px;
    }
    
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .logo-item {
        padding: 10px;
        padding-bottom: 100%;
    }
    
    .logo-item > img {
        max-width: 65%;
        max-height: 65%;
    }
}

@media (max-width: 768px) {
    .our-story-hero-section {
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 80px;
    }
    
    .our-story-hero-title {
        font-size: 2.5rem;
    }
    
    .our-story-hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .our-story-hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-badge {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-highlights {
        gap: 1.5rem;
        margin: 2.5rem 0 2.5rem;
    }
    
    .highlight-item {
        min-width: 140px;
        padding: 1rem 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .highlight-content {
        text-align: center;
    }
    
    .highlight-number {
        font-size: 1.5rem;
    }
    
    .highlight-label {
        font-size: 0.8rem;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-mouse {
        width: 25px;
        height: 40px;
    }
    
    .scroll-text {
        font-size: 0.75rem;
    }
    
    .ceo-message-section {
        padding: 60px 0;
    }
    
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-vision-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-content {
        font-size: 1rem;
    }
    
    .ceo-message-section .row {
        flex-direction: column;
    }
    
    .ceo-message-section .col-lg-6:first-child {
        /* padding-right: 0; */
        margin-bottom: 2rem;
    }
    
    .ceo-message-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .ceo-message-content {
        font-size: 1rem;
    }
    
    .key-aspiration-content {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .key-aspiration-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .key-aspiration-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .key-aspiration-badge {
        font-size: 0.8rem;
        padding: 0.45rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .ceo-image-wrapper {
        margin-top: 0;
        /* padding: 1rem 0; */
        justify-content: center;
    }
    
    .ceo-image-wrapper img {
        max-width: 100%;
        max-width: 300px;
    }
    
    .ceo-logo-bg-element {
        width: 200px;
    }
    
    .beaconhouse-group-header-section {
        padding: 60px 0 50px;
    }
    
    .beaconhouse-group-header-section .row {
        flex-direction: column;
    }
    
    .beaconhouse-group-header-content {
        text-align: center;
        align-items: center;
        margin-bottom: 35px;
        gap: 25px;
    }
    
    .beaconhouse-group-divider {
        margin: 10px auto 0;
    }
    
    .beaconhouse-group-logo-wrapper {
        padding: 20px;
        border-radius: 16px;
    }
    
    .beaconhouse-group-header-content .beaconhouse-group-logo {
        max-width: 160px;
    }
    
    .beaconhouse-group-header-content .beaconhouse-group-title {
        font-size: 2.25rem;
    }
    
    .beaconhouse-group-description-wrapper {
        padding-left: 0;
        text-align: center;
    }
    
    .beaconhouse-group-description-wrapper::before {
        display: none;
    }
    
    .beaconhouse-group-description {
        font-size: 1.05rem;
        text-align: left;
        line-height: 1.8;
    }
    
    .beaconhouse-group-content {
        padding: 60px 0;
    }
    
    .beaconhouse-logos-container {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .beaconhouse-group-section {
        min-height: auto;
    }
    
    .beaconhouse-group-content {
        padding: 50px 0;
        background: rgba(255, 255, 255, 0.98);
        min-height: auto;
    }
    
    .beaconhouse-group-content .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .beaconhouse-group-header {
        margin-bottom: 30px;
        gap: 12px;
    }
    
    .beaconhouse-group-logo {
        max-width: 120px;
    }
    
    .beaconhouse-group-title {
        font-size: 1.75rem;
    }
    
    .beaconhouse-logos-container {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .category-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .logo-item {
        padding: 8px;
        padding-bottom: 100%;
        border-radius: 10px;
    }
    
    .logo-item > img {
        max-width: 60%;
        max-height: 60%;
    }
    
    /* Sustainable Future Section Mobile Styles */
    .sustainable-future-wrapper {
        min-height: 400px;
    }
    
    .sustainable-future-overlay {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 40px 10px !important;
        min-height: 400px;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
    }
    
    .sustainable-future-content {
        width: 100%;
        padding: 0;
    }
    
    .sustainable-future-content h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem;
    }
    
    .sustainable-future-content p {
        font-size: 0.95rem !important;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .our-story-hero-section {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .our-story-hero-title {
        font-size: 2rem;
    }
    
    .our-story-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .our-story-hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .hero-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-highlights {
        gap: 1rem;
        margin: 2rem 0 2rem;
    }
    
    .highlight-item {
        min-width: calc(50% - 0.5rem);
        padding: 0.875rem 1rem;
    }
    
    .highlight-number {
        font-size: 1.35rem;
    }
    
    .highlight-label {
        font-size: 0.75rem;
    }
    
    .our-story-learn-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    
    .our-story-cta-arrow {
        width: 35px;
        height: 35px;
    }
    
    .hero-scroll-indicator {
        bottom: 15px;
    }
    
    .ceo-message-section {
        padding: 50px 0;
    }
    
    .mission-vision-section {
        padding: 50px 0;
    }
    
    .mission-vision-card {
        padding: 1.75rem 1.25rem;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    
    .card-title {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
    
    .card-content {
        font-size: 0.95rem;
    }
    
    .ceo-message-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .ceo-message-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .key-aspiration-content {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .key-aspiration-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        letter-spacing: 0.5px;
    }
    
    .key-aspiration-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .key-aspiration-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 1rem;
    }
    
    .ceo-image-wrapper {
        margin-top: 0;
        /* padding: 1rem 0; */
    }
    
    .ceo-image-wrapper img {
        max-width: 250px;
        /* margin-right: -72px; */
    }
    
    .beaconhouse-group-header-section {
        padding: 50px 0 40px;
    }
    
    .beaconhouse-group-header-content {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .beaconhouse-group-logo-wrapper {
        padding: 18px;
        border-radius: 14px;
    }
    
    .beaconhouse-group-header-content .beaconhouse-group-logo {
        max-width: 140px;
    }
    
    .beaconhouse-group-header-content .beaconhouse-group-title {
        font-size: 1.9rem;
    }
    
    .beaconhouse-group-divider {
        width: 60px;
        height: 3px;
    }
    
    .beaconhouse-group-description {
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 20px;
    }
    
    .beaconhouse-group-content {
        padding: 50px 0;
    }
    
    .beaconhouse-logos-container {
        padding: 25px 18px;
        border-radius: 18px;
    }
    
    .category-title {
        font-size: 1.15rem;
        margin-bottom: 20px;
    }
    
    .category-title::after {
        width: 40px;
        height: 2px;
    }
    
    .beaconhouse-group-section {
        min-height: auto;
    }
    
    .beaconhouse-group-content {
        padding: 40px 0;
        background: rgba(255, 255, 255, 0.98);
        min-height: auto;
    }
    
    .beaconhouse-group-content .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .beaconhouse-group-header {
        margin-bottom: 25px;
        gap: 10px;
    }
    
    .beaconhouse-group-logo {
        max-width: 100px;
    }
    
    .beaconhouse-group-title {
        font-size: 1.5rem;
    }
    
    .beaconhouse-logos-container {
        padding: 18px 12px;
        border-radius: 10px;
    }
    
    .logo-category {
        margin-bottom: 25px;
    }
    
    .category-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .logo-item {
        padding: 6px;
        /* padding-bottom: 100%; */
        border-radius: 8px;
    }
    
    .logo-item > img {
        max-width: 55%;
        max-height: 55%;
    }
    
    /* Sustainable Future Section Small Mobile Styles */
    .sustainable-future-wrapper {
        min-height: 350px;
    }
    
    .sustainable-future-overlay {
        padding: 30px 10px !important;
        min-height: 350px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .sustainable-future-content h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.875rem;
    }
    
    .sustainable-future-content p {
        font-size: 0.875rem !important;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
}


@media (min-width: 1000px) and (max-width: 1200px) {
    .logos-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .ceo-message-content {

        font-size: 0.9rem !important;
    }
    .ceo-message-title {
        font-size: 2rem !important;
    }
}