
/* Colors and general */
:root {
    --teal: #0aa38a;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html, body {
    height: 100%;
    width: 100%;
}

a {
    text-decoration: none;
}

body {
    /* font-family: 'Crimson Pro', serif; */
    font-family: "Roboto", sans-serif;
}

.wrapper {
    overflow-x: hidden;
}

main {
    margin-top: 78px;
}
/* Header */

.header {
    background: #ffffff;
    width: 100%;
    position: fixed; /* Makes it stay at top */
    top: 0;
    left: 0;
    z-index: 999; /* Always above content */
    transition: all 0.3s ease;
}

/* Round icon buttons */
.icon-btn {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    background: #00b894;
    color: #fff;
    border: none;
    font-size: 20px;
}

    .icon-btn:hover {
        background-color: #029d7d;
    }

/* Menu Pill Button */
.menu-btn {
    padding: 6px 18px;
    border-radius: 30px;
    background: #e9faf5;
    border: none;
    font-size: 15px;
    background: #00b894;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-lines {
    display: inline-block;
    width: 22px;
    height: 1px;
    /* background: #fff; */
    border-radius: 3px;
    position: relative;
}

    .menu-lines::after,
    .menu-lines::before {
        content: "";
        width: 22px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        position: absolute;
        left: 0;
    }

.custom-modal {
    border-radius: 14px;
    overflow: hidden;
    border: none;
}

    .custom-modal .modal-header {
        background: linear-gradient(135deg, #02B28C, #006A7F);
        color: white;
    }

    .custom-modal .modal-title {
        font-weight: 600;
    }

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

    .detail-row span {
        color: #006A7F;
        font-weight: 600;
        font-size: 15px;
        padding-right: 20px;
    }

    .detail-row p {
        margin: 0;
        font-size: 15px;
        font-weight: 500;
        color: #000;
        max-width: 60%;
    }

.btn-close {
    color: #fff !important;
}

.btn-custom {
    background: #02B28C;
    color: white;
    border-radius: 8px;
    padding: 6px 20px;
}

    .btn-custom:hover {
        background: #006A7F;
        color: white;
    }

.view-btn {
    cursor: pointer;
    color: #02B28C;
    font-size: 18px;
}

    .view-btn:hover {
        color: #006A7F;
    }

.logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f25656;
    color: #ffffff;
    border: 1px solid red;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .logout-btn i {
        font-size: 18px;
    }
    
    .logout-btn:hover {
        background: #db3636;
    }

    .logout-btn a:hover {
        color: #fff;
    }
    
    .logout-btn a {
          color:#fff;
      }

@media (max-width: 576px) {
    .logout-btn span {
        display: none;
    }
}


.menu-lines::before {
    top: -4px;
}

.menu-lines::after {
    top: 4px;
}

/* Get In Touch Button */
.get-btn {
    background: #00b894;
    color: #fff;
    padding: 6px 18px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
}

    .get-btn:hover {
        background: #029d7d;
        color: #fff;
    }

@media (max-width:560px) {
    .get-btn {
        display: none;
    }
}
/* Optional: Shrink on scroll */
.header.shrink {
    padding: 5px 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* HERO WRAPPER */
.hero-section {
    padding: 60px 0 30px;
    position: relative;
}

/* LEFT SIDE TEXT */
.hero-title {
    font-size: 45px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
}

    .hero-title .highlight {
        color: #10b59f;
    }

.hero-text {
    font-size: 14px;
    color: #fff;
    max-width: 520px;
    margin-top: 15px;
    margin-bottom: 0;
}

/* GENERATOR IMAGE PLACEMENT */
.hero-generator {
    margin-top: 40px;
    width: 100%;
}

/* FORM CARD */
.hero-form-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.form-title {
    color: #00687E;
    font-size: 30px;
    font-weight: 700;
}

.form-subtitle {
    font-size: 14px;
    color: #00687e;
    margin-bottom: 20px;
    font-weight: 500;
}

/* INPUTS */
.hero-form-card .form-input, .hero-form-card .custom-select {
    height: 40px;
    background: #eef8f7;
    border: 1px solid #a6d6ce;
    border-radius: 6px;
    font-size: 12px;
    padding-left: 15px;
    color: #0f4c50;
}

.form-control::placeholder {
    color: #21acb6;
    background-position: right 15px center;
}

.hero-form-card .custom-select {
    color: #00b894 !IMPORTANT;
    -webkit-appearance: auto;
}
/* Dropdown arrow color */
.form-select {
    color: #21acb6;
    background-position: right 15px center;
}
/* Custom SELECT styling */
.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #eef8f7;
    border: 1px solid #a6d6ce;
    border-radius: 10px;
    font-size: 14px;
    padding: 5px 40px 5px 15px;
    height: 35px;
    color: #21acb6;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%2321acb6' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

    /* Options inside dropdown */
    .custom-select option {
        color: #0f4c50; /* theme dark green */
        background: #eef8f7;
    }

    /* On select focus */
    .custom-select:focus {
        border-color: #10b59f;
        box-shadow: 0 0 5px rgba(16, 181, 159, 0.4);
    }


.form-select:focus,
.form-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #10b59f !important;
}

/* Submit Button */
.submit-btn {
    background: #10b59f;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    padding: 10px 30px;
    margin-top: 5px;
    margin-bottom: 5px;
}

    .submit-btn:hover {
        background: #029d7d;
        color: #fff;
    }
/* Section BG */
.cpcb-section {
    background: #06292d;
}

/* glowing bullet */
.glow-bullet {
    height: 12px;
    width: 12px;
    flex-shrink: 0;
    background: #b5ff47;
    border-radius: 50%;
    box-shadow: 0 0 10px #b5ff47;
    margin-top: 6px;
}

/* Text */
.cpcb-text {
    font-size: 22px;
    line-height: 1.2;
    color: #ffffff;
}

    .cpcb-text .green {
        color: #13c6a4;
    }

    .cpcb-text .yellow {
        color: #d3e94f;
    }

/* ISO CARDS */
.iso-card {
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 12px;
    min-width: 210px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

    .iso-card img {
        height: 45px;
        width: 45px;
        border-radius: 55px;
        overflow: hidden;
    }

    .iso-card h6 {
        font-size: 13px;
        margin: 0;
        color: #0a2b2b;
        font-weight: 700;
    }

    .iso-card p {
        font-size: 11px;
        margin: 0;
        color: #124646;
        line-height: normal;
        font-weight: 500;
    }

/* About / Why choose */
.about-sgps-section {
    background: #ffffff;
}

/* LEFT SIDE */
.about-title {
    font-size: 40px;
    font-weight: 600;
    color: #00687E;
    line-height: 1.2;
}

    .about-title span {
        color: #06b08c;
    }

.about-text {
    font-size: 15px;
    color: #3d5f5d;
    margin-top: 15px;
}

/* Button */
.contact-btn {
    background: linear-gradient(90deg, #0c9285, #06b08c);
    color: #fff;
    padding: 8px 24px;
    border-radius: 12px;
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 35px;
    font-weight: 600;
    border-radius: 50px;
}

    .contact-btn:hover {
        color: #fff;
    }

    .contact-btn .arrow {
        font-size: 18px;
        margin-left: 5px;
    }

/* RIGHT SIDE */
.divider-line {
    width: 2px;
    height: 100%;
    background: #0f8c7c;
    position: absolute;
    left: -20px;
    top: 0;
}

.why-title {
    font-size: 32px;
    font-weight: 600;
    color: #00687E;
    margin-bottom: 25px;
}

    .why-title .highlight {
        color: #06b08c;
    }

/* Feature Item */
.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

    .why-item:hover .why-heading {
        color: #06b08c;
    }
/* Circle Icon */
.icon-circle {
    height: 80px;
    width: 80px;
    flex-shrink: 0;
    background: #f5f8f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00b894;
}


.why-icon {
    height: 50px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
}

/* Text */
.why-heading {
    font-size: 18px;
    font-weight: 700;
    color: #0f4c50;
    margin-bottom: 5px;
}

.why-text {
    font-size: 14px;
    color: #597c78;
}

/* Services cards */
/* Section */
.diesel-section {
    background: #ffffff;
}

/* Title */
.diesel-title {
    font-size: 32px;
    font-weight: 600;
    color: #00687E;
    margin-bottom: 25px;
}

    .diesel-title .highlight {
        color: #06b08c;
    }

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border: 1px solid #d4dde6;
    border-radius: 12px;
    padding: 20px;
    min-height: 150px;
    height: 100%;
    transition: 0.3s ease;
}

    .feature-card:hover {
        background: #06b08c;
        border-color: #06b08c;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        transform: translateY(-10px);
    }

        .feature-card:hover .feature-icon {
            background: #94e0d2;
        }

        .feature-card:hover .feature-heading {
            color: #fff !important;
        }

        .feature-card:hover .feature-text {
            color: #fff !important;
        }

.active-card {
    background: #06b08c;
    color: #fff;
}

.feature-text span {
    position: relative;
    display: block;
    padding-left: 15px;
}

    .feature-text span::before {
        content: "";
        position: absolute;
        width: 7px;
        height: 6px;
        background: #94e0d2;
        border-radius: 50px;
        left: 0;
        top: 6px;
    }

.active-card .feature-heading,
.active-card .feature-text {
    color: #ffffff;
}

/* Icon circle */
.feature-icon {
    height: 35px;
    width: 35px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

    .feature-icon img {
        width: 25px;
        height: 25px;
        object-fit: contain;
    }
/* Headings */
.feature-heading {
    font-size: 18px;
    font-weight: 700;
    color: #0a2b2b;
}

.feature-text {
    font-size: 14px;
    color: #637d7a;
}

/* Active card text color fix */
.active-card .feature-heading,
.active-card .feature-text {
    color: #ffffff;
}

/* Section Background */
.experience-section {
    background: #001f27; /* very dark teal */
}

    .experience-section .row {
        align-items: stretch !important;
    }

/* Title */
.exp-title {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

    .exp-title .highlight {
        color: #0cc5a3;
    }

.detailpara {
    font-size: 14px;
    color: #ffffff;
    margin-top: 15px;
    margin-bottom: 30px;
}
/* Experience Item */
.exp-item {
    display: flex;
    align-items: stretch;
    gap: 18px;
    margin-bottom: 30px;
}

.exp-line {
    width: 3px;
    background: #00cea3;
    border-radius: 0;
    flex-shrink: 0;
}

/* Number */
.exp-number {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    font-family: sans-serif;
    margin-bottom: 10px;
}

/* Heading */
.exp-heading {
    font-size: 15px;
    font-weight: 500;
    color: #00cea3;
    margin-bottom: 6px;
}

/* Paragraph text */
.exp-text {
    font-size: 15px;
    color: #b1cdca;
    margin: 0;
}

/* Image */
.exp-image {
    width: 100%;
    padding: 0px 30px;
    height: 100%;
    object-fit: cover;
}

.experiencestats {
    display: flex;
    flex-wrap: wrap;
}

    .experiencestats .exp-item {
        width: 50%;
        padding-right: 20px;
    }
/* Outer Footer Section */
.footer-section {
    background: #e8eff2; /* light grey outer */
}

/* Inner rounded footer box */
.footer-box {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 3rem;
    border-radius: 20px;
    color: #ffffff;
    min-height: 350px;
}

@media (max-width:786px) {
    .footer-box {
        padding: 20px;
    }

    .exp-number {
        font-size: 22px;
    }
}
/* Title */
.footer-title {
    font-size: 48px;
    /* font-weight: 700; */
    color: #ffffff;
    margin-bottom: 30px;
}

/* Social pill container */
.social-pill {
    background: #ffffff;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.social-icon {
    height: 40px;
    width: 40px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
}

/* Right Column Titles */
.footer-heading {
    color: #37c8b2;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Text */
.footer-text {
    font-size: 15px;
    color: #e8f8f7;
    margin-bottom: 12px;
}

    .footer-text a {
        color: #e8f8f7;
        text-decoration: none;
    }


.floating-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #00b894;
    color: #fff;
    padding: 14px 26px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    animation: bounce 2s infinite;
}

    .floating-btn.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Hover Effect */
    .floating-btn:hover {
        background: #029d7d;
        color: #fff;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    }

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}




/* Dropdown aligned exactly below menu button */
.menu-dropdown {
    position: absolute;
    top: 111%; /* directly below menu button */
    left: 0; /* aligned to menu button right side */
    background: #00b894;
    width: 200px;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.20);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    z-index: 9999;
}

@media (max-width:786px) {
    .menu-dropdown {
        right: 0;
        left: auto;
        width: 156px;
    }

    .footer-text {
        font-size: 14px;
    }
}
/* Dropdown visible */
.menu-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .menu-dropdown ul li a {
        display: block;
        padding: 12px 20px;
        color: #fff;
        font-size: 15px;
        text-decoration: none;
    }

        .menu-dropdown ul li a:hover {
            background: #029d7d;
        }

.genrator_qlty {
    margin-top: 20px;
    display: inline-block;
    padding: 15px;
    border-radius: 10px;
    background: #000;
    background: linear-gradient(90deg, rgb(1 103 126 / 40%) 0%, rgb(0 184 148 / 20%) 36%, rgb(0 0 0 / 0%) 100%);
}

    .genrator_qlty p {
        font-size: 15px;
    }

        .genrator_qlty p br {
            display: none;
        }

    .genrator_qlty span.glow-bullet {
        margin-top: 2px;
    }


/* login-page */


/* Section */
.login-section {
    height: calc(100vh - 78px);
    /* background: #f6fbfb; */
}

/* Image */
.login-image {
    max-width: 85%;
}

/* Form Box */
.login-box {
    max-width: 420px;
    margin: auto;
}

/* Button */
.btn-login {
    background: #005f6a;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
}

    .btn-login:hover {
        background: #004b54;
        color: #fff;
    }

/* Forgot Password */
.forgot-password {
    display: inline-block;
    font-size: 14px;
    color: #0d6efd;
    text-decoration: none;
    margin-bottom: 20px;
}

/* OR Divider */



/* Social Buttons */
.social-login {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    height: 42px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
}

    .social-btn.google {
        color: #db4437;
    }

    .social-btn.apple {
        color: #000;
    }

    .social-btn.facebook {
        color: #1877f2;
    }

/* dashboard */

/* Header */
.dashboard-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo span {
    color: #00a991;
}

/* Notification */
.notification-dot {
    width: 8px;
    height: 8px;
    background: red;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
}

/* Avatar placeholder */
.avatar-placeholder {
    background: #ddd;
    border-radius: 50%;
}

.avatar-placeholder {
    width: 40px;
    height: 40px;
    overflow: hidden;
}

    .avatar-placeholder img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.avatar-sm {
    width: 45px;
    height: 45px;
    overflow: hidden;
}

    .avatar-sm img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* Section */
.dashboard-section {
    padding: 30px;
}

    .dashboard-section h2 {
        font-size: 28px;
        font-weight: 700;
    }
/* Stats Card */
.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 110px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .stat-card p {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: #777;
    }

.table tr .status-green {
    color: #16a34a;
}

.table tr .status-red {
    color: #dc2626;
}

.table tr .status-yellow {
    color: #d97706;
}

.stat-card h4 {
    margin: 0;
    font-weight: 700;
}

.empty-card {
    background: #fff;
}

.export-btn {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 6px;
    background-color: aliceblue;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .export-btn:hover {
        background-color: rgb(201, 225, 247);
    }
/* Icon circle */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: none;
}

    .icon-circle.blue {
        background: #e1f2f4;
        color: #3ba6b3;
    }

    .icon-circle.yellow {
        background: #fff2d6;
        color: #ffb703;
    }

    .icon-circle.purple {
        background: #f1ecfb;
        color: #6c4ddc;
    }

    .icon-circle.red {
        background: #fdecea;
        color: #e5533d;
    }
/* Table */
.table-card {
    border-radius: 12px;
    padding: 35px 25px;
    overflow: hidden;
    margin-top: 50px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.table thead {
    background-color: #e5eff1;
    margin: 0 40px;
}

.table th {
    font-weight: 600;
    padding: 10px;
    background-color: #e5eff1;
}

.table tr td {
    padding: 18px 12px;
}

.table {
    border-collapse: separate;
    border-spacing: 0;
}

    .table thead th:first-child {
        border-radius: 12px 0 0 12px;
    }

    .table thead th:last-child {
        border-radius: 0 12px 12px 0;
    }

    .table td i {
        cursor: pointer;
    }

.card .card-header {
    padding: 0px;
    border-bottom: none;
    margin-bottom: 25px;
    background-color: #fff;
}

.card-header h5 {
    font-size: 24px;
    font-weight: 600;
}

.card-header h4 {
    align-items: center;
    font-size: 15px;
    font-weight: 600;
}
/* Popover custom card */
.popover {
    max-width: 320px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.popover-header {
    display: flex;
    justify-content: end;
    align-items: center;
    font-weight: 600;
    background: #e5eff1;
}

.popover-body {
    font-size: 14px;
}

.popover-close {
    cursor: pointer;
    font-size: 18px;
}
