@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.TTF');
    src: local("?"), url('../fonts/Poppins-Regular.woff') format("woff"), url('../fonts/Poppins-Regular.TTF') format("truetype");
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/Poppins-SemiBold.TTF');
    src: local("?"), url('../fonts/Poppins-SemiBold.woff') format("woff"), url('../fonts/Poppins-SemiBold.TTF') format("truetype");
}

html,
body {
    font-family: Poppins-Regular, Calibri, Arial;
    color: #333;
    font-size: 14px;
    line-height: 18px;
    background: #f1f1f1;
}


a {
    text-decoration: none;
    color: #1f80d3;
}

/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: #1f80d3;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9999;
}

.back-to-top i {
    padding-top: 12px;
    color: #fff;
}


.header {
    background: #fcfcfc;
    padding: 5px 0;
}

.header-upper {
    background: #35a2c6;
    height: 35px;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 55px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 0;
    background: #0052cc;
}

.logo {
    padding: 5px 0 0 15px;
    width: 110px;
}

.logo img {
    width: 100%;
}

/*.navbar{padding:0;}
.navbar-light .navbar-toggler{color:#fff; border-color:transparent;}*/

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.main-nav {
    /* Drop Down */
    /* Deep Drop Down */
}

.main-nav,
.main-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav>ul>li {
    position: relative;
    white-space: nowrap;
    float: left;
    padding: 8px 5px;
}

.main-nav a {
    display: block;
    position: relative;
    color: #fff;
    margin: 0 1px;
    padding: 10px;
    transition: 0.3s;
    font-weight: 500;
    line-height: 20px;
}

.main-nav a:hover,
.main-nav .active>a,
.main-nav li:hover>a {
    color: #ffba94;
    text-decoration: none;
    font-weight: 500;
}

.main-nav .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}

.main-nav .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.main-nav .drop-down li {
    min-width: 180px;
    position: relative;
}

.main-nav .drop-down ul a {
    padding: 7px 10px;
    font-size: 13px;
    color: #004289;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active>a,
.main-nav .drop-down ul li:hover>a {
    color: #ffba94;
}

.main-nav .drop-down>a:after {
    content: "\f107";
    font-family: FontAwesome;
    padding-left: 5px;
}

.main-nav .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.main-nav .drop-down .drop-down>a {
    padding-right: 35px;
}

.main-nav .drop-down .drop-down>a:after {
    content: "\f105";
    position: absolute;
    right: 15px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 54px;
    z-index: 9999;
    overflow-y: auto;
    left: -100%;
    width: 100%;
    background: #1f80d3;
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 15px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #ffba94;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\f078";
    font-family: FontAwesome;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\f077";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 5px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    margin: 10px 18px 0 0;
    color: #ffffff;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    /*background: rgba(19, 39, 57, 0.8);*/
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

.main_content_wrapper {
    margin: 0;
    padding: 0 0 0;
}

.Inner_Container {
    background: #fefefe;
    min-height: 95vh;
    margin: 0 0;
    /*background:url(../images/inner_logo_logo.png) top right no-repeat*/
    ;
}

.content_bg {
    background: #fff;
    margin: 0 0 10px;
    padding: 10px;
}

.row {
    --bs-gutter-x: 0rem;
}



.btn-primary {
    border-radius: 6px;
    background: #0052cc; color: #fff;
    border: 1px solid #0052cc;
}

.btn-primary:hover {
    background: #fff;
    color: #0052cc;
    border: 1px solid #0052cc;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: #0052cc;
    border-color: #0052cc;
}



.inner_banner {
    width: 100%;
    height: auto;
    margin: 0 0 20px;
}



.main_mobile_div {
    width: 400px;
    margin: auto;
}


.nav_bar {
    color: #fff;
    font-size: 30px;
    float: right;
    margin: 10px 0 0;
    width: auto;
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 340px;
}

.nav_bar a {
    color: #1f80d3;
}

.inner_banner {
    position: relative;
}

.footer {
    background: #008080;
    width: 100%;
    padding: 10px;
    color: #fff;
}

.footer a {
    color: #fff;
    padding: 0;
    margin: 0 10px 5px 0;
    font-size: 18px;
}

.footer a:hover {
    color: #fa8748;
}

.footer img {
    width: 100px;
}

.footer ul {
    margin: 0;
    padding: 0;
}

.footer ul li {
    margin: 0;
    padding: 5px 0;
    list-style-type: none;
    display: block;
}

.footer ul li a {
    color: #fff;
    font-size: 13px;
}

.footer ul li a:hover {
    color: #fa8748;
}

.main_mobile_div {
    width: 400px;
}


.btn {
    font-weight: 500;
}

/* check in */

.map-container {
    width: 100%;
    height: 220px;
    background: #e6f0ff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.map-pin {
    width: 30px;
    height: 30px;
    background-color: red;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -15px;
    margin-top: -15px;
    animation: blink 1s infinite;
    z-index: 2;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.card-box {
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 15px 20px;
    margin-top: 15px;
}

/* 
live Tracking  */

.main-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d4ed8;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #555;
    margin-top: 5px;
    margin-bottom: 20px;
}


.map-box {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ccc;
    margin-bottom: 15px;
}

.status-row {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 20px;
}

.status-row span {
    display: inline-block;
    margin-right: 10px;
    font-weight: 500;
}

.btn-secondary,
.btn-warning,
.btn-danger,
.btn-dark {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 10px;
}

.break-timer {
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    color: #dc3545;
    display: none;
}



/* work Summary  */

.sub-title {
    font-size: 13px;
    color: #666;
}

.info-box {
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
}

.label-text {
    font-size: 13px;
    color: #777;
    margin-top: 4px;
}

.info-blue {
    background-color: #e3edff;
    color: #155ed3;
}

.info-green {
    background-color: #e5f8ec;
    color: #34a853;
}

.info-purple {
    background-color: #f3e9ff;
    color: #a323f0;
}

.info-orange {
    background-color: #fff3e5;
    color: #ff9f00;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.excellent-card {
    border-radius: 20px;
    padding: 25px;
    background: linear-gradient(to bottom right, #f2fcff, #f4f1ff);
    text-align: center;
}

.excellent-card i {
    color: #ffcc00;
    font-size: 30px;
    margin-bottom: 10px;
}

.excellent-card h6 {
    font-weight: 700;
    font-size: 16px;
}

.excellent-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 40, 40, 0.5);
    z-index: 999;
}

/* Modal Content Box */
.custom-modal {
    background: #fff;
    width: 90%;
    max-width: 400px;
    margin: 15% auto;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Modal Title */
.custom-modal h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Modal Message */
.custom-modal p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

button.flex-fill {
    height: 100%;
}


/* Modal Buttons */


.btn-end {
    background-color: #dc3545;
    color: white;
}

.btn-cancel {
    background-color: #f1f1f1;
    color: #333;
}


/* Login Start */
.logo-screen {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 100%;
    background-color: #0052cc;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transform: translate(-50%, -50%);
    transition: opacity 1s ease;
}


.logo-screen img {
    width: 150px;
    animation: zoomIn 1.5s ease;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.login-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease;
}

.login-container h2 {
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.login-container input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.login-container button {
    width: 100%;
    padding: 12px;
    background-color: #0052cc;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.login-container button:hover {
    background-color: #003d99;
}

.hidden {
    display: none !important;
}

/* Login End */
/* Self Tracking Start */
.bi::before {
    font-size: 12px !important;
}

.timeline-container {
    border-color: #dee2e6;
}

.timeline-step {
    position: relative;
    padding-left: 40px;
    margin-bottom: 24px;
}

    .timeline-step::before {
        content: "";
        position: absolute;
        top: 20px;
        left: 14px;
        width: 2px;
        height: 100%;
        border-left: 2px dashed #ccc;
        z-index: 0;
    }

.timeline-icon {
    background-color: #0d6efd;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.timeline-content {
  /*  display: flex;*/
    justify-content: space-between;
    align-items: center;
}

.timeline-title {
    font-weight: 600;
}

.timeline-sub {
    font-size: 0.9rem;
    color: #6c757d;
}

.summary-card {
    margin: 2px;
    background-color: var(--accent);
    padding: 10px 6px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

    .summary-card:hover {
        transform: translateY(-6px);
    }

.icon-circle {
    background: #fff;
    width: 31px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 12px;
    color: var(--icon-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.title {
    font-weight: 600;
    font-size: 14px;
    color: #222;
    margin-bottom: 4px;
}

.time {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}
#map {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}
/* Self Tracking End */
@media (max-width: 767px) {
    /*.nav_bar{left:440px;}*/
}

@media (max-width:680px) {}

@media(max-width: 768px) {
    .logo-screen {
        width: 100%;
    }

    .main_mobile_div {
        width: 100%;
        margin: auto;
    }
}

@media (max-width: 480px) {}

@media (max-width:380px) {}