body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
p {
    font-family: 'Roboto', sans-serif;
}


:root {
    --primary: #54aecc;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.ff-secondary {
    font-family: 'roboto', cursive;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }

    .navbar-dark .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent !important;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--dark) !important;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(44, 55, 82, 0.9)), url(../img/downloaded/main.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    /* Adjust height as needed */
    width: 100%;

}

.hero-header img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
    background-color: rgba(224, 226, 229, 0.9);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .9s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    background-color: #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.test-back {
    background-color: turquoise;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

/*** Footer ***/

footer {
    background-color: #000000;
    color: white;
    padding: 40px 0;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 20px;
    text-align: center;
    align-items: start;
}

.footer-logo {
    margin-bottom: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.footer-logo svg {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.img-footer {
    width: 13em;
    height: 13em;
    margin-top: 2em;
}

.footer-logo h3 {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    text-align: left;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #0096FF;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 15px 0;
}

.social-links a {
    color: white;
    font-size: 24px;
}

.copyright {
    font-size: 12px;
    color: #888;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    left: 0;
}

.water-drop {
    fill: #0096FF;
}

.contact-info {
    margin: 15px 0;
}

.section-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
    text-transform: uppercase;
}

footer {
    position: relative;
    padding-bottom: 70px;
}

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        text-align: center;
    }
}

/* Gallery  */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.gallery-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #4a90e2;
}

.gallery-grid {
    display: grid;
    grid-template-areas:
        "manufacturing cold warehouse"
        "manufacturing distribution agritech"
        "specialty distribution racking";
    gap: 1.5rem;
    padding: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.manufacturing {
    grid-area: manufacturing;
    height: 500px;
    background-image: url("../img/downloaded/manufacturing\ .jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.cold-storage {
    grid-area: cold;
    height: 240px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/downloaded/coldstorage.jpg");
}

.warehouse {
    grid-area: warehouse;
    height: 240px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3)), url("../img/downloaded/warehouse.jpg");
}

.distribution {
    grid-area: distribution;
    height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/downloaded/sealcoating.jpg");
}

.agritech {
    grid-area: agritech;
    height: 240px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/downloaded/utilities-installation.jpg");
}

.specialty {
    grid-area: specialty;
    height: 240px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/downloaded/life\ sciences.jpg");

}

.racking {
    grid-area: racking;
    height: 240px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/downloaded/excavation-services.jpg");
}

.gallery-item:hover {
    transform: scale(1.11);
    z-index: 10;
}

.gallery-content {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    transition: top 0.3s ease;
}

.gallery-item:hover .gallery-content {
    top: 0;
}

.gallery-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover h3 {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.gallery-item:hover p {
    transform: translateY(0);
    opacity: 1;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    opacity: 0.3;
}

.water-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: all 0.3s ease;
}

/* Modal styles for click expansion */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-areas:
            "manufacturing manufacturing"
            "cold warehouse"
            "distribution distribution"
            "agritech specialty"
            "racking racking";
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-areas:
            "manufacturing"
            "cold"
            "warehouse"
            "distribution"
            "agritech"
            "specialty"
            "racking";
    }
}

/* :root {
    --primary-color: #1a2940;
    --accent-color: #DF8E15;
    --text-color: #ffffff;
    --dark-blue: #152336;
} */

/* 
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px 0;
}

.step {
    background: rgba(224, 226, 229, 0.9);
    padding: 30px;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.step:hover {
    transform: translateX(10px);
}

.step-number {
    font-size: 4em;
    color: var(--accent-color);
    margin-right: 30px;
    font-weight: bold;
    min-width: 70px;
    text-align: center;
    color: #DF8E15;
}

.step-content {
    flex: 1;
}

.step-content h2 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 2.6em;
    color: #0F172B;
}

.step-content p {
    color: var(--text-color);
    opacity: 0.9;
}

.plus-icon {
    position: absolute;
    right: 30px;
    color: var(--accent-color);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.expanded .plus-icon {
    transform: rotate(45deg);
}

.water-drop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

.logo {
    margin-bottom: 30px;
}

.logo h1 {
    color: var(--accent-color);
    font-size: 2em;
    margin-bottom: 10px;
    color: #54aecc;
}

.logo-menu-customer p {
    color: white;
}

.additional-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-top: 0;
    padding: 0 20px;
}

.expanded .additional-content {
    max-height: 500px;
    margin-top: 20px;
}

.additional-content ul {
    list-style-type: none;
    padding-left: 20px;
}

.additional-content li {
    margin-bottom: 10px;
    color: var(--accent-color);
    color: #000;
}

.contact-section {
    background: var(--dark-blue);
    padding: 40px 0;
    margin-top: 30px;
}

.contact-content {
    text-align: center;
}

.contact-content h2 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-option {
    background: rgba(52, 152, 219, 0.1);
    padding: 20px;
    border-radius: 8px;
    min-width: 250px;
}

.contact-option h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.contact-option p {
    color: var(--text-color);
}

.process-diagram {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    padding: 25px;
    background: rgba(21, 35, 54, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.process-diagram-title {
    text-align: center;
    color: var(--accent-color);
    font-size: 2.4em;
    margin-bottom: 40px;
    font-weight: bold;
}

.process-diagram-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.diagram-step {
    position: relative;
    background: var(--accent-color);
    padding: 8px 15px 8px 20px;
    color: white;
    margin-bottom: 15px;
    clip-path: polygon(0% 0%, 98% 0%, 100% 50%, 98% 100%, 0% 100%, 2% 50%);
    border-left: 8px solid #000;
    transition: transform 0.3s ease;
    min-width: 600px;
}

.diagram-step:hover {
    transform: translateX(10px);
}

.diagram-number {
    font-size: 1.8em;
    color: #ffffff;
    min-width: 50px;
    text-align: center;
    font-weight: bold;
}

.diagram-content {
    margin-left: 15px;
}

.diagram-content h3 {
    color: #ffffff;
    margin-bottom: 2px;
    font-size: 1.1em;
}

.diagram-content p {
    color: #ffffff;
    font-size: 0.85em;
    opacity: 0.9;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .plus-icon {
        position: static;
        margin-top: 15px;
    }

    .diagram-step {
        min-width: auto;
        width: 100%;
    }
}


.title {
    color: #54aecc;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 30px;
}

.advantage-item {
    margin-bottom: 30px;
    position: relative;
}

.header {
    background: linear-gradient(to right, #0088cc 70%, #0088cc 100%);
    color: white;
    padding: 15px 40px;
    font-size: 2em;
    font-weight: bold;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    position: relative;
    text-align: center;
    margin-bottom: 15px;
}

.header.permit {
    background: linear-gradient(to right, #4a5db7 70%, #4a5db7 100%);
}

.header.schedule {
    background: linear-gradient(to right, #003366 70%, #003366 100%);
}

.header.construction {
    background: linear-gradient(to right, #ffc107 70%, #333333 100%);
}

.content {
    color: white;
    text-align: center;
    padding: 0 40px;
    font-size: 16px;
    line-height: 1.5;
}

.water-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 20, 40, 0.8) 100%);
    pointer-events: none;
    z-index: -1;
}

.water-drops {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 5%);
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

/* About first part  */


.hero {
    background: linear-gradient(to right, #061F3B, #173654, #2E4E6D, #456586);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='rgba(255,255,255,0.1)' d='M0 50 L100 50 L50 100 Z'/%3E%3C/svg%3E") repeat;
    opacity: 0.1;
    animation: move 20s linear infinite;
}

@keyframes move {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 100%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section {
    padding: 4rem 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 0.2;
}

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

.icon {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.mission-vision {
    background: var(--light);
}

p {
    position: relative;
    z-index: 2;
}

.timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

.timeline-item {
    border-left: 3px solid var(--secondary);
    padding-left: 2rem;
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
}

.timeline-date {
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.expertise-item {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
}

.mt-cu {
    margin-top: 170px;
}