:root {
    --primary-color: #2c7be5;
    --primary-dark: #1a68d1;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --medium-gray: #ddd;
    --dark-gray: #666;
}

body {
    position: relative;
    /* background-image: url('../images/assets/img/body_bg6.jpg');*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    margin: 0;
    color: white;
    /* so text is visible */
}

/* Dark overlay */
body::before {
    content: "";
    position: fixed;
    /* stays in place when scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    /* adjust darkness */
    z-index: -1;
    /* keeps it behind the content */
}

/* Header Styles */

header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 50px;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: var(--light-gray);
}

.nav-links a.active {
    background-color: var(--primary-color);
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}


/* Hero Section */
.hero {
    background-image: url('https://cms.frostan.com/uploads/servicesbg_d822aaadab.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 1;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Puts the video behind the hero content */
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video fills the container without distortion */
}

/* Custom CSS for modern look */
.brand-item-wrapper {
    position: relative;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.brand-logo {
    max-height: 180px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.carousel-item:hover .brand-logo {
    transform: scale(1.05);
}

.brand-caption {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 80%;
    text-align: center;
    backdrop-filter: blur(5px);
}

.brand-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
}

.carousel-indicators li.active {
    background-color: #343a40;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 50%;
}

/* Custom CSS */
.service-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.shadow-hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.service-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.divider-line {
    height: 4px;
    width: 80px;
    border-radius: 2px;
}

.bg-gradient-primary {
    background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
}

.bg-purple {
    background-color: #6f42c1;
}

.text-purple {
    color: #6f42c1;
}

.btn-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link:hover {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2.2rem;
    }
}

/* Custom CSS for quotation section */
.quotation-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.quotation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.quotation-text {
    font-size: 1.5rem;
    line-height: 1.4;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .quotation-section {
        padding: 120px 0;
    }

    .quotation-text {
        font-size: 2rem;
        margin-bottom: 2.5rem !important;
    }
}

@media (max-width: 575px) {
    .quotation-text {
        font-size: 1.25rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Custom CSS for stakeholders section */
.stakeholders-container {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.stakeholders-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.stakeholder-item {
    flex: 0 0 auto;
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stakeholder-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stakeholder-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /*filter: grayscale(100%);*/
    opacity: 0.7;
    transition: all 0.3s ease;
}

.stakeholder-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.scroll-btn {
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #333;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-left {
    left: -20px;
}

.scroll-right {
    right: -20px;
}

.scroll-btn:hover {
    background: #f8f9fa;
}

@media (max-width: 767.98px) {
    .stakeholder-item {
        width: 120px;
        height: 80px;
        padding: 10px;
    }
}

/* Custom CSS for carousel section */
.carousel-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.carousel-caption-box {
    position: absolute;
    right: 10%;
    bottom: 10%;
    left: auto;
    width: 100%;
    max-width: 450px;
    z-index: 10;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

.carousel-indicators .active {
    background-color: #fff;
}

@media (max-width: 768px) {
    .carousel-image {
        height: 400px;
    }

    .carousel-caption-box {
        right: 5%;
        bottom: 5%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .carousel-image {
        height: 300px;
    }

    .carousel-caption-box {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: 100%;
        margin-top: -50px;
        padding: 0 15px;
    }

    .carousel-caption-box .bg-white {
        padding: 20px;
    }
}

/* Custom CSS for sustainability section */
.sustainability-section {
    background-image: url('<?= PROOT; ?>images/assets/img/Sustainability_2_a4414d9c04.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 500px;
    height: 100vh;
    max-height: 800px;
}

.sustainability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.sustainability-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .sustainability-section {
        height: auto;
        min-height: 400px;
    }

    .sustainability-content {
        max-width: 100%;
        padding: 2rem !important;
    }

    .col-lg-6:first-child {
        display: none;
    }
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }
}

/* Custom CSS for newsletter section */
.newsletter-form .form-control {
    height: calc(1.5em + 1.5rem + 2px);
    padding: 0.75rem 1rem;
    border-color: #e9ecef;
    box-shadow: none;
}

.newsletter-form .form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.newsletter-form .input-group-text {
    border-color: #e9ecef;
    padding: 0.75rem 1rem;
    background-color: white;
}

@media (max-width: 767.98px) {
    .newsletter-form .form-row>div:not(:last-child) {
        margin-bottom: 15px;
    }

    .display-5 {
        font-size: 2rem;
    }
}

/* Custom CSS for footer */
footer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-logo img {
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.social-icons a {
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icons a:hover {
    color: #0069d9 !important;
    transform: translateY(-3px);
}

.list-unstyled li a {
    transition: all 0.2s ease;
    display: inline-block;
}

.list-unstyled li a:hover {
    color: #0069d9 !important;
    transform: translateX(3px);
    text-decoration: none;
}

hr.border-primary {
    border-top: 2px solid #0069d9;
    opacity: 1;
}

@media (max-width: 767.98px) {
    .col-6 {
        margin-bottom: 1.5rem;
    }
}

/* Services Section Custom CSS */
.service-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    background: white;
}

.service-card:hover {
    transform: translateY(-10px);
    /*box-shadow: 0 15px 30px rgba(0,0,0,0.15);*/
    box-shadow: 0 15px 30px rgba(48, 149, 216, 0.15);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.service-content {
    padding: 25px;
}

.service-title {
    color: #2c7be5;
    font-weight: 600;
    margin-bottom: 15px;
}

.read-more {
    background-color: #2c7be5;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #1a68d1;
    transform: translateY(-2px);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* CTA Section Custom Styles */
.cta-section {
    position: relative;
    padding: 100px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background-color: #2c7be5;
    border-color: #2c7be5;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a68d1;
    border-color: #1a68d1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
        background-attachment: scroll !important;
    }
}

/* Custom CSS for Our Story section */
#our-story {
    position: relative;
}

.story-image-container {
    transition: transform 0.3s ease;
}

.story-image-container:hover {
    transform: translateY(-5px);
}

.story-image-container img {
    transition: all 0.3s ease;
}

.story-image-container:hover img {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--primary);
}

.shadow {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 767.98px) {
    .section-heading {
        font-size: 1.8rem;
    }

    .story-content {
        padding-left: 0 !important;
        margin-top: 30px;
    }
}

/* Timeline Custom Styles */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #e9ecef;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    margin: 0 auto 15px;
}

.timeline-content {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.btn-outline-primary {
    border-width: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #2c7be5;
    color: white;
}

@media (max-width: 767.98px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item .col-md-5 {
        display: none;
    }

    .timeline-item .col-md-2 {
        text-align: left;
        margin-bottom: 20px;
    }

    .timeline-year {
        margin-left: 0;
    }

    .timeline-content {
        text-align: left !important;
    }
}

/* Gallery Custom Styles */
.location-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 320px;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.location-card:hover .location-overlay {
    transform: translateY(0);
}

.location-overlay h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.location-overlay p {
    font-size: 0.9rem;
    color: #eee;
    margin-bottom: 0;
}

.gallery-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.gallery-arrow:hover {
    opacity: 1;
    background-color: white;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

@media (max-width: 767.98px) {
    .carousel-control-prev {
        left: 0;
    }

    .carousel-control-next {
        right: 0;
    }

    .location-card {
        height: 280px;
    }
}

/* Certifications Custom Styles */
.certification-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.certification-item img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.certification-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 767.98px) {
    .certification-item {
        height: 120px;
        padding: 15px;
    }

    .certification-item img {
        max-height: 80px;
    }
}

/* Sustainability Section Custom Styles */
.sdg-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sdg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sdg-card img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
}

.sdg-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 767.98px) {
    .sdg-card {
        height: 120px;
        padding: 15px;
    }

    .sdg-card img {
        max-height: 80px;
    }
}

/* Impact Section Custom Styles */
.impact-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.accordion .card {
    margin-bottom: 15px;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.accordion .card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion .btn-link {
    text-decoration: none;
    width: 100%;
    text-align: left;
}

.accordion .btn-link:hover {
    color: var(--primary);
}

.accordion .btn-link i {
    transition: transform 0.3s ease;
}

.accordion .btn-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}

@media (max-width: 991.98px) {
    .impact-card {
        margin-bottom: 30px;
    }
}

/* Carousel Custom Styles */
.impact-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 350px;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.impact-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.impact-card:hover .impact-overlay {
    transform: translateY(0);
}

.impact-overlay h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.impact-overlay p {
    font-size: 0.9rem;
    color: #eee;
    margin-bottom: 0;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    opacity: 1;
    background-color: white;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

@media (max-width: 767.98px) {
    .carousel-control-prev {
        left: 0;
    }

    .carousel-control-next {
        right: 0;
    }

    .impact-card {
        height: 300px;
    }
}

/* Custom CSS */
.banner-section {
    position: relative;
    height: 250px;
    min-height: 250px;
    background: linear-gradient(135deg, #2c3e50 0%, #4ca1af 100%);
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    opacity: 0.4;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.banner-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.banner-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.banner-button {
    background: #4CAF50;
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-button:hover {
    background: #3e8e41;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.banner-button:active {
    transform: translateY(1px);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-text {
        font-size: 2rem;
    }

    .banner-section {
        height: 80vh;
    }
}

@media (max-width: 576px) {
    .banner-text {
        font-size: 1.5rem;
    }

    .banner-button {
        padding: 10px 25px;
        font-size: 1rem;
    }
}




.ceo-section {
    padding: 80px 0;
    background-color: #f9fafc;
    position: relative;
}

.ceo-section h2 {
    text-align: center;
    /*margin-bottom: 10px;*/
    font-weight: 700;
    font-size: 2.4rem;
    color: #2c3e50;
    position: relative;
}

.ceo-section h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #3498db;
    margin: 15px auto 0;
}

.ceo-message {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.ceo-message p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.ceo-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
    max-width: 400px;
}

.ceo-image-wrapper {
    margin-right: 20px;
    flex-shrink: 0;
}

.ceo-image-wrapper img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f5fd;
}

.ceo-name {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.ceo-title {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

.message-with-image {
    position: relative;
    padding-right: 180px;
}

.inline-ceo-image {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .message-with-image {
        padding-right: 0;
    }

    .inline-ceo-image {
        position: static;
        display: block;
        margin: 0 auto 25px;
        width: 100px;
        height: 100px;
    }

    .ceo-card {
        max-width: 100%;
    }
}





.ceo-leadership {
    padding: 80px 0;
    background-color: #f8fafc;
}

.ceo-leadership h2 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
    font-size: 2rem;
}

.ceo-leadership h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #3498db;
    margin: 15px auto 0;
}

.team-member-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-member-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.team-member-info {
    padding: 20px;
}

.team-member-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.team-member-position {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .team-member-img {
        height: 200px;
    }
}