/* Reset Some Default Styles */
/* Webkit (Chrome, Safari) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(150, 150, 150, 0.3);
    border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {
    background: rgba(150, 150, 150, 0.5);
    /* Slightly darker on hover */
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(150, 150, 150, 0.3) transparent;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.swiper-container {
    position: relative;
}

.swiper-pagination {
    position: absolute;
    opacity: 1 !important;
    visibility: visible !important;
    top: 90% !important;
}

.map iframe {
    pointer-events: none;
}

.map {
    position: relative;
}

.map iframe {
    pointer-events: none;
    width: 100%;
    height: 80px;
    border-radius: 15px;
}


/* Set base font styles */
html {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Body Styling */
body {
    background-color: #ffff;
    color: #222;
    font-size: 1rem;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease-in-out;
}


a:hover {
    color: #007bff;
}

/* Root Variables */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --light-color: #f8f9fa;
    --dark-color: #222;
    --font-family-base: 'Roboto', sans-serif;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --spacer: 1rem;
    --border-radius: 0.25rem;
    --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-bold);
}

p {
    margin-bottom: var(--spacer);
}

ul,
ol {
    margin-bottom: var(--spacer);
    padding-left: 20px;
}

/* Buttons */
button {
    cursor: pointer;
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-bold);
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.static-banner-title {
    font-size: 60px;
}

.text-bold {
    font-weight: 700;
}

.carousel-caption.static-banner-title {
    position: absolute;
    top: 50%;
    left: 28%;
    transform: translateY(-50%);
    text-align: center;
    max-width: 45%;
}

.carousel-item.staticbanner {
    height: 100%;
}

.color-warning {
    color: #f1b417 !important;
}

.py-6 {
    padding: 65px 0px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.p-0 {
    padding: 0;
}

.m-0 {
    margin: 0;
}

.px-8 {
    padding-inline: 80px;
}

img.w-126 {
    width: 126px;
    object-fit: cover;
}

img.h-126 {
    height: 126px;
}

.br50 {
    border-radius: 50%;
}

.flex-1 {
    flex: 1;
}

.w-75 {
    width: 75%;
}

.w-80 {
    width: 80%;
}

.mw-175 {
    max-width: 175px;

}

.mh-84 {
    max-height: 84px;
}

.minht-400 {
    min-height: 400px !important;

}

.minht-350 {
    min-height: 350px !important;

}

.carousel-control-next-icon {
    background-image: none !important;
}

.w-86 {
    width: 86%;
}

img.mw-157 {
    max-width: 157px;

}

img.mh-115 {
    max-height: 115px;

}

.position-relative {
    position: relative !important;
}

.bg-light {
    background-color: #fff;
}

.bg-warning {
    background-color: #2a45b0 !important;

}

.card.bg-warning {
    border-radius: 12px;
}

.btn-warning {
    background-color: #2a45b0 !important;
    border-radius: 30px;
    padding: 8px 20px;
    border: none !important;
}

.btn.border-1 {
    border: 1px solid #313131;
}

.brimg {
    border-radius: 10px;

}

.btn-light {
    border-radius: 10px;
    padding: 8px 20px;
}

.btn-light.br2 {
    border-radius: 90px;
    padding: 8px 20px;
}

.btn-warning:hover {
    background-color: #2a45b0;
}

/*======================= header */
/* ---------- Base Navbar ---------- */
.top-bar {
    font-size: 14px;
    background-color: #2a45b0;
    color: #fff;
    padding: 8px 0;
    text-align: center;
}

.navbar {
    padding: 0px;
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: #333;
    font-weight: 600;
    padding: 12px 18px;
    transition: 0.3s ease-in-out;
    font-size: 16px;
}

/* Active and Hover States */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #2a45b0;
    border-bottom: 2px solid #2a45b0;
}

/* ======================================================
   Responsive Adjustments for Large Screens (1024px and below)
====================================================== */
@media (max-width: 1024px) {
    .navbar-nav .nav-link {
        padding: 10px 16px; /* Reduce padding for tablet/laptop */
        font-size: 15px;
    }
}

/* ======================================================
   Responsive Adjustments for Tablets (768px and below)
====================================================== */
@media (max-width: 768px) {
    .navbar {
        padding: 0px 10px; /* Add some side padding */
    }

    .navbar-nav {
        flex-direction: column; /* Stack nav links vertically */
        align-items: flex-start; /* Align left */
        background: #fff;
        width: 100%;
        border-top: 1px solid #e0e0e0;
    }

    .navbar-nav .nav-link {
        width: 100%; /* Full width clickable links */
        padding: 14px 20px;
        font-size: 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none; /* Remove last link border */
    }
}

/* ======================================================
   Responsive Adjustments for Small Screens (428px and below)
====================================================== */
@media (max-width: 428px) {
    .top-bar {
        font-size: 13px; /* Slightly smaller for mobile */
        padding: 6px 0;
    }

    .navbar {
        padding: 0px 10px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background: #fff;
    }

    .navbar-nav .nav-link {
        font-size: 14px; /* Smaller text for mobile */
        padding: 12px 16px;
        width: 100%;
        border-bottom: 1px solid #eaeaea;
    }
}



/* ========================== Slider Section ========================== */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider {
    height: 550px;
    background-size: cover;
}

.carousel-item img {
    object-fit: fill;
    height: 100%;
    width: 100%;
}


.carousel-caption {
    position: absolute;
    top: 35%;
    left: 8%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 45%;
}

.carousel-caption h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
}

.carousel-caption h4 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.carousel-caption p {
    font-size: 16px;
    color: #BBBBBB;
    margin-top: 5px;
    line-height: 1.6;
}

.carousel-caption .btn-warning {
    background-color: #2a45b0;
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: bold;
    transition: var(--transition);
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 40%;
}

/* ========================== About Section ========================== */

.about-section {
    padding: 0px 0;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

.about-text {
    flex: 1;
}

.about-subtitle {
    color: #f1b417;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.about-title {
    font-size: 36px;
    font-weight: 600;
    color: #2a45b0;
    margin-bottom: 15px;
}

.about-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    /* height: 72px; */
    overflow: auto;
}

.core-values-title {
    color: #ff7300;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}

.about-text p {
    font-size: 16px;
    color: #595959;
    margin: 12px 0;
}

/* cpreview */
.cpreview-primarycard {
    background-color: #2a45b0;
    border-top-left-radius: 18px !important;
    border-top-right-radius: 18px !important;
}

.cprimg {
    height: 155px;
    object-fit: cover;
}


/* Mission Statement */

.missionstatement-pointsul li {
    margin: 7px 0px;
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: center;
}



/* our features */



.extra-features.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.extra-features.show {
    opacity: 1;
}


.extra-features {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.extra-features.show {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.ourservice-section {
    background-image: url('../images/ourserviceBackground.png');
    background-size: cover;
    background-position: center;

}

.about-subtitle.ourservice {
    color: #f1b417;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}

.service-card {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #23222A;
    transition: 0.3s ease-in-out;
    height: 280px;
    overflow: hidden;
    align-content: center;
    /* max-width: 98%; */
    transition: all 0.4s ease-in-out;
}

.feature:hover {
    transition: all 0.4s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #2a45b0, #f1b417);
    color: #fff;
}

.feature:hover h3,
.feature:hover p {
    color: #fff;
}

.feature:hover .service-icon svg {
    filter: brightness(0) invert(1);
    /* Turns the SVG white */
    transition: all 0.3s ease-in-out;
}



.service-icon {
    position: relative;
    display: inline-block;
}

.service-icon img {
    width: 50px;
}


.service-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
}


/* applyjob - section */
.service-card.applyjob {
    height: 225px;
    overflow: auto;
}



.applyforjobimg {
    max-width: 450px;
}

.applyjobform-card {
    background: #2a45b0;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    height: 540px;
}

.applyjobform-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.applyjobform-card p {
    font-size: 14px;
    margin-bottom: 15px;
}

.applyjobform-card .form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.resume-upload {
    position: relative;
}

.resume-upload input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.resume-upload label {
    position: absolute;
    background-color: #fff;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    cursor: pointer;
    gap: 105px;
    display: flex;
}

/* trusted clients */

.trustedclients-section {
    background-color: #2a45b0;
}

.service-card.trustedclients {
    text-align: justify !important;
    justify-content: end;
    background: #fff;
    border-radius: 32px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #23222A;
    transition: 0.3s ease-in-out;
    height: 280px;
    overflow: visible;
    align-content: end;
    position: relative;
    /* min-width: 470px; */
    max-width: 472px;
}

.ratingstars {
    position: absolute;
    top: 10px;
    left: 38%;
}

.trustedclients img.avatar {
    position: absolute;
    top: -60px;
    left: 10px;
}

.trustedclients h3 {
    font-size: 24px;
}

p.designation {
    font-size: 18px;
}


/* BLOG */
.blog-thumbnail {
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    text-align: center;
    justify-content: center;

}

.blogtitle h3 {
    font-size: 24px;
}


.service-card.blog {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #23222A;
    transition: 0.3s ease-in-out;
    height: 480px;
    overflow: hidden;
    align-content: start;
}


/* TEAM CEO */
.about-image.card.bg-warning {
    border-radius: 12px;
    padding: 30px;
}

/* TEAM Members */
img.team {
    height: 277px;
    width: 277px;
    object-fit: cover;
}

.team.card {
    width: 340px !important;
}

.swiper-pagination.team {
    top: 95% !important;
}

img.ceo {
    width: 267px;
    height: 267px;
    object-fit: cover;
}

/* get a quote */
.fillformarrow {
    z-index: 9;
    left: -80px;

}

section#getintouchquote {
    background-color: #F2F2F2;
}

.bg-primary {
    background-color: #2a45b0 !important;
    margin-left: 172px;
}
/* For mobile devices */
@media (max-width: 767px) {
    .bg-primary {
        margin-left: 0px !important;
    }
}

/* Optional: For tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .bg-primary {
        margin-left: 50px;
    }
}

/* customers testimonials */
#faq {
    padding: 90px 0px !important;
}

.accordion-button {
    background: #2a45b0;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

.accordion-button:hover {
    background: #f1b417;
    color: #2a45b0;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: #f1b417;
    color: #2a45b0;
}

.accordion-body {
    background: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #f1b417;
    ;
}

.about-title.testimonials {
    font-size: 48px;
    font-weight: 700;
}

img.customerstestimonials {
    width: 676px;
    height: 676px;
    object-fit: fill;
}

.clientestimonials-content {
    font-size: 24px;
}

.swiper-button-next.testimonials:after {
    color: #2a45b0;
    font-size: 22px;
    font-weight: 800;
}

.swiper-button-prev.testimonials:after {
    color: #2a45b0;
    font-size: 22px;
    font-weight: 800;

}

/* ---------- Base Trusted Clients Card ---------- */
.service-card.trustedclients {
    text-align: justify !important;
    justify-content: flex-end;
    background: #fff;
    border-radius: 32px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #23222A;
    transition: 0.3s ease-in-out;
    overflow: visible;
    position: relative;
    max-width: 472px;
    min-height: 320px; /* Increased for breathing space */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px; /* Space for avatar */
}

/* ---------- Avatar Image Adjustment ---------- */
.trustedclients img.avatar {
    position: absolute;
    top: -50px;
    left: 20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

/* ---------- Rating Stars Position Adjustment ---------- */
.ratingstars {
    position: absolute;
    top: 10px;
    right: 20px; /* Moved to right to avoid clash */
    display: flex;
    gap: 3px;
}

/* ---------- Title and Designation ---------- */
.trustedclients h3 {
    font-size: 22px;
    margin-top: 10px;
}

p.designation {
    font-size: 16px;
    margin-bottom: 10px;
}


/* ======================================================
    Responsive Adjustments for Medium to Large Screens
====================================================== */

/* For Tablets and Medium Screens (768px and below) */
@media (max-width: 768px) {
    .service-card.trustedclients {
        max-width: 100%;
        padding: 20px;
        min-height: auto;
        padding-top: 70px;
    }

    .trustedclients img.avatar {
        width: 80px;
        height: 80px;
        top: -40px;
        left: 15px;
    }

    .ratingstars {
        top: 8px;
        right: 15px;
    }

    .trustedclients h3 {
        font-size: 20px;
    }

    p.designation {
        font-size: 14px;
    }
}


/* For Large Screens (1024px and below) */
@media (max-width: 1024px) {
    .service-card.trustedclients {
        max-width: 100%;
        padding: 24px;
        min-height: auto;
        padding-top: 80px;
    }

    .trustedclients img.avatar {
        width: 90px;
        height: 90px;
        top: -45px;
        left: 18px;
    }

    .ratingstars {
        top: 8px;
        right: 18px;
    }

    .trustedclients h3 {
        font-size: 22px;
    }

    p.designation {
        font-size: 16px;
    }
}


/* ======================================================
    Responsive Adjustments for Small Screens (Mobile 452px and below)
====================================================== */

@media (max-width: 452px) {
    .service-card.trustedclients {
        max-width: 100%;
        padding: 15px;
        min-height: auto;
        padding-top: 70px;
    }

    .trustedclients img.avatar {
        width: 70px;
        height: 70px;
        top: -35px;
        left: 10px;
    }

    .ratingstars {
        top: 5px;
        right: 10px;
    }

    .trustedclients h3 {
        font-size: 18px;
    }

    p.designation {
        font-size: 14px;
    }
}








/* PRICING */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
    /* text-align: center; */
}

/* Centering the Tabs */
.cstmtabs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

/* Pricing Toggle Buttons */
.cstmtabs .nav-link {
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin: 0 10px;
}

.cstmtabs .nav-link.active {
    color: #fff;
    background: #007bff;
}

.cstmtabs .nav-link:hover {
    color: #007bff;
    background: #e9ecef;
}

/* Pricing Container */
.pricing-content {
    display: none;
    width: 100%;
}

.pricing-content.active {
    display: block;
}

/* Swiper Container */
.custom-slider-container {
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

/* Pricing Cards */
.custom-slider-wrapper {
    display: flex;
    align-items: center;
}

.custom-slider-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-card:nth-child(even) {
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
}

/* Centering Pagination */
.custom-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

swiper-slide.custom-slider-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Pricing Card Styling */
.pricing-card {
    width: 100%;
    max-width: 340px;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 620px;
}

/* Plan Title */
.pricing-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding: 8px 20px;
    display: inline-block;
    border: 2px solid #ffcd3c;
    border-radius: 50px;
    color: #2a45b0;
    background-color: #ffcd3c;
}

/* Price */
.pricing-card .price {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 10px 0;
}

/* Description and Billing */
.pricing-card .pricing-box-desc,
.pricing-card .pricing-box-bill {
    font-size: 0.95rem;
    margin: 4px 0;
    opacity: 0.9;
}

/* Feature Title */
.pricing-card .fw-bold {
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Features List */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
    text-align: left;
}

/* Feature Items */
.pricing-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
    font-size: 0.9rem;
}

/* Checkmark Icon */
.pricing-card ul li .icon {
    color: #ffcd3c;
    font-size: 1.1rem;
}

/* CTA Button */
.pricing-card .btn {
    margin-top: auto;
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    color: white;
    background: #1e3a8a;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.pricing-card .btn:hover {
    background: #162d70;
}

/* MOBILE Responsive */
@media (max-width: 768px) {
    .pricing-card {
        max-width: 100%;
        padding: 25px 18px;
        min-height: auto;
        width: 90%;
        height: 600px; /* Adjusted for smaller screens */
    }

    .pricing-card h3 {
        font-size: 1.5rem;
    }

    .pricing-card .price {
        font-size: 2rem;
    }

    .pricing-card ul li {
        font-size: 0.85rem;
    }

    .pricing-card .btn {
        padding: 10px 25px;
    }
}

/* Responsive Adjustments for Medium Screens (Tablets & Small Laptops) */
@media (min-width: 768px) and (max-width: 1024px) {
    .custom-slider-container {
        width: 95%;
    }

    .pricing-card {
        width: 80%;
        max-width: 360px;
        padding: 28px 22px;
        min-height: 580px;
    }

    .pricing-card h3 {
        font-size: 1.6rem;
    }

    .pricing-card .price {
        font-size: 2.2rem;
    }

    .pricing-card ul li {
        font-size: 0.95rem;
    }

    .pricing-card .btn {
        padding: 12px 28px;
    }
}

/* Responsive Adjustments for Large Screens (Small Desktops) */
@media (min-width: 1025px) and (max-width: 1280px) {
    .custom-slider-container {
        width: 85%;
    }

    .pricing-card {
        width: 100%;
        max-width: 380px;
        padding: 30px 24px;
        min-height: 600px;
    }

    .pricing-card h3 {
        font-size: 1.7rem;
    }

    .pricing-card .price {
        font-size: 2.3rem;
    }

    .pricing-card ul li {
        font-size: 1rem;
    }

    .pricing-card .btn {
        padding: 14px 32px;
    }
}

/* General Responsive Adjustments for screens up to 1024px */
@media (max-width: 1024px) {
    .custom-slider-container {
        width: 95%;
    }
}






.btn_close{
 margin-bottom: 50px;
 position: absolute;
 right: 14px;
 top:14px;
}


.rounded-image{
    border-radius: 20px;
}




.youtube-border{
    border: 1px solid #f6a623;
    padding: 7px;
    border-radius: 70%;
}

/*============================================= Footer =============================================== */
footer .row {
    row-gap: 17px;

}

.footer {
    background: #ffffff;
    padding: 40px 0;
    border-top: 1px solid #595959;
}



.footer p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}



.footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2a45b0;
}

.footer .list-unstyled {
    padding: 0;
    margin: 0;
}

.footer .list-unstyled li {
    margin-bottom: 8px;
}

.footer .list-unstyled li a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
}

.footer .list-unstyled li a:hover {
    color: #f6a623;
}

.footer-bottom {
    text-align: center;
    background: #f8f9fa;
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}

.map img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.footer p i {
    color: #f6a623;
    margin-right: 5px;
}



/* =================================================================================================== */


/* About PAGE */

section#staticbanner {
    height: 400px;
}

.carousel-inner.static-banner {
    height: 400px;
}


/* Careers */
.service-card.career {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #23222A;
    transition: 0.3s ease-in-out;
    height: 340px;
    overflow: hidden;
    align-content: center;
}

/* blog page */
.about-image.blogimg {
    position: sticky;
    top: 40px;
    height: auto;
}

.blog-img {
    max-height: 443px;
    max-width: 100%;
    border-radius: 18px;
}


/* Contact page */
section.bg2 {
    background-image: url('../images/contactbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.contactsvg {
    top: -45%;
    left: 30%;
}

/* stickyy */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.floating-icons .whatsapp {
    background-color: #25D366;
}

.floating-icons .call {
    background-color: #007bff;
}

.floating-icons .form-icon {
    background-color: #ff5722;
}

.floating-icons a:hover {
    opacity: 0.8;
}

/* ==================================================================================================== */
@media (min-width: 1241px) and (max-width: 1365px) {
    .ratingstars svg {
        width: 30px !important;
        height: 30px !important;
    }

    .swiper-button-prev.testimonials {
        left: -370px !important;
    }

    .swiper-button-next.testimonials {
        left: -280px !important;
    }

    .ratingstars {
        left: 45%;
    }


    .resume-upload label {
        position: absolute;
        background-color: #fff;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 16px;
        cursor: pointer;
        gap: 70px;
        display: flex;
    }

    .service-card.applyjob {
        position: absolute;
        top: 61%;
        padding: 15px;
        text-align: justify;
        width: 600px !important;
    }

}

@media (max-width: 1023.9px) {



    .carousel-inner.static-banner {
        height: fit-content;
    }

    .carousel-caption.static-banner-title {
        top: 50%;
    }

    section#staticbanner {
        height: 50%;
    }

    /* .carousel-item img {
        height: fit-content;
    } */

    .carousel-item.staticbanner {
        height: fit-content;
    }

    .swiper-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    a.nav-link {
        color: #2a45b0;
    }

    a.nav-link:hover {
        color: #595959;
    }

    a.nav-link.active {
        color: #fff;
        /* background-color: #2a45b0 !important; */
    }

    .carousel-indicators {
        position: relative;
    }

    .applyforjobimg {
        max-width: 250px;
    }
}

@media (min-width: 1023.9px) and (max-width:1025px) {
    .carousel-indicators {
        bottom: 10% !important;
    }

    .service-card.applyjob {

        width: 490PX !important;
    }

    .resume-upload label {
        gap: 5PX !important;
    }

    .service-card.blog {
        height: 525px !important;
    }

}


@media (min-width: 1023.9px) {
    .pricing-card {
        width: 450px;
    }


    .about-image.blogimg {
        position: sticky;
        top: 40px;
        height: auto;
    }

    .carousel-control-next-icon {
        background-image: none !important;
    }

    .carousel-control-prev-icon {
        background-image: none !important;
    }

    .customer-testimonial-text {
        background-color: white;
        z-index: 999;
        /* margin-top: -125px; */
    }

    .customer-testimonial-slider.position-absolute {
        top: -500px;
    }

    .swiper-button-next.testimonials {
        top: -180px;
        left: -295px;
        padding: 30px;
        background-color: white;
        border: 1px solid #2a45b0;
        border-radius: 50%;
    }

    .swiper-button-prev.testimonials {
        top: -180px;
        left: -390px;
        padding: 30px;
        border: 1px solid #2a45b0;
        background-color: white;
        border-radius: 50%;
    }

    .service-card.applyjob {
        position: absolute;
        top: 61%;
        padding: 15px;
        text-align: justify;
        width: 640px;
    }

    .carousel-control-prev {
        top: 70%;
        margin-left: 79%;
    }

    .carousel-control-next {
        top: 70%;
    }

    .sticktop.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: white;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.8s ease-in-out;
    }


    .carousel-indicators {
        position: absolute;
        bottom: 18%;
        z-index: 10;
        display: flex;
        gap: 8px;
        left: -78%;
    }

    .carousel-indicators button {
        width: 14px;
        height: 14px;
        border: none;
        background: transparent;
        transition: all 0.3s ease;
        background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="1.125" y="1.125" width="12" height="12" rx="6" stroke="%23808080" stroke-width="0.75"/></svg>') !important;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }


    .carousel-indicators .active {
        background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.75" y="0.75" width="12.75" height="12.75" rx="6.375" fill="white"/></svg>') !important;
    }

    .carousel-indicators [data-bs-target] {
        background-color: transparent !important;
        width: 14px;
        height: 14px;
    }


}



@media (max-width: 992px) {
    .strtbanner {
        display: block;
        width: max-content;
        margin-top: 10px;
    }

    .service-card {
        padding: 10px !important;
    }

    .swiper-slide {
        width: auto !important;

    }

    .order-sm-2 {
        order: 2;
    }

    .applyforjobimg {
        max-width: 300px !important;
    }

    .service-card.applyjob {
        position: absolute;
        top: 50%;
        padding: 15px;
        text-align: justify;
        width: 480px;
    }

    .applyjobform-card {
        height: 100% !important;
    }

    .resume-upload label {
        gap: 7px;
    }

    .offcanvas a.nav-link.active {
        background-color: #2a45b0 !important;
    }

    .d992none {
        display: none;
    }

    html {
        font-size: 14px;
    }

    .carousel-caption {
        max-width: 80%;
        left: 5%;
    }

    .carousel-caption h2 {
        font-size: 2rem;
    }

    .carousel-caption h3 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .customer-testimonial-slider.position-absolute {
        position: absolute !important;
        margin-top: -505px;
    }
}




@media (max-width: 768.1px) {
    /* .service-card {
        width: 100% !important;
    } */


    .resume-upload label {
        display: none;
    }

    .txtelips {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;

    }

    .carousel-control-prev,
    .carousel-control-next {
        position: relative;
    }

    html {
        font-size: 13px;
    }

    .container {
        padding: 0 0px;
    }

    .carousel-caption {
        max-width: 90%;
        left: 5%;
    }

    .carousel-caption h2 {
        font-size: 1.8rem;
    }

    .carousel-caption h3 {
        font-size: 1.3rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
        width: 80%;
    }
}

@media (max-width: 580px) {

    .resume-upload label {
        display: none;
    }

    .contactsvg {
        top: -64%;
        left: 28%;
    }

    .slider {
        height: 300px;
    }

    section#banner {
        height: 300px;
    }

    .carousel-caption h4 {
        font-size: 18px;
        display: none;
    }

    .carousel-caption h1 {
        width: 80%;
        font-size: 21px !important;
    }

    .contact-info.row {
        text-align: center;
    }

    .cpreview-primarycard {
        row-gap: 30px;
    }

    .about-title {
        font-size: 24px;
    }

    .w-md-50 {
        width: 75% !important;
    }

    .row.py-6 {
        row-gap: 40px;
    }

    .applyjobform-card {

        height: 85% !important;
        width: 100% !important;
    }

    .ratingstars {
        left: 25%;
        top: 75px;
    }

    .ratingstars svg {
        width: 30px !important;
        height: 30px !important;

    }

    .service-card.trustedclients {
        justify-content: end;
        /* width:  !important; */
        height: 350px !important;
    }

    img.customerstestimonials {
        height: 500px;
        width: 500px;
    }

    .customer-testimonial-slider.position-absolute {
        margin-top: -425px;
    }

    .clientestimonials-content {
        font-size: 20px;
    }

    .fillformarrow {
        left: 30px;
        top: 14px;
    }
}

/* =============================================================================== qa bypass responsive points */

@media (min-width: 1215px) and (max-width: 1225px) {

    .service-card.applyjob {
        width: 580px;
    }

    .ratingstars svg {
        width: 30px !important;
        height: 30px !important;
    }

    .ratingstars {
        left: 45%;
    }

    .service-card.blog {
        height: 500px;

    }

    .swiper-button-next.testimonials {
        top: -150px;

    }

    .swiper-button-prev.testimonials {
        top: -150px;
        left: -375px;
    }


}

@media (min-width: 1075px) and (max-width: 1085px) {
    .resume-upload label {
        gap: 18px
    }

    .contactsvg {
        left: 27%;
    }

    .carousel-indicators {
        top: 80%;
    }

    .w-md-50 {
        width: 60% !important;
    }

    .service-card.applyjob {
        width: 515px;
    }

    .service-card.blog {
        height: 520px;
    }

    .swiper-button-next.testimonials {
        top: -125px;
        left: -250px;
    }

    .swiper-button-prev.testimonials {
        top: -125px;
        left: -330px;

    }

    img.customerstestimonials {
        height: 630px;
    }


}


@media (min-width: 990px) and (max-width: 993px) {
    .carousel-caption.static-banner-title {
        top: 50%;
    }

    .service-card.trustedclients {
        justify-content: end;
    }

    .ratingstars {
        left: 26%;
        top: 70px;
    }


    .about-image.col-lg-8 {
        flex: auto;
    }

    .customer-testimonial-slider.position-absolute {
        position: absolute !important;
        margin-top: -505px;
    }

    .carousel-control-prev {
        top: 55%;
        margin-left: 75%;
    }

    .carousel-control-next {
        top: 55%;
        right: 2%;
    }

    .service-card.blog {
        background: #fff;
        border-radius: 12px;
        padding: 35px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border: 1px solid #23222A;
        transition: 0.3s ease-in-out;
        height: 515px;
        overflow: hidden;
        align-content: start;
    }
}

@media (min-width: 765px) and (max-width: 770px) {
    .contactsvg {
        top: -64%;
        left: 40%;
    }


    .service-card {
        padding: 12px;
        height: 265px;

    }

    .service-card.blog {
        padding: 5px;
        height: 500px;
    }

    .service-card.trustedclients {
        justify-content: end;
    }

    .ratingstars svg {
        width: 30px !important;
        height: 30px !important;

    }

    .swiper-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ratingstars {
        left: 25%;
        top: 70px;
    }

    .service-card.applyjob {
        width: 355px;
    }

    section#banner {
        height: 400px;
    }

    .carousel-control-prev {
        top: -14%;
        left: 70%;
    }

    .carousel-control-next {
        top: -19%;
        right: -80%;
    }

    .carousel-caption h1 {
        font-size: 45px;
    }

    .carousel-caption h4 {
        font-size: 20px;
    }

}

@media (min-width: 575px) and (max-width: 580px) {
    .contactsvg {
        top: -64%;
        left: 35%;
    }

    .slider {
        height: 300px;
    }

    section#banner {
        height: 300px;
    }

    .carousel-caption h4 {
        font-size: 18px;
    }

    .cpreview-primarycard {
        row-gap: 30px;
    }

    .carousel-caption h1 {
        font-size: 30px;
    }

}

@media (max-width:489px) {
    .contactsvg {
        top: -64%;
        left: 33%;
    }

    .service-card.applyjob {
        width: -webkit-fill-available;
    }

    .carousel-inner {
        height: 100%;
    }

    .carousel-item {
        height: 100%;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        display: none;
    }

    img.customerstestimonials {
        height: 400px;
        width: 400px;
    }

    .clientestimonials-content {
        font-size: 14px;
    }

    .customer-testimonial-slider.position-absolute {
        margin-top: -335px;
    }

    .dsm-none {
        display: none;
    }

    .service-card.blog {
        height: max-content;
    }

    img.customerstestimonials {
        width: 100%;
        height: 100%;
    }

    .customer-testimonial-slider.position-absolute svg {
        display: none;
    }

    .customer-testimonial-slider.position-absolute h3 {
        font-size: 12px;
    }

    .customer-testimonial-slider.position-absolute small {
        font-size: 10px;
    }

    .customer-testimonial-slider.position-absolute {
        margin-top: -245px;
    }

}

@media (min-width:319px) and (max-width: 359.9px) {
    .ratingstars {
        top: 14%;
        left: 35px;
    }

    .ratingstars svg {
        width: 25px;
        height: 25px;
    }

    .applyforjobimg {
        width: 100%;
    }

    .service-card.applyjob {
        left: -4%;
        height: max-content;
    }

    .resume-upload label {
        display: none;
    }

    .applyjobform-card {
        padding: 12px;
    }

    .applyjobform-card {
        margin-top: 145px;
        height: 76% !important;
    }

    .clientestimonials-content {
        font-size: 12px;
    }

    .customer-testimonial-slider.position-absolute svg {
        display: none;
    }

    .customer-testimonial-slider.position-absolute small {
        display: none;
    }

    .customer-testimonial-slider.position-absolute {
        margin-top: -215px;
    }
}

@media (min-width: 768.1px) and (max-width: 770px) {
    .txtelips {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;

    }


    .carousel-control-prev {
        top: 15%;
        left: 70%;
    }

    .carousel-control-next {
        top: 15%;
        right: 5%;
    }

    .carousel-caption h1 {
        font-size: 45px;
    }

    .carousel-caption h4 {
        font-size: 20px;
    }

}

@media (min-width: 1357px) and (max-width: 1359px) {
    .resume-upload label {
        gap: 100px;
    }
}

@media (min-width: 1234.5px) and (max-width: 1236px) {
    .resume-upload label {
        gap: 70px;
    }

    .service-card.applyjob {
        width: 590px;
    }

    .swiper-button-prev.testimonials {
        left: -375px;
    }
}

@media (min-width: 359px) and (max-width: 360.9px) {
    .carousel-caption.static-banner-title {
        left: 28%;
    }

    .service-card.applyjob {
        height: 230px;
    }

    .resume-upload label {
        gap: 20px;
        font-size: 10px;
        display: none;
    }
}

@media (min-width: 479px) and (max-width: 480.9px) {
    .resume-upload label {
        gap: 45px;
    }
}

@media (min-width: 1199.9px) and (max-width: 1210px) {
    .service-card.blog {
        height: 500px;
    }

    .service-card.applyjob {
        width: 530px;
    }

}

@media (min-width: 799.8px) and (max-width: 802px) {
    .slider {
        height: auto;
    }

    .carousel-control-prev {
        left: 76%;
    }

    .service-card.applyjob {
        width: 96%;
    }

    .resume-upload label {
        gap: 12px;
    }

    .service-card.trustedclients {
        justify-content: end;
    }

    .ratingstars {
        top: 70px;
        left: 22%;
    }

    .ratingstars svg {
        width: 30px;
        height: 30px;
    }

    .service-card.blog {
        height: 575px;
    }

    .service-card.career {
        height: 450px;
    }

    .contactsvg {
        top: -53%;
        left: 40%;

    }
}

.txtelips {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;

}


@media (max-width: 767px) {
    .swiper-slide {
        width: 100% !important;
        /* height: auto !important; */
    }

    .swiper-slide {
        max-width: 96vw;
        padding: 0 15px;
        overflow: hidden;
    }

    /* .swiper-container {
        overflow: visible !important;
    } */
}

.swiper-wrapper {
    row-gap: 20px;

    /* Adjust the value as needed */
}