@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-VariableFont_opsz%2cwght.woff2') format('woff2');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}



:root {
    --WC-Orange: #E38700;
    --WC-Orange-Hover: #c77600;
    --WC-White: #FFFFFF;
    --WC-Black: #1B1F32;
    --font-main: "DM Sans", sans-serif;
    --WC-Light-Grey: #D8DCEB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--WC-White);

}

.header {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url("../images/heroimg.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}

.navbar {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 80px;
    z-index: 10;
    flex-wrap: wrap;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.contact {
    margin-top: 30px;
}


@media screen and (max-width:1024px) {
    .logo {
        position: static;
        transform: none;

    }

    .navbar {
        justify-content: space-between;

    }
}

@media (max-width: 991px) {
    .logo {
        position: static;
        transform: none;

    }

    .navbar {
        justify-content: space-between;

    }
}


@media screen and (max-width:767px) {
    .logo {
        position: static;
        transform: none;

    }

    .navbar {
        justify-content: space-between;

    }
}

.contact ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.contact ul li a {
    text-decoration: none;
    color: var(--WC-White);
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact ul li a:hover {
    color: var(--WC-Orange);
}

.enquire {
    width: 100%
}

.quote-btn {
    background-color: var(--WC-Orange);
    padding: 10px 17px;
    min-width: 140px;
    width: fit-content;
    text-align: center;
    margin: 20px 0;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
    color: #fff;
}

.quote-btn:hover {
    background-color: var(--WC-Orange-Hover) !important;
    color: var(--WC-White) !important;
    transform: translateY(-2px);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 80px;
    max-width: 1100px;
    gap: 24px;
}

.hero-heading {
    font-size: clamp(32px, 5vw, 68px);
    line-height: 61.44px;
    font-weight: 700;
    letter-spacing: normal;
}

.hero-heading span {
    display: inline-block;
}

.hero-para {
    font-size: 23px;
    line-height: 27.76px;
    font-weight: 400;
    letter-spacing: -0.02em;
    max-width: 680px;
}

.hero-btn {
    background-color: var(--WC-Orange);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    color: var(--WC-White);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.hero-btn:hover {
    background-color: var(--WC-Orange-Hover);
    transform: translateY(-2px);
}


.about-text-col {
    color: var(--WC-Black);
    font-size: 20px;
    font-weight: 400;
    font-family: var(--font-main);
}

.about-container {
    padding: 100px;
}

.about-heading {
    font-size: 55px;
    font-weight: 700;
}

.about-para {
    max-width: 900px;
}

.about-text-col .first-para {
    font-size: 23px;
}

.about-text-col .first-para:not(.first-para) {
    margin-top: 18px;
}


.services-section {
    background-color: var(--WC-Light-Grey);
    padding: 100px 0;
    color: var(--WC-Black);
}


.services-container {
    max-width: 1810px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-heading {
    font-size: 55px;
    font-weight: 700;
    color: var(--WC-Black);
    margin-bottom: 30px;
    line-height: 52.8px;
    text-align: center;
    letter-spacing: -0.02em;
    width: 100%;
}

.services-heading span {
    display: block;
}

.services-para {
    font-size: 23px;
    font-weight: 400;
    color: var(--WC-Black);
    text-align: center;
    line-height: 25.76px;
    letter-spacing: -0.02em;
    width: 100%;
}

.services-para span {
    display: block;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.service-item span {
    display: block;
}

.service-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 24px;
}

.service-item h3 {
    font-size: 23px;
    font-weight: 700;
    color: var(--WC-Black);
    margin-bottom: 12px;
    line-height: 25.76px;
    letter-spacing: -0.02em;
}

.service-item p {
    font-size: 18px;
    font-weight: 400;
    line-height: 25.76px;
    color: var(--WC-Black);
    margin: 0;
    letter-spacing: -0.02em;
}





/* Responsive Design */

@media screen and (max-width:1399px) {}


@media (max-width: 1024px) {
    .navbar {
        padding: 20px 40px;
    }

    .hero-content {
        padding: 0 40px;
    }

}



@media (max-width: 768px) {
    .navbar {
        gap: 20px;
        padding: 0px 20px;
        position: static;
        /* Reset relative */
    }

    .logo {
        position: static;
        transform: none;
        margin-bottom: 0px;
    }

    .logo img {
        height: 70px;
        margin: 0 auto;
    }

    .contact ul {
        gap: 15px;
        flex-direction: row;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }

    .hero-heading {
        font-size: 36px;
    }

    .hero-para {
        font-size: 16px;
    }
}


@media screen and (max-width:576px) {
    .navbar {
        gap: 0px;
    }
}

.about-section {
    background-color: var(--WC-White);
    color: var(--WC-Black);
    padding: 100px 0;
}

.about-container {
    max-width: 1810px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-img {
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text-col {
    padding-left: 8%;
    padding-right: 2%;
}

.about-heading {
    font-size: 55px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--WC-Black);
    margin-bottom: 40px;
}

.about-para {
    font-size: 18px;
    line-height: 26.88px;
    letter-spacing: -0.02em;
    color: var(--WC-Black);
    margin-bottom: 24px;
    font-weight: 400;
}

/* Update mobile styles for about section */
@media (max-width: 991px) {
    .about-text-col {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-heading {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .about-section {
        padding: 60px 0;
    }

    .hero-para {
        font-size: 20px;
    }
}

/* Our Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--WC-White);
    color: var(--WC-Black);
}


.process-container {
    max-width: 1810px;
    margin: 0 auto;
    padding: 0 40px;
}

.process-heading {
    font-size: 55px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--WC-Black);
    margin: 0;
}

.process-para {
    font-size: 23px;
    line-height: 25.76px;
    color: var(--WC-Black);
    letter-spacing: -0.02em;
    margin: 0;
}

.process-para span {
    display: block;
}

.process-btn {
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
}

.timeline-container {
    position: relative;
    padding: 160px 0;
    margin-top: 50px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--WC-Light-Grey);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    /* position: relative; */
    z-index: 2;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* position: relative; */
    /* margin: 41px 20px; */
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--WC-Orange);
    color: var(--WC-White);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    border: 4px solid var(--WC-White);
    margin: 10px 0;
    position: relative;
}

.step-number:after {
    content: "";
    position: absolute;
    width: 65px;
    height: 32px;
    top: -6px;
    left: -7px;
    right: 0;
    background: var(--WC-Light-Grey);
    z-index: -1;
    border-radius: 100px 100px 0 0;
}

.step-card {
    width: 200px;
    padding: 15px;
    background-color: var(--WC-White);
    border: 1px solid var(--WC-Light-Grey);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: absolute;
}

.step-card:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    bottom: -70px;
    background: var(--WC-Light-Grey);
    left: 0;
    right: 0;
    margin: 0 auto 0;
    z-index: -1;
}

.step-card h4 {
    font-size: 23px;
    font-weight: 700;
    color: var(--WC-Black);
    line-height: 25.76px;
    margin-bottom: 2px;
}

.step-card p {
    font-size: 18px;
    line-height: 20.16px;
    color: var(--WC-Black);
    margin: 0;
}

.step-above {
    justify-content: flex-end;
    margin: 0 20px;
    flex-direction: column-reverse;
}

.step-above .step-card {
    margin-bottom: 20px;
    bottom: 250px;
}

.step-below {
    justify-content: flex-start;
}

.step-below .step-card {
    margin-top: 20px;
}




.step-number:after {
    content: "";
    position: absolute;
    width: 65px;
    height: 32px;
    top: -6px;
    left: -7px;
    right: 0;
    background: var(--WC-Light-Grey);
    z-index: -1;
    border-radius: 100px 100px 0 0;
}

.step-below .step-number:after {
    border-radius: 0 0 100px 100px;
    top: inherit;
    bottom: -6px;
}

.step-card:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    bottom: -70px;
    background: var(--WC-Light-Grey);
    left: 0;
    right: 0;
    margin: 0 auto 0;
    z-index: -1;
}

.step-below .step-card:after {
    bottom: inherit;
    top: -70px;
}

.step-below .step-card {
    margin-top: 20px;
    top: 250px;
}



.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--WC-Orange);
    color: var(--WC-White);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    border: 4px solid var(--WC-White);
    margin: 10px 0;
    position: relative;
}



.step-above .step-card {
    margin-bottom: 20px;
    bottom: 250px;
}



.step-card {
    min-width: 230px;
    padding: 15px;
    background-color: var(--WC-White);
    border: 3px solid #D8DCEB;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: absolute;
}


.step-above {
    justify-content: flex-end;
    margin: 0 20px;
    flex-direction: column-reverse;
}


.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* position: relative; */
    /* margin: 41px 20px; */
    z-index: 1;
}

/* Responsiveness for Process Section */



/* Banner Section */
.banner {
    width: 100%;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background-color: var(--WC-White);
    color: var(--WC-Black);
}

.about-container {
    padding: 0 9%;
}

.projects-container {
    max-width: 1810px;
    margin: 0 auto;
    padding: 0 40px;
}

.projects-heading {
    font-size: 55px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--WC-Black);
    margin: 0;
}

.projects-para {
    font-size: 23px;
    font-weight: 400;
    line-height: 25.76px;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: var(--WC-Black);
}


.projects-para-sub {
    font-size: 18px;
    line-height: 20.16px;
    color: var(--WC-Black);
    margin: 0;
}

.projects-para-sub span {
    display: block;
}

.projects-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    margin-top: 50px;
}

.project-item {
    overflow: hidden;
    position: relative;
    background-color: var(--WC-Light-Grey);
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.05);
}

.project-item-tall {
    grid-row: span 2;
    min-height: 500px;
}

/* Responsive for Projects Gallery */
@media (max-width: 991px) {
    .projects-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .project-item-tall {
        grid-row: span 1;
        grid-column: span 2;
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .projects-gallery {
        grid-template-columns: 1fr;
    }

    .project-item-tall {
        grid-column: span 1;
        min-height: 300px;
    }

    .project-item {
        height: 250px;
    }

    .projects-heading {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .projects-para {
        font-size: 18px;
    }
}

@media screen and (max-width:576px) {
    .project-item {
        height: 300px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 0px 0 100px;
    background-color: var(--WC-White);
    color: var(--WC-Black);
}

.testimonials-container {
    max-width: 1810px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-container {
    max-width: 1810px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-container {
    max-width: 1810px;
    margin: 0 auto;
    padding: 0 40px;
}

.test-row {
    justify-content: space-between !important;
}

.testimonials-heading {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--WC-Black);
    letter-spacing: -0.02em;
}

.testimonials-subpara {
    font-size: 23px;
    font-weight: 400;
    line-height: 25.76px;
    margin-bottom: 15px;
    color: var(--WC-Black);
}

.testimonials-para {
    font-size: 18px;
    line-height: 20.16px;
    color: var(--WC-Black);
    margin-bottom: 0;
}


.testimonials-wrapper {
    width: 100%;
    max-width: 700px;
}

.testimonials-cards {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: var(--WC-Light-Grey);
    padding: 20px;
    border-radius: 12px;
    margin: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 20.16px;
    color: var(--WC-Black);
    letter-spacing: -0.02em;
    margin-bottom: 5px;

}

.client-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--WC-Black);
    letter-spacing: -0.02em;
}

/* Slick Dots Styling */
.testimonials-cards .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 0px;
    bottom: -50px;
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.slick-dots li {
    margin: 0;
}

.testimonials-cards .slick-dots li button {
    width: 12px;
    height: 12px;
    background-color: #DDE2EB;
    border-radius: 50%;
    border: none;
    padding: 0;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slick-dots li.slick-active button {
    background-color: #84899A;
}

.slick-dots li button:before {
    display: none;
}

.row {
    justify-content: space-evenly;
}

.process-break {
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive for Testimonials */
@media (max-width: 991px) {
    .testimonials-heading {
        font-size: 40px;
    }

    .testimonials-subpara {
        font-size: 20px;
    }

    .col-lg-5 {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .testimonials-cards {
        flex-direction: column;
    }

    .testimonial-card {
        padding: 30px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--WC-Light-Grey);
    color: var(--WC-Black);
}

.contact-heading {
    font-size: 44px;
    font-weight: 700;
    line-height: 42.24px;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    max-width: 560px;
}

.contact-subpara {
    font-size: 23px;
    line-height: 25.76px;
    font-weight: 400;
    color: var(--WC-Black);
    margin-bottom: 20px;
}

.contact-para {
    font-size: 23px;
    letter-spacing: -0.02em;
    color: var(--WC-Black);
    line-height: 25.76px;
    font-weight: 400;
}

.contact-form {
    background-color: transparent;
}

.contact-form .form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--WC-Black);
    margin-bottom: 8px;
}

.contact-form .form-control {
    background-color: transparent;
    border: 2px solid var(--WC-Black);
    border-radius: 50px;
    padding: 12px 25px;
    color: var(--WC-Black);
    transition: border-color 0.3s ease;
}

.contact-form textarea.form-control {
    border-radius: 20px;
}

.contact-form .form-control::placeholder {
    color: #8A94AB;
}

.contact-form .form-control:focus {
    background-color: transparent;
    border-color: var(--WC-Orange);
    box-shadow: none;
    outline: none;
}

.submit-btn {
    background-color: var(--WC-Orange);
    color: var(--WC-White);
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: var(--WC-Orange-Hover);
    transform: translateY(-2px);
}

/* Responsive for Contact Section */
@media (max-width: 991px) {
    .contact-heading {
        font-size: 36px;
        max-width: 100%;
    }

    .col-lg-6 {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-form .form-control {
        padding: 10px 20px;
    }
}

/* Footer Section */
.footer {
    background-color: #1a1e2e;
    /* Dark navy color from logo backdrop */
    color: var(--WC-White);
    padding: 100px 0;
}

.footer .row {
    align-items: flex-start;
}

.footer-branding {
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.logo-subtext {
    font-size: 14px;
    letter-spacing: 5px;
    color: #8A94AB;
    margin-left: 2px;
}

.footer-tagline {
    font-size: 23px;
    font-weight: 700;
    line-height: 25.76px;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 0;
    max-width: 350px;
}

.vertical-line-wrapper {
    height: 200px;
}

.vertical-line {
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-info-group {
    margin-bottom: 0px;
}

.info-block {
    margin-bottom: 0px;
}

.info-block h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--WC-White);
    margin-bottom: 2px;
    margin-top: 20px;
    letter-spacing: -0.02em;
}

.info-block p {
    font-size: 16px;
    line-height: 17.92px;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    color: var(--WC-White);
}

.info-block p strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--WC-White);
    letter-spacing: -0.02em;
}

.info-block a {
    color: var(--WC-White);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.info-block a:hover {
    color: var(--WC-Orange);
    border-bottom-color: var(--WC-Orange);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer {
        padding: 60px 0;
    }

    .footer-tagline {
        font-size: 24px;
        max-width: 100%;
    }

    .footer-branding {
        text-align: center;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-info-group {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-info-group {
        margin-bottom: 50px;
    }
}




@media screen and (max-width:1399px) {
    .step-card {
        width: 200px;
        min-width: 220px;
    }
}

@media (max-width: 1200px) {
    .step-card {
        width: 160px;
        min-width: 180px;
    }
}

@media (max-width: 991px) {
    .timeline-container {
        padding: 0px;
    }

    .timeline-line {
        left: 0;
        right: 0;
        width: 2px;
        height: 100%;
        top: 0;
        transform: none;
        margin: 0 auto 0;
    }

    .timeline-steps {
        flex-direction: row;
        align-items: flex-start;
        padding-left: 0;
        flex-wrap: wrap;
        width: 100%;
    }

    .step-below .step-card:after {
        bottom: inherit;
        top: 0px;
    }

    .projects-heading {
        font-size: 40px;
    }

    .col-lg-5 {
        margin-bottom: 20px;
    }

    .testimonials-wrapper {
        margin: 30px auto 0;
    }

    .step-card:after {
        bottom: 0px;
    }

    .timeline-step {
        flex-direction: row;
        margin: 0;
        margin-bottom: 30px;
        width: 100%;
    }

    .services-heading {
        font-size: 40px;
        margin-bottom: 20px;
        line-height: 42px;
    }

    .step-number {
        position: relative;
        left: 0;
        top: 17px;
        margin: 0;
    }

    .step-number:after {
        width: 66px;
        height: 66px;
        border-radius: 100%;
        top: -7px;
    }

    .step-above,
    .step-below {
        justify-content: flex-start;
        position: relative;
        width: 100%;
        flex: auto;
    }

    .step-above .step-card,
    .step-below .step-card {
        margin: 0;
        width: calc(50% - 75px);
        bottom: 0;
        top: 20px;
        position: relative;
    }

    .step-number-div.step-number-above {
        position: absolute;
        right: 0;
        left: 0;
        transform: none;
        margin: 0 auto 0;
        width: fit-content;
    }

    .step-number-div.step-number-below {
        position: absolute;
        right: 0;
        left: 0;
        transform: none;
        margin: 0 auto 0;
        width: fit-content;
    }

    .step-below .step-number:after {
        bottom: inherit;
        top: -7px;
        border-radius: 50%;
        width: 66px;
        height: 66px;
        left: -7px;
    }

    .timeline-step.step-below {
        justify-content: end;
    }

    .hero-heading {
        line-height: 52px;
    }

    .process-heading {
        font-size: 40px;
        margin-bottom: 20px;
        line-height: 42px;
    }

    .process-para span {
        display: inline;
    }

    .projects-para-sub span {
        display: inline;
    }

}


@media (max-width:768px) {
    .process-para span {
        display: inline;
    }

    .projects-heading {
        font-size: 40px;
        line-height: 10px;
    }

    .footer-info-group {
        margin-bottom: 10px;
    }

    .hero-heading {
        line-height: 40px;
    }

    .header {
        min-height: 70vh;
    }
}



@media (max-width:576px) {

    .step-card {
        width: 160px;
        min-width: 495px;
    }

    .hero-heading {
        line-height: 35px;
    }

    .logo {
        margin: 20px auto;
    }

    .hero-para {
        line-height: 21px;
    }

    .navbar {
        gap: 0px;
        justify-content: center;
    }

    .contact {
        margin-top: 0px;
    }

    .projects-heading {
        font-size: 35px;
    }

    .footer-container {
        padding: 0 5%;
    }



    .testimonials-heading {
        font-size: 35px;
        margin-top: 0px;
    }

    .process-heading {
        font-size: 35px;
    }

    .services-heading {
        font-size: 35px;
    }

    .about-heading {
        font-size: 35px;
    }



    .contact ul {
        margin: 0;
        padding: 0;
    }

    .timeline-step {
        margin-bottom: 70px;

    }

    .timeline-step:last-child {
        margin-bottom: 0;
    }

    .timeline-container {
        padding: 0 ;
    }

    .about-container .row .col-lg-6 {
        padding: 0 !important;
    }

    .process-section {
        padding: 40px 0 ;
    }

    .projects-section {
        padding: 40px 0 0;
    }

    .services-container {
        padding: 0 5%;
    }

    .process-container {
        padding: 0 5%;
    }

    .process-container .row .col-lg-4 {
        padding: 0;
    }

    .process-container .row .col-lg-6 {
        padding: 0;
    }

    .services-container .row .col-lg-12 {
        padding: 0 !important;
    }

    .projects-container .row .col-lg-5 {
        padding: 0;
    }

    .projects-container .row .col-lg-7 {
        padding: 0;
    }

    .projects-container {
        padding: 0 5%;
    }

    .testimonials-section {
        padding: 40px 0px;
    }

    .testimonials-container .col-lg-6 {
        padding: 0;
    }

    .testimonials-container {
        padding: 0 5%;
    }

    .contact-container {
        padding: 0 6%;
    }

    .services-container .row span {
        display: inline;
    }

    .col-lg-6 {
        margin-bottom: 15px;
    }

    .contact ul li a {
        font-weight: 500;
    }

    .banner img {
        min-height: 186px;
        object-fit: cover;
    }

    .step-number {
        top: -30px;

    }

    .timeline-line {
        height: 90%;
    }

    .step-number-div.step-number-above {
        top: 0px;
    }

    .step-number-div.step-number-below {
        top: 0;
    }

    .step-below .step-card {
        z-index: -1;
    }

    .step-below .step-card:after {
        display: none;
    }

    .step-above .step-card,
    .step-below .step-card {
        min-width: auto;
        width: 100%;
        padding-top: 34px;
        text-align: center;
        top: 0;
    }

    .services-para span {
        display: inline;
    }

    .process-para span {
        display: inline;
    }

    .services-section {
        padding: 40px 0;
    }

    .contact-section {
        padding: 40px 0;
    }

    .about-section {
        padding: 40px 0;
    }

    .footer {
        padding: 40px 0;
    }

    .contact-container .row .col-lg-5 {
        margin-bottom: 0;
    }


}

@media (max-width:480px) {

    .hero-heading {
        font-size: 30px;
        line-height: 35px;
    }

    .about-heading {
        font-size: 25px;
    }

    .about-para.first-para {
        font-size: 20px;
    }

    .services-heading {
        font-size: 25px;
        line-height: 25px;

    }

    .projects-heading {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .process-heading {
        font-size: 25px;
    }

    .testimonials-heading {
        font-size: 25px;
    }

    .process-para {
        font-size: 20px;
    }

    .testimonials-para {
        font-size: 18px;
    }

    .quote-btn {
        padding: 10px 20px;
        min-width: 109px;
    }

    .contact-heading {
        font-size: 25px;
        line-height: 25px;
    }

    .footer-tagline {
        font-size: 20px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .about-section {
        padding: 40px 0;
    }

    .header {
        min-height: 75vh;
    }

    .hero-heading {
        padding-top: 20px;

    }

    .services-para {
        padding: 0 10px;
        font-size: 20px;
    }

    .contact ul {
        height: 60px;
        margin-bottom: 20px;
    }

    .contact ul li a {
        font-size: 16px;
    }

    .about-container .row .col-lg-6 {
        margin-bottom: 0;
    }

    .about-text-col p:last-of-type {
        margin-bottom: 0;

    }

    .services-section {
        padding: 40px 0;
    }

    .contact-container {
        padding: 0;
        width: 90%;
    }

    .services-container .row {
        margin: 0 auto;
    }



}

@media (max-width:320px) {

    .quote-btn {
        padding: 10px 9px;
        min-width: 109px;

    }

    .contact ul li a {
        font-size: 14px;
    }

    .hero-heading {
        font-size: 23px;
        line-height: 25px;
    }

    .services-container .row {
        margin: 0 auto;
    }

    .col-lg-6 {
        margin-bottom: 0;
        padding: 0 12px;
    }

    .about-text-col p:last-of-type {
        margin-bottom: 0;

    }

    .about-section {
        padding: 40px 0;
    }

    .about-heading {
        font-size: 23px;
    }

    .about-text-col .first-para {
        font-size: 20px;
    }

    .services-section {
        padding: 40px 0;
    }

    .services-heading {
        font-size: 23px;
        line-height: 25px;
    }

    .services-heading span {
        display: inline;
    }

    .services-para {
        font-size: 20px;
        display: inline;
    }

    .services-section .services-container .row {
        margin-bottom: 30px !important;
    }

    .services-section .services-container .col-lg-12 {
        padding: 0;
    }

    .service-item {
        padding: 0;
        margin-bottom: 10px;

    }

    .service-item span {
        display: inline;
    }

    .process-container {
        padding: 0 6%;
    }

    .process-container .row .col-lg-4 {
        padding: 0 !important;
    }

    .process-heading {
        font-size: 23px;
    }

    .process-para {
        font-size: 20px;
    }



}