@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap');

/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set base font and background */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: #f8f9fa;
    color: #222;
}

:root {
    --primary-color: #F00000;
    --secondary-color: #828282;

}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto Condensed", sans-serif;
    text-transform: capitalize;

}


/* Lists */
ul,
ol {
    margin-left: 2em;
    margin-bottom: 1em;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container utility */
.container {
    max-width: 1320px;
    margin: 0 auto;
}

header.header-main {
    position: absolute;
    width: 100%;
    z-index: 9999;
}

.header-main.sticky-header {
    position: fixed;
    background: #000;
}

.btn.btn-primary {
    background: var(--primary-color);
    outline: none;
    border: none;
    border-radius: 26px;
    font-weight: bold;
    padding: 12px 20px;
}

.btn.btn-primary a {
    padding: 0px !important;
}

.btn-secondary {
    background: transparent;
    border-radius: 0px;
    text-decoration: underline;
    color: var(--primary-color);
    font-size: 18px;
}

.btn.btn-primary a:hover {
    color: #fff;
    text-decoration: none;
}

ul.navbar-nav {
    display: flex;
    gap: 60px;
}

.btn.btn-primary:hover {
    background: transparent;
    border: 1px solid white;
    color: #fff;
}



a.nav-link {
    color: #fff;
    font-weight: bold;
}

a.nav-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

a.nav-link.active {
    color: var(--primary-color) !important;
    text-decoration: underline;
}

.hero-section {
    position: relative;
    background: url(../assets/img/hero-bg.jpg) no-repeat center center / cover;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}

section.hero-section.herosection-inner {
    height: 60dvh;
    padding-top: 100px;
}

section.hero-section.herosection-inner .content-hero p {
    font-size: 20px;
}

.content-hero h1 {
    font-size: 70px;
    font-weight: bold;
    line-height: 1.3;
}

.content-hero h2 span {
    background: var(--primary-color);
    padding: 0px 10px;
}

.content-hero strong {
    font-weight: 500;
}

.content-hero p {
    font-size: 28px;
}

/* about section start  */


.about-section {
    padding: 80px 0;
}

.about-section h2 {
    font-size: 46px;
    font-weight: 700;
}

.about-section p {
    font-size: 20px;
}

a.btn.btn-primary.hover-btn:hover {
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
}

img.img-fluid.about-img {
    border-radius: 43px;
}

/* product section start  */
.products-section {
    background: url("../assets/img/product-bg.png") no-repeat center center / cover;
}

.products-section h2 {
    font-size: 46px;
}

.card {
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.card-img-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(87.15deg, rgba(0, 0, 0, 0.7) 10%, rgba(255, 255, 255, 0) 90%);
    border-radius: 1rem;
    z-index: 1;
}

.card-img-wrap {
    position: relative;
    height: 100%;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.4s ease;
}

.card-img-wrap:hover img {
    transform: scale(1.05);
}

.overlay-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    z-index: 2;
}
.location-box img {
    border-radius: 43px;
}

.overlay-text a {
    color: #fff;
    text-decoration: none;
}

.overlay-text a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.overlay-text span {
    margin-left: 5px;
}

/* service section start  */
.service-section {
    padding: 80px 0;
}

.service-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-img {
    border-radius: 43px;
}

.service-content h2 {
    font-size: 46px;
    font-weight: 700;

}

.service-content {
    font-size: 18px;
    margin-bottom: 30px;
    padding: 0px 120px 0 40px;
}

.news-section {
    background-color: #292929;
}

.news-section h2 {
    font-size: 46px;
    font-weight: 400;
}

.small-heading {
    font-size: 28px;
}

.img-hover {
    overflow: hidden;
    border-radius: 30px;
}

.img-hover img {
    transition: transform 0.5s ease;
    width: 100%;
    display: block;
}

.img-hover:hover img {
    transform: scale(1.1);
}

.news-card {
    border-radius: 0.5rem;
    height: 100%;
}

.card-body {
    font-size: 18px;
}

.news-card .card-body {
    padding: 15px 0 0;
}


.testimonial-section {
    background: #000;
}

.testimonial-section .testimonial-card {
    border: none;
    color: #fff;
    background-color: #727070;
    text-align: left;
    padding: 60px 50px;
    border-radius: 43px;
    font-size: 20px;
    margin: 0 15px;
}

.testimonial-section h2 {
    font-size: 46px;
    font-weight: 400;
}

.testimonial-section h2 strong {
    color: #fff;
    font-weight: bold;
}

.carousel-indicators {
    top: 100%;
}

.carousel-indicators [data-bs-target] {
    background-color: #727070;
}

.testimonial-img {
    height: 70px;
    width: 68px;
}

.slick-dots {
    bottom: -40px;
}


.slick-dots li button:before {
    content: "";
}

.slick-dots li button {
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    opacity: 0.4;
    transition: all 0.3s ease;
    padding: 0;
}

.slick-dots li {
    margin: 0 4px;
}

.slick-dots li.slick-active button {
    background: #dc3545;
    opacity: 1;
}

.newsletter-section {
    padding: 80px 0;
    background: url(../assets/img/newsletter-bg.png) no-repeat center center / cover;
    position: relative;
    color: white;
    text-align: center;
    z-index: 1;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 0;
}

.newsletter-section * {
    position: relative;
    z-index: 1;
}

.newsletter-section span {
    font-size: 28px;
}

.newsletter-section h2 {
    font-size: 46px;
    font-weight: 600;
}

.newsletter-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.newsletter-section form {
    justify-content: center;
    align-items: center;
    display: flex;
}

.form-control {
    display: block;
    width: 40%;
    padding: .75rem .75rem .75rem 3rem;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #ffffff6e;
    background-clip: padding-box;
    border: none;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    text-transform: capitalize;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

button.form-btn {
    padding: .75rem 1rem;
    width: 25%;
    font-size: 18px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background: #d8d8d8;
}

.form-control::placeholder {
    color: #fff
}

.form-control:focus {
    color: #fff;
    background-color: #ffffff6e;
    border: none;
    box-shadow: none;
}

.partner-section {
    background: #fff;
}

.partner-section h2 {
    font-size: 46px;
    font-weight: 600;
}

.col-md-4.img-partner {
    display: inline-block;
    text-align: -webkit-center;
    margin-top: 40px;
}

.footer-section {
    background: #000;
    color: #fff;
    font-size: 18px;
}

.footer-section h5 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section i {
    color: var(--primary-color);
    margin-right: 10px;
}

ul.footer-links {
    margin: 0 0 29px;
    padding: 0;
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-color);

}

p.phn-number {
    margin-bottom: 0;
}

.footer-section span {
    color: var(--primary-color);
    margin-left: 30px;
}

.quick-links,
map {
    padding: 0 40px;
}

/* about page css */
.about2-img {
    position: relative;
    display: inline-block;
}

span.red {
    position: absolute;
    width: 8%;
    height: 20PX;
    background: var(--primary-color);
    margin-top: -17PX;
}

.why-choose-section {
    background: #000;
    padding: 70px 0px;
    color: white;
}

.count {
    width: 60%;
    background: white;
    padding: 15px 20px;
    text-align: center;
    margin-top: -40px;
    position: relative;
}

.count h3 {
    font-weight: bold;
    font-size: 40px;
}

.count p {
    font-weight: 500;
}

.chooseus-list {
    display: flex;
    list-style: none;
    gap: 8px;
    border-bottom: 1px dotted;
    padding-top: 20px;
}

.chooseus-listimg {
    width: 25%;
}

.chooseus-list h5 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
}

.content-box1 h2 {
    font-size: 46px;
}

.content-box1 span {
    font-size: 36px;
    font-weight: 500;
    color: #A7A7A7;
}

.img-border,
.img-border img {
    position: relative;
    display: inline-block;
    z-index: 99;
}

.img-border::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.img-border::after {
    top: -15px;
    left: 15px;
    background: #fff;
}

.getquote-section {
    padding: 80px 0;
    background: url(../assets/img/bg-about.png) no-repeat center center / cover;
    display: flex;
    height: 70dvh;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.getquote-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.getquote-section h2 {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 20px;
}

.counter {
    background: #F5F5F5;
    margin-left: 20px;
    padding: 10px 15px;
    width: 16%;
}

.counter span {
    font-size: 26px;
    font-weight: bold;
    color: var(--primary-color);
    display: block;

}

.counter p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.service-provided h2 {
    font-size: 46px;
}

.serviceprovider-content {
    padding: 50px 0px;
}

.video-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    background: url("assets/img/play-icon.png") no-repeat center/contain;
    cursor: pointer;
}

.contact-section-cards h2 {
    font-size: 46px;
}

.contact-section-cards p {
    font-size: 20px;
}

.contact-section-cards .row {
    column-gap: 25px;
    max-width: 1320px;
    margin: 0 auto;
}

.card-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 30px 25px 0px;
    width: 32%;
    text-align: center;
    height: 220px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
    font-size: 18px;
}


.card-wrap a {
    color: #696969;
    text-decoration: none;

}

.card-wrap strong {
    color: #000;
}

a.contact-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-size: 24px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.contact-icons:hover {
    background: var(--primary-color);
    color: #fff;
}

.form-wrapper {
    background: #fff;
    font-size: 18px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
}


.form-wrapper .form-control {
    background: #F5F4F5;
    width: 100%;
    border-radius: 15px !important;
    height: 50px;
    padding: 0.7rem 2rem;
    color: #696969;
}

.form-wrapper .form-control::placeholder {
    color: #696969;
}

.form-wrapper h2 {
    font-size: 46px;
    font-weight: 600;
}

.wpcf7 form.wpcf7-form {
    padding: 0px !important;
}

.wpcf7 input[type="submit"] {
    padding: 10px 30px !important;
    border-radius: 30px !important;
}

.wpcf7 textarea {
    min-height: 50px !important;
}

.wpcf7 form .wpcf7-response-output {
    color: #000;
    margin: 0 !important;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    color: #000 !important;
}

.post-thumbnail img {
    border-radius: 43px;
}

.post-content {
    text-align: justify;
    padding-bottom: 30px;
}

.inner-breadcrumb {
    position: relative;
    top: 140px;
}

.single-post-content {
    position: relative;
    top: 102px;
    margin-bottom: 40px;
}

.inner-breadcrumb {
    padding: 20px 0;
    border-bottom: 1px solid #dee2e6;
}

.inner-breadcrumb h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212529;
    margin-top: 0 !important;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #084298;
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
}

/* Post Styles */
.single-post-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
}

.single-post-content .post-thumbnail img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    height: auto;
}

.single-post-content .post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #343a40;
    margin-top: 30px;
}

.single-post-content .post-content p {
    margin-bottom: 1.2rem;
}

.single-post-content .post-content h2,
.single-post-content .post-content h3,
.single-post-content .post-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #212529;
}

.single-post-content .post-content ul,
.single-post-content .post-content ol {
    padding-left: 20px;
    margin-bottom: 1.2rem;
}

.single-post-content .post-content blockquote {
    border-left: 4px solid #0d6efd;
    padding-left: 16px;
    font-style: italic;
    color: #495057;
    margin: 1.5rem 0;
}

#ivrac {
    padding-top: 19px !important;
    padding-bottom: 18.5px !important;
    padding-right: 40px !important;
    padding-left: 40px !important;
    width: auto;
    margin: 2px 0 0 -2px !important;
    color: #ffffff;
    border: none !important;
    vertical-align: middle;
    line-height: 20px;
    font-weight: 500;
    font-size: 20px;
    border-radius: 0 18px 18px 0;
    background-color: rgba(223, 223, 223, 0.79);
}

span#spinner-image {
    margin-left: 50px !important;
}

/* responsive css  */

@media (max-width: 1250px) {
    section.contact-section-cards {
        padding-left: 20px;
        padding-right: 20px;

    }

    .contact-section-cards .row {
        column-gap: 15px;
    }

    .card-wrap {
        padding: 30px 15px 0px;
    }
}

@media (max-width: 1200px) {
    ul.navbar-nav {
        display: flex;
        gap: 40px;
    }

    .about-section p {
        font-size: 16px;
    }

    .service-content {
        font-size: 16px;
    }
}

@media (max-width: 1100px) {
    ul.navbar-nav {
        display: flex;
        gap: 25px;
    }

    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 textarea,
    .wpcf7 select {
        margin-bottom: 0px;
    }

    .form-wrapper {
        font-size: 14px;
    }

    .wpcf7-not-valid-tip {
        margin-bottom: 0px !important;
    }

    form.wpcf7-form .col-md-6,
    form.wpcf7-form .col-md-12,
    form.wpcf7-form .col-md-12 p,
    form.wpcf7-form .col-md-6 p,
    form.wpcf7-form .col-12 p {
        margin-bottom: 0px !important;
    }

    .form-wrapper .form-control {
        height: 40px;
    }

    .wpcf7 input[type="submit"] {
        margin-bottom: 10px;
    }

    .form-wrapper p.mb-3 {
        margin-bottom: 0.5rem !important;
    }
}

@media (max-width: 1024px) {
    ul.navbar-nav {
        display: flex;
        gap: 20px;
    }

    .form-wrapper .col-lg-6:nth-child(2) {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }


}

@media (max-width: 992px) {
    button.navbar-toggler {
        background: #e9e9e9;
        border: 1px solid #fff;
    }

    .form-wrapper .form-control {
        height: 50px;
    }

    .navbar-nav .menu-item a {
        color: #000;
    }

    .service-content {
        padding: 20px;
    }

    .card-body {
        font-size: 14px;
    }

    .testimonial-section .testimonial-card {
        font-size: 16px;
    }

    .btn-primary a {
        color: #fff !important;
    }

    .contact-section-cards .row {
        margin-left: 10px;
    }

    .card-wrap {
        padding: 20px 10px 0px;
        width: 30%;
    }

    .card-wrap a {
        font-size: 14px;
    }

    .contact-icons {
        font-size: 24px !important;
    }

    .wpcf7 form.wpcf7-form {
        max-width: 100% !important;
        padding: 20px 10px !important;

    }

    section.why-choose-section .col-lg-4:nth-child(2) {
        display: flex;
        justify-content: center;
        margin-top: 45px;
    }

    .about-section .col-lg-3:nth-child(1) {
        margin-bottom: 40px;
    }

    span.red {

        width: 20%;
    }

    .count {
        margin-bottom: 20px;
        width: 34%;
    }

    .inner-breadcrumb {
        padding: 40px 0 30px;
    }

    .inner-breadcrumb h2 {
        font-size: 1.8rem;
    }

    .single-post-content h1 {
        font-size: 2rem;
    }
     .about-section {
    padding: 40px 0;
}
}

@media (max-width: 768px) {
    .card-wrap {
        padding: 20px 10px 0px;
        width: 32%;
    }

    .contact-section-cards .row {
        column-gap: 10px;
    }
}

@media (max-width: 767px) {
    .img-partner {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card-wrap {
        width: 100%;
        margin-bottom: 15px;
    }

    section.contact-section-cards {
        padding: 0px;
    }

    .hero-section {
        height: 70dvh;
    }

    .content-hero h1 {
        font-size: 34px;

    }

    .content-hero p {
        font-size: 24px;
    }

    div#counter-section {
        margin: 0;
    }

    .counter {
        width: 26%;
    }

    .img-border::after {
        display: none;
    }

    .getquote-section h2 {
        font-size: 34px;
    }

    .serviceprovider-content {
        padding: 50px 15px;
    }

    .copyright {
        font-size: 16px;
    }

    .contact-section-cards {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .form-wrapper .col-md-6:nth-child(2) {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .form-wrapper h2 {
        font-size: 40px;
        font-weight: 600;
        padding-top: 20px;
    }

    .contact-section-cards .row {
        margin: 10px;
    }

    .inner-breadcrumb {
        padding: 30px 0 20px;
    }

    .inner-breadcrumb h2 {
        font-size: 1.5rem;
    }

    .single-post-content h1 {
        font-size: 1.6rem;
    }

    .single-post-content .post-content {
        font-size: 1rem;
    }
}

@media (max-width: 580px) {
    #esfpx_email_bce83274f66ad {
        width: 100% !important;
        border-radius: 30px !important;
        margin-bottom: 12px !important;
    }

    #imc2g {
        display: flex;
        justify-content: flex-start;

    }
    #ivrac{
        border-radius: 30px !important;
    }

}

@media (max-width: 480px) {
    .count {
        width: 60%;
    }
}

@media (max-width: 380px) {}