.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: "Roboto", sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-light) !important;
}

.btn.btn-dark {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    font-family: "Roboto", sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-dark:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}

.btn.btn-light {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: "Roboto", sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-light:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}

/*** Navbar ***/
.sticky-top,
.sticky-top .container {
    transition: 0.5s !important;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark) !important;
}

.navbar .navbar-nav .nav-item {
    position: relative;
    margin: 0 5px !important;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 0px solid var(--bs-primary);
    transition: 0.5s;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 100%;
    border-width: 1px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}
.button-nav {
    border: 2px solid #79a864;
    background-color: transparent;
    border-radius: 20px;
    color: #1a4710;
    padding: 8px 10px;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.button-nav:hover {
    background-color: #79a864;
    color: white;
}

.button-nav.active {
    background-color: #79a864;
    color: white;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 20px !important;
        transition: 0.5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        margin-top: 15px !important;
        transition: 0.5s;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .nav-item.nav-link {
        margin: 15px 0 !important;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    margin-top: 20px !important;
    transition: 0.5s;
    opacity: 1;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

#searchModal .modal-content {
    background: rgba(250, 250, 250, 0.6);
}
/*** Navbar End ***/

/*** Recognition Start ***/
.award {
    background-color: #f0f5f7;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.award .col-md-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.award img {
    max-width: 60%;
    height: auto;
    margin-bottom: 1rem;
}

.award p {
    font-size: 1rem;
    color: #333;
}

.award a:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.award a:hover h6 {
    color: #c300ff; 
    transition: color 0.3s ease-in-out;
}
/*** Recognition End ***/

/*** Header Start ***/
.about-header {
    background-size: cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.098);
}
/*** Header End ***/

/*** Flipbook Start ***/
.custom-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 200rem;
    height: 40rem;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    outline: 0;
    margin: 0 auto;
}

.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

.custom-modal-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

/*** Flipbook End ***/

/*** Client Start ***/
.client-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    height: 300px;
    background-color: #ffffff;
    left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.slider-track {
    display: flex;
    gap: 30px;
    will-change: transform;
}

.slider-track img {
    height: 120px;
    width: auto;
}

.row-1,
.row-2 {
    display: flex;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.row-1 {
    animation-name: slide-left;
}

.row-2 {
    animation-name: slide-right;
}

@keyframes slide-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes slide-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}
/*** Client End ***/

/*** CTA Start ***/
.ready-to-grow-section {
    background-image: url("../svg/cta_banner.svg");
    background-size: cover;
    background-position: center;
    height: 350px;
    padding: 50px 20px;
    color: #1a6f4c;
    border-radius: 20px 20px 0px 0px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ready-to-grow-section .btn {
    background-color: #aafa50;
    border: none;
    color: #0c3b2b;
    padding: 15px 30px;
    font-size: 1.2rem;
    margin-top: 15rem;
    margin-left: 3rem;
}

.ready-to-grow-section .btn:hover {
    background-color: #79a864;
    color: white;
}
@media (max-width: 768px) {
    .ready-to-grow-section {
        height: auto; 
        padding: 30px 15px; 
        border-radius: 0; 
    }

    .ready-to-grow-section .btn {
        font-size: 1rem; 
        padding: 10px 20px; 
        margin-top: 1rem; 
    }
}

@media (max-width: 480px) {
    .ready-to-grow-section {
        padding: 20px 10px;
    }

    .ready-to-grow-section .btn {
        font-size: 0.6rem; 
        padding: 5px 10px; 
    }
}
/*** CTA End ***/

/*** Service Header Start ***/
.header {
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 270px 0;
}
/*** Service Header End ***/

/*** About Start ***/
.about .text {
    position: relative;
}

.about .text::after {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-primary);
}
/*** About End ***/

/*** Web Start ***/
.web p.green-border {
    border-left: 5px solid green;
    padding-left: 10px;
    text-align: justify;
}
/*** Web End ***/

/*** Product Showcase Start ***/
.product-section {
    background-image: url("../svg/pservice_banner.svg");
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 15px rgba(5, 5, 5, 0.262);
}

.product-section img {
    object-fit: contain;
    z-index: 1;
}

.laptop-img {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 100%;
    max-width: 500px;
}

.phone-img {
    position: absolute;
    bottom: -4%;
    right: 0px;
    width: 100%;
    max-width: 570px;
    z-index: 1;
}

.text-center {
    z-index: 1;
    text-align: center;
}

.btn-outline-light {
    border: 2px solid rgb(190, 39, 39);
    color: white;
    transition: background-color 0.3s ease;
}

.btn-outline-light:hover {
    background-color: white;
    color: rgba(53, 186, 12, 0.69);
}

.product-section h2 {
    color: var(--Schemes-On-Primary, #141414);
    text-align: center;
    font-family: "Enriqueta", serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.96px;
}

@media (max-width: 768px) {
    .laptop-img {
        position: relative; 
        top: auto;
        left: auto;
        transform: none;
        margin: 20px auto; 
        max-width: 300px; 
    }

    .phone-img {
        position: relative; 
        bottom: auto;
        right: auto;
        margin: 20px auto; 
        max-width: 350px; 
    }
}

@media (max-width: 480px) {
    .laptop-img, .phone-img {
        max-width: 250px; 
        margin: 10px auto; 
    }
}

/*** Product Showcase End ***/

/*** Brief Start ***/
.card {
    background: #161616;
    overflow: hidden;
    box-shadow: none;
    cursor: pointer;
    position: relative;
    transform-origin: center;
    transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border-radius: 1;
    border: none;
    outline: none;
}

.card:hover {
    transform: scale(1.05);
}

.card .content {
    position: absolute;
    z-index: 1;
    bottom: 50px;
    padding: 0 24px;
    transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #fff;
}

.card:hover .content {
    bottom: 36px;
}

.card .image {
    position: relative;
    width: 100%;
    border-radius: 0;
}

.card .image img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.card .image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 100%
    );
}
/*** Brief End ***/

/*** Data Driven Insight Start ***/
.data-driven-section h2 {
    font-size: 2rem;
    color: #333;
    text-align: left; 
}

.data-driven-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: left; 
}
/*** Data Driven Insight End ***/

/*** Card Slider Start ***/
.card-bc {
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    max-height: 600px;
    border-radius: 4px;
    background: #212121;
    display: flex;
    gap: 2px;
    padding: 0.2em;
    transition: width 0.5s ease, height 0.5s ease;
}

.card-bc p {
    position: relative;
    height: 100%;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border: 1px solid #001200f1;
    border-radius: 1px;
}

.card-bc p:hover,
.card-bc p.clicked {
    flex: 9;
}

.card-bc p span {
    position: absolute;
    bottom: 30%;
    left: 8%;
    transform: translateX(-50%) rotate(-90deg);
    color: #efefef;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.card-bc p:hover span,
.card-bc p.clicked span {
    transform: rotate(0);
    left: 5%;
}
.card-title {
    font-weight: bold;
    font-size: 17px;
    display: block;
    margin: 10px 10px;
    max-width: 120%;
}

.hover-text {
    display: none;
    position: absolute;
    top: 70%;
    left: 5%;
    transform: translate(-50%, -50%);
    color: #ff568e;
    text-align: justify;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 0 1em;
    max-width: 100%;
    word-wrap: break-word;
    white-space: normal;
}

.card-bc p:hover .hover-text,
.card-bc p.clicked .hover-text {
    display: block;
    opacity: 1;
    left: 5%;
    max-width: 100%;
    word-wrap: break-word;
    white-space: normal;
}

@media (max-width: 768px) {
    .card-bc {
        height: 100vh;
    }

    .card-bc p span {
        min-width: 7em;
    }
}
/*** Card Slider End ***/

/*** Tech Start ***/
.banner-container {
    background-image: url("../img/banner-4.png");
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin-bottom: 3rem;
    position: relative;
}

.banner-container .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
}

.banner-content {
    height: 10rem;
}

.discover-btn {
    background-color: rgba(0, 0, 0, 0.1);
    color: #a5db3b;
    border-radius: 100px;
    border: 2px solid #3e3e3e;
}
/*** Tech End ***/

/*** Portfolio Research Start ***/
.filters {
    margin: 20px;
    text-align: center;
}

.filters button {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    cursor: pointer;
    background-color: #f0f0f0;
    border-radius: 5px;
    font-size: 16px;
}

.filters button.active {
    background-color: #af9b2a;
    color: white;
}

.system-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
}

.system {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.system-item {
    flex: 1 1 30%;
    max-width: 30%;
    margin: 10px;
    text-align: center;
}
.system-item a {
    transition: transform 0.2s ease-in-out;
}

.system-item a:hover,
.system-item a:focus,
.system-item a:active {
    transform: scale(1.1);
    text-decoration: none;
}
.system-item p {
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.5;
    word-wrap: break-word;
}

.system img {
    width: 70%;
    max-width: 20rem;
    height: auto;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(71, 71, 71, 0.8);
}
.container-fluid .system .system-item p {
    color: #515151;
}
.system-container,
.system {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    background-color: whitesmoke;
}

@media (max-width: 768px) {
    .system-container {
        flex-direction: column;
        align-items: center;
        padding-left: 10px;
        padding-right: 10px;
    }

    .system-item {
        width: 90%;
    }
}
/*** Portfolio  Research End ***/

/*** Portfolio Technology Start ***/
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    position: relative;
    top: 0px;
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
    overflow-y: auto;
    height: 700px;
}

.close-btn {
    position: absolute;
    font-size: 35px;
    left: 40rem;
    color: #e80918;
    cursor: pointer;
    /* border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center; */
}

.slideshow-container {
    max-width: 700px;
    height: auto;
    display: none;
    border-radius: 10px;
    position: absolute;
    top: 400px;
    left: 5px;
}

.systems-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
}

.system-card {
    flex: 1 1 300px;
    max-width: 300px;
    max-height: 400px;
    text-align: center;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.system-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 5px;
}

.system-card:hover {
    transform: scale(1.05);
}

#popup-video {
    width: 90%;
    height: auto;
    display: none;
    border-radius: 10px;
    position: absolute;
    top: 380px;
    left: 30px;
}
/*** Portfolio Technology End ***/

/*** Footer Start ***/
.footer {
    background-color: #034824;
}

.footer-content {
    padding-left: 50px;
}

.link-hover:hover {
    color: #00ff7f !important;
}

.social-icons .btn {
    color: #000000;
}

.social-icons .btn:hover {
    color: #00ff7f;
}

/*** Footer End ***/

.media-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin: 20px 0;
    padding-left: 10%;
}
.media-card video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}
.media-content {
    padding: 20px;
}

/*** Clients Start  ***/
.logo-card {
    position: relative;
    width: 120px;
    height: 150px;
    margin: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(89, 88, 88, 0.15);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo-card:hover {
    transform: scale(1.05);
}

.client-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.528);
    color: white;
    text-align: center;
    font-size: 14px;
    padding: 5px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-card:hover .logo-overlay {
    opacity: 1;
}

.container h2 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-top: 20px;
}

.government-row,
.corporate-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 20px;
}
.clients-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    padding: 0rem 6rem;
}

.clients-subtitle {
    font-size: 1.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .clients-title {
        font-size: 2.8rem;
    }
    .clients-subtitle {
        font-size: 2rem;
    }
}
/*** Clients End ***/

/*** Contact Us Start***/
.contact-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
}

.contact-section .left-side,
.contact-section .right-side {
    flex: 1;
    height: 100%;
}

.contact-section .left-side {
    background-color: #d3f294;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-section .right-side {
    background-image: url("../img/contact_us.png");
    background-size: cover;
    background-position: center;
}

.contact-section .left-side h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.contact-section .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #333;
    border-radius: 0;
    margin-bottom: 15px;
    padding: 10px 5px;
}

.contact-section .btn-submit {
    background-color: #000;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.contact-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 50px;
    color: #333;
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        height: auto;
    }

    .contact-section .right-side {
        height: 300px;
    }

    .contact-section .left-side,
    .contact-section .right-side {
        flex: none;
        width: 100%;
    }
}
/*** Contact Us End***/

/*** About Us Start ***/
.container-div {
    width: 100%;
    height: 450px;
    position: relative;
    margin-top: 100px;
    padding-left: 10px;
    overflow: hidden;
}

.layer2 {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 20px);
    height: 100%;
    background: url("../img/layer_2.png");
    background-size: 100% 100%;
    transition: filter 2s;
    margin-left: 10px;
    border-radius: 30px;
}

.layer1 {
    width: 60%;
    max-width: 100%;
    height: 300px;
    background: url("../img/layer_1.png");
    background-size: 100% 100%;
    z-index: 1;
    transition: box-shadow 2s;
}

.layer1:hover ~ .layer2 {
    filter: blur(5px);
}

.layer1:hover {
    box-shadow: 0 25px 60px rgb(27, 5, 5);
}

@media (max-width: 768px) {
    .container-div {
        height: 300px;
        padding: 0 10px;
    }
    .layer2,
    .layer1 {
        width: calc(100% - 20px);
    }
}
/*** About Us End ***/

/*** Who We Are Start ***/

#our-team h2 {
    color: #333; 
}

#our-team p {
    font-size: 1rem; 
    line-height: 1.6; 
}

.team-header {
    background-color: #06442e; 
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); 
    padding: 20px;
    margin-bottom: 20px; 
}

.team-header h1 {
    color: white;
    font-size: 36px; 
    margin: 0; 
}


.team-card {
    background-color: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 80%;
    border-radius: 50%;
}


/*** Who We Are End ***/
