@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');


:root {
    --primary-color: #E22215;
    --secondary-color: #EBBD3B;
    --dark-color: #333;
    --primary-font: 'Inter', sans-serif;
    --secondary-font: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--primary-font)
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--secondary-font);
}



a {
    text-decoration: none;
}


/* Navbar */
.navbar {
    background: var(--primary-color);
    padding: 15px;
}

.navbar-nav .nav-link {
    color: #fff;
    margin-left: 15px;
}




.container-home {
    max-width: 1700px;
    margin: 0 auto;
}

.hero-section {
    background: var(--primary-color);
    color: white;
    padding: 20px 0;
    text-align: left;
    font-family: var(--secondary-font);
}

.hero-section h1 span {
    color: var(--secondary-color);
}

.hero-section img {
    width: 100%;
    border-radius: 10px;
    transform: translate(10%, 0);
}

.hero-section h1 {
    font-size: 65px;
}

.start-icon {
    font-family: 20px;
}

.start-icon i {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 7px;
    border-radius: 50%;
    aspect-ratio: 1;
    margin-right: 6px;
    display: inline-block;
}

.start-icon span {
    color: var(--secondary-color);
}

/* Buttons */
.btn-custom {
    border-radius: 8px;
    background: black;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    display: inline-block;
    border: 2px solid black;
    transition: all .3s ease-in-out;

}

.btn-custom:hover {
    background: white;
    color: black;
    border-color: #fff;
}

.btn-custom-outline {
    background: transparent;
    color: black;
    padding: 10px 20px;
    border: 2px solid black;
    cursor: pointer;
    display: inline-block;
}


.title-wrapper h2 {
    font-size: 45px;
    font-weight: 700;
}



.title-wrapper span {
    text-transform: uppercase;
}

.title-wrapper h2 span {
    text-transform: inherit;
}




.title-wrapper {
    font-family: var(--secondary-font);
}

.title-wrapper p {
    font-size: 20px;
}

/* About Section */
.about-section {
    padding: 40px 0;
}

.about-section img {
    width: 100%;
    border-radius: 40px;
}

.about-section h2 span {
    color: red;
}


.counter-container {
    font-family: var(--secondary-font);
}

.counter {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-flow: wrap;
    text-align: center;

}

.counter-container p {
    color: #666B7F;
}

.counter-item {
    font-size: 5rem;
    font-weight: 700;
}

.counter-item span {
    color: var(--primary-color) !important;
}

.highlight {
    color: #E22215;
}

/* Gallery Section */
.gallery-section {
    background: #111;
    color: white;
    padding: 40px 0;
}

.gallery-section img {
    border-radius: 10px;
    height: 250px;
    object-fit: cover;
}

#gallery .img-gallery-wrapper {
    max-width: 1900px;
    margin: 0 auto;
}

#gallery .owl-theme .owl-nav [class*='owl-'] {
    width: 30px;
}

#gallery .owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none;

    background: #e22215;
}

.gallery-section .card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all .3s ease-in-out;
    overflow: hidden;
}

.gallery-section .card p {
    color: var(--dark-color);
    font-weight: 600;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.gallery-text-area {
    padding: 12px;
}

.gallery-slider {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    /* Ensures all items align to the tallest one */
}

.gallery-slider .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    /* Allows items to expand equally */
}

.gallery-slider .item .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    /* Ensures all cards stretch within items */
}





/* Specifications */
.specifications-section {
    padding: 40px 0;
}

.btn-spec {
    background: red;
    color: white;
    padding: 10px 15px;
    border: none;
    margin: 5px;
    cursor: pointer;
}



.button-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.button-wrapper a {
    color: white;
    background: var(--dark-color);
    padding: 1rem 5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 16px;
    transition: all .3s ease-in-out;
    border-radius: 20px;
}

.button-wrapper a i {
    font-size: 2rem;
    transition: all .3s ease-in-out;
}

.button-wrapper a:hover {
    background: var(--primary-color);
}

.button-wrapper a:hover i {
    transform: rotate(45deg);
}


.title-wrapper h2 span {
    color: var(--primary-color);
}


/* Testimonials */
.testimonials-section {
    background: #F5F5F5;
    padding: 40px 0;
}

.testimonials-section h2 span {
    display: block;
    ;
}




.testimonial-container {
    display: flex;
    align-items: center;
    /* max-width: 1000px; */
    border-radius: 12px;
    margin: 0 auto;
    gap: 4rem;
}

.testimonial-image {
    border-radius: 39px;
    object-fit: cover;
    margin-right: 20px;
    max-height: 400px;
    height: 100%;
}

.testimonial-content {
    flex: 1;
    padding: 2rem 14rem 0rem 3rem;
}

.quote-symbol {
    display: block;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: bold;
    color: #d9534f;
    margin-top: 10px;
}

.author-role {
    font-size: 14px;
    color: #777;
}


/* services-section */
.services-section {
    padding: 40px 0;
    background: black;
    color: white;
}



.services-section ul {
    column-count: 3;
}

.services-section ul li {
    margin-bottom: 1rem;
    position: relative;
}

.services-section ul li:before {
    content: "";
    border-left: 5px solid var(--primary-color);
    padding: 0px;
    margin: 3px;
    border-radius: 10px;
}

/* Contact Section */
.contact-section {
    padding: 40px 0;
}

.contact-section form input,
.contact-section form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
}


.contact-info {
    display: flex;
    gap: 1rem;
    background: #F7F8FC;
    margin: 1rem 0;
    padding: 20px;
    border-radius: 18px;
}


.contact-info h4 {
    color: var(--primary-color);
    font-weight: bold;
}

.contact-info a {
    color: var(--dark-color);
}

.contact-info i {
    background: black;
    height: 40px;
    width: 40px;
    color: white;
    text-align: center;
    font-size: 22px;
    padding: 4px;
    border-radius: 540%;
}


i.bi.bi-telegram {
    background: transparent;
    font-size: 38px;
    color: black;
    padding: 0;
    height: 0;
}

.contact-form {
    background: var(--primary-color);
    padding: 3rem;
    color: white;
    font-family: var(--secondary-font);
    border-radius: 30px;
}

.contact-form button {
    border-radius: 10px;
}

.footer {
    background: url('../img/footer-bg.png') no-repeat center center/cover;
    color: #ffffff;
    padding: 40px 0;
    padding-bottom: 0;
}

.news-letter-box {
    background-color: var(--primary-color);
    padding: 2rem;
    padding-bottom: 0;
    border-radius: 34px;
}

.footer ul li a:hover {
    color: var(--primary-color);
}

.news-letter-box form {
    display: flex;
    background-color: white;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.news-letter-box form input {
    width: 100%;
    padding: 10px;
    border: none;
    background: transparent;
    outline: none;
}

img.footer-image.img-fluid {
    transform: translate(0, 16px);
}

.footer h4 {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-wrappeer ul li {
    margin: 1.5rem 0;
}

.footer-wrappeer ul li a {
    color: white;
}

.news-letter-box form button {
    background: black;
    color: white;
    padding: 12px 15px;
    border: none;
}

.copy-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.copy-right p {
    margin: 0;
    padding: 0;
}

.copy-right ul {
    display: flex;
    gap: 1rem;
}

.copy-right ul li {
    list-style: none;
}

.copy-right ul li a {
    color: white;
}

.navbar {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.navbar-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}



a.active {
    border-bottom: 2px solid white;

}


/* blog */

h1.entry-title {
    font-size: 30px;
    margin: 12px 0;
}

.entry-meta {
    margin: 1rem 0;
}

.entry-content {
    margin: 1rem 0;
}

h2.comments-title {
    font-size: 25px;
    margin: 2rem 0;
}

ol.comment-list {
    margin: 0;
    padding: 0;
}

.entry-meta a {
    color: #e22215ed;
}

div#respond label {
    display: block;
    width: 100%;
    margin: 10px 0;
}

/* .blog-page {
    background: #eeeeee;
} */

.blog-page .post,
.blog-page .comment-body,
.blog-page div#respond {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 13px;
    margin: 2rem 0;
}

div#respond input[type="text"],
div#respond input[type="email"],
div#respond input[type="url"],
div#respond textarea {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

span.cat-links {
    display: none;
}

div#respond textarea {
    max-height: 80px;
}

input#submit {
    padding: 8px 13px;
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transition: all .3s ease-in-out;
    border: navajowhite;
    border: 1px solid;
}

input#submit:hover {
    background: transparent;
    color: black;
    border-color: black;
}

p.comment-form-cookies-consent {
    display: flex;
    gap: 6px;
}

h3#reply-title {
    font-size: 20px;
    margin: 1rem 0;
    text-transform: math-auto;
    font-weight: 500;
}

aside#secondary h2 {
    font-size: 23px;
    margin: 1rem 0;
}


.blog-page main#primary {
    max-width: 1000px;
    margin: 0 auto;
    /* background: antiquewhite; */
}

/* responsive css */






@media (max-width:1199px) {

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .testimonial-content {
        padding: 2rem 1rem 0rem 3rem;
    }

}

@media (max-width:1024px) {}

@media (max-width:991px) {

    .contact-section form input,
    .contact-section form textarea {
        padding: 10px;
    }

    .contact-form {
        padding: 2rem;
    }

    .title-wrapper h2 {
        font-size: 2rem;
    }

    .services-section ul {
        column-count: 2;
    }

    footer h4 {
        margin: 2rem 0;
    }

    section {
        padding: 20px 0 !important;
    }

    .testimonial-container .item {
        display: block;
    }

    .counter-item {
        font-size: 3rem;
    }

    .counter {
        gap: 2rem;
    }

    .testimonial-image {
        max-height: 300px;
    }

    .button-wrapper a {
        padding: 1rem 1rem;
        flex: 1;
        justify-content: space-between;
    }


}

@media (max-width:767px) {
    .hero-section img {
        transform: none;
    }

    .testimonial-image {
        max-height: 100%;
        height: 100%;
        width: 100%;
    }

    .button-wrapper {
        max-width: max-content;
        flex-flow: wrap;
        flex-direction: column;
    }

    .testimonial-container .item {
        flex-direction: column;
    }

    .copy-right {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .news-letter-box {
        text-align: center;
    }
}

@media (max-width:600px) {
    .footer-wrappeer {
        text-align: center;
    }
}

@media (max-width:480px) {
    .counter {
        gap: 0rem;
        flex-direction: column;
    }

    .btn-custom {
        padding: 8px 21px;
        font-size: 14px;
    }

    .services-section ul {
        column-count: 1;
    }

    .about-section img {
        border-radius: 10px;
    }


    .noptin-form-fields {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        align-items: center !important;
    }

    .noptin-form-id-7 .noptin-optin-form-wrapper form.noptin-form-single-line .noptin-form-fields .noptin-form-field {
        border-radius: 4px !important;
        padding: 0.2em 1em !important;

    }

    .news-letter-box form input {
        padding: 8px;
        font-size: 11px;
    }

    .testimonial-content {
        padding: 1rem;
    }
}