/* Custom CSS */

.navbar {
    padding: 15px 0;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link:hover {
    color: #1E88E5;
}


.demo-btn {
    background-color: #1E88E5;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
}

.demo-btn:hover {
    background-color: #1976D2;
    color: white;
}



@media (max-width: 768px) { 
    .demo-btn {
        margin-top: 10px;
    }
}



/* homebanner */

.homebanner {
    background: linear-gradient(to right, #f0f8ff, #e6f2ff);
    padding: 80px 0;
    overflow: hidden;
}

.homebanner h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.homebanner h1 span {
    color: #0d6efd;
}

.homebanner p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.homebanner-btn {
    background-color: #0d6efd;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.homebanner-btn:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.homebanner-image {
    text-align: center;
}

@media (max-width: 991px) {
    .homebanner {
        padding: 50px 0;
        text-align: center;
    }

    .homebanner-image {
        margin-top: 40px;
    }

    .homebanner h1 {
        font-size: 2.3rem;
    }
}

/* about software */

.qms-section {
    background: linear-gradient(to bottom, #f0f8ff, #e6f2ff);
    padding: 80px 0;
}

.qms-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.qms-title span {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
    padding: 0 10px;
    border-radius: 5px;
}

.qms-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.qms-benefit {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.qms-benefit-icon {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-right: 10px;
    min-width: 24px;
}

.qms-benefit-text {
    font-size: 1rem;
    color: #333;
}

.qms-image {
    text-align: center;
}

.qms-image img {
    max-height: 500px;
}


@media (max-width: 991px) {
    .qms-section {
        padding: 50px 0;
    }

    .qms-image {
        margin-bottom: 40px;
    }

    .qms-title {
        font-size: 2rem;
        text-align: center;
    }

    .order-md-first {
        order: -1;
    }
}

/* how it works  */

.howitworks {
    background: linear-gradient(to bottom, #002244, #004488);
    color: white;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 30px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.page-header h1 span {
    background-color: rgba(30, 144, 255, 0.3);
    padding: 5px 15px;
    border-radius: 5px;
    color: #4a9eff;
}

.page-header p {
    font-size: 1.3rem;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop Timeline */
.desktop-timeline {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 50px;
    position: relative;
}

.desktop-timeline::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 80px;
    right: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%);
}

.timeline-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #0066cc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.step-number.active {
    background-color: white;
    color: #0066cc;
}

/* Mobile Timeline */
.mobile-timeline {
    display: none;
}

.mobile-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-step-content {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}

.mobile-number-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
}

.mobile-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0066cc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    z-index: 2;
}

.mobile-step-line {
    width: 2px;
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.4);
    margin-top: 5px;
}

.mobile-info-card {
    flex-grow: 1;
    background-color: rgba(10, 80, 150, 0.7);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.mobile-info-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.mobile-info-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Desktop Cards */
.info-card {
    background-color: rgba(10, 80, 150, 0.7);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .desktop-timeline::before {
        left: 50px;
        right: 50px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .desktop-view {
        display: none;
    }

    .mobile-timeline {
        display: block;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }
}

/* work flow */



.flow-container {
    padding: 80px 0;
}

.flow-section {
    padding: 50px 0;
}

.flow-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.flow-subheading {
    font-size: 2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.flow-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

.flow-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.flow-image:hover {
    transform: translateY(-5px);
}

.flow-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}




@media (max-width: 991px) {
    .flow-heading {
        font-size: 2.2rem;
    }

    .flow-subheading {
        font-size: 1.8rem;
    }

    .flow-section {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .flow-heading {
        font-size: 1.8rem;
    }

    .flow-subheading {
        font-size: 1.5rem;
    }

    .flow-mobile-margin {
        margin-top: 30px;
    }

    .flow-section {
        padding: 30px 0;
    }
}

/* promotion banner */


.promotion-banner {
    background-color: #1a56c7;
    background-image: linear-gradient(135deg, #1a56c7 0%, #0a3b9e 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.promotion-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/api/placeholder/1600/800');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.promotion-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.promotion-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.promotion-highlighted {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 6px;
    display: inline-block;
}

.promotion-description {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.promotion-button {
    background-color: white;
    color: #1a56c7;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.promotion-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .promotion-title {
        font-size: 2rem;
    }

    .promotion-description {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .promotion-title {
        font-size: 1.5rem;
    }

    .promotion-banner {
        padding: 40px 0;
    }
}

/* integration */
:root {
    --primary-color: #0275d8;
    --text-dark: #2d3748;
    --bg-light: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e4edf9 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-gradient);
    color: var(--text-dark);
}

.integHeader {
    padding: 2rem 0;
    text-align: center;
}

.integHeader h1 {
    font-weight: 700;
    font-size: 2.5rem;
}

.integHeader h1 span {
    color: var(--primary-color);
}

.integNavButton {
    background-color: #fff;
    border: 1px solid #dee2e6;
    padding: 12px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin: 5px;
    color: var(--text-dark);
}

.integNavButton:hover,
.integNavButton.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(2, 117, 216, 0.2);
}

.integContentArea {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    min-height: 400px;
}

.integIllustration {
    max-width: 100%;
    height: auto;
}

.integComponentHeader {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.integComponentDescription {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.integBlueLine {
    height: 3px;
    width: 80px;
    background-color: var(--primary-color);
    margin-top: 1.5rem;
}




.integFeatureBox {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.integFeatureBox:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.integFeatureBox i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.integHidden {
    display: none;
}

@media (max-width: 768px) {
    .integHeader h1 {
        font-size: 2rem;
    }

    .integContentArea {
        padding: 1.5rem;
    }

    .integComponentHeader {
        font-size: 1.5rem;
    }
}

/* benifits */

.benifits-section {
    background: linear-gradient(to right, #003973, #1e3c72);
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.benifits-heading {
    font-weight: bold;
    font-size: 2.5rem;
}

.benifits-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 0 10px;
    border-radius: 10px;
    color: #4aa7ff;
}

.benifits-card {
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    color: #fff;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benifits-card:hover {
    transform: translateY(-5px);
}

.benifits-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-right: 15px;
}

.benifits-card-title {
    font-weight: 600;
}

.benifits-section {
    padding: 60px 20px;
}

/* faq */



.faqqContainer {
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px;
}

.faqqHeader {
    text-align: center;
    margin-bottom: 50px;
}

.faqqHeader h1 {
    font-size: 40px;
    font-weight: 700;
}

.faqqHeader span {
    color: white;
}

.faqqHeader span.highlight {
    color: #4da6ff;
}

.faqqSubtext {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
}

.faqqItem {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faqqItem:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faqqQuestion {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
}

.faqqQuestion i {
    color: #4da6ff;
    transition: transform 0.3s ease;
}

.faqqQuestion.active i {
    transform: rotate(45deg);
}

.faqqAnswer {
    padding: 0 20px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, padding 0.6s ease;
}

.faqqAnswer.active {
    max-height: 300px;
    padding: 0 20px 20px 20px;
}

@media (max-width: 768px) {
    .faqqHeader h1 {
        font-size: 32px;
    }

    .faqqSubtext {
        font-size: 16px;
        padding: 0 15px;
    }

    .faqqQuestion {
        font-size: 16px;
        padding: 15px;
    }
}

/* contact us  */

.contactus-section {
    padding: 60px 20px;
    background-color: white;
}

.contactus-box {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contactus-left {
    background-color: #eaf4fb;
    padding: 40px 30px;
}

.contactus-left h5 {
    color: #007bff;
    font-weight: 600;
}

.contactus-left h2 {
    font-weight: 700;
}

.contactus-info i {
    color: #007bff;
    margin-right: 10px;
}

.contactus-right {
    background: linear-gradient(135deg, #0052a5, #004080);
    color: #fff;
    padding: 40px 30px;
}

.contactus-right .form-control,
.contactus-right .form-select {
    background: transparent;
    border: 1px solid #ccc;
    color: #fff;
}

.contactus-right .form-control::placeholder {
    color: #ccc;
}

.contactus-right .form-label {
    color: #fff;
    font-weight: 500;
}

.contactus-right .form-control:focus,
.contactus-right .form-select:focus {
    box-shadow: none;
    border-color: #fff;
}

@media (max-width: 768px) {

    .contactus-left,
    .contactus-right {
        padding: 30px 20px;
    }
}

/* footer */

.footer-section {
    background-color: #0052a5;
    color: #fff;
    padding: 60px 20px;
}

.footer-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    margin-top: 5px;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.7;
    color: #e6e6e6;
}

.footer-links ul {
    padding-left: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #e6e6e6;
}

.footer-contact i {
    font-size: 20px;
    margin-right: 10px;
    color: #fff;
}

.footer-contact .footer-item {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
}

.footer-contact .footer-item:first-child {
    border-top: none;
}

.footer-social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #0052a5;
    background: #fff;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social-icons a:hover {
    background-color: #e6e6e6;
    color: #0052a5;
}

@media (max-width: 767.98px) {
    .footer-section {
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }
}
