/* About Page Premium Styles */
:root {
    --primary-color: #89CCB4;  /* base-color */
    --secondary-color: #46b57e; /* green */
    --accent-color: #ECBA23;   /* yellow */
    --text-dark: #282725;      /* black */
    --text-muted: #8d8987;     /* medium-gray */
    --border-color: #f9f6f3;   /* very-light-gray */
    --bg-light: #f9f6f3;       /* very-light-gray */
    --danger: #d51f0f;         /* red */
    --dark-accent: #383632;    /* dark-gray */
    --transition: all 0.3s ease;
    --alt-font: 'Bebas Neue', cursive;
    --primary-font: 'Schibsted Grotesk', sans-serif;
}

/* Hero Section */
.hero-banner {
    height: 100vh;
    position: relative;
    background: none !important;
    overflow: hidden;
}

.parallax-window {
    min-height: 100vh;
    background: transparent;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(40, 39, 37, 0.5) 0%, rgba(40, 39, 37, 0.8) 100%);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner h1 {
    font-family: var(--alt-font);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

/* Our Story Section */
.our-story-section {
    position: relative;
    padding: 5rem 0;
    background: white;
    font-family: var(--primary-font);
}

.text-style-3 {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: var(--primary-font);
}



/* Vision, Mission, Values Sections */
.icon-img {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    padding: 1.5rem;
    transition: var(--transition);
}

.icon-img:hover {
    transform: translateY(-5px);
}

.primary-color {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-family: var(--alt-font);
    letter-spacing: 1px;
    text-transform: uppercase;
}

hr {
    border-color: var(--border-color);
    margin: 3rem 0;
    opacity: 0.5;
}

/* Products & Services Section */
.bg-white {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(40, 39, 37, 0.05);
    padding: 3rem;
    transition: var(--transition);
    margin: 0 auto;
}

.bg-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(40, 39, 37, 0.1);
}

.bg-white img {
    max-width: 200px;
    margin: 0 auto;
}

.bg-white h3 {
    margin-bottom: 1.5rem;
}

.bg-white p {
    color: var(--text-muted);
    line-height: 1.8;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: rgba(137, 204, 180, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(137, 204, 180, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-banner {
        height: 60vh;
    }

    .primary-color {
        font-size: 2rem;
    }

    .text-style-3 {
        font-size: 1rem;
        line-height: 1.6;
    }

    .icon-img {
        max-width: 150px;
        margin-bottom: 2rem;
    }

    .bg-white {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        height: 50vh;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .marquee-slide .fs-150 {
        font-size: 3rem;
    }

    .our-story-section {
        padding: 3rem 0;
    }

    .icon-img {
        max-width: 120px;
    }
}
