    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #ffffff;
    color: #333;
}

/* =========================================
    TOP BAR
========================================= */

.top-bar {
    height: 66px;
    background: #f5f5f5;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #e5e5e5;
}

.top-bar-container {
    max-width: 1360px;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

/* Contact section */

.contact-info {
    display: flex;
    height: 100%;
}
 /* Social */

.social-links {
    display: flex;
    height: 100%;
}

.social-link {
    width: 61px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    color: #aaa;
    text-decoration: none;

    border-left: 1px solid #dddddd;

    font-size: 16px;

    transition: all 0.3s ease;
}

.social-link:last-child {
    border-right: 1px solid #dddddd;
}

.social-link:hover {
    color: #ed1c24;
    background: #ffffff;
}


/* =========================================
    MAIN HEADER
========================================= */

.main-header {
    background: #ffffff;
}

.header-container {
    max-width: 1360px;
    height: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
    LOGO
========================================= */

.logo {
    width: 190px;
    text-decoration: none;
    display: block;
}

.logo { 
    width: 100px;
    display: block;
    text-decoration: none;
}

.logo img {
    width: 100%;
    /* padding: 20px 10px; */
    height: auto;
    display: block;
}


/* =========================================
    NAVIGATION
========================================= */

/* .main-navigation {
    margin-top: 35px;
} */

.main-navigation .nav {
    gap: 33px;
}

.main-navigation .nav-link {
    padding: 0;

    font-size: 16px;
    font-weight: 400;

    color: #333;

    text-transform: uppercase;

    transition: color 0.3s ease;
}

.main-navigation .nav-link:hover {
    color: #ed1c24;
}

.main-navigation .nav-link.active {
    color: #D80001;
}


/* =========================================
    RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .top-bar {
        height: auto;
    }

    .top-bar-container {
        flex-direction: column;
    }

    .contact-info {
        justify-content: center;
        flex-wrap: wrap;
    } 

    .head-contact-item {
        min-height: 50px;
    }

    .social-links {
        justify-content: center;
        height: 50px;
    }

    .main-header {
        height: auto;
        padding: 35px 0;
    }

    .header-container {
        flex-direction: column;
        gap: 35px;
    }

    .main-navigation {
        margin-top: 0;
    }

    .main-navigation .nav {
        gap: 20px;
        justify-content: center;
    }
}


@media (max-width: 576px) {

    .contact-info {
        flex-direction: column;
        width: 100%;
    } 

    .head-contact-item {
        justify-content: center;
        border-right: 1px solid #ddd;
    }

    .main-navigation .nav {
        flex-direction: column;
        align-items: center;
        gap: 18px; 
    }

    .logo-company .industrial {
        font-size: 27px;
    }

    .logo-company .engineering {
        font-size: 22px;
    }
}

.hero-slider {
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .hero-slider .carousel,
        .hero-slider .carousel-inner,
        .hero-slider .carousel-item {
            width: 100%;
        }

        /* Slider image */

        .hero-slider .carousel-item img {
            width: 100%;
            height: auto;
            min-height: 420px;
            max-height: 750px;
            object-fit: cover;
            object-position: center center;
            display: block;
        }


        /* ==========================================
           DARK / LIGHT OVERLAY
        ========================================== */

        .hero-slider .carousel-item::after {
            content: "";
            position: absolute;
            inset: 0;

            background: rgba(0, 0, 0, 0.05);

            pointer-events: none;
        }


        /* ==========================================
           ARROWS
        ========================================== */

        .hero-slider .carousel-control-prev,
        .hero-slider .carousel-control-next {
            width: 50px;
            height: 100px;

            top: 50%;
            transform: translateY(-50%);

            background: rgba(255, 255, 255, 0.08);

            opacity: 0.6;

            transition: all 0.3s ease;
        }

        .hero-slider .carousel-control-prev {
            left: 0;
        }

        .hero-slider .carousel-control-next {
            right: 0;
        }

        .hero-slider .carousel-control-prev:hover,
        .hero-slider .carousel-control-next:hover {
            background: rgba(255, 255, 255, 0.2);
            opacity: 1;
        }

        .hero-slider .carousel-control-prev-icon,
        .hero-slider .carousel-control-next-icon {
            width: 22px;
            height: 22px;
        }


        /* ==========================================
           DOTS
        ========================================== */

        .hero-slider .carousel-indicators {
            margin-bottom: 12px;
        }

        .hero-slider .carousel-indicators button {
            width: 12px;
            height: 12px;

            border-radius: 50%;

            margin: 0 5px;

            border: 0;

            background-color: #ffffff;

            opacity: 0.45;
        }

        .hero-slider .carousel-indicators button.active {
            opacity: 1;
        }


        /* ==========================================
           RESPONSIVE - TABLET
        ========================================== */

        @media (max-width: 991px) {

            .hero-slider .carousel-item img {
                min-height: 400px;
                height: 55vw;
                object-fit: cover;
            }

        }


        /* ==========================================
           RESPONSIVE - MOBILE
        ========================================== */

        @media (max-width: 767px) {

            .hero-slider .carousel-item img {
                height: 300px;
                min-height: 300px;
                max-height: 400px;

                object-fit: cover;
                object-position: center;
            }

            .hero-slider .carousel-control-prev,
            .hero-slider .carousel-control-next {
                width: 38px;
                height: 70px;
            }

            .hero-slider .carousel-indicators {
                margin-bottom: 8px;
            }

            .hero-slider .carousel-indicators button {
                width: 8px;
                height: 8px;

                margin: 0 3px;
            }

        }


        /* ==========================================
           SMALL MOBILE
        ========================================== */

        @media (max-width: 480px) {

            .hero-slider .carousel-item img {
                height: 250px;
                min-height: 250px;
            }

        }
/* =========================================
           PRODUCTS SECTION
        ========================================= */

        .products-section {
            width: 100%;
            padding-top: 40px;
            background: #fff;
        }


        /* =========================================
           SECTION TITLE
        ========================================= */

        .products-heading {
            text-align: center;
            margin-bottom: 30px;
        }

        .products-heading h2 {
            margin: 0;

            font-size: 25px;
            font-weight: 500;

            letter-spacing: 0.5px;
            text-transform: uppercase;

            color: #050505;
        } 

        /* =========================================
           DESCRIPTION
        ========================================= */

        .products-description {
            max-width: 1050px;

            margin: 0 auto 48px;

            text-align: center;

            font-size: 15px;
            line-height: 1.65;

            font-weight: 400;

            color: #555;
        }


        /* =========================================
           PRODUCT GRID
        ========================================= */

        .products-grid {
            width: 100%;
            margin: 0;
            padding: 0;
        }


        /* Remove Bootstrap gutters */

        .products-grid > [class*="col-"] {
            padding-left: 0;
            padding-right: 0;
        }


        /* =========================================
           PRODUCT CARD
        ========================================= */

        .product-card {
            position: relative;

            width: 100%;

            overflow: hidden;

            background: #eee;

            cursor: pointer;
        }


        /* Product image */

        .product-image {
            width: 100%;

            aspect-ratio: 1.45 / 1;

            object-fit: cover;

            display: block;

            transition:
                transform 0.5s ease,
                filter 0.5s ease;
        }


        /* =========================================
           OVERLAY
        ========================================= */

        .product-overlay {
            position: absolute;

            inset: 0;

            display: flex;
            flex-direction: column;

            justify-content: center;
            align-items: center;

            text-align: center;

            background: rgba(0, 0, 0, 0.50);

            opacity: 0;

            transition: opacity 0.4s ease;
        }


        /* =========================================
           PRODUCT TITLE
        ========================================= */

        .product-title {
            color: #fff;

            font-size: 14px;
            font-weight: 400;

            margin-bottom: 18px;

            text-transform: none;
        }


        /* =========================================
           VIEW PRODUCT BUTTON
        ========================================= */

        .view-product {
            display: inline-flex;

            align-items: center;
            justify-content: center;

            min-width: 125px;
            height: 45px;

            padding: 0 25px;

            border: 1px solid #fff;

            border-radius: 30px;

            color: #fff;

            font-size: 11px;
            font-weight: 500;

            letter-spacing: 0.5px;

            text-decoration: none;

            transition: all 0.3s ease;
        }

        .view-product:hover {
            background: #ed1c24;
            border-color: #ed1c24;

            color: #fff;
        }


        /* =========================================
           HOVER
        ========================================= */

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }


        /* =========================================
           OPTIONAL ACTIVE OVERLAY
           Use .active on any product
        ========================================= */

        .product-card.active .product-overlay {
            opacity: 1;
        }


        /* =========================================
           TABLET
        ========================================= */

        @media (max-width: 991px) {

            .products-section {
                padding-top: 30px;
            }

            .products-heading h2 {
                font-size: 25px;
            }

            .products-description {
                padding: 0 30px;

                margin-bottom: 35px;

                font-size: 14px;
            }

            .product-image {
                aspect-ratio: 1.35 / 1;
            }

        }


        /* =========================================
           MOBILE
        ========================================= */

        @media (max-width: 767px) {

            .products-section {
                padding-top: 30px;
            }

            .products-heading {
                margin-bottom: 25px;
            }

            .products-heading h2 {
                font-size: 22px;
            }

            .heading-line {
                margin-top: 15px;
            }

            .products-description {
                padding: 0 20px;

                margin-bottom: 30px;

                font-size: 13px;

                line-height: 1.7;
            }

            .product-image {
                aspect-ratio: 1.2 / 1;
            }

        }


        /* =========================================
           SMALL MOBILE
        ========================================= */

        @media (max-width: 480px) {

            .products-heading h2 {
                font-size: 20px;
            }

            .products-description {
                padding: 0 15px;
            }

            .product-image {
                aspect-ratio: 1.1 / 1;
            }

        }

        /* ==========================================
           ABOUT SECTION
        ========================================== */

        .about-section {
            width: 100%;

            background: #ffffff;

            padding: 72px 20px 38px;
        }


        /* ==========================================
           HEADING
        ========================================== */

        .about-heading {
            text-align: center;

            margin-bottom: 42px;
        }

        .about-heading {
            text-align: center;

            margin-bottom: 42px;
        }

        .about-heading h2 {
            margin: 0;

            color: #050505;

            font-size: 25px;

            font-weight: 500;

            line-height: 1.2;

            text-transform: uppercase;

            letter-spacing: 0.3px;
        }


        /* Red underline */

        /* .about-heading  */
        .heading-line {
            width: 100px;

            height: 3px;

            background: #d9232e;

            margin: 30px auto 0;
        }

        .text-start .heading-line {
            margin: 0 !important;
        }
        /* ==========================================
           CONTENT
        ========================================== */

        .about-content {
            max-width: 1500px;

            margin: 0 auto;

            text-align: center;
        }


        .about-content p {
            margin: 0 auto 10px;

            max-width: 1450px;

            color: #555;

            font-size: 16px;

            font-weight: 400;

            line-height: 1.75;

            letter-spacing: 0;
        }


        .about-content p:last-child {
            margin-bottom: 0;
        }


        /* ==========================================
           TABLET
        ========================================== */

        @media (max-width: 991px) {

            .about-section {
                padding: 60px 30px 35px;
            }

            .about-heading {
                margin-bottom: 35px;
            }

            .about-heading h2 {
                font-size: 29px;
            }

            .about-heading .heading-line {
                margin-top: 23px;
            }

            .about-content p {
                font-size: 16px;

                line-height: 1.7;

                margin-bottom: 15px;
            }

        }


        /* ==========================================
           MOBILE
        ========================================== */

        @media (max-width: 767px) {

            .about-section {
                padding: 45px 20px 30px;
            }

            .about-heading {
                margin-bottom: 30px;
            }

            .about-heading h2 {
                font-size: 25px;
            }

            .about-heading .heading-line {
                width: 75px;

                height: 2px;

                margin-top: 18px;
            }

            .about-content p {
                font-size: 14px;

                line-height: 1.75;

                margin-bottom: 18px;
            }

        }


        /* ==========================================
           SMALL MOBILE
        ========================================== */

        @media (max-width: 480px) {

            .about-section {
                padding: 38px 16px 25px;
            }

            .about-heading h2 {
                font-size: 22px;
            }

            .about-content p {
                font-size: 13px;

                line-height: 1.8;
            }

        }

        /* =========================================
           VISION / MISSION SECTION
        ========================================= */

        .vision-mission-section {
            width: 100%;
            background: #fff;
            padding: 38px 0 70px;
        }

        .vision-mission-container {
            max-width: 1400px;
            margin: 0 auto;
        }


        /* =========================================
           IMAGE
        ========================================= */

        .vision-image-wrapper {
            width: 100%;

            display: flex;
            justify-content: center;
            align-items: center;
        }

        .vision-image {
            width: 600px;
            height: 600px;

            max-width: 100%;
 
            object-fit: cover;

            border-radius: 50%;

            display: block;
        }

        .about.vision-image { 
            border-radius: 2% !important;
        }


        /* =========================================
           CONTENT
        ========================================= */

        .vision-content {
            padding-left: 45px;
            padding-right: 30px;
        }

        .vision-block {
            margin-bottom: 65px;
        }

        .vision-block:last-child {
            margin-bottom: 0;
        }


        /* Heading */

        .vision-block h2 {
            margin: 0 0 34px;

            color: #050505;

            font-size: 25px;

            font-weight: 500;

            line-height: 1.3;
        }


        /* Paragraph */

        .vision-block p {
            margin: 0;

            color: #444;

            font-size: 16px;
 
            font-weight: 400;

            line-height: 1.75;
            
        }

        .about.vision-block p {
            padding-bottom: 20px;
        }
        /* =========================================
           TABLET
        ========================================= */

        @media (max-width: 1199px) {

            .vision-mission-section {
                padding: 40px 25px 60px;
            }

            .vision-image {
                width: 500px;
                height: 500px;
            }

            .vision-content {
                padding-left: 20px;
            }

            .vision-block {
                margin-bottom: 45px;
            }

            .vision-block h2 {
                font-size: 22px;
                margin-bottom: 25px;
            }

            .vision-block p {
                font-size: 15px;
                line-height: 1.7;
            }
        }


        /* =========================================
           TABLET / SMALL LAPTOP
        ========================================= */

        @media (max-width: 991px) {

            .vision-mission-section {
                padding: 50px 25px 60px;
            }

            .vision-image {
                width: 450px;
                height: 450px;
            }

            .vision-content {
                padding: 20px 10px 0;
            }

            .vision-block {
                margin-bottom: 40px;
            }

            .vision-block h2 {
                margin-bottom: 20px;
            }

        }


        /* =========================================
           MOBILE
        ========================================= */

        @media (max-width: 767px) {

            .vision-mission-section {
                padding: 40px 20px 50px;
            }

            .vision-image {
                width: 100%;
                max-width: 430px;
                height: auto;

                aspect-ratio: 1 / 1;
            }

            .vision-content {
                padding: 40px 5px 0;
            }

            .vision-block {
                margin-bottom: 40px;
            }

            .vision-block h2 {
                font-size: 21px;
                margin-bottom: 20px;
            }

            .vision-block p {
                font-size: 14px;
                line-height: 1.8;
            }

        }


        /* =========================================
           SMALL MOBILE
        ========================================= */

        @media (max-width: 480px) {

            .vision-mission-section {
                padding: 30px 15px 40px;
            }

            .vision-image {
                max-width: 340px;
            }

            .vision-content {
                padding-top: 30px;
            }

            .vision-block h2 {
                font-size: 20px;
            }

            .vision-block p {
                font-size: 13px;
                line-height: 1.8;
            }

        }

        /* ==========================================
           FOOTER
        ========================================== */

        .site-footer {
            width: 100%;
        }


        /* ==========================================
           CONTACT AREA
        ========================================== */

        .footer-contact {
            background: #092C72;
            color: #fff;

            padding: 36px 0 38px;
        }

        .footer-contact-container {
            max-width: 1500px;
            margin: 0 auto;
        }


        /* ==========================================
           CONTACT ITEM
        ========================================== */

        .footer-contact-item {
            display: flex;
            align-items: center;

            min-height: 150px;
        }


        /* ==========================================
           ICON CIRCLE
        ========================================== */

        .footer-icon {
            width: 48px;
            height: 48px;

            flex: 0 0 48px;

            border-radius: 50%;

            background: #fff;

            display: flex;
            align-items: center;
            justify-content: center;

            margin-right: 36px;
        }

        .footer-icon i {
            font-size: 30px;
            color: #D60307;
            font-weight: bold !important;
        }


        /* ==========================================
           CONTACT TEXT
        ========================================== */

        .footer-contact-content {
            color: #fff;
        }

        .footer-contact-title {
            font-size: 20px;
            font-weight: 400;

            margin-bottom: 7px;
        }

        .footer-contact-text {
            font-size: 15px;
            font-weight: 400;

            line-height: 1.8;
        }

        .footer-contact-text strong {
            font-weight: 600;
        }


        /* ==========================================
           BOTTOM FOOTER
        ========================================== */

        .footer-bottom {
            position: relative;

            /* min-height: 145px; */

            background: #042555;

            display: flex;
            align-items: center;
            padding: 15px 0px;
        }

        .footer-bottom-container {
            max-width: 1500px;
            width: 100%;

            margin: 0 auto;

            position: relative;
        }


        /* ==========================================
           SOCIAL BUTTONS
        ========================================== */

        .footer-social {
            display: flex;
            align-items: center;
            column-gap: 3;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center; 
            justify-content: center;
            background: #ed1c24;
            color: #fff;
            text-decoration: none;
            border-right: 1px solid rgba(255, 255, 255, 0.5);
            transition: 0.3s ease;
        }

        .footer-social a:last-child {
            border-right: 0;
        }

        .footer-social a:hover {
            background: #c9141b;
        }

        .footer-social i {
            font-size: 18px;
        }


        /* ==========================================
           COPYRIGHT
        ========================================== */

        .footer-copyright {
            text-align: center;

            color: #888;

            font-size: 16px;

            line-height: 1.6;
        }

        .footer-copyright .company-name {
            color: #fff;
        }

        .footer-copyright .designer {
            color: #555;
        }


        /* ==========================================
           BACK TO TOP
        ========================================== */

        .back-to-top {
            position: absolute;

            right: 0;
            top: 50%;

            transform: translateY(-50%);

            width: 40px;
            height: 40px;

            background: #ed1c24;

            color: #fff;

            display: flex;
            align-items: center;
            justify-content: center;

            text-decoration: none;

            transition: 0.3s ease;
        }

        .back-to-top:hover {
            background: #888;
            color: #fff;
        }

        .back-to-top i {
            font-size: 28px;
        }


        /* ==========================================
           TABLET
        ========================================== */

        @media (max-width: 1199px) {

            .footer-contact {
                padding: 30px 25px;
            }

            .footer-icon {
                width: 100px;
                height: 100px;

                flex-basis: 100px;

                margin-right: 25px;
            }

            .footer-icon i {
                font-size: 48px;
            }

            .footer-contact-title {
                font-size: 18px;
            }

            .footer-contact-text {
                font-size: 15px;
            }

            .footer-bottom { 
                padding: 0 25px;
            }

            .footer-copyright {
                font-size: 14px;
            }

        }


        /* ==========================================
           MOBILE
        ========================================== */

        @media (max-width: 767px) {

            .footer-contact {
                padding: 35px 20px;
            }

            .footer-contact-item {
                min-height: auto;

                margin-bottom: 35px;

                align-items: flex-start;
            }

            .footer-contact-item:last-child {
                margin-bottom: 0;
            }

            .footer-icon {
                width: 80px;
                height: 80px;

                flex: 0 0 80px;

                margin-right: 20px;
            }

            .footer-icon i {
                font-size: 38px;
            }

            .footer-contact-title {
                font-size: 17px;
                margin-bottom: 5px;
            }

            .footer-contact-text {
                font-size: 14px;
                line-height: 1.7;
            }


            /* Bottom */

            .footer-bottom {
                min-height: 200px;

                padding: 30px 20px;
            }

            .footer-bottom-container {
                display: flex;

                flex-direction: column;

                align-items: center;

                gap: 25px;
            }

            .footer-social {
                order: 1;
            }

            .footer-copyright {
                order: 2;

                font-size: 13px;

                padding: 0 45px;
            }

            .back-to-top {
                width: 48px;
                height: 48px;

                right: 0;
                top: auto;
                bottom: 0;

                transform: none;
            }

            .back-to-top i {
                font-size: 22px;
            }

        }


        /* ==========================================
           SMALL MOBILE
        ========================================== */

        @media (max-width: 480px) {

            .footer-contact-item {
                align-items: center;
            }

            .footer-icon {
                width: 70px;
                height: 70px;

                flex-basis: 70px;

                margin-right: 15px;
            }

            .footer-icon i {
                font-size: 32px;
            }

            .footer-contact-title {
                font-size: 16px;
            }

            .footer-contact-text {
                font-size: 13px;
            }

            .footer-copyright {
                font-size: 12px;
                padding: 0 35px;
            }

        }


         /* =========================
           TOP TITLE
        ========================= */
        .contact-title { 
            background: #D80001;
            color: #ffffff;
            text-align: center;
            font-size: 25px;
            font-weight: 700;
            padding: 14px 10px 10px;
            line-height: 1.1;
            border-bottom: 2px solid #d6d000;
        }

        /* =========================
           CONTACT AREA
        ========================= */
        .contact-section {
            padding: 50px 0 0;
            min-height: 570px;
        }

        /* =========================
           CONTACT BOX
        ========================= */
        .contact-box {
            max-width: 905px;
            margin: 0 auto;
            background: #f8f8f8;
            border: 1px solid #d2d2d2;
            padding: 22px 28px 15px;
        }

        .contact-heading {
            text-align: center;
            font-size: 28px;
            font-weight: 700;
            color: #111111;
            margin-bottom: 2px;
        }

        .contact-description {
            text-align: center;
            font-size: 17px;
            color: #444444;
            margin-bottom: 45px;
        }
 
        
        /* =========================
           TABLET
        ========================= */
        @media (max-width: 991px) {

            .contact-title {
                font-size: 32px;
            }

            .contact-section {
                padding-top: 20px;
            }

            .contact-box {
                max-width: 90%;
            }
        }

        /* =========================
           MOBILE
        ========================= */
        @media (max-width: 767px) {

            .contact-title {
                font-size: 26px;
                padding: 12px 10px;
            }

            .contact-section {
                padding: 20px 15px 30px;
                min-height: auto;
            }

            .contact-box {
                max-width: 100%;
                padding: 20px 15px;
            }

            .contact-heading {
                font-size: 23px;
            }

            .contact-description {
                font-size: 14px;
                line-height: 1.5;
                margin-bottom: 25px;
            }

            .contact-form {
                max-width: 100%;
            }

            .contact-form .row {
                row-gap: 12px;
            }

            .contact-form .form-control {
                height: 40px;
            }

            .contact-form textarea.form-control {
                height: 110px;
            }

            .send-btn {
                margin-top: 20px;
            }
        }

        /* =========================
           SMALL MOBILE
        ========================= */
        @media (max-width: 400px) {

            .contact-title {
                font-size: 22px;
            }

            .contact-heading {
                font-size: 21px;
            }

            .contact-description {
                font-size: 13px;
            }
        }
        .company-list{

            padding:0;

            margin:0;

            list-style:none;

        }

        .company-list li{

            font-size:15px;

            color:#666;

            margin-bottom:18px;

            font-weight:600;

        }

        .company-with-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .company-with-logo img {
            width: 30px;
            height: auto;
            border-radius: 15%;
        }

        .company-with-logo span {
            color: white !important;
        }

        .company-with-logo span a {
            text-transform: none;
            text-decoration: none;
            color: white !important;
        }

        img:not(.logo-image) {
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
        }

        img:not(.logo-image):hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
        } 

        .company-name a,
        .company-name a:hover,
        .company-name a:focus {
            text-decoration: none !important;
            color: #fff;
            font-weight: bold;
        } 


         /* Card */
        .custom-card {
            background: #ffffff;
            border-radius: 15px;
            overflow: hidden;
            border: none;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.20);
            height: 100%;
            transition: all 0.3s ease;
        }

        /* Optional hover effect */
        .custom-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        /* Card Image */
        .custom-card img {
            width: 100%;
            height: 340px;
            object-fit: cover;
            display: block;
        }

        /* Card Content */
        .card-content {
            padding: 38px 28px 32px;
        }

        /* Card Title */
        .card-title {
            font-size: 23px;
            line-height: 1.65;
            font-weight: 700;
            color: #3d3d3d;
            margin-bottom: 30px;
        }

        /* Card Description */
        .card-description {
            font-size: 16px;
            line-height: 1.6;
            color: #3d3d3d;
            margin-bottom: 0;
        }

        .cards-section {
            padding: 40px 0;
        }

        /* Tablet */
        @media (max-width: 991px) {

            .cards-section {
                padding: 40px 0;
            }

            .custom-card img {
                height: 280px;
            }

            .card-content {
                padding: 30px 24px;
            }

            .card-title {
                font-size: 22px;
                line-height: 1.4;
                margin-bottom: 22px;
            }

            .card-description {
                font-size: 15px;
            }
        }

        /* Mobile */
        @media (max-width: 767px) {

            .cards-section {
                padding: 30px 15px;
            }

            .custom-card img {
                height: 250px;
            }

            .card-content {
                padding: 25px 22px;
            }

            .card-title {
                font-size: 22px;
                line-height: 1.4;
                margin-bottom: 18px;
            }

            .card-description {
                font-size: 15px;
                line-height: 1.5;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {

            .custom-card img {
                height: 220px;
            }

            .card-title {
                font-size: 20px;
            }

            .card-description {
                font-size: 15px;
            }
        }

        /* Read More Button */
        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;

            margin-top: 25px;

            padding: 11px 22px;
            background-color: #d9232e;
            color: #fff;
            text-decoration: none;

            font-size: 16px;
            font-weight: 600;

            border-radius: 5px;

            transition: all 0.3s ease;
        }

        .read-more span {
            font-size: 20px;
            line-height: 1;
            transition: transform 0.3s ease;
        }

        .read-more:hover {
            background-color: #555;
            color: #fff;
        }

        .read-more:hover span {
            transform: translateX(5px);
        }

        .head-contact-item {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 28px;
    border-left: 1px solid #dddddd;
    color: #999999;
    font-size: 14px;
    letter-spacing: 0.2px;
    text-decoration: none !important;
}

.head-contact-item:last-child {
    border-right: 1px solid #dddddd;
}

.head-contact-item i {
    font-size: 18px;
    color: #aaa;
}

.head-contact-item span a,
        .head-contact-item span a:hover,
        .head-contact-item span a:focus  {
            text-decoration: none !important;
            color: #AAAAAA !important;
        }