
@import url('fonts.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    position: relative;
    color: #fff;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background-color: #000;
    font-family: 'Open Sans', sans-serif !important;
}

p {
    font-size: 19px;
    /* font-family: "Ubuntu", sans-serif; */
    font-weight: 400;
    font-style: normal;
    color: #c3c3c3;
}

h2 {
    /* font-family: "Exo", sans-serif !important; */
    font-weight: 800 !important;
    font-style: normal !important;
    font-size: 2.3rem !important;
}

@media (max-width: 480px) {
    h2 {
        font-size: 45px !important;
    }
}

h4 {
    max-width: 850px !important;
    /* font-family: "Ubuntu", sans-serif !important; */
    font-weight: 400 !important;
    font-style: normal !important;
    text-align: center !important;
    margin: 0 auto !important;
    color: #b7b3b3 !important;
    font-size: 1.5rem !important;
}

/* ================ header================= */

header {
    background-color: transparent;
    height: 90px;
}

/* ================ Home/index================= */
.home {
    height: auto;
    width: 100%;
    /* background: radial-gradient(circle at top,
      #023341,
      #00202a,
      black,
      black,
      black,
      black,
      black,
      black,
      black,
      black,
      black); */
    background-color: #000305;
}

/* ================ Hone/landPage================= */
.landPage {
    min-height: calc(100vh - 90px);
}

@media (max-width: 480px) {
    .landPage h3 {
        font-size: 40px;
    }

    .landPage h3 span {
        font-size: 40px;
    }

    .landPage h1 {
        margin-top: 50px;
        font-size: 25px !important;
    }
}

/* ================ Home/sectTwo================= */

.secTwo {
    height: auto;
    width: 100%;
    padding: 50px 0;
}

.secTwo .highlight-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    position: relative;
    height: auto;
    min-height: 400px;
    width: 100%;
    max-width: 340px;
    padding: 20px;
    font-size: 18px;
    border-radius: 20px;
    border: 2px solid #047da3;
    background-color: transparent;
    backdrop-filter: blur(100px);
    box-shadow: 0px 12px 18px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    margin: 0 auto;
}

.secTwo .highlight-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.secTwo .highlight-card::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: linear-gradient(to bottom, #000e13, #001116);
    transition: all 0.4s ease;
    z-index: -1;
}

.secTwo .highlight-card:hover::before {
    top: 0;
    border-radius: 0;
}

.secTwo .highlight-card:hover {
    color: white;
}

.secTwo .highlight-card i,
.secTwo .highlight-card h3,
.secTwo .highlight-card p {
    width: 100%;
}

.secTwo .highlight-card i {
    font-size: 70px;
}

.secTwo .highlight-card a {
    margin-top: auto;
}

@media (max-width: 767px) {
    .secTwo .highlight-card {
        max-width: 100%;
    }

    .secTwo .highlight-card:hover {
        transform: none;
    }

    .secTwo .highlight-card i {
        font-size: 100px;
    }

    .secTwo .highlight-card p {
        font-size: 20px;
        margin-bottom: 25px;
    }
}

/* ================ Home/Services================= */

.servicesCon {
    height: auto;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(270deg, #000304, #020003fd, #000304, #020003fd);
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    max-width: 100%;
    background-color: transparent;
    border: 1px solid #ffffff7b;
    border-radius: 10px;
    box-shadow: 0px 0px 8px #047ea346;
    transition: 0.4s;
    cursor: pointer;
    padding: 40px 20px;
    height: 100%;

    &:hover {
        scale: 1.02;
    }
}

.service-card img {
    height: 80px;
    width: 80px;
}

@media (max-width: 480px) {
    .service-card img {
        height: 150px;
        width: auto;
    }

    .service-card {
        padding: 50px 0;
    }

    .service-card h3 {
        font-size: 45px;
        margin: 35px 0 !important;
    }

    .service-card .normalBtn {
        scale: 1.2;
    }
}

/* ================ industryExpertises(used in mulitple pages)================= */

.industry-expertises {
    height: auto;
    width: 100%;
    padding: 100px 0;
    padding-bottom: 70px;
    background: linear-gradient(270deg, #000304, #030005fd, #000304, #030005fd);
}

.industry-card {
    position: relative;
    min-height: 160px;
    min-width: 160px;
    border: 2px solid #047da3;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
    z-index: 1;
    overflow: hidden;
    padding: 10px;
}

.industry-card h6 {
    /* font-family: "Ubuntu", sans-serif; */
    font-weight: 500;
    font-style: normal;
    font-size: 22px;
    color: #0bc3fb;
    margin: 10px 0;
}

.industry-card::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #001c25, #00212b);
    transition: all 0.4s ease;
    z-index: -1;
    opacity: 0;
}

.industry-card:hover::before {
    top: 0;
    opacity: 100;
}

.industry-card:hover h6 {
    color: #fff;
    transition: 0.4s;
}

.industry-card img {
    margin: 10px 0;
    height: 90px;
    width: 90px;
    border-radius: 10px;
    cursor: pointer;
}

@media (max-width: 480px) {
    .industry-card img {
        height: 150px;
        width: auto;
    }
}

/* ================Home/WhyChoseUs ================= */

.why-chose {
    height: auto;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(270deg, #000304, #020003fd, #000304, #020003fd);
}

.highlight-card {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    position: relative;
    min-height: 300px;
    height: 100%;
    width: auto;
    padding: 40px 20px;
    font-size: 18px;
    border-radius: 20px;
    border: 2px solid #047da3;
    background-color: transparent;
    backdrop-filter: blur(100px);
    box-shadow: 0px 12px 18px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, transform 0.4s, scale 0.4s;
    margin: 0 auto;
}

.highlight-card:hover {
    transform: translateY(-5px);
    scale: 1.03;
}

.highlight-card::before {
    content: "";
    position: absolute;
    right: 00%;
    bottom: 0%;
    width: 0%;
    height: 0%;
    border-radius: 100%;
    background: linear-gradient(to bottom, #000e13, #001116);
    transition: all 0.4s ease;
    z-index: -1;
}

.highlight-card:hover::before {
    height: 100%;
    width: 100%;
    border-radius: 0;
}

.highlight-card:hover h5 {
    color: #fff;
}

.highlight-card:hover i {
    color: #047da3;
}

.highlight-card:hover p {
    color: #047da3;
}

@media (max-width: 480px) {
    .why-chose h6 {
        font-size: 2.7rem;
    }

    .why-chose .flex-column {
        margin-bottom: 30px;
    }

    .highlight-card {
        max-width: 100%;
        height: auto;
    }

    .highlight-card:hover {
        transform: none;
    }

    .highlight-card i {
        font-size: 100px;
    }

    .highlight-card p {
        font-size: 22px;
        width: 80%;
        margin: 0 auto;
        margin-bottom: 30px;
    }
}

/* ================ Counter(used in mulitple pages)================= */
.CounterSec {
    height: auto;
    width: 100%;
    padding: 70px 0;
    padding-bottom: 100px;
    background: linear-gradient(270deg, #000304, #030005fd, #000304, #030005fd);
}

.counter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 190px;
    width: 190px;
    background-color: black;
    border: 2px solid #047da3;
    color: #038bb5;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: 0.5s;

    &:hover {
        scale: 1.05;
    }
}

.counter-card i {
    font-size: 70px;
    margin: 0;
    padding: 0;
}

.counter-card p {
    font-size: 40px;
    margin: 0;
    transform: translateY(-25px);
    /* font-family: "Playfair Display", system-ui; */
    font-weight: 600;
}

.counter-card h6 {
    margin: 0;
    /* font-family: "SUSE", system-ui; */
    transform: translateY(-20px);
}

/* ================ book.a.call(beforeFooter for all pages)================= */
.bookCall {
    position: relative;
    height: auto;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    background: #000;
    color: #ffffff;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #000304, #020003fd, #000304, #020003fd);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: 0;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.bookCallDiv {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.bookCallDiv:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.bookCallDiv h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subheading {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.cta-button {
    position: relative;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.4s;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button span {
    z-index: 1;
    transition: all 0.3s ease;
}

.cta-button i {
    margin-left: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.cta-button:hover span {
    transform: translateX(-10px);
}

.cta-button:hover i {
    opacity: 1;
    transform: translateX(0);
}

.primary-cta {
    background: #047da3;
    color: white;
}

.primary-cta:hover {
    background: #036a8a;
}

.secondary-cta {
    background: transparent;
    color: #047da3;
    border: 2px solid #047da3;
}

.secondary-cta:hover {
    background: #047da3;
    color: white;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.3;
}

.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #047da3;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.square {
    width: 80px;
    height: 80px;
    background: #047da3;
    top: 60%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86.6px solid #047da3;
    top: 75%;
    left: 30%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .bookCallDiv {
        text-align: center;
        padding: 30px 20px;
    }

    .bookCallDiv h3 {
        font-size: 2rem;
    }

    .cta-button {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* ================ Footer(for all pages)================= */

footer {
    background: transparent;
    height: auto;
    width: 100%;
    padding: 100px 0 10px 0;
}

footer img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    transform: translateX(-40px);
}

footer h5 {
    margin-bottom: 20px;
    font-weight: 500;
    color: white;
    font-size: 28px;
    color: #038bb5;
    /* font-family: "Exo", sans-serif; */
    font-weight: 600;
}

footer a {
    margin: 10px 0;
    color: rgb(182, 178, 178);
    text-align: left;
    display: block;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.4s;

    &:hover {
        color: #038bb5 !important;
    }
}

footer .socials i {
    font-size: 25px;
    color: rgb(182, 178, 178);
}

@media (max-width: 480px) {
    footer img {
        height: 80px;
        width: auto;
        transform: translateX(-50px);
    }

    footer p {
        /* font-family: "Ubuntu", sans-serif; */
        font-size: 20px;
    }

    footer h5 {
        font-size: 28px;
        font-style: normal;
        margin-top: 20px;
    }

    footer a {
        font-size: 20px;
        /* font-family: "Ubuntu", sans-serif; */
    }

    footer .copyright {
        width: 90%;
    }
}

/* ================ HomePageCssEnd================= */

/* ================ AboutPageCss================= */
.about {
    min-height: 500vh;
    width: 100%;
    background-color: #000304;
}

/* ================ aboutLandPage================= */
.aboutLandPage {
    height: auto;
    width: 100%;
    padding: 50px 0;
}

.aboutLandPage h3 {
    width: 100%;
}

.aboutLandPage h1,
h5 {
    width: 60% !important;
}

@media (max-width: 480px) {
    .aboutLandPage h1 {
        font-size: 35px !important;
        width: 100% !important;
    }

    .aboutLandPage h5 {
        font-size: 20px !important;
        width: 100% !important;
    }
}

/* ================ AboutTwo================= */
.AboutTwo {
    height: auto;
    width: 100%;
    padding: 50px 0;
}

.AboutTwo img {
    width: 80%;
}

.AboutTwo li {
    list-style-type: disc;
}

@media (max-width: 480px) {
    .AboutTwo h2 {
        font-size: 2.4rem !important;
    }

    .AboutTwo img {
        width: 100%;
    }
}

/* ================ About three is industryExpertises================= */

/* ================AboutFour/OurErpertise ================= */
.AboutFour {
    height: auto;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(270deg, #000304, #030005fd, #000304, #030005fd);
}

.expertiseCard {
    height: 250px;
    width: 250px;
    color: #038bb5;
    border-radius: 10px;
    border-bottom: 4px solid #047da3;
    border-right: 2px solid #047da3;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.expertiseCard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-radius: 10px;
    border-top: 4px solid #047da3;
    border-left: 2px solid #047da3;
    transition: width 0.4s ease, height 0.4s ease;
}

.expertiseCard:hover::before {
    width: 100%;
    height: 100%;
}

.expertiseCard i {
    margin-top: 20px;
    font-size: 100px;
    background-color: white;
    color: #047da3;
    padding: 25px;
    border-radius: 15px;
}

@media (max-width: 480px) {
    .expertiseCard {
        height: 90%;
        width: auto;
        padding: 30px 0;
    }

    .expertiseCard i {
        font-size: 150px;
    }

    .expertiseCard p {
        font-size: 30px;
    }
}

/* ================ AboutFive/Team================= */

.team {
    height: auto;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(270deg, #000304, #020003fd, #000304, #020003fd);
}

.team h4 {
    width: 70%;
}

.team h5 {
    width: 100% !important;
}

.teamCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 20px 0;
    width: 250px;
    transition: 0.5s;
    color: rgb(183, 181, 181);

    &:hover {
        box-shadow: 0 4px 8px #267fc3;
        scale: 1.01;
        transform: translateY(-10px);
    }
}

.teamCard img {
    height: 150px;
    width: auto;
    border-radius: 50%;
}

.teamCard h5:hover {
    color: #047da3;
    transition: 0.4s;
}

.teamCard i {
    font-size: 20px;
    font-weight: 600;
    padding: 0 4px;
    border-radius: 50%;
    transition: 0.4s;

    &:hover {
        color: #267fc3;
        box-shadow: 0 0 4px #267fc3;
        scale: 1.05;
    }
}

@media (max-width: 480px) {
    .team h4 {
        width: 100%;
    }

    .team h2 {
        font-size: 45px !important;
    }

    .teamCard {
        height: auto;
        width: 100%;
        border: 2px solid #267fc3;
        border-radius: 10px;
        padding: 30px 4px;

        &:hover {
            box-shadow: none;
            scale: none;
            transform: none;
        }
    }

    .teamCard img {
        height: 200px;
        border-radius: 50%;
    }

    .teamCard h5 {
        font-size: 32px;
    }

    .teamCard h6 {
        font-size: 26px;
    }

    .teamCard i {
        font-size: 35px;
        font-weight: 600;
        padding: 0 4px;
        border-radius: 50%;
        color: #abadad;
    }
}

/* ================ AboutSix/Review================= */
.reviews {
    height: auto;
    width: 100%;
    padding: 50px 0;
    background: linear-gradient(270deg, #000304, #030005fd, #000304, #030005fd);
}

.reviews h2 {
    font-size: 45px !important;
}

.slider {
    width: 100%;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(to right,
            transparent,
            #000 10% 90%,
            transparent);
}

.slider .list {
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}

.slider .list .item {
    background-color: #000a0e;
    padding: 0 0 0 30px;
    border-radius: 0 20px;
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 20s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc((20s / var(--quantity)) * (var(--position) - 1) - 10s) !important;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    cursor: pointer;
}

@keyframes autoRun {
    from {
        left: 100%;
    }

    to {
        left: calc(var(--width) * -1);
    }
}

.slider:hover .item {
    animation-play-state: paused !important;
    filter: grayscale(1);
}

.slider .item:hover {
    filter: grayscale(0);
}

.item p {
    height: auto;
    width: 80%;
    font-size: 18px;
}

.item img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
}

.item .customer {
    display: flex;
    flex-direction: column;
    text-align: start;
    margin-top: 10px;
}

/* ================ AboutSeven/Honors================= */
.honors {
    height: auto;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(270deg, #000304, #020003fd, #000304, #020003fd);
}

.honors .awards-card {
    height: 200px;
    width: 200px;
    overflow: hidden;
    background-color: transparent;
}

.honors .extra img {
    height: 100%;
}

.honors .awards-card img {
    width: 100%;
}

@media (max-width: 480px) {
    .honors .awards-card {
        height: auto;
        width: 90%;
        margin: 0 auto;
    }
}

/* ================ AboutPageCssEnd================= */

/* ================ ServicesPageCss================= */

.services {
    min-height: 300vh;
    width: 100%;
    background-color: #000304;
}

/* ================ ServicesLandingPage ================= */
.servicesLandPage {
    height: auto;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.servicesLandPage h1 {
    font-size: 48px !important;
}

.servicesLandPage h4 {
    font-size: 18px !important;
}

.servicesLandPage > img {
    width: 100%;
    height: 500px;
    display: block;
}

.servicesLandPage > .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
} 

.servicesLandPage > .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Black overlay with 50% opacity */
    pointer-events: none;
}

@media (max-width: 480px) {
    .servicesLandPage h1 {
        font-size: 3.6rem !important;
    }
}

/* ================ OurSolution================= */
.ourSolution {
    height: auto;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(270deg, #000304, #030005fd, #000304, #030005fd);
}

.ssCard {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 300px;
    padding: 30px 0;
    background-color: transparent;
    border: 1px solid #047da3;
    box-shadow: 0px 0px 6px #047ea389;
    transition: 0.4s;
    cursor: pointer;
    z-index: 1;

    &:hover {
        color: white;
    }
}

.ssCard::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(to bottom, #000e13, #001116);
    transition: all 0.4s ease;
    z-index: -1;
}

.ssCard:hover::before {
    height: 100%;
    width: 100%;
    border-radius: 0;
}

.ssCard p {
    width: 80%;
}

.ssCard button {
    border: none;
    color: #fff;
    background-color: #047da3;
    padding: 8px 20px;
    font-size: 25px;
    font-weight: 600;
}

.ssCard img {
    height: 80px;
    width: 80px;
}

@media (max-width: 480px) {
    .ssCard {
        padding: 30px 0;
        height: 100%;
        width: 100%;
    }

    .ssCard img {
        height: 150px;
        width: 150px;
    }

    .ssCard h5 {
        font-size: 45px;
    }

    .ssCard p {
        font-size: 20px;
    }
}

/* ================ ServicesPageCssEnd================= */

/* ================ WebDevelopmentPageCss================= */

.webDev {
    height: auto;
    min-height: 500vh;
    width: 100%;
    background-color: #000304;
}

/* ================ webDevelopmentPageTwo================= */

.webTwo {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 100px 5vw 50px 5vw;
}

.webTwo .left,
.webTwo .right {
    height: 100%;
    width: 50%;
    min-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
}

.webTwo .left {
    align-items: start;
}

.webTwo .left h5 {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    width: 100%;
}

.webTwo .left img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.webTwo .borderDiv {
    height: 500px;
    width: 500px;
    display: flex;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.webTwo .contentBoreder {
    height: 450px;
    width: 400px;
    border: 2px solid #047da3;
    border-radius: 20px;
    position: relative;
}

.webTwo .contentBoreder::before {
    content: "";
    position: absolute;
    height: 200px;
    width: 80px;
    border: 2px solid #047da3;
    border-radius: 20px 0 0 20px;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.webTwo .contentBoreder::after {
    content: "";
    position: absolute;
    height: 200px;
    width: 80px;
    border: 2px solid #047da3;
    border-radius: 0 20px 20px 0;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.webTwo .wrapperDiv {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    gap: 20px;
}

.webTwo .wrapperDiv .column-1,
.webTwo .wrapperDiv .column-2,
.webTwo .wrapperDiv .column-3 {
    height: 100%;
    width: 33.3333%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99;
}

.webTwo .wrapperDiv .column-1 {
    justify-content: center;
    align-items: start;
    gap: 50px;
}

.webTwo .wrapperDiv .column-2 {
    justify-content: space-between;
    align-items: center;
    height: 560px;
    transform: translateY(-30px);
}

.webTwo .wrapperDiv .column-3 {
    justify-content: center;
    align-items: end;
    gap: 50px;
}

.wrapperDiv .img {
    background-color: #fff;
    color: #000;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 1000px #047da3;
}

.wrapperDiv img {
    border-radius: 10px;
    width: 80%;
}

@media (max-width: 480px) {
    .webTwo {
        padding: 50px 20px 25px 20px;
    }

    .webTwo .left,
    .webTwo .right {
        width: 100%;
        min-width: unset;
    }

    .webTwo .left {
        margin-bottom: 30px;
    }

    .webTwo .left h5 {
        gap: 10px;
        margin-bottom: 10px;
    }

    .webTwo .borderDiv {
        height: 300px;
        width: 300px;
    }

    .webTwo .contentBoreder {
        height: 270px;
        width: 240px;
    }

    .webTwo .contentBoreder::before,
    .webTwo .contentBoreder::after {
        height: 120px;
        width: 48px;
    }

    .webTwo .contentBoreder::before {
        left: -48px;
    }

    .webTwo .contentBoreder::after {
        right: -48px;
    }

    .webTwo .wrapperDiv {
        gap: 12px;
    }

    .webTwo .wrapperDiv .column-1,
    .webTwo .wrapperDiv .column-2,
    .webTwo .wrapperDiv .column-3 {
        width: 33.3333%;
        gap: 8px;
    }

    .webTwo .wrapperDiv .column-1,
    .webTwo .wrapperDiv .column-3 {
        gap: 30px;
    }

    .webTwo .wrapperDiv .column-2 {
        height: 336px;
        transform: translateY(-18px);
    }

    .wrapperDiv .img {
        padding: 5px;
        box-shadow: 0 0 10px rgba(4, 125, 163, 0.5);
        height: 80px;
        width: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .wrapperDiv img {
        width: 36px;
        height: 36px;
    }

    .webTwo .wrapperDiv .column-2 img {
        width: 44px;
        height: 44px;
    }

    .wrapperDiv h6 {
        font-size: 10px;
        margin-bottom: 2px !important;
    }
}

/* ================ webDevelopmentPageThree================= */

.webThree {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 100px 5vw 50px 5vw;
}

.webThree .left,
.webThree .right {
    height: 100%;
    width: 50%;
    min-width: 500px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
}

.webThree .left {
    align-items: start;
}

.webThree .left h5 {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    width: 100%;
}

.webThree .left img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.webThree .borderDiv {
    height: 500px;
    width: 500px;
    display: flex;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.webThree .contentBoreder {
    height: 450px;
    width: 400px;
    border: 2px solid #047da3;
    border-radius: 20px;
    position: relative;
}

.webThree .contentBoreder::before {
    content: "";
    position: absolute;
    height: 200px;
    width: 80px;
    border: 2px solid #047da3;
    border-radius: 20px 0 0 20px;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.webThree .contentBoreder::after {
    content: "";
    position: absolute;
    height: 200px;
    width: 80px;
    border: 2px solid #047da3;
    border-radius: 0 20px 20px 0;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.webThree .wrapperDiv {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    gap: 20px;
}

.webThree .wrapperDiv .column-1,
.webThree .wrapperDiv .column-2,
.webThree .wrapperDiv .column-3 {
    height: 100%;
    width: 33.3333%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99;
}

.webThree .wrapperDiv .column-1 {
    justify-content: center;
    align-items: start;
    gap: 50px;
}

.webThree .wrapperDiv .column-2 {
    justify-content: space-between;
    align-items: center;
    height: 560px;
    transform: translateY(-30px);
}

.webThree .wrapperDiv .column-3 {
    justify-content: center;
    align-items: end;
    gap: 50px;
}

.wrapperDiv .img {
    background-color: #fff;
    color: #000;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 1000px #047da3;
}

.wrapperDiv img {
    border-radius: 10px;
    width: 80%;
}

@media (max-width: 480px) {
    .webThree {
        padding: 50px 20px 25px 20px;
    }

    .webThree .left,
    .webThree .right {
        width: 100%;
        min-width: unset;
    }

    .webThree .left {
        margin-bottom: 30px;
    }

    .webThree .left h5 {
        gap: 10px;
        margin-bottom: 10px;
    }

    .webThree .borderDiv {
        height: 300px;
        width: 300px;
    }

    .webThree .contentBoreder {
        height: 270px;
        width: 240px;
    }

    .webThree .contentBoreder::before,
    .webThree .contentBoreder::after {
        height: 120px;
        width: 48px;
    }

    .webThree .contentBoreder::before {
        left: -48px;
    }

    .webThree .contentBoreder::after {
        right: -48px;
    }

    .webThree .wrapperDiv {
        gap: 12px;
    }

    .webThree .wrapperDiv .column-1,
    .webThree .wrapperDiv .column-2,
    .webThree .wrapperDiv .column-3 {
        width: 33.3333%;
        gap: 8px;
    }

    .webThree .wrapperDiv .column-1,
    .webThree .wrapperDiv .column-3 {
        gap: 30px;
    }

    .webThree .wrapperDiv .column-2 {
        height: 336px;
        transform: translateY(-18px);
    }

    .wrapperDiv .img {
        padding: 5px;
        box-shadow: 0 0 10px rgba(4, 125, 163, 0.5);
        height: 80px;
        width: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .wrapperDiv img {
        width: 36px;
        height: 36px;
    }

    .webThree .wrapperDiv .column-2 img {
        width: 44px;
        height: 44px;
    }

    .wrapperDiv h6 {
        font-size: 10px;
        margin-bottom: 2px !important;
    }
}

/* ================ webDevelopmentPageFour/Slider-section================= */
.sliderSec {
    height: auto;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(270deg, #000304, #020003fd, #000304, #020003fd);
}

.swiper {
    width: 100%;
    height: 70vh;
    background-image: url("../imgs/services/slider1.jpg");
}

.swiper-slide .sliderHead {
    transition: transform 0.5s ease;
    font-size: 3.5rem;
}

.swiper-slide .sliderText {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.swiper-slide {
    background: rgba(0, 0, 0, 0.692);
    color: #fff;
    padding: 0 20px;
    transition: all 0.5s;
    border-right: 1px solid #038bb5;
}

.swiper-slide:hover .sldierHead {
    transform: translateY(-20px);
}

.swiper-slide:hover .sliderText {
    max-height: 50%;
    opacity: 1;
}

.mt-50 {
    margin-top: 50px;
}

.flex-center {
    display: flex;
    justify-content: center;
}

@media (max-width: 480px) {
    .swiper {
        height: 50vh;
    }

    .swiper-slide {
        padding: 0 10px;
        border-right: none;
    }

    .swiper-slide h2 {
        font-size: 1.5rem;
    }

    .swiper-slide h5 {
        font-size: 1rem;
    }
}

/* ================webDevelopmentPageFive/Technology We Use================= */

.pageFive {
    height: auto;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(270deg, #000304, #030005fd, #000304, #030005fd);
}

.TechWeUse .list-group-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.5rem 0;
    background: none;
    border: none;
    border-top: 0.5px solid #047ea353;
    border-bottom: 0.5px solid #047ea34e;
    margin: 5px 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    color: #0bc3fb;
    transition: 0.5s;
}

.TechWeUse .list-group-item:hover,
.TechWeUse .list-group-item.active {
    background-color: #0bc3fb96;
    color: #fff;
    padding-left: 1.5rem;
}

.tech-btn.active {
    background-color: #0bc3fb;
    color: #fff;
}

.tech-content {
    display: none;
}

.tech-content.active {
    display: block;
}

.tech-content i {
    font-size: 5rem;
    color: #038bb5;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.techContentItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wide-badge {
    padding: 20px; 
    background-color: #181818; 
    padding: 10vh 5vw;
    text-align: center;
}

.bold-dark-blue {
    color: #4343ff;
    font-weight: bold;
}
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .tech-content i {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .techContentItem {
        font-size: 0.9rem;
    }

    .tech-content i {
        font-size: 3rem;
    }

    .TechWeUse .list-group-item {
        font-size: 1rem;
        padding: 0.4rem 0;
    }

    .TechWeUse .list-group-item:hover,
    .TechWeUse .list-group-item.active {
        padding-left: 1rem;
    }

    .heading-xl {
        font-size: 1.8rem;
    }

    .text-lg {
        font-size: 1rem;
    }

    .heading-sm {
        font-size: 0.9rem;
    }

    .pageSeven h3 {
        font-size: 1.2rem;
    }
}

/* ================webDevelopmentPageSix/process================= */
.pageSix {
    height: auto;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(270deg, #000304, #020003fd, #000304, #020003fd);
}

#process-contents .process-content {
    display: none;
}

#process-contents .process-content.active {
    display: block;
}

.process-details {
    background-size: cover;
    background-position: center;
    padding: 30px;
    border-radius: 10px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.process-details h4 {
    margin-bottom: 15px;
    -webkit-text-stroke: 2px #004c63;
   -webkit-text-stroke: 2px #004c63;
    color: white;
    text-shadow: -1px -1px 0 #004c63, 1px -1px 0 #004c63, -1px 1px 0 #004c63,
        1px 1px 0 #004c63;
    font-weight: 900 !important;
    font-size: 45px;
}

.process-details p {
    background-color: #004c63;
    padding: 15px;
    border-radius: 5px;
}

.DevProcess .row {
    display: flex;
    align-items: stretch;
}

.DevProcess .list-group {
    height: 100%;
}

.DevProcess .list-group-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.5rem 0;
    background: none;
    border: none;
    border-top: 0.5px solid #047ea353;
    border-bottom: 0.5px solid #047ea34e;
    margin: 5px 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    color: #0bc3fb;
    transition: 0.5s;
}

.DevProcess .list-group-item:hover,
.DevProcess .list-group-item.active {
    background-color: #0bc3fb96;
    color: #fff;
    padding-left: 1.5rem;
}

.process-content-wrapper {
    position: relative;
    height: 100%;
}

.process-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.process-content.active {
    opacity: 1;
    visibility: visible;
}

.process-details {
    height: 100%;
    background-size: cover;
    background-position: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (max-width: 480px) {
    .process-content-wrapper {
        position: relative;
        height: 50vh;
        width: 100%;
    }

    .process-details {
        padding: 0;
        margin-top: 20px;
        transform: translateX(-15px);
    }
}

/* ================webDevelopmentPageEight/FAQ================= */

.pageEight {
    height: auto;
    width: 100%;
    padding: 50px 0 100px 0;
    background: linear-gradient(270deg,
            #000304,
            #020003fd,
            #000304,
            #020003fd) !important;
}

.accordion-item {
    background-color: rgba(11, 195, 251, 0.59) !important;
    color: rgb(165, 161, 161);
    margin-bottom: 10px;
    border: none;
}

.accordion-button {
    background-color: #000 !important;
    color: #05baf0 !important;
    font-size: 20px !important;
    /* font-family: "Exo", sans-serif !important; */
    font-weight: 500 !important;
    font-style: normal !important;
    text-align: center !important;
}

.accordion-button:not(.collapsed) {
    background-color: #038bb5 !important;
    color: #ffffff !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: rgba(11, 195, 251, 0.59);
}

.accordion-body {
    background-color: #01090d;
    color: #c3bebe;
    /* font-family: "Ubuntu", sans-serif; */
    font-weight: 400;
    font-style: normal;
}

/* ================ webDevelopmentPageEnd ================ */

/* ================ ERPmanagementCss ================ */

.erpManagement {
    height: auto;
    min-height: 500vh;
    width: 100%;
    background: radial-gradient(circle at top,
            #023341,
            #000304,
            black,
            black,
            black,
            black,
            black,
            black,
            black,
            black,
            black,
            black);
}

/* ================ ErpManagementLandingPage ================ */
.erpLangPage {
    min-height: calc(100vh - 90px);
    padding: 80px 0;
}

.erpLangPage img {
    max-height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .erpLangPage {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .erpLangPage img {
        margin-top: 2rem;
    }
}

/* ================ ERP/SecondPage================= */
.ERPsecondPage {
    height: auto;
    width: 100%;
    padding: 50px 0 100px 0;
}

.card {
    border: 2px solid #047da3 !important;
    border-radius: 15px 0 15px 0 !important;
}

/* ================ erpSoftwereModule(thirdPage)================= */
.erpSoftwereModule {
    height: auto;
    width: 100%;
    padding: 100px 0 50px 0;
    background: linear-gradient(270deg, #000304, #020003fd, #000304, #020003fd);
}

.erpSoftwereModule .container {
    margin-bottom: 100px !important;
}

.erpSoftwereModule .container li {
    position: relative;
    padding-left: 35px;
}

.erpSoftwereModule .container li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #038bb5;
    border-radius: 50%;
}

@media (max-width: 480px) {
    .erpSoftwereModule .margine {
        padding: 50px !important;
    }
}

/* ================ ErpPricing(FourthPage)================= */
.prcingCards {
    height: auto;
    width: 100%;
    padding: 100px 0;
    background-color: #000;
}

.pricing-card {
    background-color: #161616;
    color: #e0e0e0;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.pricing-card.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #04a3d1, #047da3);
}

.pricing-card:hover,
.pricing-card.active {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(4, 163, 209, 0.2);
    background-color: #2a2a2a;
}

.pricing-card h2 {
    color: #04a3d1;
    font-size: 24px;
    text-align: center;
}

.pricing-card .price {
    font-size: 2.2em;
    font-weight: bold;
    margin: 10px 0;
    text-align: center;
    color: #ffffff;
}

.pricing-card ul {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.pricing-card li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #3a3a3a;
    display: flex;
    align-items: center;
    font-size: 0.9em;
}

.pricing-card li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pricing-card i {
    margin-right: 8px;
    color: #04a3d1;
}

.pricing-card .fa-times {
    color: #ff4d4d;
}

.pricing-card button {
    background: linear-gradient(90deg, #04a3d1, #047da3);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
}

.pricing-card button:hover {
    background: linear-gradient(90deg, #047da3, #04a3d1);
    box-shadow: 0 5px 15px rgba(4, 163, 209, 0.4);
}

@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 30px;
    }
}

/* ================ workingProcess(ERPpageFive)================= */

.workingProcess {
    height: auto;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(270deg, #000304, #020003fd, #000304, #020003fd);
}

.workingProcess .card {
    min-height: 200px;
}

.FAQ {
    padding: 100px 0;
    background-color: black;
    height: auto;
    width: 100%;
}

/* ================ FAQ used in pageSixth(ERPpageSixth)================= */

/* ================ modalForEveryPage================= */

.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    color: #ffffff;
    position: relative;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #000304, #020003fd, #000304, #020003fd);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: 0;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.3;
}

.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #047da3;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.square {
    width: 80px;
    height: 80px;
    background: #047da3;
    top: 60%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86.6px solid #047da3;
    top: 75%;
    left: 30%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px !important;
    height: 20px !important;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 1;
    background-color: #00b6e3 !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close:hover,
.btn-close:focus {
    color: #047da3 !important;
    transform: rotate(90deg);
    background-color: white !important;
    opacity: 1;
}

.modal-body {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.appointment-modal-L img {
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(4, 125, 163, 0.3);
    transition: transform 0.3s ease;
    height: auto;
    width: 100%;
}

.appointment-modal-L img:hover {
    transform: scale(1.05);
}

.appointment-modal-R {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.appointment-modal-R h2 {
    color: #ffffff;
    margin-bottom: 5px !important;
    font-weight: 700 !important;
    line-height: 1.3;
    font-size: 25px !important;
}

.appointment-text-color {
    color: #047da3;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.appointment-modal-R p {
    color: #c3c3c3;
    margin-bottom: 1rem;
}

.appointment-modal-R img {
    height: auto;
    width: 200px;
    margin: 0 auto;
}

.appointmentBtn {
    background: #047da3;
    color: white !important;
    padding: 15px 30px !important;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(4, 125, 163, 0.3);
    position: relative;
    overflow: hidden;
}

.appointmentBtn span {
    z-index: 1;
    transition: all 0.3s ease;
}

.appointmentBtn i {
    margin-left: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.appointmentBtn:hover span {
    transform: translateX(-10px);
}

.appointmentBtn:hover i {
    opacity: 1;
    transform: translateX(0);
}

.fs-14 {
    font-size: 16px;
    color: #a0a0a0;
}

@media (max-width: 992px) {
    .modal-body {
        padding: 1.5rem;
    }

    .appointment-modal-L {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        border-radius: 15px;
    }

    .modal-body {
        padding: 1rem;
    }

    .btn-close {
        top: 10px;
        right: 10px;
        font-size: 20px;
    }

    .appointment-modal-L img {
        border-radius: 10px;
    }

    .appointment-modal-R {
        padding: 0.5rem;
        text-align: center;
    }

    .appointment-modal-R h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .appointment-modal-R p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .appointmentBtn {
        padding: 10px 20px !important;
        font-size: 0.9rem;
        width: 100%;
    }

    .fs-14 {
        font-size: 12px;
    }
}




/* ================ contatct page css start================= */

.contact-info-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 20px;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: rgba(1, 46, 60, 0.6);
    backdrop-filter: blur(20px);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2),
        inset 0 0 32px 0 rgba(255, 255, 255, 0.05);
}

.contact-card:hover {
    transform: translateY(-4px);
    background: rgba(1, 46, 60, 0.8);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.3),
        inset 0 0 32px 0 rgba(255, 255, 255, 0.08);
}

.contact-card i {
    font-size: 40px;
    color: #04a1d1;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(4, 125, 163, 0.4);
}

.contact-card a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #047DA3;
}

.contact-card p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* font-family: "SUSE", system-ui; */
    font-weight: 500;
    font-style: normal;
}

.contact-card span {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 400;
}


@media (max-width: 768px) {
    .contact-card {
        flex: 100%;
    }

    .contact-info-container {
        gap: 20px;
        padding: 10px;
    }
}


/* ================contact Form ================= */

.form-container {
    width: auto;
    margin: 0 auto;
    padding: 20px;
}

.contact-form {
    background: #012e3c61;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 40px;
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    /* font-family: "Ubuntu", sans-serif; */
    font-weight: 500;
    font-style: normal;
    transform: translateY(-50%);
    font-size: 16px;
    color: #cbcbcb;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.301);
    background: transparent;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
}

.form-group .form-control:focus {
    outline: none;
    border-color: #051115;
    background: rgba(0, 46, 60, 0.383);
    color: #fff;
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus,
.form-group select:-webkit-autofill,
.form-group select:-webkit-autofill:hover,
.form-group select:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px rgba(0, 46, 60, 0.8) inset;
    transition: background-color 5000s ease-in-out 0s;
}

.form-group .form-control:focus+label,
.form-group .form-control:not(:placeholder-shown)+label {
    top: -16px;
    left: 10px;
    font-size: 18px;
    padding: 1px 10px 0 10px;
    border-radius: 10px 10px 0 0;
    background: #032A52;
}

.form-group textarea~label {
    top: 20px;
}

.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -12px;
}

/* ================location Map ================= */
.map-container {
    position: relative;
    padding-bottom: 30%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .map-container {
        min-height: 400px;
    }
}

.map-container:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Why Lilium Info Tech */

.section-img {
    width: 100%;
    display: flex;
    align-items: center;
  }
  
  .section-img > img {
    width: 100%;
  }

.grid-2 {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-2-center {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-2-center > * {
    
}

.value {
    display: flex;
    padding: 20px;
    border: 1px solid gray;
    border-radius: 5px;
}

.value > img {
    height: 50px;
    width: 50px;
    border-radius: 50% 50%;
}

.recover {
    background-image: url("../imgs/section/background-1.jpg");
} 

.wildbox {
    background-color: #1e1e1e;
    color: white;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid gray;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wildbox > .count {
    font-weight: bold;
    font-size: 45px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wildbox > * {
    text-align: center;
}

.wildbox > .count > * {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 1px solid white;
    border-radius: 50% 50%;
}

/* Website */

.website-banner {
    background-image: url("../imgs/section/website-banner.png");
    background-size: cover;
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Web Services */

.web-services {
    height: auto;
    width: 100%;
    padding: 70px 0;
    padding-bottom: 100px;
    background: #06101e;
}

.web-service {
    display: flex;
    gap: 10px;
    padding: 20px;
    border-radius: 5px;
    background: rgb(4,125,163);
    background: radial-gradient(circle, rgba(4,125,163,1) 0%, rgba(54,46,92,1) 100%);
    transition: 0.1s ease-in-out;
}

.web-service:hover {
    background: radial-gradient(circle, rgba(54,46,92,1) 0%, rgba(4,125,163,1) 100%);
}

.web-service > i {
    font-size: 25px;
}

.web-service > * {
    display: flex;
    justify-content: center;
    align-items: center;
}

.web-service > * > * {
    display: flex;
    justify-content: center;
    align-items: center;
}

.web-service > h6 {
    margin: 0;
}

@media (max-width: 480px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}
/* Web Services End */