@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary-color: #e52629;
    --secondary-color: #253e80;
    --black: #000000;
    --white: #ffffff;
    --dark-gray: #333333;

}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    object-fit: cover;
}

/* Header css */
.header {
    padding: 0.75rem 0;
    position: absolute;
    width: 100%;
    z-index: 99;

}

header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.35s ease-out;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.menu-list ul {
    gap: 5rem;
}


.menu-list ul li a {
    font-family: Inter;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.3s;
}


.menu-list ul li:not(:last-child) a:hover {
    color: var(--primary-color);
}

.menu-list ul li:last-child a {
    background: var(--primary-color);
    border-radius: 0.625rem 0 0.625rem 0;
    padding: 1.25rem 1.875rem;
    margin-left: 1.375rem;
    transition: all 0.3s linear;
}

.menu-list ul li:last-child a:hover {
    background-color: var(--black);
}

/* Header css end here */

/* Banner css start  */
.hero-banner {
    padding-top: 12.5rem;
    padding-bottom: 7.5rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.play-btn {
    position: absolute;
    bottom: 40px;
    right: 50px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
    font-size: 28px;
}

.play-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}


.hero-banner::after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #0000006b;
    content: '';
    z-index: -1;
}

/* Projects Slider Section */
.projects-slider-section {
    padding: 5rem 0;
}


/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
}

/* Main Slider */
.main-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: 0.5s;
    border-radius: 5rem 0 5rem 0 !important;
}


.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5rem 0 5rem 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 3.125rem 3.125rem 3.125rem;
}


.slider-content h2 {
    color: #ffffff;
    text-align: left;
    font-family: "Open Sans", sans-serif;
    font-size: 3rem;
    line-height: 3.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}


.slider-content p {
    color: var(--white);
    text-align: left;
    font-family: "Open Sans", sans-serif;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
    width: 100%;
    max-width: 31.25rem;
}


/* Navigation Arrows */
.slider-nav {
    position: absolute;
    bottom: 4.25rem;
    right: 2.8125rem;
    display: flex;
    gap: 0.625rem;
    z-index: 10;
}

.nav-btn {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #c41e21;
    transform: scale(1.1);
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    display: flex;
    gap: 5px;
    padding: 1.875rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}


.thumbnail-gallery::-webkit-scrollbar {
    display: none;
}

.thumbnail-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    border-radius: 0.625rem;
    width: 9.4375rem;
    height: 3.625rem;
}

.thumbnail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(229, 38, 41, 0.3);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 10px;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.thumbnail-item:hover .thumbnail-overlay {
    transform: translateY(0);
}

.thumbnail-item.active .thumbnail-overlay {
    transform: translateY(0);
}

.thumbnail-overlay h4 {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    font-family: Inter, sans-serif;
    display: none;
}

.hero-content h1 {
    color: var(--white);
    text-align: left;
    font-family: "Open Sans", sans-serif;
    font-size: 4.125rem;
    line-height: 5.25rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.hero-content p {
    color: var(--white);
    text-align: left;
    font-family: "Open Sans", sans-serif;
    font-size: 1.25rem;
    line-height: 1.9375rem;
    font-weight: 600;
    width: 100%;
    max-width: 26.875rem;
    font-style: italic;
}


.hero-button {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.custom-btn {
    border-radius: 0.625rem 0 0.625rem 0;
    padding: 1.25rem 1.875rem;
    color: var(--white);
    text-align: left;
    font-family: Inter;
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s;
}


.bg-red-btn {
    background: var(--primary-color);
    border-style: solid;
    border-color: var(--primary-color);
    border-width: 1px;
}

.bg-red-btn:hover {
    background: var(--black);
    border-color: var(--black);

}

.bg-blue-btn {
    background: var(--secondary-color);
    border-style: solid;
    border-color: var(--secondary-color);
    border-width: 1px;
}

.bg-blue-btn:hover {
    background-color: var(--black);
    border-color: var(--black);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*  */
.acefuture-wrapper {
    padding: 100px 0 258px;
    background-image: url(../images/acefuture-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-heading {
    font-family: "Open Sans", sans-serif;
    font-size: 3rem;
    line-height: 5.625rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 34px;
}


.section-heading span {
    color: var(--primary-color);
}

.acefuture-content p {
    color: var(--black);
    text-align: left;
    font-family: Inter;
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    width: 100%;
    max-width: 35.625rem;
}

.acefuture-img img {
    height: 580px;
    object-fit: cover;
    width: 100%;
}

.acefuture-btn {
    margin-top: 3.125rem;
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.acefuture-img {
    position: relative;
}

.acefuture-img::after {
    content: "";
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    border: 1px solid var(--primary-color);
    pointer-events: none;
    height: 93%;
    /* transform: translateY(-50%); */
}

/*  */
.who-we-serves {
    margin-top: -200px;
    padding: 60px 0;
}

.serves-items {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
    gap: 2.9375rem;
    margin-top: 3.75rem;
}

.serve-box p {
    color: var(--black);
    font-family: Inter;
    font-size: 16px;
    line-height: 1.625rem;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0.75rem;
}


.serve-box {
    text-align: center;
}

.serve-box img {
    width: 3.75rem;
    height: 3.75rem;
    object-fit: contain;
    margin: 0 auto;
}


/* Footer css */
.footer {
        background-color: var(--secondary-color);
        padding: 40px 0;
}

.footer-logo img {
    max-width: 200px;
}

.footer-title {
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 0.9375rem;
}

.footer-content p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.625rem;
    font-weight: 400;
    font-family: Inter;
}


.footer-content ul li a {
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    padding-bottom: 8px;
    transition: all 0.3s;
}

.footer-content ul li a:hover {
    transform: translateX(6px);
    color: var(--primary-color);
}

.news-letter form {
    position: relative;
}

.news-letter form input,
.form-group textarea#message {
    background: var(--white);
    border-radius: 0.3125rem;
    width: 100%;
    padding: 0.5625rem 1.25rem;
    color: rgba(0, 0, 0, 0.69);
    text-align: left;
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 400;
    outline: none;
    box-shadow: none;
}


.news-letter h6 {
    color: var(--white);
    text-align: left;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.mail-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.news-letter {
    margin-top: 40px;
}

.footer-bottom-content p,
.footer-bottom-content a {
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 400;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 100px;
}

.faq-item {
    border-top: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: #1e1b1a;
    font-family: "OpenSans-Bold", sans-serif;
    font-size: 17px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.faq-content p {
    color: #1e1b1a;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    width: 100%;
    max-width: 438px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    margin-top: 5px;
    opacity: 0;
    color: #1e1b1a;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.faq-sec {
    padding: 80px 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* enough for long text */
    opacity: 1;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}



section.our-clients {
    padding: 100px 0;
}

.have-a-project-inner {
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
}

.contact-form form .form-group input,
.form-group textarea#message {
    width: 100%;
    padding: 14px 8px;
    border: none;
    border-bottom: 1px solid var(--black);
    background-color: transparent;
    margin-bottom: 27px;
    outline: none;
    box-shadow: none;
    color: var(--black);
    border-radius: 0;
}

.contact-form form .form-group input::placeholder,
.form-group textarea#message::placeholder {
    color: #000;
}

.contact-form {
    padding: 65px;
    background: #f8f7f7;
    border-radius: 30px 0 0 30px;
    height: 100%;
}

.social-media-icons {
    margin-top: 50px;
    text-align: right;
}

.have-a-project {
    padding-bottom: 100px;
}

.checkbox span {
    color: var(--black);
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}

.checkbox {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-media-icons a {
    color: var(--white);
    font-size: 20px;
}

.contact-form p {
    color: var(--black);
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    font-family: Inter;

}

.contact-form-right {
    background: #253e80;
    border-radius: 0px 30px 30px 0px;
    padding: 65px;
    height: 100%;
}

.have-a-project-inner .row .col-lg-6 {
    padding: 0;
}

.contact-form-right iframe {
    border-radius: 10px;
}

.contact-form-right p {
    color: var(--white);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 28px;
    font-family: Inter;
}

.contact-info img {
    max-width: 100%;
    margin-right: 15px;
    width: auto;
}

.contact-info a {
    display: block;
    color: #f8f7f7;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}

.contact-info {
    padding-top: 28px;
}

/*  */
.client-feed-box {
    background: var(--white);
    border-radius: 12px;
    position: relative;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 42px;
    margin: 0 20px;

}

.customer-feedback {
    overflow: hidden;
    background: url(../images/banner-bg.png);
    padding: 80px 0 250px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.customer-after img {
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    max-width: 900px;
}

.client-img img {
    border-radius: 12px 0px 0px 12px;
    width: 245px;
    height: 296px;
}

.customer-feedback h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
}

section.customer-feedback .slick-track {
    display: flex !important;
    align-items: stretch;
}

section.customer-feedback .slick-slide {
    height: auto !important;
    display: flex;
}

.client-feed-box {
    flex: 1;
    height: 100%;
}

/* Dots */
.customer-feedback .slick-dots {
    bottom: -54px;
}

.customer-feedback .slick-dots li button:before {
    font-size: 34px;
    color: var(--white);
    opacity: 0.8;
}

.customer-feedback .slick-dots li.slick-active button:before {
    color: var(--primary-color);
    opacity: 1;
}

/* Arrows */
.customer-feedback .slick-prev,
.customer-feedback .slick-next {
    z-index: 2;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    top: auto;
    bottom: -80px;
}

.customer-feedback .slick-prev:before,
.customer-feedback .slick-next:before {
    font-size: 20px;
    color: var(--white);
    opacity: 1;
}

/* Adjust arrow position */
.customer-feedback .slick-prev {
    left: 40%;

}

.customer-feedback .slick-next {
    right: 40%;
}

.customer-feedback .client-feed-box {
    display: flex;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    min-height: 296px;
    align-items: stretch;
}

.customer-feedback .client-img {
    flex: 0 0 250px;
    height: auto;
}

.customer-feedback .client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.client-content-feed {
    padding: 20px;
}

.workimg {
    border-radius: 20px;
    width: 90px;
    height: 90px;
    padding: 20px;
    margin: 0 auto;
}

.work-bg-red {
    background: var(--primary-color);
}

.work-bg-blue {
    background: var(--secondary-color);
}

.workimg img {
    max-width: 50px;
}

.our-work-box {
    text-align: center;
    position: relative;
}

.our-work .row .col-lg-3.col-md-6 .our-work-box {
    position: relative;
    /* parent relative hona chahiye */
}

.our-work .row .col-lg-3.col-md-6:not(:last-child) .our-work-box::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 70%;
    /* box ke right se start hoga */
    width: 210px;
    height: 11px;
    background: url('../images/line-dot.svg') no-repeat center;
    background-size: contain;
}


.work-content h3 {
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
}

.work-content {
    margin-top: 50px;
}

.work-content p {
    color: #333333;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    font-weight: 400;
}

.our-work-progress {
    padding: 0 0 100px 0;
}

.our-work {
    margin-top: 70px;
}

/* Fix for RTL slider */
.row2 .slick-track {
    direction: ltr;
}

.row2 {
    direction: rtl;
}
.logo img {
    max-width: 150px;
}

.acefuture-img::after {
    /* left: 0; */
}

.contact-form textarea {
    height: 170px;
    width: 100%;
    padding: 14px 8px;
    border: none;
    border-bottom: 1px solid var(--black);
    background-color: transparent;
    margin-bottom: 27px;
    outline: none;
    box-shadow: none;
    color: var(--black);
    border-radius: 0;
}