* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f7fa;
}

/* TOP BAR */
.top-bar {
    background: #0a7c3a;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

/* HEADER */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 45px;
}

/* DESKTOP MENU */
.desktop-menu {
    display: flex;
    gap: 25px;
}

.desktop-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* MENU ICON */
.menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* SIDE MENU */
.side-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.side-menu.active {
    right: 0;
}

/* OVERLAY (FIXED) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* SIDE MENU LINKS */
.menu-links {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.menu-links a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* BUTTON AREA */
.menu-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-call,
.menu-whatsapp {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
}

.menu-call {
    background: #0a7c3a;
    color: #fff;
}

.menu-whatsapp {
    background: #25D366;
    color: #fff;
}

/* CLOSE BTN */
.close-btn {
    font-size: 20px;
    cursor: pointer;
    align-self: flex-end;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #0b5ed7 0%, #198754 100%);
    color: #fff;
    position: relative;
    overflow: hidden;

    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 40px 0;
}

/* GLOW */
.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    filter: blur(80px);
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    filter: blur(60px);
}

/* HERO LAYOUT */
.hero-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 750px;
    z-index: 2;
}

/* heading */
.hero-text h1 {
    font-size: 40px;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
}
/* buttons */
.hero-buttons {
    margin-bottom: 15px;
}
.hero-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 5px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

/* button styles */
.btn-call {
    background: #fff;
    color: #0b5ed7;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-call:hover {
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp svg {
    margin-right: 6px;
}

/* IMAGE */
.hero-img img {
    width: 100%;
    max-width: 420px;
    border-radius: 10px;
}

/* trust */
.trust {
    font-size: 14px;
    opacity: 0.95;
}

/* FOOTER */
.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.disclaimer {
    font-size: 13px;
    color: #aaa;
    margin-top: 10px;
}

/* ================= MOBILE ================= */
@media(max-width:768px) {

    .desktop-menu {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .hero {
        min-height: calc(100vh - 90px);
        padding: 20px 0;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .hero-text p {
        font-size: 13px;
    }

    .hero-buttons a {
        padding: 8px 12px;
        font-size: 13px;
    }

    .hero-img img {
        max-width: 240px;
        margin-top: 10px;
    }

    .trust {
        font-size: 12px;
    }

}


/* PROCESS SECTION */
.process-section {
    padding: 60px 0;
    background: #fff;
}

.process-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.process-section .intro {
    text-align: center;
    max-width: 750px;
    margin: auto;
    font-size: 15px;
    margin-bottom: 40px;
    color: #555;
}

/* GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* BOX */
.process-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.process-box:hover {
    transform: translateY(-5px);
}

.process-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #0b5ed7;
}

.process-box p {
    font-size: 14px;
    color: #444;
}

/* CTA */
.process-cta {
    margin-top: 40px;
    text-align: center;
    background: linear-gradient(135deg, #0b5ed7, #198754);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.process-cta h3 {
    margin-bottom: 10px;
}

.process-cta p {
    margin-bottom: 15px;
}

.process-cta a {
    margin: 5px;
}

/* MOBILE */
@media(max-width:768px) {

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-section h2 {
        font-size: 22px;
    }

}

/* CHARGES SECTION */
.charges-section {
    padding: 60px 0;
    background: #f5f7fa;
}

.charges-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.charges-intro {
    text-align: center;
    max-width: 750px;
    margin: auto;
    font-size: 15px;
    margin-bottom: 30px;
    color: #555;
}

/* TABLE */
.charges-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.charges-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.charges-row.header {
    background: #0b5ed7;
    color: #fff;
    font-weight: bold;
}

.charges-row:last-child {
    border-bottom: none;
}

/* NOTE */
.charges-note {
    margin-top: 20px;
    background: #fff3cd;
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
}

/* CTA */
.charges-cta {
    margin-top: 30px;
    text-align: center;
    background: linear-gradient(135deg, #0b5ed7, #198754);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.charges-cta h3 {
    margin-bottom: 10px;
}

.charges-cta p {
    margin-bottom: 15px;
}

.charges-cta a {
    margin: 5px;
}

/* MOBILE */
@media(max-width:768px) {

    .charges-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .charges-section h2 {
        font-size: 22px;
    }

}


/* SEO CONTENT SECTION */
.seo-content-section {
    padding: 70px 0;
    background: #fff;
}

.seo-content-section h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.seo-intro {
    text-align: center;
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* BLOCK DESIGN */
.seo-block {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: 0.3s;
    border-left: 5px solid #0b5ed7;
}

.seo-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.seo-block h3 {
    margin-bottom: 10px;
    color: #0b5ed7;
    font-size: 20px;
}

.seo-block p {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* CTA */
.seo-cta {
    margin-top: 40px;
    text-align: center;
    background: linear-gradient(135deg, #0b5ed7, #198754);
    color: #fff;
    padding: 35px;
    border-radius: 10px;
}

.seo-cta h3 {
    margin-bottom: 10px;
}

.seo-cta p {
    margin-bottom: 15px;
}

.seo-cta a {
    margin: 5px;
}

/* MOBILE */
@media(max-width:768px) {

    .seo-content-section h2 {
        font-size: 22px;
    }

    .seo-block h3 {
        font-size: 16px;
    }

    .seo-intro {
        font-size: 14px;
    }

}

.about-section {
    padding: 60px 0;
    background: #fff;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about-section h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #0b5ed7;
}

.about-section p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.about-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.about-section li {
    margin-bottom: 8px;
}


.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 15px;
    text-align: left;
    border: none;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 18px;
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    padding: 0 15px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px;
}





















.seo-footer {
    background: #0f172a;
    color: #fff;
    padding: 40px 20px 10px;
    font-family: Arial, sans-serif;
}

/* ================= MAIN 3 COLUMN LAYOUT ================= */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

/* ================= EACH BOX ================= */
.footer-box {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

/* ================= HEADING ================= */
.footer-box h3 {
    margin-bottom: 15px;
    color: #22c55e;
    font-size: 18px;
}

/* ================= TEXT ================= */
.footer-box p,
.footer-box a {
    color: #ddd;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin: 6px 0;
    line-height: 1.6;
}

/* ================= LINK HOVER ================= */
.footer-box a:hover {
    color: #22c55e;
}

/* ================= BOTTOM COPYRIGHT FULL WIDTH ================= */
.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding: 15px 10px;
    border-top: 1px solid #334155;
    font-size: 13px;
    color: #94a3b8;
}

/* ================= OPTIONAL CLEAN STYLE ================= */
.footer-box strong {
    color: #22c55e;
}





















/* ================= GLOBAL ================= */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f5f7fb;
    color: #111827;
}

/* ================= SECTION ================= */
.fc-section {
    padding: 70px 20px;
    background: #ffffff;
}

/* ================= CONTAINER ================= */
.fc-container {
    max-width: 1100px;
    margin: auto;
}

/* ================= HEADER ================= */
.fc-header {
    text-align: center;
    margin-bottom: 40px;
}

.fc-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #0f172a;
}

.fc-header p {
    font-size: 16px;
    color: #475569;
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
}

/* ================= GRID ================= */
.fc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ================= BOX ================= */
.fc-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
}

.fc-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* FULL WIDTH BOX */
.fc-box.full {
    grid-column: span 2;
}

/* HEADINGS */
.fc-box h3 {
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 18px;
}

/* TEXT */
.fc-box p,
.fc-box li {
    color: #334155;
    line-height: 1.7;
    font-size: 15px;
}

/* LIST */
.fc-box ul,
.fc-box ol {
    padding-left: 18px;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 768px) {
    .fc-grid {
        grid-template-columns: 1fr;
    }

    .fc-box.full {
        grid-column: span 1;
    }
}



.bank-fc {
    background: #f8fafc;
    padding: 70px 20px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.bank-container {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #0f172a;
}

.bank-header {
    text-align: left;
    margin-bottom: 30px;
}

.bank-header h2 {
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 10px;
}

.bank-header p {
    color: #475569;
    line-height: 1.7;
}

.bank-content h3 {
    margin-top: 25px;
    color: #111827;
    font-size: 20px;
    border-left: 4px solid #22c55e;
    padding-left: 10px;
}

.bank-content p {
    color: #334155;
    line-height: 1.8;
    font-size: 15px;
}

.bank-content ul,
.bank-content ol {
    padding-left: 20px;
    line-height: 1.8;
    color: #334155;
}


body {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f7fb;
}






/* SEO AUTHORITY SECTION */
.seo-authority-section {
    padding: 80px 20px;
    background: #fff;
}

.seo-authority-section .container {
    max-width: 1200px;
    margin: auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 38px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-heading p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 950px;
    margin: auto;
}

.seo-content-long h3 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 18px;
    font-weight: 700;
}

.seo-content-long p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

.seo-content-long ul {
    padding-left: 22px;
    margin-bottom: 25px;
}

.seo-content-long ul li {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 10px;
    color: #444;
}

@media(max-width:768px) {

    .section-heading h2 {
        font-size: 28px;
    }

    .seo-content-long h3 {
        font-size: 24px;
    }

    .seo-content-long p,
    .seo-content-long ul li {
        font-size: 16px;
    }
}





/* ================================
   CONTACT SECTION ADVANCE UI
================================ */

.contact-section {
    padding: 90px 20px;
    background: #f7f9fc;
}

.contact-section .container {
    max-width: 1250px;
    margin: auto;
}

/* HEADER */

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-badge {
    display: inline-block;
    padding: 10px 22px;
    background: #e8f0ff;
    color: #0d4dff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-header h2 {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 800;
    color: #111;
}

.contact-header p {
    max-width: 950px;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: #555;
}

/* GRID */

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 35px;
    align-items: start;
}

/* FORM CARD */

.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.card-top h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #111;
}

.card-top p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

/* FORM */

.advanced-contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    font-size: 15px;
    background: #fff;
    transition: 0.3s;
    outline: none;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: #0d4dff;
    box-shadow: 0 0 0 4px rgba(13, 77, 255, 0.08);
}

/* BUTTON */

.submit-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 14px;
    background: #0d4dff;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* RIGHT SIDE */

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* INFO CARD */

.info-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #111;
}

.info-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* INFO ITEMS */

.info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-item span {
    font-size: 26px;
    line-height: 1;
}

.info-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
    color: #111;
}

.info-item a {
    color: #0d4dff;
    text-decoration: none;
    font-weight: 600;
}

.info-item p {
    margin: 0;
    line-height: 1.7;
    color: #555;
}

/* QUICK SUPPORT */

.quick-support-box {
    background: linear-gradient(135deg, #0d4dff, #0037c7);
    padding: 35px;
    border-radius: 24px;
    color: #fff;
}

.quick-support-box h4 {
    font-size: 28px;
    margin-bottom: 18px;
}

.quick-support-box p {
    line-height: 1.8;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.call-btn,
.whatsapp-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 15px;
    transition: 0.3s;
}

.call-btn {
    background: #fff;
    color: #0d4dff;
}

.whatsapp-btn {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.call-btn:hover,
.whatsapp-btn:hover {
    transform: translateY(-2px);
}

/* SEO CONTENT */

.contact-seo-content {
    margin-top: 70px;
    background: #fff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.contact-seo-content h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #111;
}

.contact-seo-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-header h2 {
        font-size: 34px;
    }

    .advanced-contact-form .form-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .contact-form-card,
    .info-card,
    .quick-support-box,
    .contact-seo-content {
        padding: 28px;
    }

    .contact-header h2 {
        font-size: 28px;
    }

    .card-top h3,
    .info-card h3,
    .quick-support-box h4,
    .contact-seo-content h3 {
        font-size: 24px;
    }

    .contact-header p,
    .contact-seo-content p,
    .info-card p {
        font-size: 16px;
    }
}

.map-box iframe {
    width: 100%;
    border: 0;
    display: block;
}

html,
body {
    overflow-x: hidden;
}



/* CONTACT PAGE MOBILE FIX */

html,
body {
    overflow-x: hidden;
}

.contact-main-grid {
    width: 100%;
    overflow: hidden;
}

.contact-form-card,
.info-card,
.quick-support-box,
.contact-seo-content {
    width: 100%;
    max-width: 100%;
}

input,
textarea,
select {
    width: 100%;
    max-width: 100%;
}

.submit-btn {
    word-break: break-word;
    white-space: normal;
    line-height: 1.5;
}

.map-box iframe {
    width: 100%;
    display: block;
    border: 0;
}

@media(max-width:768px) {

    .contact-section {
        padding: 50px 12px;
    }

    .contact-header h2 {
        font-size: 26px;
        line-height: 1.4;
    }

    .contact-header p {
        font-size: 15px;
        line-height: 1.8;
    }

    .contact-form-card,
    .info-card,
    .quick-support-box,
    .contact-seo-content {
        padding: 20px;
        border-radius: 16px;
    }

    .advanced-contact-form .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .card-top h3,
    .info-card h3,
    .quick-support-box h4,
    .contact-seo-content h3 {
        font-size: 21px;
        line-height: 1.5;
    }

}


/* =========================
CONTACT PAGE MOBILE FIX
========================= */

.contact-section,
.contact-main-grid,
.contact-form-card,
.info-card,
.quick-support-box,
.contact-seo-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* GRID FIX */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* INPUT FIX */
.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    max-width: 100%;
}

/* MOBILE FIX */
@media(max-width:768px) {

    .contact-section {
        padding: 50px 15px;
    }

    .contact-section .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-card,
    .info-card,
    .quick-support-box,
    .contact-seo-content {
        padding: 20px;
        border-radius: 16px;
    }

    .contact-header h2 {
        font-size: 26px;
        line-height: 1.4;
    }

    .contact-header p {
        font-size: 15px;
        line-height: 1.8;
    }

    .card-top h3,
    .info-card h3,
    .quick-support-box h4,
    .contact-seo-content h3 {
        font-size: 22px;
        line-height: 1.4;
    }

    .advanced-contact-form .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .input-group input,
    .input-group textarea,
    .input-group select {
        padding: 14px;
        font-size: 14px;
    }

    .submit-btn,
    .call-btn,
    .whatsapp-btn {
        padding: 14px;
        font-size: 15px;
    }

    .info-item {
        gap: 12px;
    }

    .info-item span {
        font-size: 22px;
    }

    .info-item strong {
        font-size: 15px;
    }

    .info-item p,
    .info-item a {
        font-size: 14px;
        word-break: break-word;
    }
}






/* ===================================
ABOUT PAGE ADVANCED UI DESIGN
=================================== */

/* MAIN SECTION */

.about-advanced-section {
    padding: 90px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.about-wrapper {
    max-width: 1200px;
    margin: auto;
}

.about-content {
    width: 100%;
}

/* BADGE */

.about-badge {
    display: inline-block;
    background: #e8f0ff;
    color: #0d4dff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* HEADING */

.about-content h2 {
    font-size: 48px;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 25px;
    font-weight: 800;
    max-width: 900px;
}

/* INTRO */

.about-intro {
    font-size: 18px;
    line-height: 2;
    color: #4b5563;
    max-width: 1000px;
    margin-bottom: 50px;
}

/* GRID */

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */

.about-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    border: 1px solid #edf2f7;
}

.about-card:hover {
    transform: translateY(-6px);
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #111827;
    font-weight: 700;
}

.about-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #4b5563;
}

/* LONG SEO SECTION */

.about-seo-section {
    padding: 90px 20px;
    background: #ffffff;
}

.about-seo-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

.about-seo-header {
    text-align: center;
    margin-bottom: 60px;
}

.seo-mini-badge {
    display: inline-block;
    background: #ecfdf3;
    color: #16a34a;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-seo-header h2 {
    font-size: 46px;
    line-height: 1.4;
    color: #111827;
    max-width: 1000px;
    margin: auto;
    font-weight: 800;
}

/* LONG CONTENT */

.about-long-content {
    background: #f9fbff;
    padding: 60px;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

/* PARAGRAPH */

.about-long-content p {
    font-size: 18px;
    line-height: 2;
    color: #4b5563;
    margin-bottom: 28px;
}

/* HEADINGS */

.about-long-content h3 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #111827;
    font-weight: 700;
    position: relative;
    padding-left: 18px;
}

.about-long-content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 34px;
    background: #0d4dff;
    border-radius: 20px;
}

/* LIST */

.about-long-content ul {
    padding-left: 25px;
    margin-bottom: 30px;
}

.about-long-content ul li {
    font-size: 17px;
    line-height: 2;
    color: #4b5563;
    margin-bottom: 10px;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2,
    .about-seo-header h2 {
        font-size: 36px;
    }

    .about-long-content {
        padding: 40px;
    }
}

@media(max-width:768px) {

    .about-advanced-section,
    .about-seo-section {
        padding: 60px 15px;
    }

    .about-content h2,
    .about-seo-header h2 {
        font-size: 28px;
        line-height: 1.5;
    }

    .about-intro,
    .about-long-content p,
    .about-long-content ul li {
        font-size: 16px;
        line-height: 1.9;
    }

    .about-card {
        padding: 25px;
        border-radius: 18px;
    }

    .about-card h3 {
        font-size: 22px;
    }

    .about-long-content {
        padding: 25px;
        border-radius: 18px;
    }

    .about-long-content h3 {
        font-size: 24px;
        padding-left: 14px;
    }

    .about-long-content h3::before {
        height: 28px;
    }
}













/* ===================================
   GLOBAL FLOATING CALL BUTTON
=================================== */

.global-call-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999999;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 12px 18px;

    text-decoration: none;

    border-radius: 80px;

    background:
        linear-gradient(135deg, #ff6b00, #ff9500);

    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(255, 107, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);

    transition: all .35s ease;

    animation: callFloat 3s ease-in-out infinite;
}

/* HOVER */

.global-call-btn:hover {
    transform: translateY(-6px) scale(1.03);

    box-shadow:
        0 18px 45px rgba(255, 107, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* ICON */

.global-call-icon {
    width: 58px;
    height: 58px;

    min-width: 58px;

    border-radius: 50%;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.global-call-icon img {
    width: 28px;
    height: 28px;

    animation: callShake 2s infinite;
}

/* TEXT */

.global-call-content {
    display: flex;
    flex-direction: column;

    line-height: 1.2;

    position: relative;
    z-index: 2;
}

.global-call-content small {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    opacity: .95;
}

.global-call-content strong {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .2px;
}

/* RIPPLE EFFECT */

.global-call-ripple {
    position: absolute;

    width: 100%;
    height: 100%;

    left: 0;
    top: 0;

    border-radius: 80px;

    background: rgba(255, 255, 255, 0.16);

    animation: rippleEffect 3s linear infinite;

    z-index: 1;
}

.ripple-two {
    animation-delay: 1.5s;
}

/* FLOAT */

@keyframes callFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }

}

/* RIPPLE */

@keyframes rippleEffect {

    0% {
        transform: scale(1);
        opacity: .7;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }

}

/* SHAKE */

@keyframes callShake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-12deg);
    }

    40% {
        transform: rotate(12deg);
    }

    60% {
        transform: rotate(-10deg);
    }

    80% {
        transform: rotate(10deg);
    }

}

/* MOBILE */

@media(max-width:768px) {

    .global-call-btn {
        right: 14px;
        bottom: 14px;

        padding: 10px 14px;
        gap: 10px;
    }

    .global-call-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .global-call-icon img {
        width: 24px;
        height: 24px;
    }

    .global-call-content strong {
        font-size: 15px;
    }

    .global-call-content small {
        font-size: 10px;
    }

}







