@charset "utf-8";

/* Include Bootstrap CSS */
@import url("./bootstrap-icons.min.css?v=20260202145315");

/* Import Icon fonts */
@font-face {
    font-family: "Bootstrap Icons";
    src: url("./fonts/bootstrap-icons.woff?v=20260202145315") format("woff"),
        url("./fonts/bootstrap-icons.woff2?v=20260202145315") format("woff2");
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #DF2121;
    --secondary-color: #23C3DC;
}


.btn-primary {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--primary-color);
	--bs-btn-border-color: var(--primary-color);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--primary-color);
	--bs-btn-hover-border-color: var(--primary-color);
	--bs-btn-focus-shadow-rgb: 49,132,253;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--primary-color);
	--bs-btn-active-border-color: var(--primary-color);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: var(--primary-color);
	--bs-btn-disabled-border-color: var(--primary-color);
}

.btn-secondary {
	--bs-btn-color: #000;
	--bs-btn-bg: var(--secondary-color);
	--bs-btn-border-color: var(--secondary-color);
	--bs-btn-hover-color: #000;
	--bs-btn-hover-bg: var(--secondary-color);
	--bs-btn-hover-border-color: var(--secondary-color);
	--bs-btn-focus-shadow-rgb: 49,132,253;
	--bs-btn-active-color: #000;
	--bs-btn-active-bg: var(--secondary-color);
	--bs-btn-active-border-color: var(--secondary-color);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #000;
	--bs-btn-disabled-bg: var(--secondary-color);
	--bs-btn-disabled-border-color: var(--secondary-color);
}

.btn-info {
	--bs-btn-color: #fff;
	--bs-btn-bg: #030122;
	--bs-btn-border-color: #030122;
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #030122;
	--bs-btn-hover-border-color: #030122;
	--bs-btn-focus-shadow-rgb: 49,132,253;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #030122;
	--bs-btn-active-border-color: #030122;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: #030122;
	--bs-btn-disabled-border-color: #030122;
}

.lh-0 {
    line-height: 0 !important;
}

.top-10 {
    top: 10% !important;
}

.text-bg-black {
	color: #fff !important;
	background-color: black !important;
}

.bg-card {
    background-color: #030122;
    border-radius: 1rem;
    color: white;
    height: 100%;
    overflow: hidden;
}

.bg-card:hover {
    transform: scale(1.2);
}

.bg-card > .card-body {
    text-align: center;
    color: white;
} 


.bg-card::after {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    transform: translate(-40%, -20%);
    background-color: #23C3DC;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.bg-card::before {
    position: absolute;
    content: "";
    bottom: 0px;
    right: 0px;
    transform: translate(40%, 40%);
    background-color: #DF2121;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

a.nav-link.active {
    font-weight: 600;
}

.border-red {
    border-bottom: 2px solid #DF2121;
    width: 50%;
    padding-top: 0.5rem;
    margin: 0 auto;
}

.job-summary {
    background-color: #EDF3FF;
    border-radius: 1rem; 
    height: 100%;
    overflow: hidden;
}

.job-summary .list-group-item {
    background: transparent;
}

.bg-color {
    background: #030122;
    color: white;
}

.bg-red {
    background-color: #DF2121;
}

.text-red {
    color: #DF2121;
    fill: #DF2121;
}

.bg-blue {
    background-color: #23C3DC;
}

.text-blue {
    color: #23C3DC;
    fill: #23C3DC;
}

.about-image {
    position: relative;
    z-index: 0;
    border-radius: 0.5rem;
}

.about-image::before {
    position: absolute;
    content: "";
    z-index: -1;
    top: -1.5rem;
    left: -2rem;
    background: #DF2121;
    border-radius: 0.5rem;
    width: 50%;
    height: 30%;

}

.about-image::after {
    position: absolute;
    content: "";
    z-index: -1;
    bottom: -1.5rem;
    right: -2rem;
    background: #23C3DC;
    border-radius: 0.5rem;
    width: 50%;
    height: 30%;

}

.banner {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: black;
}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .banner {
        height: 200px;
    }
}


.text-bg-primary {
    background-color: #5379f6 !important;
}

.bg-primary {
    background-color: #5379f6 !important;
}


.service-avatar {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.team-profile {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    align-content: center;
    overflow: hidden;
    background-color: white;
    position: relative;
    z-index: 5;
    margin: auto;
}

footer {
    padding: 10rem 0rem 2rem 0rem;
}

.card-stack {
    width: 100px;
    height: 100px;
    background-color: #23C3DC;
    color: white;
}

.card-stack-big {
    width: 250px;
    height: 250px;
    background-color: #DF2121;
}

.ml-10 {
    margin-left: 10rem;
}

.why-us-section {
    margin-bottom: 8rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.796);
}

/* ============================================================= */

/* Home page CSS */

.hero-banner  {
    /* background: url("/assets/images/curve_bottom.svg?v=20260202144207") no-repeat bottom; */
    background-color: #030122;
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom; */
}


.custom-shape-divider-bottom-1725520806 {
    position: absolute;
    bottom: 0;
    right: 0;
    /* border: 1px solid white; */
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1725520806 svg {
    position: relative;
    display: block;
    right: 10%;
    width: calc(120% + 1.3px);
    height: 220px;
}

.custom-shape-divider-bottom-1725520806 .shape-fill {
    fill: #FFFFFF;
}

/** For tablet devices **/
@media (min-width: 768px) and (max-width: 1023px) {
    .custom-shape-divider-bottom-1725520806 svg {
        width: calc(120% + 1.3px);
        right: 8%;
        height: 130px;
    }
}

/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-bottom-1725520806 svg {
        width: calc(120% + 1.3px);
        right: 8%;
        height: 100px;
    }
}

.custom-shape-divider-top-1725449613 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1725449613 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom-shape-divider-top-1725449613 .shape-fill {
    fill: #FFFFFF;
}

/* .services-section .row .col:nth-child(odd) .card:hover {
    background-color: #DF2121;
    color: white;
}
.services-section .row .col:nth-child(even) .card {
    background-color: #23C3DC;
} */

.services-section .card {
    /* background-color: #ebebeb; */
    /* background: rgb(63,57,246);
    background: -moz-linear-gradient(0deg, rgba(63,57,246,1) 0%, rgba(78,128,245,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(63,57,246,1) 0%, rgba(78,128,245,1) 100%);
    background: linear-gradient(0deg, rgba(63,57,246,1) 0%, rgba(78,128,245,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3f39f6",endColorstr="#4e80f5",GradientType=1);  */
    color: black;
    transition: all 0.5s ease;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;

}

.choose-us .card {
    transition: all 0.3s ease-in-out;
}

.choose-us .card:hover {
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;

}

/* ============================================================================== */
/* About page css */

#about-sec .icon {
    width: 60px;
    height: 60px;
}

.about-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)) center, url("../images/about_us_cover.jpeg?v=20260202145315") center fixed no-repeat;
    color: white;
}

.career-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)) center, url("../images/career-banner.png?v=20260202145315") center fixed no-repeat;
    background-size: cover;
    color: white;
}

.contact-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)) center, url("../images/contact-banner.jpg?v=20260202145315") center fixed no-repeat;
    color: white;
}
.services-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)) center, url("../images/services-banner.jpg?v=20260202145315") center fixed no-repeat;
    color: white;
}

#smallNavbar {
    position: sticky;
    top: 71px;
    z-index: 1040;
    background: rgb(35,195,220);
    background: -moz-linear-gradient(90deg, rgba(35,195,220,1) 0%, rgba(33,186,210,1) 46%, rgba(19,105,118,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(35,195,220,1) 0%, rgba(33,186,210,1) 46%, rgba(19,105,118,1) 100%);
    background: linear-gradient(90deg, rgba(35,195,220,1) 0%, rgba(33,186,210,1) 46%, rgba(19,105,118,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#23c3dc",endColorstr="#136976",GradientType=1); 
}

#smallNavbar .nav-link {
    color: black;
}

#smallNavbar .nav-link.active {
    background: transparent;
    font-weight: 600;
}

/*  Large devices (desktops, 992px and up)  */
@media (min-width: 992px) {

    .guarantee-section {
        max-height: 800px;
    }
}



.card-guarantee {
    max-width: 800px;
    position: relative;
    margin: auto;
    background-color: #030122;
    color: white;
    border-radius: 1rem;
}

.card-guarantee-img {
    position: absolute;
    margin: auto;
    width: 75%;
    top: 75%;
    left: 50%;
    border-radius: 1rem;
    transform: translate(-50%, 0%);
}


/* ============================================================================== */
/* Contact Page css */
.contact-information .card {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.contact-us > div {
    background-color: #030122;
    border-radius: 2rem;
    color: white;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

/*  Large devices (desktops, 992px and up)  */
@media (min-width: 992px) {
    .contact-us > div {
        padding: 4rem;
    }
}



.contact-us > div::after {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    transform: translate(-45%, -25%);
    background-color: #23C3DC;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.contact-us > div::before {
    position: absolute;
    content: "";
    bottom: 0px;
    right: 0px;
    transform: translate(40%, 40%);
    background-color: #DF2121;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.contact-social-icons > i {
    width: 3rem;
    height: 3rem;
    font-size: 1.20rem;
    border-radius: 50%;
    text-align: center;
    align-content: center;
    background-color: white;
    color: #030122;
}


/* ============================================================================== */
/* Our services section page */
.our-services-section 

.our-services-section .card:nth-child(even) {
    /* background-image: linear-gradient(45deg, #3503ad, #f7308c); */
    background-color: #DF2121;
}

/* .our-services-section .card:nth-child(2) {
    background-image: linear-gradient(45deg, #ccff00, #09afff);
}

.our-services-section .card:nth-child(3) {
    background-image: linear-gradient(45deg, #e91e63, #ffeb3b);
} */

/* .our-services-section .card__frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.our-services-section .card__overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-content: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    cursor: pointer;
}

.our-services-section .card__overlay::before {
    content: "...";
    /* line-height: 0px; */
    /* font-size: 24px;
    font-weight: 500;
    color: inherit;
} */

.our-services-section .card__overlay:hover,
.our-services-section .card__overlay:focus {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    box-shadow: none;
    border-radius: 0rem;
}

.our-services-section .card__overlay:hover::before,
.our-services-section .card__overlay:focus::before {
    content: none;
}

/* .our-services-section .row .col:nth-child(odd) .card {
    border-width: 4px; */
  /* border-image: 
    linear-gradient(
      to left, 
      #DF2121, 
      rgba(0, 0, 0, 0)
    ) 0 1; */
    /* border-image: 
    linear-gradient(
      to left, 
      #23C3DC, 
      rgba(0, 0, 0, 0)
    ) 0 1; */
/* } */

/* .our-services-section .row .col:nth-child(odd) .card .card__overlay { */
    /* background-color: #DF2121; */
    /* background-color: #23C3DC; */
    /* color: white; */
/* } */

/* .our-services-section .row .col:nth-child(odd) .card .card__overlay + .card__content {
    color: white;
} */

/* .our-services-section .row .col:nth-child(even) .card {
    border-width: 4px;
  border-image: 
    linear-gradient(
      to left, 
      #23C3DC, 
      rgba(0, 0, 0, 0)
    ) 0 1;
}

.our-services-section .row .col:nth-child(even) .card .card__overlay {
    background-color: #23C3DC;
    color: black;
} */

/* .our-services-section .card:nth-child(1) .card__overlay {
    background-image: linear-gradient(45deg, #3503ad, #f7308c);
}

.our-services-section .card:nth-child(2) .card__overlay {
    background-image: linear-gradient(45deg, #ccff00, #09afff);
}

.our-services-section .card:nth-child(3) .card__overlay {
    background-image: linear-gradient(45deg, #e91e63, #ffeb3b);
} */

.our-services-section .card__content {
    z-index: 1;
    padding: 20px;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    box-sizing: border-box;
    pointer-events: none;
    transition: 0s;
}

.our-services-section .card__overlay:hover~.card__content {
    opacity: 1;
    visibility: visible;
    transition: 0.2s 0.3s;
}

.our-services-section .card__content h2 {
    margin: 0;
    margin-bottom: 1rem;
}


/* ============================ CAREERS PAGE =================================== */

/* Career icon */
.career-icon {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50% !important;
    line-height: 40px;
    margin: 1rem 0rem 0rem 1rem;
}

#openings-tab button.nav-link {
    color: #030122;
    border: 1px solid #030122;
    font-weight: 600;
}

#openings-tab button.nav-link.active {
    color: white;
    background-color: #030122 ;
}

.opening-card {
    border-radius: 1rem;
    overflow: hidden;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.opening-card .card-body {
    padding: 2rem;
}

.opening-card::after {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    transform: translate(-40%, -40%);
    background-color: #23C3DC;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.opening-card::before {
    position: absolute;
    content: "";
    bottom: 0px;
    right: 0px;
    transform: translate(40%, 40%);
    background-color: #DF2121;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}