/* Global Styles */
:root {
    --primary-color: #001C7D;
    --secondary-color: #ED1C24;
    --accent-color: #B0C4DE;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #fff;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;

}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    font-family: "SIFONN", sans-serif;
    overflow-x: hidden !important;


}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: "Bricolage Grotesque", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    font-family: "Poppins", sans-serif;

}

p {
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    position: relative;
    font-weight: 800;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    display: none;
}

.section-intro {
    text-align: center;
    margin: 0 auto 15px;
    font-size: 16px;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    background-color: #f1f1f1;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links ul {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem !important;
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-around !important;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary-color);
    text-decoration: none;
}

#navbar-style {
    padding: 15px 10px;
    border-radius: 12px;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.banner-main-content {
    padding-top: 120px;
    padding-bottom: 60px;
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: var(--secondary-color);
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 243px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    top: 110%;
    left: -60px;
    border-radius: 4px;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 2px 0;
    transition: 0.4s;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    align-items: center;
    text-align: left;
    color: var(--white);
    background-image: url(../images/banner-img/banner.webp);
}

/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 0, 0, 0.6));
} */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sub-headline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.trust-points {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
    font-family: "Poppins", sans-serif;

}

.tp-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    flex-direction: column;
}

.tp-item i {
    color: #B0C4DE;
    /* Metallic */
    margin-right: 10px;
}

/* Quality Standards */
.quality-standards {
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 20;
}

.quality-card {
    background: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #001C7D;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.quality-img-container {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
}

.quality-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.quality-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* Hover Effects */
.quality-card:hover {

    background: #fff;
  
    border-color: #001C7D;
}

.quality-card:hover .quality-img-container img {
    transform: scale(1.1);
}

/* Metallic Shine Animation */
.quality-img-container::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: all 0.6s ease;
    pointer-events: none;
}

.quality-card:hover .quality-img-container::after {
    left: 140%;
}

.back-bg-color {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #001C7D 0%, #000B32 100%);
    position: absolute;
    bottom: -150px;
    left: 0;
    z-index: 1;
    opacity: 0.9;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 1024px) {
    .quality-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quality-standards {
        padding-top: 60px;
        padding-bottom: 0px;
    }

}

@media (max-width: 480px) {
    .quality-grid {
        grid-template-columns: 1fr;
    }
}

/* About Us */
.about {
    padding: 80px 0 80px;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.highlight-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
    margin: 20px 0;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
}

/* Counters */
.counters {
    background-color: var(--primary-color);
    color: var(--white);
    background: #001C7D;
    background: linear-gradient(126deg, rgba(0, 28, 125, 1) 0%, rgba(4, 82, 156, 1) 44%, rgba(0, 28, 125, 1) 100%);
}

.counter-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.counter-item .number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Bricolage Grotesque", sans-serif;
}

.counter-item .label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-family: "Poppins", sans-serif;

}

/* Services */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

#services {
    background-image: url(../images/bg/bg-shine.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid #001c7d;
    border-bottom: 5px solid #001c7d;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card.featured {
    background-color: #eef4fb;
    /* Slightly blue tint */
    border: 2px solid var(--primary-color);
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px auto;
    /* center */
    max-width: 1200px;
    /* adjust as needed */
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: #001C7D;
    background: linear-gradient(126deg, rgba(0, 28, 125, 1) 0%, rgba(4, 82, 156, 1) 44%, rgba(0, 28, 125, 1) 100%);
    border-radius: 20px;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.2rem;
}

/* Expertise */
.expertise {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.expertise .section-title {
    color: var(--white);
}

.expertise .section-title::after {
    background-color: var(--white);
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.exp-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.exp-card-icon img {
    width: 100%;
}

.exp-card-content h4 {
    padding: 20px 0px 0px 0px;
    text-align: center;
}

/* Process */
.process {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: var(--white);
    border: 4px solid var(--secondary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even)::after {
    left: -16px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--light-bg);
    position: relative;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Gallery */
.gallery {
    padding: 80px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Industries */
.industries {
    padding: 60px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.industry-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.ind-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
    width: 150px;
}

.ind-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Geography */
.geography {
    padding: 60px 0;
    text-align: center;
}

.map-placeholder img {
    margin: 0 auto;
    border-radius: 8px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--white);
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    background-color: var(--white);
    color: var(--text-color);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Poppins", sans-serif;
    border: 2px solid #ED1C24;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;

}

.accordion-header:hover,
.accordion-header.active {
    background-color: #eef4fb;
    color: var(--primary-color);
}

.accordion-content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--white);
}

.accordion-content p {
    padding: 15px 0;
    color: #666;
}

.accordion-header i {
    transition: transform 0.3s;
    color: #001C7D;
}

.accordion-header.active i {
    transform: rotate(45deg);
    color: #ED1C24;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    text-align: center;
}

/* 
.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px;
    scroll-snap-type: x mandatory;
} */

.testimonial-card {
    flex: 0 0 300px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
    border: 1px solid #eee;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

/* Final CTA */
.final-cta {
    background-color: var(--primary-color);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Footer */
footer {
    background-color: #222;
    color: #ccc;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    padding-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #ed1c24;
    display: inline-block;
    padding-bottom: 5px;
}

.why-choose-content h4 {
    font-size: 23px;
}

.why-choose-img img {
    width: 60px;
}

.our-process-img-bg img {
    border-radius: 10px;
    border: 3px solid #034293 !important;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 16px;
    margin-top: 10px;
}

.footer-col i {
    color: #ed1c24;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    background-color: #111;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        width: 100%;
        transition: 0.5s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-container {
        flex-direction: column;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 15px !important;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }
}


@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1260px !important;
    }
}

.clippath-style {
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    padding: 20px;
    width: 25%;
}

.clippath-style-2 {
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    padding: 20px;
    background-color: #ED1C24;
    width: 40%;
}

.counter-icon img {
    text-align: center;
    margin: 0px auto;
}

.section-title-2 {
    font-size: 25px;
    text-align: center;
}

.services-img img {
    width: 100%;
    border-radius: 7px 7px 0px 0px;
}

.service-card-content {
    padding: 0px 20px 20px 20px;
    text-align: center;
}

.service-card-content p {
    font-size: 16px;
}

.why-choose-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid;
    border-radius: 12px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, #023b8f 0px 8px 16px -8px;
}

.why-img-num {
    background: #001C7D;
    background: linear-gradient(126deg, rgba(0, 28, 125, 1) 0%, rgba(4, 82, 156, 1) 44%, rgba(0, 28, 125, 1) 100%);
    height: 190px;
    width: 25%;
    padding: 10px;
    border-radius: 12px 0px 0px 12px;
}

.why-choose-content p {
    font-size: 16px;
}

.why-choose-num {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    margin-top: 30px;
    text-align: center;
    font-family: "Bricolage Grotesque", sans-serif;
}

.industries-we-serve-img img {
    height: 450px;
    width: 300px;
}

.industrial-flex {
    display: flex;
    margin-top: 50px !important;
}

.industries-we-serve-img h5 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-top: 20px;
    text-align: center;
    font-family: "Bricolage Grotesque", sans-serif;
    position: relative;
    top: -90px;
}

.our-process-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    background: linear-gradient(126deg, rgba(0, 28, 125, 1) 0%, rgba(4, 82, 156, 1) 44%, rgba(0, 28, 125, 1) 100%);

}

.our-process-content h4 {
    color: #fff;
    font-size: 18px;
    padding: 20px 0px 0px 0px;
    text-align: center;
}

.our-services-img {
    position: relative;
}

.our-services-img img {
    position: absolute;
    width: 100px;
    left: 33%;
    bottom: 25px;
}

.our-process-content p {
    color: #fff;
}

.footer-logo {
    width: 150px;
    background-color: #fff;
}


.our-process-img img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #fff;
}

.our-process-img-bg img {
    width: 100%;
    height: 670px;
    border-radius: 12px;
    border: 1px solid #fff;
}


.footer-col li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
}

.footer-logo {
    width: 250px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
}

.footer-col ul {
    padding-left: 0px !important;
}

.gallery-item img {
    border-radius: 20px;
    border: 3px solid #002280;
}

.cta-group {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}


.process-number-design {
    position: relative;
}


.process-number-design span {
    background-color: #f1f1f1;
    color: #001C7D;
    padding: 8px 13px;
    font-size: 25px;
    font-weight: 700;
    border-radius: 1000px;
    position: absolute;
    top: -131px;
    line-height: 37.1px;
    left: 9px;
    font-family: "Poppins", sans-serif;

}


.about-shape {
    position: relative;
    display: none;
}

/* .about-shape img{
    position: absolute;
} */

.heading-color {
    background: -webkit-linear-gradient(#001C7D, #04529C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#margin-spaceonly {
    margin-top: 40px;
}


.footer-bg{
    background-image: url(../images/shapes/footer-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-bottom a{
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

#testimonial-title{
    text-align: start;
}

.clients-title{
    font-size: 40px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    position: relative;
    font-weight: 800;
    text-align: start;
}

#fixedWhatsAppIcon {
  display: block;
  position: fixed;
  right: 20px;
  bottom: 107px;
  width: 50px;
  height: 50px;
  background-color: #54b460;
  text-align: center;
  line-height: 50px;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  z-index: 9999;
}
#fixedWhatsAppIcon:hover {
  background-color: #339933;
}



/* call */

.fixed-tel {
  position: fixed;
  bottom: 171px;
  right: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  z-index: 9999;
  text-align: center;
}

.fixed-tel:before {
  content: "";
  width: 50px;
  height: 50px;
  background-color: #ff5f13;
  position: absolute;
  border-radius: 100%;
  box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .12), 0 1px 1px 0 rgba(0, 0, 0, .24);
  z-index: 1;
  top: 0;
  left: 0;
  background: linear-gradient(126deg, rgba(0, 28, 125, 1) 0%, rgba(4, 82, 156, 1) 44%, rgba(0, 28, 125, 1) 100%);
}

.fixed-tel i {
  vertical-align: middle;
  z-index: 2;
  position: relative;
  color: #fff;
  font-size: 18px;
}
.c-spinning-loader {
  position: relative;
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.c-spinning-loader__circle {
  position: relative;
  width: 100px;
  height: 100px;
  
  margin: 0 auto;
  border-radius: 100%;
  background: linear-gradient(to right, rgba(4, 82, 156, 1) 10%, rgba(0, 28, 126, 0) 50%);
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
}
.c-spinning-loader__circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  border-radius: 100% 0 0 0;
  background:rgba(4, 82, 156, 1);
}
.c-spinning-loader__circle::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 92%;
  height: 92%;
  margin: auto;
  border-radius: 50%;
  background: #d9f0ff;
}

.c-spinning-loader__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translate(-50%, -50%);

}

@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:#fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

#scrollup {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

#scrollup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(126deg, rgba(0, 28, 125, 1) 0%, rgba(4, 82, 156, 1) 44%, rgba(0, 28, 125, 1) 100%);
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    border:none;
    cursor: pointer;
    outline: none;
    position: relative;
    overflow: hidden;
}
.scroll-to-top:hover::after {
    opacity: 1;
}
.enquire-btn{
    color: #fff !important;
    text-decoration: none !important;
}
.enquires-btn{
    color: #ccc !important;
    text-decoration: none !important;
    
}
.ft-trans:hover{
    color: #ed1c24 !important;
}
.address-flex span{
    font-size: 16px;
}

.readmore-text{
    text-decoration: none !important;
}
@media (max-width: 780px)  {
     .quality-card{
    height: 297px;
  }
  .home-about{
    flex-direction: column-reverse;
  }
  .services{
    padding: 60px 0;
  }
  .why-choose{
    padding: 60px 0;
  }
  .process{
    padding: 60px 0;
  }
  .gallery {
    padding: 60px 0;
  }
  .banner-main-content{
    padding: 60px 0;
  }
  .industries{
    padding: 40px 0;
  }
  .testimonials{
    padding-top: 60px;
    padding-bottom: 0px;
  }
  .clients-title{
    font-size: 28px;
  }
  .margin-footer{
    margin-top: 30px;
  }
  .cta-group {
      flex-direction: column;
    }
}
@media(min-width:768px) and (max-width: 991px){
    .margin-footer{
        margin-top: 30px;
    }
}
.call-space{
    margin-left: 30px;
}
.address-flex{
    display: flex;
    flex-direction: row;
}
.project-image img{
  border-radius: 17px;
}
.project-text-color{
    position: relative;
}
.project-pos-absolute{
    position: absolute;
    background: linear-gradient(126deg, rgb(0, 28, 125) 0%, rgb(4, 82, 156) 44%, rgb(0, 28, 125) 100%);
    color: #fff;
    border-radius: 7px;
    padding: 20px;
        top: -37px;
    left: 18px;
    width: 90%;
}
.project-pos-absolute p{
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}
.project-flex{
    display: flex;
    flex-direction: row ;
}
.project{
    padding: 80px 0;
}
.brand-logo-slider{
    display: flex !important;
    gap: 30px;
    background: #001C7D;
    padding-top: 40px;
    padding-bottom: 40px;
}
.brand-logo-slider .slick-track{
    display: flex !important;
    align-items: center;
}
.brand-logo-item{
    padding: 0 15px;
}
.brand-logo-item img{
    width: 67%;
    height: auto;
    transition: all 0.3s ease;
    border-radius: 7px;
}
.brand-logo-item img:hover{
    filter: grayscale(0%);
}
.brand-logo-slider .slick-slide{
    display: flex !important;
    justify-content: center;
}
