﻿/*for home page Faqs Css*/
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}

    /* hide checkbox */
    .faq-item input {
        display: none;
    }

.faq-question {
    display: block;
    padding: 15px;
    background: #f8f9fa;
    cursor: pointer;
}

    .faq-question h5 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }

/* answer hidden */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    background: #ffffff;
    transition: all 0.35s ease;
}

/* open */
.faq-item input:checked ~ .faq-answer {
    max-height: 300px;
    padding: 15px;
}

/* button */
.center-btn {
    text-align: center;
    margin-top: 30px;
}

.default-btn {
    padding: 12px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/*for all pages header*/
.hero-section {
    /* Gradient from deep blue to light blue */
    background: linear-gradient(90deg, #0023a0 0%, #007bff 100%);
    color: white;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 
/*for copyrightFooter Css */
.footer-section {
    /* Gradient from deep blue to light blue */
    background:black;
    color: white;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/*For Product details Page Css */

/* SKELETON BASE */
.skeleton {
    background: linear-gradient( 90deg, #e0e0e0 25%, #f5f5f5 37%, #e0e0e0 63% );
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* TEXT SIZES */
.sk-text-sm {
    height: 14px;
    width: 45%;
}

.sk-h1 {
    height: 42px;
    width: 90%;
}

.sk-h2 {
    height: 28px;
    width: 75%;
}

.sk-p {
    height: 16px;
    width: 100%;
}

/* BUTTON */
.sk-btn {
    height: 46px;
    width: 180px;
    border-radius: 30px;
}

/* FORM */
.sk-form-title {
    height: 24px;
    width: 60%;
    margin: auto;
}

.sk-input {
    height: 42px;
    width: 100%;
}

.sk-textarea {
    height: 70px;
    width: 100%;
}

.sk-captcha {
    height: 35px;
    width: 110px;
}

/* MOBILE */
@media (max-width: 768px) {
    .sk-h1 {
        height: 32px;
    }

    .sk-h2 {
        height: 22px;
    }
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(90deg, #0b0f8f 0%, #0a6bdc 100%);
    display: flex;
    align-items: center;
}

/* LEFT CONTENT */
.hero-left h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-left h4 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 15px;
}

.hero-left p {
    font-size: 18px;
    max-width: 520px;
}

/* HERO BUTTON */
.hero-btn {
    background: blue;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

    .hero-btn:hover {
        background: blue;
    }

/* FORM CARD */
.demo-card {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

    /* INPUTS */
    .demo-card .form-control {
        border-radius: 12px;
        /*padding: 10px 14px;*/
        font-size: 14px;
    }

/* CAPTCHA */
.captcha-img {
    height: 35px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.refresh-icon {
    cursor: pointer;
    color: #0a6bdc;
    font-size: 18px;
}

/* SUBMIT BUTTON */
.submit-btn {
    background: blue;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
}

    .submit-btn:hover {
        background: blue;
    }

/* MOBILE */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 40px 0;
    }

    .hero-left h2 {
        font-size: 32px;
    }
}
 

/*Let use Help Service page Faq Css*/
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

    .faq-item input {
        display: none;
    }

.faq-question {
    display: block;
    padding: 15px 20px;
    background: #f2f2f2;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

    .faq-question:hover {
        background: #e0e0e0;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item input:checked ~ .faq-answer {
    max-height: 500px; /* adjust according to content */
    padding: 15px 20px;
}

.faq-answer p {
    margin: 0;
}
.faq-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.faq-column {
    flex: 1;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

    .faq-item input {
        display: none;
    }

.faq-question {
    display: block;
    padding: 15px 20px;
    background: #f2f2f2;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

    .faq-question:hover {
        background: #e0e0e0;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item input:checked ~ .faq-answer {
    max-height: 500px;
    padding: 15px 20px;
}

.faq-answer p {
    margin: 0;
}

@@media (max-width: 768px) {
    .faq-columns {
        flex-direction: column;
    }
}