/* =========================
   GLOBAL
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fff;
    font-size: 16px;
    color: #212121;
}

/* =========================
   CONTAINERS
========================= */
.container,
.main-container,
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-container {
    width: 100%;
    padding: 48px 16px;
}

/* =========================
   NAVBAR
========================= */
nav {
    width: 100%;
    background: #fff;
    padding: 14px 0;
}

nav .container {
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    padding: 3px 6px;
    transition: color 0.2s;
}

nav ul li a.active {
    color: #304ffe;
}

/* =========================
   BLOG SECTION
========================= */
.blog-card {
    width: 410px;
    max-width: 100%;
    background: #f4f4f4;
    border: 1.5px solid #444;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    margin: 0 auto;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.blog-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 15px 6px 6px;
}

.blog-content h2 {
    font-size: 20px;
    line-height: 1.25;
    color: #3e4c63;
    margin-bottom: 10px;
    font-weight: bold;
}

.meta {
    color: #9c9c9c;
    font-size: 13px;
    margin-bottom: 14px;
}

.blog-content p {
    color: #5b5b5b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 19px;
}

.read-more {
    text-decoration: none;
    color: #4caf50;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s;
}

.read-more:hover {
    color: #2f8f34;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #3949c9;
    color: #fff;
    padding: 45px 10px 18px;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h2 {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: bold;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: padding-left 0.3s;
    display: inline-block;
}

.footer-links li a:hover {
    padding-left: 5px;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.5;
    color: #d9e0fc;
    padding: 0 16px;
}

.about-strip {
    background: #2543a9;
    color: #fff;
    margin: 30px 0 0 0;
    font-size: 28px;
    font-weight: bold;
    padding: 10px 0 10px 0;
    text-align: center;
    letter-spacing: 0.4px;
    border-radius: 3px 3px 0 0;
}

.about-content {
    background: #fff;
    /* border: 1px solid #d6daed; */
    border-top: none;
    /* padding: 25px 20px 30px 20px; */
    font-size: 15px;
    border-radius: 0 0 4px 4px;
}

.about-content strong {
    color: #1f258d;
    font-weight: 600;
}

.about-content ul {
    margin: 10px 0 15px 25px;
    padding: 0;
    font-size: 15px;
    color: #262626;
}

.about-content li {
    margin-bottom: 7px;
    list-style: disc;
}

.about-content h3 {
    color: #244790;
    font-size: 16px;
    margin: 24px 0 8px 0;
    font-weight: 700;
    letter-spacing: 0.1px;
}

.about-content p {
    margin: 9px 0 5px 0;
    color: #262626;
    font-size: 16px;
    line-height: 1.65;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {

    .main-container {
        padding: 28px 8px;
    }

    .footer-container {
        gap: 26px;
        padding: 0 12px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    nav ul {
        gap: 15px;
    }

    nav ul li a {
        font-size: 13px;
    }

    .main-container {
        padding: 18px 3px;
    }

    .blog-card {
        width: 100%;
    }

    .blog-img {
        height: 150px;
    }

    .blog-content h2 {
        font-size: 16px;
    }

    .meta {
        font-size: 11px;
    }

    .blog-content p {
        font-size: 13px;
    }

    .read-more {
        font-size: 13px;
    }

    .footer-container {
        flex-direction: column;
        gap: 18px;
        padding: 0 4px;
    }

    .footer-col h2 {
        font-size: 15px;
    }

    .footer-col p {
        font-size: 12px;
    }

    .footer-links li a {
        font-size: 12px;
    }

    .copyright {
        font-size: 11px;
        margin-top: 16px;
    }
}

/* contact us page */
.contact-section {
    width: 100%;
}

/* TOP BAR */

.contact-heading {
    background: #3949c9;
    color: #fff;
    padding: 12px 0;
    margin-top: 25px;
}

.contact-heading .container {
    width: 75%;
    margin: auto;
}

.contact-heading h1 {
    font-size: 30px;
    font-weight: 700;
}

/* FORM AREA */

.contact-container {
    width: 75%;
    margin: 40px auto 70px;
}

.form-group {
    margin-bottom: 38px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

/* INPUTS */

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #7c8592;
    background: #ececec;
    padding: 10px 12px;
    font-size: 18px;
    color: #333;
    border-radius: 4px;
    outline: none;
}

.form-group textarea {
    height: 80px;
    resize: vertical;
}

/* FOCUS */

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3949c9;
    box-shadow: 0 0 5px rgba(57, 73, 201, 0.3);
}

/* BUTTON */

.contact-btn {
    width: 100%;
    background: #3949c9;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #2f3fc0;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px) {

    .contact-heading .container,
    .contact-container {
        width: 88%;
    }

    .contact-heading h1 {
        font-size: 34px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .contact-heading .container,
    .contact-container {
        width: 92%;
    }

    .contact-heading {
        padding: 15px 0;
    }

    .contact-heading h1 {
        font-size: 30px;
    }

    .form-group {
        margin-bottom: 28px;
    }

    .form-group label {
        font-size: 18px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 12px 14px;
    }

    .contact-btn {
        font-size: 22px;
        padding: 14px;
    }
}


/* Terms and service  page */
.tos-container {
    background: #fff;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.04);

    margin: 36px auto;
    font-size: 1.06em;
}

.tos-container h1 {
    margin-top: 0;
    margin-bottom: 32px;
    font-size: 2.25em;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.tos-container p {
    margin-top: 0;
    margin-bottom: 26px;
    line-height: 1.7;
}

.tos-container h2 {
    margin-top: 38px;
    margin-bottom: 18px;
    font-size: 1.25em;
    font-weight: 600;
    color: #313135;
}

.tos-container ul {
    margin-left: 26px;
    margin-bottom: 28px;
}

.tos-container li {
    margin-bottom: 8px;
}

/* Lowes page */
.survey-hero {
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../image/bg.jpg') center center/cover no-repeat;
    position: relative;
    margin-bottom: 38px;
    margin-top: 20px;
}

.survey-hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 52, 102, 0.52);
    z-index: 1;
}

.survey-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 96vw;
    max-width: 560px;
}

.survey-hero-content h1 {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -1.2px;
    line-height: 1.13;
}

.survey-hero-btn {
    display: inline-block;
    padding: 13px 38px;
    font-size: 1.23em;
    background: rgb(17, 73, 137);
    border: 1px solid #fff;
    color: #fff;

    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 10px rgba(32, 56, 245, 0.08);
    cursor: pointer;
}

.survey-hero-btn:hover {
    background: #1f258d;
}

/* Responsive styles */
@media (max-width: 680px) {
    .survey-hero {
        min-height: 180px;
    }

    .survey-hero-content h1 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    .survey-hero-btn {
        font-size: 1em;
        padding: 10px 20px;
    }
}

/* Time line-- */
/* =========================
   SECTION TITLE
========================= */

.section-title {
    width: 100%;
    background: #3949c9;
    padding: 18px 20px;
}

.section-title h2 {
    max-width: 1100px;
    margin: auto;
    color: #fff;
    font-size: 28px;
    text-align: center;
    font-weight: 700;
}

/* =========================
   TIMELINE
========================= */

.timeline {
    position: relative;
    max-width: 1100px;
    margin: 70px auto;
    padding: 20px 0;
}

/* CENTER LINE */

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: #3b8be9;
}

/* TIMELINE ITEM */

.timeline-item {
    position: relative;
    width: 50%;
    padding: 10px 40px;
    margin-bottom: 70px;
}

/* LEFT */

.timeline-item.left {
    left: 0;
    text-align: right;
}

/* RIGHT */

.timeline-item.right {
    left: 50%;
}

/* CARD */

.timeline-content {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-content h3 {
    font-size: 20px;
    color: #3d3d3d;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #777;
}

/* ARROWS */

.left .timeline-content::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent #f7f7f7;
}

.right .timeline-content::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent #f7f7f7 transparent transparent;
}

/* DOT */

.timeline-dot {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #2d89e5;
    z-index: 10;
}

/* LEFT DOT */

.left .timeline-dot {
    right: -7px;
    transform: translateY(-50%);
}

/* RIGHT DOT */

.right .timeline-dot {
    left: -7px;
    transform: translateY(-50%);
}

/* LABEL */

.timeline-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #666;
}

/* LEFT LABEL */

.left .timeline-label {
    right: -70px;
}

/* RIGHT LABEL */

.right .timeline-label {
    left: -70px;
}

/* DARK DOTS */

.dark-dot {
    background: #333;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .section-title h2 {
        font-size: 20px;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        margin-bottom: 50px;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 18px !important;
        right: auto;
    }

    .timeline-label {
        left: 45px !important;
        top: -12px;
        transform: none;
        font-size: 14px;
    }

    .timeline-content::after {
        left: -10px !important;
        right: auto !important;
        border-width: 10px 10px 10px 0 !important;
        border-color: transparent #f7f7f7 transparent transparent !important;
    }

    .timeline-content {
        padding: 22px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .timeline-content p {
        font-size: 15px;
    }
}


/* img sec */
/* =========================
   COMMON SECTION TITLE
========================= */

.section-title {
    width: 100%;
    background: #3949c9;
    padding: 14px 20px;
}

.section-title h2 {
    max-width: 1100px;
    margin: auto;
    color: #fff;
    /* font-size: 36px; */
    font-weight: 700;
}

/* =========================
   MAIN SECTION
========================= */

.info-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* FLEX LAYOUT */

.info-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

/* TEXT */

.info-text {
    flex: 1;
}

.info-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
}

/* LIST */

.info-list {
    padding-left: 25px;
}

.info-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 14px;
    color: #000;
}

.info-list li strong {
    font-weight: 700;
}

/* IMAGE */

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    max-width: 430px;
    height: auto;
    display: block;
    object-fit: cover;
}

/* REVERSE SECTION */

.reverse {
    flex-direction: row-reverse;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px) {

    .section-title h2 {
        font-size: 30px;
    }

    .info-row {
        gap: 25px;
    }

    .info-list li,
    .info-text p {
        font-size: 17px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .section-title {
        padding: 12px 15px;
    }

    .section-title h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .info-section {
        padding: 30px 15px;
    }

    .info-row,
    .reverse {
        flex-direction: column;
    }

    .info-image img {
        max-width: 100%;
    }

    .info-list {
        padding-left: 20px;
    }

    .info-list li,
    .info-text p {
        font-size: 16px;
        line-height: 1.7;
    }
}


/* =========================
   CONTENT AREA
========================= */

.content-section {
    max-width: 1100px;
    margin: auto;
    padding: 35px 20px;
}

.content-box {
    background: #f8f8f8;
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

/* PARAGRAPH */

.content-box p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #444;
}

/* LIST */

.content-box ul {
    padding-left: 28px;
    margin-bottom: 25px;
}

.content-box ul li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* NUMBER TITLE */

.number-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-top: 25px;
    margin-bottom: 12px;
}

/* STEP BOX */

.steps {
    counter-reset: step;
}

.steps li {
    list-style: none;
    position: relative;
    padding-left: 48px;
    margin-bottom: 18px;
}

.steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 2px;
    width: 30px;
    height: 30px;
    background: #3949c9;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}

/* CONCLUSION */

.conclusion {
    border-left: 5px solid #3949c9;
    padding-left: 18px;
    margin-top: 20px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .section-title {
        padding: 12px 15px;
    }

    .section-title h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .content-section {
        padding: 25px 15px;
    }

    .content-box {
        padding: 22px;
    }

    .content-box p,
    .content-box ul li {
        font-size: 16px;
        line-height: 1.8;
    }

    .number-title {
        font-size: 20px;
    }

    .steps li {
        padding-left: 42px;
    }
}

/* FAQ */

.faq-title {
    width: 100%;
    background: #3949c9;
    padding: 14px 20px;
}

.faq-title h2 {
    max-width: 1200px;
    margin: auto;
    color: #fff;
    font-size: 28px;
    text-align: center;
    font-weight: 700;
}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

/* FAQ ITEM */

.faq-item {
    border-bottom: 3px solid #d0d0d0;
    padding: 24px 0;
}

/* QUESTION */

.faq-question {
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    user-select: none;
}

/* ICON */

.faq-icon {
    font-size: 16px;
    font-weight: bold;
    color: #212020;
    min-width: 25px;
    transition: 0.3s;
}

/* QUESTION TEXT */

.faq-question h3 {
    font-size: 22px;
    color: #000;
    font-weight: 700;
    transition: 0.3s;
}

/* ACTIVE QUESTION */

.faq-item.active .faq-question h3 {
    color: #3949c9;
}

/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 45px;
}

/* ANSWER TEXT */

.faq-answer p {
    font-size: 16px;
    line-height: 1.9;
    color: #222;
    margin-top: 28px;
    margin-bottom: 15px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .faq-title {
        padding: 12px 15px;
    }

    .faq-title h2 {
        font-size: 28px;
    }

    .faq-section {
        margin: 35px auto;
        padding: 0 15px;
    }

    .faq-item {
        padding: 18px 0;
    }

    .faq-question {
        gap: 12px;
        align-items: flex-start;
    }

    .faq-icon {
        font-size: 20px;
        margin-top: 2px;
    }

    .faq-question h3 {
        font-size: 20px;
        line-height: 1.5;
    }

    .faq-answer {
        padding-left: 32px;
    }

    .faq-answer p {
        font-size: 16px;
        line-height: 1.8;
        margin-top: 18px;
    }
}

/* Survey */

.lv-survey-topbar {
    width: 100%;
    margin: auto;
    max-width: 900px;
    /* background: #f3f3f3; */
    border-bottom: 1px solid #3152c8;
}

.lv-survey-header {
    max-width: 1000px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* =========================
   LOGO
========================= */

.lv-survey-logo img {
    width: 200px;
    max-width: 100%;
    display: block;
}

/* =========================
   LANGUAGE DROPDOWN
========================= */

.lv-language-box select {
    width: 210px;
    padding: 14px 16px;
    border: 1px solid #c2c2c2;
    border-radius: 5px;
    background: #fff;
    font-size: 18px;
    color: #222;
    outline: none;
    cursor: pointer;
}

/* =========================
   MAIN CONTENT
========================= */

.lv-survey-content {
    max-width: 860px;
    margin: 45px auto;
    padding: 0 20px;
}

.lv-survey-content p {
    font-size: 20px;
    line-height: 2;
    color: #2d2d2d;
    margin-bottom: 24px;
}

/* =========================
   LINKS
========================= */

.lv-survey-links {
    margin-top: 10px;
    margin-bottom: 60px;
}

.lv-survey-links a {
    display: block;
    width: fit-content;
    font-size: 18px;
    color: #2c39b8;
    text-decoration: underline;
    margin-bottom: 12px;
}

/* =========================
   BUTTON
========================= */

.lv-button-wrap {
    text-align: center;
}

.lv-next-btn {
    width: 100%;
    max-width: 420px;
    background: #2c72c8;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 18px;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.lv-next-btn:hover {
    background: #1d5ea9;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px) {

    .lv-survey-content {
        max-width: 90%;
    }

    .lv-survey-content p {
        font-size: 18px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .lv-survey-header {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .lv-survey-logo img {
        width: 220px;
    }

    .lv-language-box select {
        width: 180px;
        font-size: 16px;
        padding: 12px;
    }

    .lv-survey-content {
        margin: 30px auto;
        padding: 0 15px;
    }

    .lv-survey-content p {
        font-size: 17px;
        line-height: 1.9;
    }

    .lv-survey-links a {
        font-size: 16px;
    }

    .lv-next-btn {
        font-size: 18px;
        padding: 15px;
    }
}