﻿/* Home Page Styles */

/* General Styles */
section {
    position: relative;
}

.subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0d6efd;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    color: #212529;
}

    .section-title::after {
        content: '';
        display: block;
        width: 70px;
        height: 4px;
        background: #0d6efd;
        margin: 15px auto 0;
    }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 30, 80, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%), url('/images/home/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 8rem 0 12rem;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    background-color: rgba(13, 110, 253, 0.2);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-section h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-cta .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.hero-stats {
    margin-top: 3rem;
}

.hero-stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-shape-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

/* Trusted By Section */
.trusted-by-section {
    background-color: #fff;
    padding: 4rem 0;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

    .client-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }

    .client-logo img {
        max-height: 60px;
        max-width: 100%;
    }

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.service-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

    .service-icon i {
        font-size: 2rem;
        color: #0d6efd;
    }

.service-card:hover .service-icon {
    background-color: #0d6efd !important;
}

    .service-card:hover .service-icon i {
        color: #fff;
    }

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
}

.service-features {
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.btn-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .btn-link i {
        margin-left: 0.5rem;
        transition: all 0.3s ease;
    }

    .btn-link:hover {
        color: #0a58ca;
    }

        .btn-link:hover i {
            transform: translateX(5px);
        }

/* Background colors */
.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1);
}

.bg-info-soft {
    background-color: rgba(13, 202, 240, 0.1);
}

.bg-danger-soft {
    background-color: rgba(220, 53, 69, 0.1);
}

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.1);
}

.bg-purple-soft {
    background-color: rgba(111, 66, 193, 0.1);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
}

.why-choose-image {
    position: relative;
}

.experience-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: 2;
}

.experience-years {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #0d6efd;
}

    .experience-years .plus {
        font-size: 1.5rem;
        vertical-align: super;
    }

.experience-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: #6c757d;
}

.feature-box {
    position: absolute;
    top: 30px;
    right: -20px;
    z-index: 2;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.why-choose-items {
    margin-top: 2rem;
}

.why-choose-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 1.5rem;
}
/* Enhanced Process Section Styles */
.process-timeline-enhanced {
    padding: 30px 0;
}

.process-connector {
    position: absolute;
    top: 120px;
    left: 50%;
    width: 4px;
    height: calc(100% - 240px);
    background: linear-gradient(180deg, #0d6efd 0%, rgba(13, 110, 253, 0.3) 100%);
    transform: translateX(-50%);
    z-index: 0;
    border-radius: 4px;
}

.process-item-enhanced {
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
}

.process-step-enhanced {
    width: 80px;
    height: 80px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.1);
}

.process-step-inner {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.process-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .process-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.process-icon-container {
    margin-bottom: 15px;
    position: relative;
}

.process-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0d6efd;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background-color: #0d6efd;
    color: white;
    transform: rotateY(180deg);
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212529;
}

.process-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Animation for process cards */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
}

.process-card:hover {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .process-connector {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-step-enhanced {
        width: 70px;
        height: 70px;
    }

    .process-step-inner {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .process-card {
        padding: 20px;
    }

    .process-item-enhanced {
        margin-bottom: 30px;
    }
}
/* Enhanced FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.faq-wrapper {
    margin-bottom: 2rem;
}

.faq-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230d6efd' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

/* Floating Badges */
.faq-badge {
    position: absolute;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0d6efd;
    z-index: 3;
    display: flex;
    align-items: center;
}

    .faq-badge i {
        margin-right: 8px;
    }

.faq-badge-1 {
    top: 30px;
    right: -10px;
}

.faq-badge-2 {
    bottom: 40px;
    left: -15px;
}

/* FAQ Container */
.faq-container {
    position: relative;
    z-index: 2;
}

/* FAQ Item Styling */
.faq-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .faq-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

.faq-button {
    position: relative;
    width: 100%;
    padding: 1.25rem;
    text-align: left;
    border: none;
    background-color: white;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 600;
    cursor: pointer;
    color: #212529;
}

    .faq-button:not(.collapsed) {
        background-color: #0d6efd;
        color: white;
    }

.faq-question-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #0d6efd;
}

.faq-button:not(.collapsed) .faq-question-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.faq-question-text {
    flex-grow: 1;
    font-size: 1.1rem;
}

.faq-arrow {
    margin-left: 15px;
    transition: all 0.3s ease;
    color: #6c757d;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-button:not(.collapsed) .faq-arrow {
    transform: rotate(-180deg);
    color: white;
}

/* FAQ Answer Styling */
.faq-answer {
    padding: 1.5rem;
    background-color: white;
    color: #555;
}

.faq-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

    .faq-list li {
        padding: 0.5rem 0;
        display: flex;
        align-items: start;
    }

        .faq-list li i {
            margin-right: 10px;
            margin-top: 5px;
            font-size: 0.9rem;
        }

.faq-note {
    padding: 1rem;
    background-color: rgba(13, 110, 253, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: start;
    border-left: 4px solid #0d6efd;
}

    .faq-note i {
        margin-right: 10px;
        margin-top: 3px;
    }

.faq-highlight {
    padding: 1rem;
    background-color: rgba(25, 135, 84, 0.05);
    border-radius: 8px;
    font-weight: 600;
    border-left: 4px solid #198754;
    margin-top: 1rem;
}

/* FAQ Timeline Component */
.faq-timeline {
    position: relative;
    margin: 20px 0 30px;
    padding-left: 30px;
}

    .faq-timeline:before {
        content: '';
        position: absolute;
        left: 10px;
        top: 15px;
        height: calc(100% - 30px);
        width: 2px;
        background: linear-gradient(180deg, #0d6efd 0%, rgba(13, 110, 253, 0.3) 100%);
    }

.faq-timeline-item {
    position: relative;
    margin-bottom: 20px;
    display: flex;
}

.faq-timeline-icon {
    position: absolute;
    left: -30px;
    width: 20px;
    height: 20px;
    background-color: #0d6efd;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    z-index: 1;
}

.faq-timeline-content {
    padding-left: 15px;
}

    .faq-timeline-content h6 {
        margin-bottom: 0.3rem;
        font-weight: 600;
        color: #0d6efd;
    }

    .faq-timeline-content p {
        margin-bottom: 0;
        font-size: 0.9rem;
    }

/* FAQ Result Time Component */
.faq-result-time {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    text-align: center;
}

.faq-time {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1;
}

    .faq-time span {
        font-size: 1rem;
        font-weight: 500;
    }

.faq-time-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* FAQ Warranty Cards */
.faq-warranty-cards {
    margin: 1.5rem 0;
}

.faq-warranty-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

    .faq-warranty-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

.warranty-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.warranty-title {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.warranty-duration {
    color: #198754;
    font-size: 0.9rem;
}

/* FAQ Process Steps */
.faq-process {
    counter-reset: process-steps;
    position: relative;
    margin: 1.5rem 0;
}

.faq-process-step {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.step-content {
    padding-top: 2px;
}

    .step-content h6 {
        margin-bottom: 0.3rem;
        font-weight: 600;
    }

    .step-content p {
        margin-bottom: 0;
        font-size: 0.9rem;
    }

/* FAQ CTA */
.faq-cta {
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-cta-text {
    font-weight: 500;
}

@media (max-width: 767px) {
    .faq-badge {
        display: none;
    }

    .faq-button {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-question-icon {
        margin-bottom: 10px;
    }

    .faq-arrow {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .faq-result-time {
        flex-direction: column;
    }

    .faq-result-time-item {
        margin-bottom: 15px;
    }

    .faq-cta {
        flex-direction: column;
    }

    .faq-cta-text {
        margin-bottom: 15px;
    }
}
.knowledge-card {
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    overflow: hidden;
}

    .knowledge-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
    }

.knowledge-image {
    position: relative;
    overflow: hidden;
}

    .knowledge-image img {
        transition: transform 0.5s ease;
        height: 200px;
        width: 100%;
        object-fit: cover;
    }

.knowledge-card:hover .knowledge-image img {
    transform: scale(1.05);
}

.knowledge-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.knowledge-content {
    background: #fff;
    border-radius: 0 0 10px 10px;
}

    .knowledge-content h3 {
        font-weight: 700;
        line-height: 1.4;
    }

.knowledge-meta {
    font-size: 0.85rem;
    color: #777;
}

.btn-link.disabled {
    color: #aaa;
    pointer-events: none;
}

    .btn-link.disabled i {
        display: none;
    }

@media (max-width: 992px) {
    .knowledge-image img {
        height: 180px;
    }
}