        :root {
            --primary-color: #71ADB7;
            --secondary-color: #D5D5D5;
            --accent-color: #0D5349;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
        }

        .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1030;
            transition: background-color 250ms ease, color 250ms ease, box-shadow 250ms ease;
        }

        /* Navbar styles when over the hero (transparent) */
        .navbar.navbar-transparent {
            background-color: transparent !important;
            box-shadow: none;
        }

        .navbar.navbar-transparent .nav-link,
        .navbar.navbar-transparent .navbar-brand {
            color: #ffffff !important;
        }

        .navbar.navbar-solid {
            background-color: #ffffff !important;
            box-shadow: 0 2px 10px rgba(255, 255, 255, 0.08);
        }

        .navbar.navbar-solid .nav-link,
        .navbar.navbar-solid .navbar-brand {
            color: #000000 !important;
        }

        .navbar-brand {
            font-weight: bold;
            color: var(--accent-color);
        }

        .nav-link {
            color: #ffffff;
            font-weight: 500;
            margin: 0 5px;
            letter-spacing: 2px;
            font-size: 15px;
        }


        .nav-link:hover {
            color: var(--primary-color);
        }

        .hero-section {
            background:
                url('../images/bg-01.jpg');
            background-size: cover;
            color: white;
            padding: 150px 0;
            text-align: left;
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: -1;
        }

        /* Reduce hero padding on small devices so content isn't too tall */
        @media (max-width: 767px) {
            .hero-section {
                padding: 90px 0;
            }

            .hero-section h1 {
                font-size: 2rem;
            }
        }

        .section-title {
            color: var(--accent-color);
            position: relative;
            /* padding-bottom: 15px;
            margin-bottom: 30px; */
        }

        .card-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
            height: 100%;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .core-values {
            background-color: #f8f9fa;
            padding: 80px 0;
        }

        .life-section {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0;
        }

        .life-section .section-title {
            color: white;
        }

        .life-section .section-title:after {
            background-color: white;
        }

        .contact-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }

        footer {
            background-color: #1a1a1a;
            color: white;
            padding: 50px 0 20px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            margin-bottom: 10px;
            display: block;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .social-icons a {
            color: white;
            font-size: 1.2rem;
            margin-right: 15px;
        }

        .social-icons a:hover {
            color: var(--secondary-color);
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .btn-primary:hover {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
        }

        .leadership-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 3px solid var(--primary-color);
        }

        .awards-section {
            padding: 80px 0;
        }

        .product-info h3 {
            text-align: right !important;
        }


        .award-card {
            text-align: center;
            padding: 20px;
        }

        .award-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        /* Hero CTA and ISO badge */
        .hero-section .btn-primary {
            background-color: #0d5349;
            border-color: #0d5349;
            color: #fff;
            font-weight: 100;
        }

        .hero-section .btn-primary:hover {
            background-color: #0b3b36;
            border-color: #0b3b36;
        }

        .iso-badge {
            position: absolute;
            right: 20px;
            top: 20px;
            width: 80px;
            opacity: 0.95;
        }

        .product-brand {
            margin-bottom: 40px;
            text-align: center;
        }

        .product-brand img {
            max-height: 60px;
            margin-bottom: 20px;
        }

        .product-slider {
            position: relative;
            overflow: hidden;
            margin-bottom: 50px;
        }

        .product-slider-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .product-card {
            flex: 0 0 25%;
            padding: 15px;
            box-sizing: border-box;
        }

        @media (max-width: 992px) {
            .product-card {
                flex: 0 0 33.333%;
            }
        }

        @media (max-width: 768px) {
            .product-card {
                flex: 0 0 50%;
            }
        }

        @media (max-width: 576px) {
            .product-card {
                flex: 0 0 100%;
            }
        }

        .product-image {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 250px;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .product-card:hover img {
            transform: scale(1.1);
        }

        .product-name {
            color: white;
            font-weight: 600;
            text-align: center;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
        }

        .slider-nav.prev {
            left: 10px;
        }

        .slider-nav.next {
            right: 10px;
        }

        .slider-nav:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .section-intro {
            text-align: center;
            margin-bottom: 50px;
            /* font-size: 1.2rem; */
            color: #000000;
        }

        /* Product Slider Section */
        .product-section {
            padding: 10px 0;
            /* background-image: url('https://img.freepik.com/free-photo/gray-futuristic-wireframe-abstract-background_53876-104038.jpg?t=st=1760165581~exp=1760169181~hmac=abd1061bce486edcb85ce84e4d3a4eec801a68a16df044e34767322d1ac7cb87&w=1060');
            background-size: cover;
            /* background-position: top center; */
            background-repeat: no-repeat;
            border-radius: 0;
            position: relative;
            background-attachment: fixed;
        }

        .product-section .section-title {
            color: #0D5349;

            font-weight: 500;
        }

        .product-section .section-intro {
            text-align: center;
            /* font-size: 1.2rem; */
            color: #000000;
        }

        .product-section-img {
            height: 200px;
            width: 100%;
            background-size: cover;
            background-position: center;
        }

        .product-section h3 {
            text-align: center;
            margin-bottom: 30px;
            color: #0D5349;
            /* Better contrast with overlay */
            font-weight: 500;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .product-section p {
            color: #7f8c8d;
            line-height: 1.6;
        }

        .slider {
            max-width: 100%;
            margin: 0 auto;
        }

        /*alerio-card*/

        .slider .card {
            overflow: hidden;
            /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
            transition: transform 0.3s;
            height: 100%;
            transform: translateY(-5px);
        }

        .slider .card:hover {
            transform: translateY(-5px);

        }

        .slider .card .img {
            margin-top: 20px;
            /* height: 400px; */
            width: 100%;
            overflow: hidden;
            object-fit: scale-down;
            /* background: #ccece8; */
        }

        .slider .card .img img {
            height: 100%;
            width: 100%;
            object-fit: scale-down;
            transition: transform 0.5s ease;
            transform: scale(1.05);
        }

        .slider .card:hover .img img {
            transition: transform 0.10s ease;
            transform: scale(1.10);
        }

        .slider .card .content {
            padding: 20px;
            /* background: #ccece8; */
        }

        .slider .card .content h4 {
            color: var(--accent-color);
            margin-bottom: 10px;
            font-weight: 500;
        }

        .slider .card .content p {
            color: #666;
            margin-bottom: 15px;
        }

        .slider .card .content .btn {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }

        .slider .card .content .btn:hover {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            transform: scale(0.98);
        }


        /*arima-card*/

        /* .slider .arima-card {
            background-image: url('../images/orange5.jpg');
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
            height: 100%;
        } */

        /* .slider .arima-card:hover {
            transform: translateY(-5px);
        } */

        /* .slider .arima-card .img {
            height: 300px;
            width: 100%;
            overflow: hidden;
            margin: 0 auto;
            max-width: 500px;
        } */

        /* .slider .arima-card .img img {
            height: 100%;
            width: 100%;
            max-width: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        } */

        /* .slider .arima-card:hover .img img {
            transform: scale(1.05);
        } */

        /* .slider .arima-card .content {
            padding: 20px;
        } */

        /* .slider .arima-card .content h4 {
            color: #ffffff;
            margin-bottom: 10px;
            font-weight: 900;
        } */

        /* .slider .arima-card .content p {
            color: #666;
            margin-bottom: 15px;
        } */

        /* .slider .arima-card .content .btn {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        } */

        /* .slider .arima-card .content .btn:hover {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            transform: scale(0.98);
        } */


        .owl-carousel .owl-nav {
            margin-top: 20px;
            text-align: center;
        }

        .owl-carousel .owl-nav button.owl-prev,
        .owl-carousel .owl-nav button.owl-next {
            background: #71adb7 !important;
            color: white !important;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin: 0 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .owl-carousel .owl-nav button.owl-prev:hover,
        .owl-carousel .owl-nav button.owl-next:hover {
            background: #5a8d96 !important;
            transform: scale(1.1);
        }

        .owl-carousel .owl-nav button.owl-prev:focus,
        .owl-carousel .owl-nav button.owl-next:focus {
            outline: none;
        }

        .owl-carousel .owl-nav button span {
            font-size: 0;
        }

        .owl-carousel .owl-nav button.owl-prev:before {
            content: "←";
            font-size: 18px;
            font-weight: bold;
        }

        .owl-carousel .owl-nav button.owl-next:before {
            content: "→";
            font-size: 18px;
            font-weight: bold;
        }

        .owl-carousel .owl-nav button.owl-prev i,
        .owl-carousel .owl-nav button.owl-next i {
            font-size: 18px;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .product-section {
                background-attachment: scroll;
            }

            .product-section::before {
                background: rgba(113, 173, 183, 0.4);
                /* Slightly darker overlay for better mobile readability */
            }
        }

        .core-section {
            position: relative;
            min-height: 90vh;
            margin: 0;
            padding: 30px 20px;
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 0;

            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
                url('../images/close-up-black-central-processing-unit-mock-up-with-gold-light-effect_281691-783.jpg') no-repeat center top;
            background-size: cover;
            background-position: top center;
            background-repeat: no-repeat;
            border-radius: 0;
            position: relative;
            /* Add sticky background effect */
            background-attachment: fixed;
            /* Keeps image fixed while scrolling */
        }

        .core-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            /* Your brand color with 30% opacity */
            z-index: 0;
        }


        .core-section .core-section-title {
            color: #ffffff;
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 0;
            text-align: center;
        }

        .core-section .core-section-intro {
            color: #dcdcdc;
            /* font-size: 1.1rem; */
            text-align: center;
            margin-bottom: 3rem;
            max-width: 600px;
        }

        .core-section .card-container {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1500px;
            width: 100%;
        }

        .core-section .card {
            background: linear-gradient(#0e0e0e, #141414);
            width: 305px;
            min-height: 430px;
            border-radius: 18px;
            padding: 25px;
            box-sizing: border-box;
            color: white;
            position: relative;
            display: flex;
            flex-direction: column;
            border: 2px solid #182f33;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .core-section .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px #0d5349;
        }

        /* Even image sizes for all cards */
        .core-section .card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 12px;
            display: block;
        }

        .core-section .card p {
            margin: 0 0 15px 0;
            font-size: 22px;
            font-weight: 700;
            color: #71adb7;
            line-height: 1.3;
        }

        .core-section .card span {
            display: block;
            font-size: 15px;
            color: #dcdcdc;
            line-height: 1.6;
        }

        /* Cards 1 & 3: Image first, then heading, then description */
        .core-section .card:nth-child(1),
        .core-section .card:nth-child(3) {
            flex-direction: column;
        }

        .core-section .card:nth-child(1) img,
        .core-section .card:nth-child(3) img {
            margin-bottom: 20px;
        }

        .core-section .card:nth-child(1) p,
        .core-section .card:nth-child(3) p {
            margin: 0 0 0px 0;
        }

        .core-section .card:nth-child(1) span,
        .core-section .card:nth-child(3) span {
            margin: 0;
        }

        /* Cards 2 & 4: Heading first, then description, then image */
        .core-section .card:nth-child(2),
        .core-section .card:nth-child(4) {
            flex-direction: column;
        }

        .core-section .card:nth-child(2) p,
        .core-section .card:nth-child(4) p {
            margin: 0 0 0px 0;
        }

        .core-section .card:nth-child(2) span,
        .core-section .card:nth-child(4) span {
            margin: 0 0 20px 0;
        }

        .core-section .card:nth-child(2) img,
        .core-section .card:nth-child(4) img {
            margin-top: auto;
        }

        /* Media Queries for Responsive Design */
        @media (max-width: 1200px) {
            .core-section .card-container {
                gap: 20px;
            }

            .core-section .card {
                width: 260px;
                min-height: 460px;
            }
        }

        @media (max-width: 992px) {
            .core-section .card {
                width: 240px;
                min-height: 440px;
                padding: 20px;
            }

            .core-section .card img {
                height: 250px;
            }

            .core-section .card p {
                font-size: 20px;
            }

            .core-section .card span {
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .core-section {
                padding: 30px 15px;
                min-height: auto;
            }

            .core-section .core-section-title {
                font-size: 2rem;
            }

            .core-section .core-section-intro {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .core-section .card-container {
                gap: 15px;
            }

            .core-section .card {
                width: 220px;
                min-height: 400px;
                padding: 18px;
            }

            .core-section .card img {
                height: 250px;
            }

            .core-section .card p {
                font-size: 18px;
                margin-bottom: 12px;
            }

            .core-section .card span {
                font-size: 13px;
            }

            .core-section .card:nth-child(1) img,
            .core-section .card:nth-child(3) img {
                margin-bottom: 15px;
            }

            .core-section .card:nth-child(2) span,
            .core-section .card:nth-child(4) span {
                margin-bottom: 15px;
            }
        }

        @media (max-width: 576px) {
            .core-section {
                padding: 20px 10px;
            }

            .core-section .core-section-title {
                font-size: 1.8rem;
            }

            .core-section .core-section-intro {
                font-size: 0.9rem;
            }

            .core-section .card-container {
                gap: 12px;
            }

            .core-section .card {
                width: 180px;
                min-height: 360px;
                padding: 15px;
                border-radius: 15px;
            }

            .core-section .card img {
                height: 250px;
                border-radius: 10px;
            }

            .core-section .card p {
                font-size: 16px;
                margin-bottom: 10px;
            }

            .core-section .card span {
                font-size: 12px;
            }

            .core-section .card:nth-child(1) img,
            .core-section .card:nth-child(3) img {
                margin-bottom: 12px;
            }

            .core-section .card:nth-child(2) span,
            .core-section .card:nth-child(4) span {
                margin-bottom: 12px;
            }
        }

        @media (max-width: 400px) {
            .core-section .card-container {
                flex-direction: column;
                align-items: center;
            }

            .core-section .card {
                width: 90%;
                max-width: 280px;
                min-height: 380px;
                margin-bottom: 20px;
            }

            .core-section .card:last-child {
                margin-bottom: 0;
            }

            .core-section .card img {
                height: 250px;
            }

            .core-section .card p {
                font-size: 20px;
            }

            .core-section .card span {
                font-size: 14px;
            }
        }

        /* For very small screens (like foldable phones) */
        @media (max-width: 320px) {
            .core-section .card {
                width: 95%;
                min-height: 360px;
            }

            .core-section .card img {
                height: 250px;
            }

            .core-section .card p {
                font-size: 18px;
            }

            .core-section .card span {
                font-size: 13px;
            }
        }

        /* News & Events Section */
        .news-section {
            background-color: var(--light-bg);
            padding: 30px 0;
        }

        .news-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: 460px;
            /* Fixed height */
        }

        .news-content {
            padding: 20px;
            background: #f7f7f7;
            height: calc(100% - 200px);
            /* Fixed height accounting for image */
            display: flex;
            flex-direction: column;
        }

        .news-date {
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 10px;
            flex-shrink: 0;
            /* Prevent shrinking */
        }

        .news-title {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 10px;
            line-height: 1.4;
            flex-shrink: 0;
            /* Prevent shrinking */
        }

        .news-excerpt {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
            text-align: justify;
            overflow-y: auto;
            /* Scroll only for excerpt */
            max-height: 150px;
            /* Fixed max height for excerpt to enable scroll */
            /* Add scrollbar styling */
            scrollbar-width: thin;
            scrollbar-color: #71adb7 #f7f7f7;
            padding-right: 5px;
            /* Space for scrollbar */
        }

        .news-excerpt::-webkit-scrollbar {
            width: 6px;
        }

        .news-excerpt::-webkit-scrollbar-track {
            background: #f7f7f7;
            border-radius: 3px;
        }

        .news-excerpt::-webkit-scrollbar-thumb {
            background: #71adb7;
            border-radius: 3px;
        }

        .news-excerpt::-webkit-scrollbar-thumb:hover {
            background: #0d5349;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .news-card {
                height: 400px;
            }

            .news-content {
                height: calc(100% - 180px);
                padding: 15px;
            }

            .news-img {
                height: 180px;
            }

            .news-excerpt {
                max-height: 120px;
                /* Adjust for mobile */
            }
        }

        /* .news-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            min-height: 460px;
        } */

        .news-card:hover {
            transform: translateY(-5px);
        }

        .news-img {
            height: 200px;
            overflow: hidden;
        }

        .news-img img {
            /* width: 100%; */
            height: 100%;
            /* object-fit: cover; */
            transition: transform 0.5s ease;
        }

        .news-card:hover .news-img img {
            transform: scale(1.05);
        }

        /* .news-content {
            padding: 20px;
            background: #f7f7f7;
        } */

        /* .news-date {
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 10px;
        } */

        /* .news-title {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 10px;
            line-height: 1.4;
        } */

        /* .news-excerpt {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
            text-align: justify;
        } */

        .event-location {
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .news-section-title {
            text-align: center;
            font-weight: 500;
            margin-bottom: 1rem;
            color: #0d5349;
        }

        .news-section-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
            color: #666;
        }

        :root {
            --primary-color: #0D5349;
            --secondary-color: #71adb7;
            --light-color: #f8f9fa;
            --dark-color: #1a1a1a;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            background-color: #fff;
        }

        .about-hero {
            background:
                url('../images/background_image.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 50px;
            text-align: left;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 1rem;
            text-align: center;
            color: var(--primary-color);
            position: relative;
        }

        /* .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            margin: 15px auto 30px;
            border-radius: 2px;
        } */

        .about-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .about-hero .lead {
            font-size: 1.5rem;
            font-weight: 400;
        }

        .section-padding {
            padding: 80px 0;
        }

        .who-we-are {
            background-color: var(--light-color);
        }

        .who-we-are-content h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: #333;
        }

        .who-we-are-content p {
            /* font-size: 1.1rem;
            line-height: 1.8;
            color: #666; */
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        @media (max-width: 768px) {
            .vision-mission-section {
                min-height: auto;
                padding: 20px;
            }

        }


        .vision-mission-section {
            background: var(--dark-color);
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding: 40px 0;
        }

        .vision-content,
        .mission-content {
            padding: 2rem;
        }

        .vision-content h3,
        .mission-content h3 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--secondary-color);
        }

        .vision-content p,
        .mission-content p {
            /* font-size: 1.1rem;
            line-height: 1.8; */
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        .mission-list {
            list-style: none;
            padding: 0;
        }

        .mission-list li {
            /* font-size: 1.1rem; */
            /* line-height: 1.3; */
            color: #ffffff;
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
        }

        .mission-list li:before {
            content: "•";
            color: var(--secondary-color);
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -2px;
        }

        /* Enhanced Image Styling for Mission & Vision */
        .vision-image,
        .mission-image {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 250px;
        }

        .vision-image:hover,
        .mission-image:hover {
            transform: translateY(-5px);
            /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); */
        }

        .vision-image::before,
        .mission-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, rgba(113, 173, 183, 0.2), rgba(13, 83, 73, 0.2)); */
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .vision-image:hover::before,
        .mission-image:hover::before {
            opacity: 1;
        }

        .vision-image img,
        .mission-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .vision-image:hover img,
        .mission-image:hover img {
            transform: scale(1.05);
        }

        .core-values {
            background-color: var(--light-color);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
        }

        .value-icon {
            font-size: 3rem;
            color: #0d5349;
            margin-bottom: 1.5rem;
        }

        .value-card h4 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #333;
        }

        .value-card p {
            color: #666;
            line-height: 1.6;
            text-align: justify;
        }

        .leadership-section {
            background: #fff;
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }

        .leader-card {
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid #182f33;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .leader-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px var(--primary-color);
        }

        .leader-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            /* Enforce 1:1 aspect ratio */
            overflow: hidden;
            /* Hide any overflow to maintain clean edges */
            background: #ffffff;
            /* Fallback background */
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            /* Fallback text color */
            font-size: 1rem;
        }

        .leader-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Ensure image covers the container while maintaining aspect ratio */
            object-position: center;
            /* Center the image */
        }

        .leader-info {
            padding: 0.5rem;
            background: #1A1A1A;
        }

        .leader-info h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .leader-info p {
            /* color: var(--secondary-color); */
            color: #ffffff;

            font-weight: 500;
        }


        .section-subtitle {
            /* font-size: 1.1rem; */
            color: #000000;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.6;
        }

        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .award-item {
            background: white;
            padding: 2rem 1.5rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .award-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .award-icon {
            width: 200px;
            height: 200px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 3px;
            transition: all 0.3s ease;
        }

        .award-item:hover .award-icon {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            transform: scale(1.05);
        }

        .award-icon img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .award-item h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-color);
            line-height: 1.4;
        }

        .award-item p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .award-badge {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-top: 10px;
        }


        /* Animation for all sections and cards */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animation for award items */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .award-item {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .award-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .award-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .award-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .award-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .award-item:nth-child(5) {
            animation-delay: 0.5s;
        }

        .award-item:nth-child(6) {
            animation-delay: 0.6s;
        }

        /* Financials Section Styles */
        .financials-section {
            background-image: url('../images/financial_report.jpg');
            background-size: cover;
            background-position: top center;
            background-repeat: no-repeat;
            border-radius: 0;
            position: relative;
            /* Add sticky background effect */
            background-attachment: fixed;
        }

        .financials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(113, 173, 183, 0.3);
            /* Your brand color with 30% opacity */
            z-index: 1;
        }

        .financials-section .container {
            position: relative;
            z-index: 2;
        }

        .financials-content p {
            /* font-size: 1.1rem; */
            line-height: 1.8;
            color: #000000;
        }

        .financials-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .btn-primary {
            background-color: #0d5349;
            border-color: #0d5349;
            color: #fff;
            font-weight: 100;
        }

        .btn-primary:hover {
            background-color: #0d5349;
            border-color: #0d5349;
            color: #fff;
            font-weight: 100;
        }

        /* Design & Development Section Styles */
        .design-development {
            padding: 25px 0;
            background-color: #f8f9fa;
        }

        .design-development h2 {
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 1rem;
            color: #0d5349;
        }

        .design-development h3 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            color: #0d5349;
        }

        .design-development p {
            /* font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: #555; */
            text-align: justify;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .design-development {
                padding: 20px 0;
            }

            .design-development h2 {
                font-size: 2rem;
            }

            .design-development h3 {
                font-size: 1.3rem;
            }

            .image-container {
                height: 150px;
            }
        }

        .logo-center-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            background: white;
            border-radius: 50%;
            padding: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .center-logo {
            max-width: 80px;
            max-height: 80px;
            width: auto;
            height: auto;
        }

        .position-relative {
            position: relative;
        }

        .certifications-section h4 {
            color: #0d5349;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .certifications-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .cert-item {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 4px solid #0d5349;
        }

        .cert-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .cert-icon {
            margin-right: 20px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: rgba(49, 130, 206, 0.1);
        }

        .cert-name {
            font-weight: 500;
            color: #000000;
        }

        .image-container {
            background-color: #e9ecef;
            height: 200px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .image-container img {
            width: 100%;
            /* height: 100%; */
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .image-container:hover img {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .logo-center-container {
                width: 100px;
                height: 100px;
                padding: 10px;
            }

            .center-logo {
                max-width: 60px;
                max-height: 60px;
            }

            .image-container {
                height: 150px;
            }
        }

        .section-padding {
            padding: 18px 0;
        }

        .section-light {
            background-color: #f8f9fa;
        }

        .section-title {
            color: var(--primary-color);
            font-size: 2.2rem;
            font-weight: 500;
            /* margin-bottom: 1.5rem; */
            position: relative;
        }


        .section-subtitle {
            color: #fff;
            /* font-size: 1.2rem; */
            margin-bottom: 2rem;
        }

        .section-content {
            color: #4a5568;
            /* font-size: 1.1rem; */
            /* line-height: 1.4; */
            text-align: justify;
        }

        .section-image {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .section-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .section-image:hover img {
            transform: scale(1.03);
        }

        /* Icon Cards */
        .icon-card {
            text-align: center;
            padding: 3px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }

        .icon-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .icon-card i {
            font-size: 3rem;
            color: #0d5349;
            margin-bottom: 0.5rem;
        }

        .icon-card h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .icon-card p {
            color: #4a5568;
        }

        /* Job Cards */
        .job-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-color);
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .job-title {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .job-description {
            color: #4a5568;
        }

        /* Form Styles */
        .application-form {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-control,
        .form-select {
            padding: 12px 15px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
        }

        .file-upload {
            border: 2px dashed #e2e8f0;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .file-upload:hover {
            border-color: var(--primary-color);
            background-color: rgba(49, 130, 206, 0.05);
        }

        .file-upload i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .btn-primary {
            background-color: #0d5349;
            border-color: #0d5349;
            color: #fff;
            font-weight: 100;
        }

        .contact-info .contact-item {
            display: flex;
            color: #71adb7;

            align-items: flex-start;
        }

        .contact-info .contact-item i {
            margin-top: 2px;
            color: #71adb7;
            min-width: 20px;
        }

        .contact-info a {
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #71adb7 !important;
        }

        .contact-section {
            padding: 60px 0;
        }

        .contact-form-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .contact-form-card h2 span {
            color: #0d5349;
        }

        .form-control:focus {
            border-color: #0d5349;
            box-shadow: 0 0 0 0.25rem rgba(243, 197, 67, .25);
        }

        .btn-custom {
            background: #0d5349;
            color: #000;
            font-weight: 600;
            border-radius: 8px;
        }

        .btn-custom:hover {
            background: #0d5349;
            color: #000;
        }

        .map-container iframe {
            border: 0;
            width: 100%;
            height: 350px;
            border-radius: 16px;
        }

        .contact_contact-info i {
            color: #0d5349;
            font-size: 1.3rem;
            margin-right: 10px;
        }

        .contact_contact-info p {
            text-align: justify;
            padding: 15px 10px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }

        .scrollable-column {
            max-height: 800px;
            overflow-y: auto;
            padding-right: 10px;
        }