@font-face {
    font-family: 'TCCC-UnityHeadline-Bold';
    src: url('../fonts/TCCC-UnityHeadline-Bold.eot') format('embedded-opentype'), url('../fonts/TCCC-UnityHeadline-Bold.svg') format('svg'), url('../fonts/TCCC-UnityHeadline-Bold.ttf') format('truetype'), url('../fonts/TCCC-UnityHeadline-Bold.woff') format('woff'), url('../fonts/TCCC-UnityHeadline-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'TCCC-UnityHeadline-Light';
    src: url('../fonts/TCCC-UnityHeadline-Light.eot') format('embedded-opentype'), url('../fonts/TCCC-UnityHeadline-Light.svg') format('svg'), url('../fonts/TCCC-UnityHeadline-Light.ttf') format('truetype'), url('../fonts/TCCC-UnityHeadline-Light.woff') format('woff'), url('../fonts/TCCC-UnityHeadline-Light.woff2') format('woff2');
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: TCCC-UnityHeadline-Light;
    background-color: #fff;
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.mouse {
    left: 50%;
    bottom: 35px;
    z-index: 5;
    width: 25px;
    height: 45px;
    border: 3px solid rgba(255, 255, 255, 0.75);
    border-radius: 55px;
    position: absolute;
    z-index: 9999;
    transform: translateX(-50%);
}

    .mouse::before {
        content: "";
        width: 7px;
        height: 7px;
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(255, 255, 255, 0.75);
        border-radius: 50%;
        opacity: 1;
        animation: wheel 1s infinite;
        -webkit-animation: wheel 1s infinite;
    }

@keyframes wheel {
    to {
        opacity: 0;
        top: 60px;
    }
}

@-webkit-keyframes wheel {
    to {
        opacity: 0;
        top: 60px;
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    display: none;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

.logo img {
    height: 50px;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

    nav ul {
        display: flex;
        gap: 30px;
        position: relative;
    }

        nav ul li {
            position: relative;
        }

            nav ul li a {
                font-family: TCCC-UnityHeadline-Bold;
                transition: color 0.3s;
                padding: 5px 0;
                display: inline-block;
                color: #000;
                font-size: 16px;
            }

                nav ul li a:hover {
                    color: #f37021;
                }

            nav ul li ul {
                display: none;
                position: absolute;
                top: 25px;
                left: -5px;
                background-color: #fff;
                padding: 10px 0;
                min-width: 200px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                z-index: 1000;
            }

                nav ul li:hover ul, nav ul li ul:hover {
                    display: block;
                }

                nav ul li ul li {
                    padding: 5px 20px;
                    white-space: nowrap;
                }

                    nav ul li ul li a {
                        font-family: TCCC-UnityHeadline-Light;
                    }

.search-box input {
    padding: 8px 14px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-family: 'TCCC-UnityHeadline-Light', sans-serif;
    font-size: 14px;
line-height: 1;
min-height: auto;
    outline: none;
    transition: border-color 0.3s ease;
    width: 150px;
}

    .search-box input:focus {
        border-color: #f37021;
    }

.lang-switcher a {
    font-family: TCCC-UnityHeadline-Bold;
    padding: 5px 8px;
    font-size: 16px;
    border-radius: 4px;
}

    .lang-switcher a.active {
        background-color: #f37021;
        color: white;
    }

.hero {
    height: 100vh;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

    .hero video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-text {
    position: absolute;
    z-index: 2;
    text-align: center;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    .hero-text img.band {
        width: 120%;
        height: 5px;
        margin: 20px auto;
        display: block;
    }

    .hero-text h1 {
        font-size: 32px;
        line-height: 40px;
        font-family: TCCC-UnityHeadline-Bold;
        letter-spacing: 1px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.intro-section {
    padding: 80px 10%;
    background-color: #f9f9f9;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.intro-text h2 {
    font-family: 'TCCC-UnityHeadline-Bold', sans-serif;
    font-size: 24px;
    color: #f37021;
    line-height: 1.4;
    margin-bottom: 20px;
}

.intro-text p {
    font-family: 'TCCC-UnityHeadline-Light', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    border: 2px solid #f37021;
    color: #f37021;
    font-family: 'TCCC-UnityHeadline-Bold', sans-serif;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

    .cta-button:hover {
        background-color: #f37021;
        color: white;
    }

.intro-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}


.services-carousel-section {
    padding: 80px 10%;
    background-color: #ffffff;
    overflow: hidden;
}

    .services-carousel-section h2 {
        text-align: center;
        font-size: 24px;
        margin-bottom: 40px;
        font-family: TCCC-UnityHeadline-Bold;
    }

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scrollCarousel 50s linear infinite;
}

.carousel-item {
    flex: 0 0 auto;
    width: 400px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .carousel-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .carousel-item h3 {
        position: relative;
        z-index: 2;
        font-family: 'TCCC-UnityHeadline-Bold', sans-serif;
        font-size: 18px;
        color: #fff;
        text-align: center;
        margin-bottom: 15px;
    }

    .carousel-item a {
        position: relative;
        z-index: 2;
        font-family: 'TCCC-UnityHeadline-Light', sans-serif;
        font-size: 14px;
        color: white;
        padding: 10px 20px;
        border: 1.5px solid white;
        border-radius: 4px;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .carousel-item a:hover {
            background-color: white;
            color: #000;
        }

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cta-banner {
    background: url(../images/band-bg.png) no-repeat center center;
    background-size: cover !important;
    padding: 40px 10%;
    color: #fff;
}

.cta-banner p, .cta-banner p a {
    color: #fff; font-size: 15px; font-weight: 700;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

    .cta-flex p {
        font-family: 'TCCC-UnityHeadline-Bold', sans-serif;
        font-size: 28px;
        margin: 0;
    }

.cta-button {
    font-family: 'TCCC-UnityHeadline-Bold', sans-serif;
    font-size: 16px;
    padding: 12px 28px;
    border: 2px solid white;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
    margin: 0;
}

    .cta-button:hover {
        background-color: white;
        color: #f37021;
    }

.services-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 60px 10%;
    background-color: #f9f9f9;
}

.service-card {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

.service-content {
    position: relative;
    z-index: 2;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

    .service-content h3 {
        font-family: 'TCCC-UnityHeadline-Bold', sans-serif;
        font-size: 20px;
        margin-bottom: 15px;
    }

.service-button {
    font-family: 'TCCC-UnityHeadline-Light', sans-serif;
    background-color: transparent;
    border: 1.5px solid white;
    padding: 10px 24px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .service-button:hover {
        background-color: white;
        color: #000;
    }

.blog-section {
    padding: 80px 10%;
    background-color: #f9f9f9;
    text-align: center;
}

    .blog-section img {
        height: 40px;
        margin: auto;
        margin-bottom: 40px;
    }

    .blog-section h2 {
        font-family: 'TCCC-UnityHeadline-Bold', sans-serif;
        font-size: 28px;
        margin-bottom: 40px;
        color: #333;
    }

        .blog-section h2 span {
            color: #f37021;
        }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

.blog-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

    .blog-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        background-color: #ddd;
        margin: 0;
    }

    .blog-card h4 {
        font-family: 'TCCC-UnityHeadline-Bold', sans-serif;
        font-size: 16px;
        padding: 20px;
        color: #333;
        line-height: 1.4;
    }

footer {
    background-color: #111;
    color: #eee;
    font-family: 'TCCC-UnityHeadline-Light', sans-serif;
    padding: 60px 10% 30px;
    font-size: 14px;
    overflow: auto;
    overflow-x: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'TCCC-UnityHeadline-Bold';
    font-size: 14px;
    color: white;
    margin-bottom: 12px;
}

.footer-col ul {
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 8px;
    }

        .footer-col ul li a {
            color: #ccc;
            font-family: 'TCCC-UnityHeadline-Light';
            transition: 0.3s;
        }

            .footer-col ul li a:hover {
                color: #f37021;
            }

.footer-col p {
    margin-bottom: 12px;
    color: #ccc;
    line-height: 1.5;
}

.footer-col a {
    color: #ccc;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
}

.footer-social img {
    width: 20px;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

    .footer-social img:hover {
        filter: brightness(0) invert(0.6);
    }

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-certificates img {
    height: 60px;
    margin-right: 15px;
    float: left;
}

.footer-bottom p {
    margin-top: 10px;
    font-family: 'TCCC-UnityHeadline-Light';
    color: #aaa;
    font-size: 13px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background-color: #333;
        display: block;
        transition: 0.3s ease;
    }

@media (min-width: 1081px) {
    .mobile {
        display: none;
    }
}

@media (max-width: 1080px) {

    .services-section {
        grid-template-columns: 1fr;
    }

    nav ul li a {
        font-family: TCCC-UnityHeadline-Light;
        padding: 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card img {
        height: 300px;
        object-fit: cover;
        object-position: center center;
    }

    nav ul {
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        display: none;
    }

        nav ul li {
            text-align: center;
            padding: 10px 0;
        }

            nav ul li:first-child {
                padding-top: 20px;
            }

    nav.active ul {
        display: flex;
        gap: 5px;
    }

    .cta-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .services-carousel-section .carousel-item {
        width: 400px;
        height: 240px;
    }

    .blog-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-top {
        grid-template-columns: repeat(4, 1fr);
    }

    .intro-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 20px;
        padding: 0 10px;
    }

    .hero-text img.band {
        width: 160px;
    }

    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    nav.active ul {
        display: flex;
    }
}

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

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .search-box input {
        display: none;
    }

    .logo img {
        height: 40px;
    }

    .lang-switcher a {
        padding: 3px 3px;
        border-radius: 3px;
    }

    .search-box {
        display: none;
    }

    nav {
        gap: 20px;
    }

    .menu-toggle {
        padding: 0px;
    }

    .carousel-track {
        width: 100%;
    }

    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-text h2 {
        font-size: 24px;
    }

    .cta-button {
        margin-top: 20px;
    }

    .carousel-track {
        flex-direction: column;
        animation: none;
    }

    .carousel-item {
        width: 100% !important;
        height: 200px;
        margin: 10px 0;
    }
}

@media (max-width: 600px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box {
        width: 100%;
        margin-top: 10px;
    }

        .search-box input {
            width: 100%;
        }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}


.blog-item{
    height: 530px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.blog-item img{
    height: 250px;
    object-fit: cover;
    object-position: center center;
}

.blog-item .item{
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 20px !important;
}

.blog-item .item:hover{
    background-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
}

.blog-item .item a:after{
    display: none !important;
}

.blog-item h4 {
    text-align: center;
    padding: 0 30px;
}

.blog-item h4 a{
    font-size: 21px;
    font-weight: 100;
}

.blog-item:hover p a,
.blog-item .item:hover p a{
    color: #f37021 !important;
}

.blog-item p{
    padding: 0 30px;
    display: inline-block;
    height: 100px;
    margin: 0;
}

.blog_title{
    text-align: left !important;
}

.blog_title:after{
    margin:  10px 0 !important;
}

.blog-item span{
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    font-size: 13px;
    color: #f37021;
}


.list-unstyled {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.list-unstyled li {
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 20px;
}

.list-unstyled a {
    display: flex;
    align-items: center;
    color: #333;
    font-family: 'TCCC-UnityHeadline-Light', sans-serif;
    font-size: 15px;
    transition: color 0.2s;
}

.list-unstyled a:hover {
    color: #f37021;
    text-decoration: underline;
}

.list-unstyled span {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    background: #f0f0f0;
    flex-shrink: 0;
}

.list-unstyled img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-members .single-item img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .cta-flex p,
    .cta-flex span {
        width: 100% !important;
    }
}