@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif !important;
}

.header-logo img {
    width: 200px;
}

.header-contnet {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
}

.header-links {
    display: flex;
    align-items: center;
}

.header-links .header-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 10px;
}

.header-links .header-link i {
    margin-right: 15px;
    color: #f15555;
    font-size: 20px;
    border: 2px solid;
    border-radius: 50%;
    padding: 10px;
}

.header-links .header-link .header-link-text h5 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}

.header-links .header-link .header-link-text p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    color: #000000cc;
}

nav {
    background: #010d14;
    width: 100%;
}

nav .nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-links {
    padding: 20px 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-btns a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-btns a.btn {
    background: #f15555;
    border-radius: 0;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    color: #010d14;
    margin-left: 20px;
    text-transform: uppercase;
    padding: 16px 34px 16px 34px;
}

.about-img img {
    width: 600px;
}

.nav-btns a.btn:hover {
    background: #f15555;
    color: #010d14;
}

.nav-btns a.btn i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.nav-btns a.btn:hover i {
    transform: translateX(5px);
}

.nav-btns {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 150px 0;
}

section.hero .hero-overlay {
    width: 100%;
    height: 100%;
    background: url(../img/hero.jpg);
    background-size: cover !important;
    background-position: center !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-content {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.hero-content .pre-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content .pre-title::before {
    color: #f15555;
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #f15555;
    margin-right: 10px;
}

.hero-content .title {
    font-size: 80px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: ui-sans-serif;
}

.hero-content .title span {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.hero-content .title span::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 35%;
    background: #f15555;
    z-index: -1;
    transition: all 0.3s ease;
}

.hero-content .sub-title {
    font-size: 18px;
    font-weight: 400;
    margin-block: 20px;
}

.hero-content .btn:hover {
    background: #f15555;
}

section.about {
    padding: 100px 0;
}

section.about .about-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

section.about .about-content {
    width: 100%;
    margin-left: 50px;
    max-width: 600px;
}

section.about .about-content .pre-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

section.about .about-content .pre-title::before {
    color: #f15555;
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #f15555;
    margin-right: 10px;
}

section.about .about-content .title {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: ui-sans-serif;
}

section.about .features-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

section.about .feature {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0px;
    padding-left: 0px;
    gap: 15px;
    width: 175px;
}

section.about .feature i {
    width: 20px;
    height: 20px;
    background: #f15555;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #000000ab;
}

section .btn {
    background: #f15555;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    color: #010d14;
    width: fit-content;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 20px;
    padding: 16px 34px 16px 34px;
}

section .btn:hover {
    background: #f15555;
    color: #010d14;
}

/* Feature section styles */
section.features {
    padding: 80px 0;
    background-color: #f7f7f7;
}

section.features .pre-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4b4b4b;
    margin-bottom: 20px;
    text-align: center;
}

section.features .title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

section.features .features-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

section.features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    margin: 0 30px;
    text-align: center;
}

section.features .feature i {
    font-size: 36px;
    color: #f15555;
    margin-bottom: 30px;
}

section.features .feature h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

section.features .feature p {
    font-size: 16px;
    line-height: 1.5;
    color: #777;
    margin-bottom: 30px;
}

section.numbers {
    background-image: url("../img/numbers.jpg");
    background-size: cover;
    padding: 80px 0;
    position: relative;
}

section.numbers .number-item {
    text-align: center;
}

section.numbers .number-wrapper {
    position: relative;
    display: inline-block;
    padding: 0px 40px;
    border-radius: 50%;
}

section.numbers .number-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 100px;
    height: 100%;
    background: #f155552e;
    z-index: 2;
    transform: translate(15px, 0);
}

section.numbers .number {
    font-size: 60px;
    font-weight: bold;
    margin: 0;
    color: #f15555;
    z-index: 3;
    position: relative;
}

section.numbers .number-text {
    font-size: 18px;
    margin-bottom: 0;
    text-transform: uppercase;
    color: #fff;
    z-index: 3;
    position: relative;
}



section.gallery {
    background-color: #f7f7f7;
    padding: 80px 0;
}

section.gallery .section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

section.gallery .gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

section.gallery .gallery-item {
    margin: 10px;
    width: calc(33.33% - 20px);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.gallery .gallery-item img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease-in-out;
}

section.gallery .gallery-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

section.gallery .gallery-item:hover:before {
    opacity: 1;
}

section.gallery .gallery-item:hover img {
    transform: scale(1.1);

    filter: brightness(80%);
}



section.contact {
    background-color: #f8f9fa;
    padding: 80px 0;
}

section.contact .contact-info {
    margin-bottom: 30px;
}

section.contact .info-title {
    font-size: 24px;
    margin-bottom: 10px;
}

section.contact .info-text {
    font-size: 18px;
    margin-bottom: 5px;
}






footer {
    background: url('../img/footer-bg.jpg');
    padding: 50px 0;
}

footer p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color: #dadada;
}

footer a {
    font-size: 16px;
    line-height: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color: #dadada;
}

footer p i, footer a i {
    margin-right: 20px;
    font-size: 24px;
    color: #f15555;
}

footer h4 {
    font-size: 20px;
    font-weight: 700;
    color: #e2e2e2;
    margin-bottom: 20px;
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

footer li {
    display: inline-block;
    margin-right: 10px;
}

footer li:last-child {
    margin-right: 0;
}


footer i {
    margin-right: 10px;
    font-size: 24px;
    color: #f15555;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 30px;
}

.social-link img {
    width: 20px;
}

.header-logo a{
    text-decoration: none;
    color: #212529;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.header-logo a:hover{
    filter: brightness(1.2);
}

.header-logo a span{
    color: #f15555;
}

.footer-logo a{
    text-decoration: none;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
}

.footer-logo a:hover{
    filter: brightness(1.2);
}

.footer-logo a span{
    color: #f15555;
}

.header-link-text a {
    text-decoration: none;
    color: #000000cc;
}

@media (max-width: 767px) {
    .header-contnet{
        flex-direction: column;
    }

    .header-links {
        flex-direction: column;
        
    align-items: flex-start;
    }

    .about-wrap {
        flex-direction: column;
    }

    .about-img {
        width: 90%;
        margin: auto;
        margin-bottom: 30px;
    }

    .about-img img {
        width: 100%;
    }

    section.about .about-content {
        width: 100%;
        margin-left: 0;
        max-width: unset;

    }

    nav .nav-content {
        flex-direction: column;
    }

    .hero-content .title {
        font-size: 50px !important;
        color: white;
        text-shadow: 0 0 20px BLACK;
    }
    .hero-content {
        padding: 15px;
    }

    section.gallery .gallery-item {
        width: 100%;
    }
}