
        .about-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .section-title {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .section-title span {
            color: #D42B31;
        }

        .highlight {
            font-weight: 300;
            color: #3c3c3c;
            margin-bottom: 11px;
        }

        .about-list {
            list-style: none;
            padding: 0;
        }

        .about-list li {
            font-size: 18px;
            color: #444;
            margin-bottom: 10px;
        }

        .about-list i {
            color: #D42B31;
            margin-right: 10px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 20px;
            background-color: white;
            color: #D42B31;
            font-size: 18px;
            border-radius: 5px;
            border: 1px solid #D42B31;
            text-decoration: none;
            margin-top: 15px;
        }

        .btn-primary:hover {
            color: white !important;
            background-color: #D42B31;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        }

        .site-breadcrumb {
            border-bottom: 1px solid #ddd;
        }

        .about-image {
            overflow: hidden;
            border-radius: 10px;
        }

        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.4s ease;
        }

        .about-image img:hover {
            transform: scale(1.1);
            cursor: pointer;
            /* Zoom in */
        }

        .tp-counter-item {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .tp-counter-item:hover {
            cursor: pointer;
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        /* Optional: Icon bounce on hover */
        .tp-counter-item:hover .tp-counter-icon i {
            animation: bounce 0.6s;
        }

        @keyframes bounce {
            0% {
                transform: translateY(0);
            }

            30% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(5px);
            }

            100% {
                transform: translateY(0);
            }
        }

        .about-list li i {
            color: #D42B31;
            margin-right: 10px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .about-list li:hover i {
            animation: rotate-vertical 1.1s ease-out;
        }

        @keyframes rotate-vertical {
            0% {
                transform: rotateY(0deg);
            }

            100% {
                transform: rotateY(360deg);
            }
        }



        /* ceo Page */


    
        .ceo-name {
            font-size: 20px;
            font-weight: bold;
            margin-top: 15px;
        }

        .breadcrumb-section {
            background-color: #f8f9fa;
            padding: 15px 0;
            border-bottom: 1px solid #ddd;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item a {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
        }

        .breadcrumb-item a:hover {
            text-decoration: underline;
        }

        .breadcrumb-item.active {
            color: #6c757d;
            font-weight: 500;
        }

        .about-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .section-title {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .section-title span {
            color: #D42B31;
        }

        .highlight {
            font-weight: 500;
            color: #555;
            margin-bottom: 13px;
        }

        .about-list {
            list-style: none;
            padding: 0;
        }

        .about-list li {
            font-size: 18px;
            color: #444;
            margin-bottom: 10px;
        }

        .about-list i {
            color: #D42B31;
            margin-right: 10px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 20px;
            background-color: #D42B31;
            color: #fff;
            font-size: 18px;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 15px;
        }

        .btn-primary:hover {
            background-color: #D42B31;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        }

        .site-breadcrumb {
            border-bottom: 1px solid #ddd;
        }

        .about-list li {

            margin-right: 10px;
            cursor: pointer;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .highlight {
            font-weight: 300;
            color: #3c3c3c;
            margin-bottom: 11px;
        }

        .about-list li i {
            color: #D42B31;
            margin-right: 10px;
            cursor: pointer;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .about-list li:hover i {

            animation: rotate-vertical 1.1s ease-out;
        }

        @keyframes rotate-vertical {
            0% {
                transform: rotateY(0deg);
            }

            100% {
                transform: rotateY(360deg);
            }
        }

        /* Page Styling */

        /* Container */
        .profile-container {
            position: relative;
            /* width: 700px; */
            /* height: 500px; */
            background: transparent;
        }

        .profile-container:hover {
            cursor: pointer;
        }

        /* Background Abstract Shape */
        .profile-container::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: #133b63;
            clip-path: ellipse(68% 53% at 47% 40%);
            z-index: -1;
        }

        /* Name Tag */
        .name-tag {
            position: absolute;
            bottom: -90px;
            left: 37%;
            transform: translateX(-50%);
            background: #133b63;
            color: white;
            padding: 34px 20px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            min-width: 250px;
            animation: morphin 10s infinite;
        }

        /* Morphing Effect */
        @keyframes morphin {
            0% {
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }

            50% {
                border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
            }

            100% {
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .profile-container {
                width: 100%;
                height: auto;
            }




            .name-tag {
                bottom: -40px;
                font-size: 14px;
                padding: 20px 15px;
                min-width: 200px;
            }
        }

        @media (max-width: 480px) {
            .profile-container {
                /* width: 288px; */
                margin-bottom: 43px;
            }

            .name-tag {
                bottom: -30px;
                font-size: 12px;
                padding: 15px 10px;
                min-width: 180px;
                margin: 0 36px;
            }
        }

        .profile-image {
            max-width: 100%;
            width: 500px;
        }


        /* 3rd mission */



        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #D42B31;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .icon-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: #D42B31;
            color: #ffffff;
            font-size: 32px;
            margin: auto;
        }

        .icon-text {
            font-size: 14px;
            font-weight: bold;
            margin-top: 5px;
            color: #D42B31;
            text-transform: uppercase;
        }

        .card {
            border: none !important;
            border-radius: 12px;
            /* box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1); */
            transition: transform 0.3s ease-in-out;
            background-color: #ffffff;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card-title {
            font-size: 22px;
            font-weight: bold;
            text-align: center;
            margin-top: 15px;
            color: #D42B31;
        }

        .card-text {
            font-size: 16px;
            text-align: center;
            color: #555;
        }

        .highlight {
            font-weight: 300;
            color: #3c3c3c;
            margin-bottom: 11px;
        }

        .card-text {
            font-size: 16px;
            line-height: 1.6;
            font-weight: 300;
            color: #3c3c3c;
            /* Darker text for readability */
        }

        .card-text strong {
            font-weight: 600;
            color: #D42B31;
            /* Highlighted color from your logo */
        }

        .left-text {
            text-align: left;
        }

        .left-text1 {
            text-align: center;
        }


        /* Brulon History */


        
        .ceo-name {
            font-size: 20px;
            font-weight: bold;
            margin-top: 15px;
        }

        .breadcrumb-section {
            background-color: #f8f9fa;
            padding: 15px 0;
            border-bottom: 1px solid #ddd;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item a {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
        }

        .breadcrumb-item a:hover {
            text-decoration: underline;
        }

        .breadcrumb-item.active {
            color: #6c757d;
            font-weight: 500;
        }

        .about-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .section-title {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .section-title span {
            color: #D42B31;
        }

        .highlight {
            font-weight: 500;
            color: #555;
            margin-bottom: 13px;
        }

        .about-list {
            list-style: none;
            padding: 0;
        }

        .about-list li {
            font-size: 18px;
            color: #444;
            margin-bottom: 10px;
        }

        .about-list i {
            color: #D42B31;
            margin-right: 10px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 20px;
            background-color: #D42B31;
            color: #fff;
            font-size: 18px;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 15px;
        }

        .btn-primary:hover {
            background-color: #D42B31;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        }

        .site-breadcrumb {
            border-bottom: 1px solid #ddd;
        }






/* Leadership */
        .ceo-name {
            font-size: 20px;
            font-weight: bold;
            margin-top: 15px;
        }

        .breadcrumb-section {
            background-color: #f8f9fa;
            padding: 15px 0;
            border-bottom: 1px solid #ddd;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item a {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
        }

        .breadcrumb-item a:hover {
            text-decoration: underline;
        }

        .breadcrumb-item.active {
            color: #6c757d;
            font-weight: 500;
        }

        .about-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .section-title {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .section-title span {
            color: #D42B31;
        }

        .highlight {
            font-weight: 500;
            color: #555;
            margin-bottom: 13px;
        }

        .about-list {
            list-style: none;
            padding: 0;
        }

        .about-list li {
            font-size: 18px;
            color: #444;
            margin-bottom: 10px;
        }

        .about-list i {
            color: #D42B31;
            margin-right: 10px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 20px;
            background-color: #D42B31;
            color: #fff;
            font-size: 18px;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 15px;
        }

        .btn-primary:hover {
            background-color: #D42B31;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        }

        .site-breadcrumb {
            border-bottom: 1px solid #ddd;
        }






        .ceo-name {
            font-size: 20px;
            font-weight: bold;
            margin-top: 15px;
        }

        .breadcrumb-section {
            background-color: #f8f9fa;
            padding: 15px 0;
            border-bottom: 1px solid #ddd;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item a {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
        }

        .breadcrumb-item a:hover {
            text-decoration: underline;
        }

        .breadcrumb-item.active {
            color: #6c757d;
            font-weight: 500;
        }

        .about-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .section-title {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .section-title span {
            color: #D42B31;
        }

        .highlight {
            font-weight: 500;
            color: #555;
            margin-bottom: 13px;
        }

        .about-list {
            list-style: none;
            padding: 0;
        }

        .about-list li {
            font-size: 18px;
            color: #444;
            margin-bottom: 10px;
        }

        .about-list i {
            color: #D42B31;
            margin-right: 10px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 20px;
            background-color: #D42B31;
            color: #fff;
            font-size: 18px;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 15px;
        }

        .btn-primary:hover {
            background-color: #D42B31;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        }

        .site-breadcrumb {
            border-bottom: 1px solid #ddd;
        }



        

        .ceo-name {
            font-size: 20px;
            font-weight: bold;
            margin-top: 15px;
        }

        .breadcrumb-section {
            background-color: #f8f9fa;
            padding: 15px 0;
            border-bottom: 1px solid #ddd;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item a {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
        }

        .breadcrumb-item a:hover {
            text-decoration: underline;
        }

        .breadcrumb-item.active {
            color: #6c757d;
            font-weight: 500;
        }

        .about-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .section-title {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .section-title span {
            color: #D42B31;
        }

        .highlight {
            font-weight: 500;
            color: #555;
            margin-bottom: 13px;
        }

        .about-list {
            list-style: none;
            padding: 0;
        }

        .about-list li {
            font-size: 18px;
            color: #444;
            margin-bottom: 10px;
        }

        .about-list i {
            color: #D42B31;
            margin-right: 10px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 20px;
            background-color: #D42B31;
            color: #fff;
            font-size: 18px;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 15px;
        }

        .btn-primary:hover {
            background-color: #D42B31;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        }

        .site-breadcrumb {
            border-bottom: 1px solid #ddd;
        }


        .thumbnail {
            border: 1px solid #ddd;
            /* padding: 5px; */
            border-radius: 5px;
            transition: transform 0.2s;
        }

        .thumbnail:hover {
            transform: scale(1.05);
            cursor: pointer;
        }

        .thumb-img {
            width: 100%;
            height: auto;
        }

        .our-team {
            background: #ffdfdf;
            text-align: center;
        }

        .our-team .pic {
            position: relative;
            overflow: hidden;
            transform: scale(1);
            transition: all 0.3s ease 0s;
        }

        .our-team:hover .pic {
            transform: scale(1.01);
        }

        .our-team .pic:after {
            content: "";
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 0 900px rgb(11 11 11 / 50%);
            position: absolute;
            bottom: -100px;
            right: -100px;
            opacity: 0;
            transform: scale3d(0.5, 0.5, 1);
            transform-origin: 50% 50% 0;
            transition: all 0.35s ease 0s;
        }

        .our-team:hover .pic:after {
            opacity: 1;
            transform: translate3d(0px, 0px, 0px);
        }

        .our-team .pic img {
            width: 100%;
            height: auto;
        }

        .our-team .read-more {
            width: 100px;
            padding: 0 15px 15px 0;
            font-size: 14px;
            color: #fff;
            letter-spacing: 0.35px;
            text-align: right;
            text-transform: uppercase;
            position: absolute;
            bottom: 258px;
            right: 0;
            opacity: 0;
            z-index: 1;
            transform: translate3d(20px, 20px, 0px);
            transition: all 0.35s ease 0s;
        }

        .our-team:hover .read-more {
            opacity: 1;
            transform: translate3d(0px, 0px, 0px);
        }

        .our-team:hover {
            cursor: pointer;
        }

        .our-team .team-content {
            padding: 20px 0;
        }

        .our-team .title {
            font-size: 22px;
            font-weight: 700;
            color: #3b3b3b;
            text-transform: capitalize;
            margin: 0 0 8px 0;
        }

        .our-team .post {
            font-size: 13px;
            font-weight: 500;
            color: #6e6e70;
            text-transform: capitalize;
        }



        @media only screen and (max-width: 990px) {
            .our-team {
                margin-bottom: 30px;
            }
        }

        .border-card {
            border-radius: 10px;
        }




        /* blog */



        .ceo-name {
            font-size: 20px;
            font-weight: bold;
            margin-top: 15px;
        }

        .breadcrumb-section {
            background-color: #f8f9fa;
            padding: 15px 0;
            border-bottom: 1px solid #ddd;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item a {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
        }

        .breadcrumb-item a:hover {
            text-decoration: underline;
        }

        .breadcrumb-item.active {
            color: #6c757d;
            font-weight: 500;
        }

        .about-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .section-title {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .section-title span {
            color: #D42B31;
        }

        .highlight {
            font-weight: 500;
            color: #555;
            margin-bottom: 13px;
        }

        .about-list {
            list-style: none;
            padding: 0;
        }

        .about-list li {
            font-size: 18px;
            color: #444;
            margin-bottom: 10px;
        }

        .about-list i {
            color: #D42B31;
            margin-right: 10px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 20px;
            background-color: #D42B31;
            color: #fff;
            font-size: 18px;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 15px;
        }

        .btn-primary:hover {
            background-color: #D42B31;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        }

        .site-breadcrumb {
            border-bottom: 1px solid #ddd;
        }

        .mt-20 {
            margin-top: 80px !important;
        }

        .our-team {
            text-align: center;
            position: relative;
        }

        .our-team:hover {
            cursor: pointer;
        }

        .our-team img {
            width: 100%;
            height: auto;
        }

        .our-team .team-content {
            width: 100%;
            height: auto;
            background: #ecdfbd;
            padding: 15px 0;
            border-left: 5px solid #fb6648;
            box-shadow: 0 15px 25px 0 rgba(3, 7, 15, 0.1);
            position: absolute;
            bottom: -67;
            right: 0;
            transition: all 0.5s ease 0s;
        }

        .our-team:hover .team-content {
            background: #d42b31;
        }

        .our-team .title {
            font-size: 20px;
            font-weight: 700;
            color: #5e3448;
            text-transform: capitalize;
            margin: 0;
            transition: all 0.5s ease 0s;
        }

        .our-team:hover .title {
            color: #ffffff;
            margin-bottom: 10px;
        }

        .our-team .post {
            display: block;
            font-size: 16px;
            /* font-style: italic; */
            color: #fb6648;
            text-transform: capitalize;
            height: 0;
            opacity: 0;
            transform: scale(0);
            transition: all 0.5s ease 0s;
        }

        .our-team:hover .post {
            height: 40px;
            opacity: 1;
            transform: scale(1);
        }

        .our-team .social {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
            position: absolute;
            bottom: 0;
            left: 0;
            opacity: 0;
            transform: translateY(-60%);
            transition: all 0.5s ease 0s;
        }

        .our-team:hover .social {
            transform: translateY(50%);
            opacity: 1;
        }

        .our-team .social li {
            display: inline-block;
        }

        .our-team .social li a {
            display: block;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #ecdfbd;
            font-size: 17px;
            font-weight: 700;
            line-height: 40px;
            color: #5e3448;
            transition: all 0.5s ease 0s;
        }

        .our-team .social li a:hover {
            color: #ecdfbd;
            background: #5e3448;
        }

        @media only screen and (max-width: 990px) {
            .our-team {
                margin-bottom: 74px;
            }

            .mt-20 {
                margin-top: 50px !important;
            }

        }

        .Download-bron {
            font-size: 20px;
            font-weight: 500;
        }

        .tp-blog-list-thumb {
            width: 100% !important;
            flex: 0 0 auto;
            overflow: hidden;
        }

        .tp-blog-list-thumb img {
            /* max-width: 100%; */
            width: 100% !important;
            height: 100%;
        }

        .bg-light12 {
            background-color: white;
        }




   /* News Event */
        .ceo-name {
            font-size: 20px;
            font-weight: bold;
            margin-top: 15px;
        }

        .breadcrumb-section {
            background-color: #f8f9fa;
            padding: 15px 0;
            border-bottom: 1px solid #ddd;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item a {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
        }

        .breadcrumb-item a:hover {
            text-decoration: underline;
        }

        .breadcrumb-item.active {
            color: #6c757d;
            font-weight: 500;
        }

        .about-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .section-title {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .section-title span {
            color: #D42B31;
        }

        .highlight {
            font-weight: 500;
            color: #555;
            margin-bottom: 13px;
        }

        .about-list {
            list-style: none;
            padding: 0;
        }

        .about-list li {
            font-size: 18px;
            color: #444;
            margin-bottom: 10px;
        }

        .about-list i {
            color: #D42B31;
            margin-right: 10px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 20px;
            background-color: #D42B31;
            color: #fff;
            font-size: 18px;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 15px;
        }

        .btn-primary:hover {
            background-color: #D42B31;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        }

        .site-breadcrumb {
            border-bottom: 1px solid #ddd;
        }

        .mt-20 {
            margin-top: 80px !important;
        }

        .our-team {
            text-align: center;
            position: relative;
        }

        .our-team:hover {
            cursor: pointer;
        }

        .our-team img {
            width: 100%;
            height: auto;
        }

        .our-team .team-content {
            width: 100%;
            height: auto;
            background: #ecdfbd;
            padding: 15px 0;
            border-left: 5px solid #fb6648;
            box-shadow: 0 15px 25px 0 rgba(3, 7, 15, 0.1);
            position: absolute;
            bottom: -67;
            right: 0;
            transition: all 0.5s ease 0s;
        }

        .our-team:hover .team-content {
            background: #d42b31;
        }

        .our-team .title {
            font-size: 20px;
            font-weight: 700;
            color: #5e3448;
            text-transform: capitalize;
            margin: 0;
            transition: all 0.5s ease 0s;
        }

        .our-team:hover .title {
            color: #ffffff;
            margin-bottom: 10px;
        }

        .our-team .post {
            display: block;
            font-size: 16px;
            /* font-style: italic; */
            color: #fb6648;
            text-transform: capitalize;
            height: 0;
            opacity: 0;
            transform: scale(0);
            transition: all 0.5s ease 0s;
        }

        .our-team:hover .post {
            height: 40px;
            opacity: 1;
            transform: scale(1);
        }

        .our-team .social {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
            position: absolute;
            bottom: 0;
            left: 0;
            opacity: 0;
            transform: translateY(-60%);
            transition: all 0.5s ease 0s;
        }

        .our-team:hover .social {
            transform: translateY(50%);
            opacity: 1;
        }

        .our-team .social li {
            display: inline-block;
        }

        .our-team .social li a {
            display: block;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #ecdfbd;
            font-size: 17px;
            font-weight: 700;
            line-height: 40px;
            color: #5e3448;
            transition: all 0.5s ease 0s;
        }

        .our-team .social li a:hover {
            color: #ecdfbd;
            background: #5e3448;
        }

        @media only screen and (max-width: 990px) {
            .our-team {
                margin-bottom: 74px;
            }

            .mt-20 {
                margin-top: 50px !important;
            }

        }

        .Download-bron {
            font-size: 20px;
            font-weight: 500;
        }

        .tp-blog-list-thumb {
            width: 100% !important;
            flex: 0 0 auto;
            overflow: hidden;
        }

        .tp-blog-list-thumb img {
            /* max-width: 100%; */
            width: 100% !important;
            height: 100%;
        }

        .tp-blog-tag>span {
            color: #ff0909 !important;
        }




        /* catalogue */

    
        .ceo-name {
            font-size: 20px;
            font-weight: bold;
            margin-top: 15px;
        }

        .breadcrumb-section {
            background-color: #f8f9fa;
            padding: 15px 0;
            border-bottom: 1px solid #ddd;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item a {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
        }

        .breadcrumb-item a:hover {
            text-decoration: underline;
        }

        .breadcrumb-item.active {
            color: #6c757d;
            font-weight: 500;
        }

        .about-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .section-title {
           font-size: 26px;
            font-weight: 500;
            color: #333;
            margin-bottom: 10px;
            text-align: left;
        }
    
        @media (max-width: 768px) {
   
        .section-title {
           font-size: 20px !important;
           }
                    
        }

        .section-title span {
            color: #D42B31;
        }

        .highlight {
            font-weight: 300;
            color: #3c3c3c;
            margin-bottom: 16px;
        }

        .about-list {
            list-style: none;
            padding: 0;
        }

        .about-list li {
            font-size: 18px;
            color: #444;
            margin-bottom: 10px;
        }

        .about-list i {
            color: #D42B31;
            margin-right: 10px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 20px;
            background-color: #D42B31;
            color: #fff;
            font-size: 18px;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 15px;
        }

        .btn-primary:hover {
            background-color: #D42B31;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        }

        .site-breadcrumb {
            border-bottom: 1px solid #ddd;
        }

        .mt-20 {
            margin-top: 80px !important;
        }

        .our-team {
            text-align: center;
            position: relative;
        }

        .our-team:hover {
            cursor: pointer;
        }

        .our-team img {
            width: 100%;
            height: auto;
        }

        .our-team .team-content {
            width: 100%;
            height: auto;
            background: #ffffff;
            padding: 15px 0;
            border-left: 5px solid #fb6648;
            box-shadow: 0 15px 25px 0 rgba(3, 7, 15, 0.1);
            position: absolute;
            bottom: -30px;
            right: 0;
            transition: all 0.5s ease 0s;
        }

        .our-team:hover .team-content {
            background: #d42b31;
        }

        .our-team .title {
           font-size: 18px;
  font-weight: 500;
  color: #e9262d;
  text-transform: capitalize;
  margin: 0;
  transition: all 0.5s ease 0s;
        }

        .our-team:hover .title {
            color: #ffffff;
            margin-bottom: 10px;
        }

        .our-team .post {
            display: block;
            font-size: 16px;
            /* font-style: italic; */
            color: #ffffff;
            text-transform: capitalize;
            height: 0;
            opacity: 0;
            transform: scale(0);
            transition: all 0.5s ease 0s;
        }

        .our-team:hover .post {
            height: 40px;
            opacity: 1;
            transform: scale(1);
        }

        .our-team .social {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
            position: absolute;
            bottom: 0;
            left: 0;
            opacity: 0;
            transform: translateY(-60%);
            transition: all 0.5s ease 0s;
        }

        .our-team:hover .social {
            transform: translateY(50%);
            opacity: 1;
        }

        .our-team .social li {
            display: inline-block;
        }

        .our-team .social li a {
            display: block;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #ecdfbd;
            font-size: 17px;
            font-weight: 700;
            line-height: 40px;
            color: #5e3448;
            transition: all 0.5s ease 0s;
        }

        .our-team .social li a:hover {
            color: #ecdfbd;
            background: #5e3448;
        }

        @media only screen and (max-width: 990px) {
            .our-team {
                margin-bottom: 74px;
            }

            .mt-20 {
                margin-top: 50px !important;
            }

        }

        .Download-bron {
            font-size: 20px;
            font-weight: 500;
        }

        .tp-history-thumb-wrapper-news {
            overflow: hidden;
        }

        .tp-history-thumb-news img {
            transition: all 0.5s ease;
            transform: scale(1.1);

        }

        .tp-history-thumb-news img:hover {
            cursor: pointer;
            transform: scale(1.15);
        }

        .tp-history-title-news {
            font-size: 18px !important;
            font-weight: 500;
            line-height: 1.14;
            margin-bottom: 15px;
            color: red;
        }

        .tp-history-content-news h4 {
            font-size: 20px;
            line-height: 1.5;
            margin-bottom: 2px !important;
            font-weight: 500;
        }

        .animated-image {
            /* width: 200px;
            height: 200px; */
            animation: moveImage 3s infinite alternate ease-in-out;
        }

        @keyframes moveImage {
            0% {
                transform: translate3d(0px, 0px, 0px);
            }

            50% {
                transform: translate3d(15px, -15px, 0px);
            }

            100% {
                transform: translate3d(0px, -15px, 15px);
            }
        }




        /* brulon history */
        
        body {
            /* font-family: Arial, sans-serif; */
            background-color: #f8f9fa;
        }

        .timeline-section {
            padding: 30px 0;
        }

        .timeline-sidebar {
            width: 150px;
            float: left;
            padding-right: 20px;
            /* position: sticky; */
            top: 20px;
            max-height: calc(100vh - 40px);
            overflow-y: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .timeline-sidebar::-webkit-scrollbar {
            display: none;
        }

        .timeline-sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .timeline-sidebar li {
            padding: 8px 0;
            font-size: 18px;
            color: #6c757d;
            cursor: pointer;
            text-align: center;
        }

        .timeline-sidebar li.active {
            color: #e9262d;
            font-weight: bold;
        }

        .timeline-sidebar .year-nav {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            justify-content: center;
        }

        .timeline-sidebar .year-nav .icon {
            margin-right: 5px;
            color: #e9262d;
        }

        .timeline-sidebar .year-nav span {
            font-size: 1.2em;
            font-weight: bold;
            color: #343a40;
        }

        .timeline-content {
            /* margin-left: 170px; */
            /* Adjust based on sidebar width */
            padding-left: 20px;
        }

        .timeline-header h2 {
            font-size: 2.5em;
            font-weight: 300;
            color: #343a40;
            margin-bottom: 30px;
        }

        .event-card-container {
            display: flex;
            overflow-x: auto;
            padding-bottom: 15px;
            scrollbar-width: thin;
            scrollbar-color: #e9262d #f1f1f1;
        }

        .event-card-container::-webkit-scrollbar {
            height: 8px;
        }

        .event-card-container::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .event-card-container::-webkit-scrollbar-thumb {
            background-color: #e9262d;
            border-radius: 10px;
            border: 2px solid #f1f1f1;
        }

        .event-card {
            flex: 0 0 300px;
            /* Fixed width for cards */
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            margin-right: 20px;
            padding: 25px;
            border: 1px solid #e9ecef;
            transition: transform 0.2s ease-in-out;
        }

        .event-card:hover {
            transform: translateY(-5px);
        }

        .event-card .icon {
            font-size: 2.5em;
            color: #e9262d;
            margin-bottom: 15px;
            background-color: #e6f2ff;
            border-radius: 50%;
            padding: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 60px;
            width: 60px;
        }

        .event-card h5 {
            font-size: 18px;
            color: #343a40;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .event-card p {
            font-size: 16px;
            color: #6c757d;
            line-height: 1.6;
        }

        .event-card p strong {
            color: #343a40;
        }

        .timeline-controls {
            display: none;
            /* Hide default controls if using custom JS scrolling */
            justify-content: center;
            margin-top: 20px;
        }

        .timeline-controls button {
            background: none;
            border: none;
            font-size: 2em;
            color: #e9262d;
            cursor: pointer;
            margin: 0 10px;
        }

        .event-image {
            width: 100%;
        }

        @media screen and (max-width: 768px) {
            .timeline-sidebar ul {
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
                justify-content: center;
                gap: 12px;
                flex-wrap: wrap;
            }

        }
    


    
        /* upcomming card */
        .upcommingCard {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgb(217, 217, 217);
            transition: all 0.5s ease;
            background-color: #fdf1f1f5;
        }

        .upcommingCard:hover {
            transform: scale(1.02);
        }

        .upcommingCard img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 50%;
            margin-top: -70px;

        }

        .leaderCardImg {
            width: 170px;
            display: flex;
            justify-content: center;
            margin: auto;
        }

        .leaderCardContent {
            margin: 10px 20px;
            border-radius: 5px;
            padding: 10px;
            transition: all 0.5s ease, color 0.3s ease
        }

        .upcommingCard:hover .leaderCardContent {
            background-color: #e9262d;
        }

        .leaderCardContent h5 {
            color: #e9262d;
        }

        .leaderCardContent p {
            color: #e9262d;
        }

        .upcommingCard:hover .leaderCardContent h5 {
            color: white;
        }

        .upcommingCard:hover .leaderCardContent p {
            color: white;
        }

        .card-content p {
            font-size: 14px;
            color: #555;
            /* margin: 10px 0; */
            text-align: center;
        }

        .mt-60 {
            margin-top: 60px;
        }
   


  .productImageContainer {
            background-color: white;
            padding: 30px 0px;
            position: relative;
           background-image: url("../images/about/background-image2.jpg");
            background-size: cover;
            max-width: 100%;
        }

     @media screen and (max-width: 768px) {
        .upcommingCard{
            margin-bottom: 70px;
        }
        
     }