body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background: #ffffff;
}

/* NAVBAR */
/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #0d6efd;
}

.navbar nav {
    display: flex;
    align-items: center;
}

.navbar a {
    color: #333;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

/* Active link */
.navbar a.active {
    color: #0d6efd;
}

.navbar a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0d6efd;
}

/* CTA button */
.nav-btn {
    margin-left: 30px;
    padding: 8px 18px;
    background: #0d6efd;
    color: #fff !important;
    border-radius: 4px;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 100px;        /* 🔥 INCREASE THIS */
    width: auto;
}

.logo-text {
    font-size: 22px;     /* Brand presence */
    font-weight: 700;
    color: #0d6efd;
    letter-spacing: 0.5px;
}




.navbar a {
    color: #333;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
}

.nav-btn {
    padding: 8px 16px;
    background: #0d6efd;
    color: #fff !important;
    border-radius: 4px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 90px 20px;
    background: #f5f8ff;
}

.hero h1 {
    font-size: 42px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 15px auto;
}

.hero-buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 26px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 26px;
    margin-left: 10px;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    text-decoration: none;
    border-radius: 5px;
}

/* TRUSTED SECTION */
.trusted {
    text-align: center;
    padding: 70px 40px;
    background: #ffffff;
}

.trusted h2 {
    font-size: 26px;
    margin-bottom: 30px;
}

.trusted img {
    max-width: 100%;
    opacity: 0.8;
}

/* SERVICES */
.services {
    padding: 70px 60px;
    text-align: center;
}

.services h2 {
    font-size: 32px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    text-align: left;
}

/* TECHNICAL */
.technical {
    background: #f1f1f1;
    padding: 70px 60px;
}

.technical h2 {
    text-align: center;
    font-size: 32px;
}

.technical ul {
    max-width: 700px;
    margin: 30px auto 0;
    list-style: none;
    padding: 0;
}

.technical li {
    margin: 12px 0;
    font-size: 16px;
}

/* CTA */
.cta {
    text-align: center;
    padding: 70px 20px;
    background: #0d6efd;
    color: #fff;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 18px;
    background: #222;
    color: #aaa;
}

/* COVERAGE PAGE */
.coverage {
    padding: 80px 60px;
    background: #ffffff;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.coverage-card {
    background: #f9fbff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.coverage-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #0d6efd;
}

.coverage-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* CONTACT PAGE */
.contact {
    padding: 80px 60px;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form h2,
.contact-info h2 {
    margin-bottom: 20px;
}

.contact-form form input,
.contact-form form select,
.contact-form form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 12px;
    font-size: 15px;
}

.contact-note {
    margin-top: 20px;
    font-style: italic;
    color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* PRICING PAGE */
.pricing {
    padding: 80px 60px;
    text-align: center;
    background: #ffffff;
}

.pricing h2 {
    font-size: 32px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #f9fbff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    text-align: left;
}

.pricing-card h3 {
    margin-bottom: 12px;
    color: #0d6efd;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.pricing-card li {
    margin-bottom: 10px;
    font-size: 14px;
}

/* SERVICES PAGE */
.services-detail {
    padding: 80px 60px;
}

.service-row {
    padding: 60px 0;
}

.service-row.alt {
    background: #f9fbff;
    margin-left: -60px;
    margin-right: -60px;
    padding-left: 60px;
    padding-right: 60px;
}

.service-text {
    max-width: 800px;
}

.service-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #0d6efd;
}

.service-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-text ul {
    list-style: none;
    padding: 0;
}

.service-text li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
    .service-row.alt {
        margin: 0;
        padding: 40px 0;
    }
}

/* MOBILE NAVBAR */
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        padding: 15px 20px;
    }

    .navbar nav {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar a {
        margin: 8px 12px;
    }

    .nav-btn {
        margin-top: 10px;
    }
}

/* BEAUTIFUL CONTACT PAGE */
.contact-modern {
    padding: 90px 60px;
    background: #f5f8ff;
}

.contact-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-left {
    background: #0d6efd;
    color: #ffffff;
    padding: 50px;
    border-radius: 10px;
}

.contact-left h2 {
    margin-bottom: 15px;
}

.contact-left p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-left ul {
    list-style: none;
    padding: 0;
}

.contact-left li {
    margin-bottom: 12px;
}

.contact-cta {
    margin-top: 30px;
}

.whatsapp {
    background: #25d366;
}

.contact-right {
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-right h2 {
    margin-bottom: 25px;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    padding: 13px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.modern-form textarea {
    min-height: 120px;
    resize: vertical;
}

.btn.full {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

/* MOBILE */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-modern {
        padding: 60px 20px;
    }
}

/* BEAUTIFUL PRICING PAGE */
.pricing-modern {
    padding: 90px 60px;
    background: #f5f8ff;
}

.pricing-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.pricing-box h3 {
    margin-bottom: 15px;
    color: #0d6efd;
}

.pricing-desc {
    margin-bottom: 20px;
    line-height: 1.6;
}

.pricing-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pricing-box li {
    margin-bottom: 10px;
}

.pricing-box .btn {
    margin-top: auto;
}

.pricing-box.highlight {
    border: 2px solid #0d6efd;
    transform: scale(1.03);
}

/* MOBILE */
@media (max-width: 900px) {
    .pricing-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-modern {
        padding: 60px 20px;
    }
}

/* UNIQUE SERVICES PAGE */
.service-flow {
    padding: 90px 60px;
    max-width: 1100px;
    margin: auto;
}

.flow-block {
    padding: 50px;
    margin-bottom: 40px;
    background: #ffffff;
    border-left: 6px solid #0d6efd;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.flow-block.alt {
    background: #f9fbff;
    border-left-color: #25d366;
}

.flow-tag {
    font-size: 12px;
    font-weight: bold;
    color: #0d6efd;
    letter-spacing: 1px;
}

.flow-block h2 {
    margin: 15px 0;
}

.flow-block p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.flow-points {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.flow-points div {
    background: #f1f4ff;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* DIFFERENTIATOR */
.service-diff {
    background: #f5f8ff;
    padding: 90px 60px;
    text-align: center;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.diff-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.diff-card h3 {
    margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 900px) {
    .service-flow,
    .service-diff {
        padding: 60px 20px;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }
}

/* HERO SPLIT */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 100px 60px;
}

.hero-text h1 {
    font-size: 44px;
    line-height: 1.2;
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* TRUST SECTION */
.trusted {
    text-align: center;
    padding: 60px 20px;
    background: #f9fbff;
}

/* MOBILE */
@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 80px 20px;
    }

    .hero-image img {
        margin: auto;
    }
}


/* HERO SPLIT */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 100px 60px;
}

.hero-text h1 {
    font-size: 44px;
}

.hero-text p {
    font-size: 18px;
    margin: 20px 0;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.hero-stats div {
    text-align: center;
}

.hero-stats strong {
    font-size: 22px;
    display: block;
}

.hero-stats span {
    font-size: 13px;
    color: #666;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 80px 20px;
    }

    .hero-stats {
        justify-content: center;
    }
}

/* ADVANCED HERO */
.hero-advanced {
    min-height: 100vh;
    display: flex;
    align-items: center;          /* ✅ vertically center */
    justify-content: space-between;
    padding: 120px 8% 80px;       /* top padding fixes navbar overlap */
    background: #0b3a5b;
  }
  .hero-right {
    display: flex;
    align-items: center;          /* ✅ centers phone vertically */
    justify-content: center;
  }
  

.hero-left h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-actions .btn {
    margin-right: 12px;
}

.hero-note {
    margin-top: 20px;
    opacity: 0.9;
}

/* PHONE ANIMATION */
.phone-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    animation: floatPhone 4s ease-in-out infinite;
}

.phone-wrapper img {
    max-width: 260px;
    z-index: 2;
}

/* SMS BUBBLE */
.sms-bubble {
    position: absolute;
    top: 22%;
    left: -210px;              /* 👈 moves bubble further away */
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14px;
    color: #111;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 10;
    max-width: 240px;
  }
  
  .phone-wrapper img {
    position: relative;
    z-index: 1;
    max-height: 520px;
  }
  

/* ANIMATIONS */
@keyframes floatPhone {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* MOBILE */
@media (max-width: 900px) {
    .hero-advanced {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 20px;
    }

    .sms-bubble {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* NEW SERVICES PAGE */
.services-new {
    padding: 90px 60px;
    text-align: center;
    background: #ffffff;
}

.services-new h2 {
    font-size: 32px;
}

.services-new-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-new-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-new-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-new-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-new-card li {
    margin-bottom: 8px;
}

/* WHO USES */
.services-use {
    padding: 80px 60px;
    background: #f5f8ff;
    text-align: center;
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    font-weight: 500;
}

/* DIFFERENCE */
.services-diff-new {
    padding: 90px 60px;
    background: #ffffff;
    text-align: center;
}

.diff-new-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.diff-new-card {
    padding: 35px;
    border-radius: 12px;
    background: #f9fbff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* MOBILE */
@media (max-width: 900px) {
    .services-new-grid,
    .diff-new-grid,
    .use-grid {
        grid-template-columns: 1fr;
    }

    .services-new,
    .services-use,
    .services-diff-new {
        padding: 60px 20px;
    }
}

/* MODERN COVERAGE PAGE */
.coverage-modern {
    padding: 90px 60px;
    background: #ffffff;
    text-align: center;
}

.coverage-modern h2 {
    margin-bottom: 50px;
}

.region-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.region-card {
    background: #f9fbff;
    padding: 40px;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.region-card h3 {
    margin-bottom: 12px;
    color: #0d6efd;
}

.region-card span {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: #666;
}

.region-card.highlight {
    background: #0d6efd;
    color: #ffffff;
}

.region-card.highlight h3 {
    color: #ffffff;
}

.coverage-stats {
    background: #f5f8ff;
    padding: 70px 60px;
    display: flex;
    justify-content: center;
    gap: 60px;
    text-align: center;
}

.stat-box h2 {
    font-size: 40px;
    color: #0d6efd;
}

.coverage-trust {
    padding: 90px 60px;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.coverage-trust ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.coverage-trust li {
    margin-bottom: 12px;
}

/* MOBILE */
@media (max-width: 900px) {
    .region-grid {
        grid-template-columns: 1fr;
    }

    .coverage-stats {
        flex-direction: column;
        gap: 30px;
    }

    .coverage-modern,
    .coverage-trust {
        padding: 60px 20px;
    }
}

/* NEW COVERAGE PAGE */
.coverage-stats {
    background: #f5f8ff;
    padding: 80px 60px;
}

.stats-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    background: #ffffff;
    padding: 35px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.stat-box h2 {
    color: #0d6efd;
    font-size: 36px;
    margin-bottom: 10px;
}

/* STORY */
.coverage-story {
    padding: 90px 60px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.coverage-story p {
    max-width: 750px;
    margin: 15px auto 50px;
    line-height: 1.7;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.story-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* DIFFERENCE */
.coverage-diff {
    background: #0d6efd;
    color: #ffffff;
    padding: 90px 60px;
    text-align: center;
}

.diff-row {
    max-width: 1000px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.diff-item {
    background: rgba(255,255,255,0.15);
    padding: 18px;
    border-radius: 8px;
    font-size: 15px;
}

/* MOBILE */
@media (max-width: 900px) {
    .stats-grid,
    .story-grid,
    .diff-row {
        grid-template-columns: 1fr;
    }

    .coverage-stats,
    .coverage-story,
    .coverage-diff {
        padding: 60px 20px;
    }
}
/* GOOGLE FORM EMBED */
.google-form-wrapper {
    width: 100%;
}

.google-form-wrapper iframe {
    border-radius: 10px;
    background: #fff;
}

/* THANK YOU PAGE */
.thank-you {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f8ff;
    padding: 60px 20px;
}

.thank-you-box {
    background: #ffffff;
    padding: 60px;
    max-width: 600px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.thank-you-box h1 {
    color: #0d6efd;
    margin-bottom: 20px;
}

.thank-you-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.thank-you-box .note {
    font-style: italic;
    color: #555;
}

.thank-you-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================
   GLOBAL RESET
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    background: #f6f8fb;
    color: #1f2937;
    line-height: 1.6;
}

/* =====================
   NAVBAR
===================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.navbar nav a {
    margin-left: 28px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: 0.3s ease;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: #2563eb;
}

.nav-btn {
    background: #2563eb;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
}

.nav-btn:hover {
    background: #1e40af;
}

/* =====================
   HERO
===================== */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* =====================
   CONTACT SECTION
===================== */
.contact-modern {
    padding: 80px 20px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* LEFT */
.contact-left {
    padding: 50px;
    background: #f1f5ff;
}

.contact-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-left ul {
    list-style: none;
    margin-bottom: 30px;
}

.contact-left ul li {
    font-size: 16px;
    margin-bottom: 14px;
    color: #374151;
}

/* WhatsApp Button */
.btn.whatsapp {
    display: inline-block;
    background: #22c55e;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn.whatsapp:hover {
    background: #16a34a;
}

/* RIGHT */
.contact-right {
    padding: 50px;
}

.contact-right h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* =====================
   FORM
===================== */
form input,
form select,
form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    transition: 0.3s;
}

form textarea {
    min-height: 120px;
    resize: vertical;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* Submit Button */
.btn.full {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background: #2563eb;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn.full:hover {
    background: #1e40af;
}

/* =====================
   FOOTER
===================== */
footer {
    text-align: center;
    padding: 25px;
    font-size: 14px;
    color: #6b7280;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 16px 24px;
    }

    .navbar nav a {
        margin-left: 16px;
    }

    .hero h1 {
        font-size: 34px;
    }
}

    .hero {
        padding: 60px 20px;
    }

    .contact-left,
    .contact-right {
        padding: 35px 25px;
    }


.contact-left {
    background: #f1f5ff;
    color: #1f2937; /* dark base text */
}

.contact-left h2 {
    color: #111827; /* FIX: dark heading */
}

.contact-left ul li {
    color: #374151;
}
/* ===============================
   CONTACT – PREMIUM UI
================================ */

.simple-contact {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* LEFT CARD */
.contact-card {
    background: #ffffff;
    padding: 42px 38px;
    border-radius: 20px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.06),
        0 30px 60px rgba(0, 0, 0, 0.04);
    position: relative;
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

/* TITLE */
.contact-card h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #0f172a;
}

/* LABELS */
.contact-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
    margin-top: 18px;
}

/* INPUTS */
.contact-card input,
.contact-card textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    font-size: 14px;
    transition: all 0.25s ease;
}

.contact-card textarea {
    min-height: 130px;
    resize: vertical;
}

/* FOCUS STATE */
.contact-card input:focus,
.contact-card textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

/* PLACEHOLDER */
.contact-card input::placeholder,
.contact-card textarea::placeholder {
    color: #94a3b8;
}

/* BUTTON */
.contact-card button {
    margin-top: 28px;
    width: 100%;
    padding: 15px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-card button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

/* RIGHT MAP */
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border-radius: 20px;
    border: 0;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.06),
        0 30px 60px rgba(0, 0, 0, 0.04);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .simple-contact {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .simple-contact {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 32px 24px;
    }

    .contact-card h2 {
        font-size: 22px;
    }
}

/* =========================
   MOBILE RESPONSIVE FIX
   ========================= */
   @media (max-width: 768px) {

    /* HERO LAYOUT */
    .hero-advanced {
      display: flex;
      flex-direction: column;
      text-align: center;
      padding: 40px 20px;
    }
  
    .hero-left {
      width: 100%;
    }
  
    .hero-right {
      width: 100%;
      order: 2;
      margin-top: 30px;
    }
  
    /* PHONE IMAGE */
    .phone-wrapper {
      display: flex;
      justify-content: center;
      animation: none; /* disable float on mobile */
    }
  
    .phone-wrapper img {
      max-width: 260px;
      height: auto;
    }
    .phone-wrapper {
        position: relative;   /* REQUIRED */
      }
      
    /* BUTTONS */
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
    }
  
  }
  /* =========================
   NAVBAR MOBILE FIX
   ========================= */
@media (max-width: 768px) {

    header.navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      height: auto;
    }
  
    .navbar .logo img {
      max-height: 40px;
    }
  
    .navbar .btn,
    .navbar .request-demo {
      padding: 8px 14px;
      font-size: 13px;
    }
  }
  /* =========================
   FORCE NAVBAR VISIBILITY
   ========================= */
header.navbar {
    position: relative;
    z-index: 9999;
    width: 100%;
    background: #ffffff;
  }
  
  @media (max-width: 768px) {
    header.navbar {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
      min-height: 64px;
    }
  }
  .hero-advanced {
    margin-top: 0;
    padding-top: 0;
  }
  
  @media (max-width: 768px) {
    .hero-advanced {
      padding-top: 20px;
    }
  }
    /* =========================
   CLEAN MOBILE NAVBAR
   ========================= */
@media (max-width: 768px) {

    .navbar {
      flex-direction: column;
      padding: 14px 20px;
    }
  
    .navbar nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 10px;
    }
  
    .navbar nav a {
      margin: 6px 10px;
      font-size: 14px;
    }
  
    .nav-btn {
      margin-top: 10px;
      padding: 8px 16px;
      font-size: 13px;
    }
  
    .logo img {
      height: 48px; /* IMPORTANT: your logo was 100px */
    }
  }
  @media (max-width: 768px) {
    .logo img {
      height: 48px;
    }
  }
  @media (max-width: 420px) {
    .navbar nav a {
      font-size: 13px;
      margin: 5px 8px;
    }
  }
      /* COMMON SECTION STYLING */
section {
    padding: 100px 8%;
  }
  
  section h2 {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
    color: #111;
  }
  
  section p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
  }
  
  /* SERVICES OVERVIEW */
  .services-overview {
    background: #f9fafc;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .service-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
  }
  
  .service-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0b5ed7;
  }
  
  /* WHY CHOOSE US */
  .why-us {
    background: #ffffff;
  }
  
  .why-list {
    max-width: 700px;
    margin: auto;
    list-style: none;
    padding: 0;
  }
  
  .why-list li {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }
  
  /* COVERAGE */
  .coverage-home {
    background: linear-gradient(135deg, #0b5ed7, #003b9e);
    color: #fff;
    text-align: center;
  }
  
  .coverage-home h2,
  .coverage-home p {
    color: #fff;
  }
  
  /* HOW IT WORKS */
  .how-it-works {
    background: #f9fafc;
  }
  
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: auto;
  }
  
  .step {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  }
  
  /* CALL TO ACTION */
  .cta {
    background: #0b5ed7;
    color: #fff;
    text-align: center;
  }
  
  .cta h2,
  .cta p {
    color: #fff;
  }
  
  .cta .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 36px;
    background: #fff;
    color: #0b5ed7;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
  }
  
  /* FOOTER */
  .footer {
    background: #0d0d0d;
    color: #ccc;
    text-align: center;
    padding: 40px 20px;
  }
  
  .footer p {
    margin: 8px 0;
    font-size: 15px;
  }
  .hero-advanced p {
    color: rgba(255, 255, 255, 0.85); /* readable white */
    font-size: 18px;
    max-width: 520px;
  }
  .hero-note {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
  }
  .hero-advanced h1 {
    color: #ffffff;
    font-size: 56px;
    line-height: 1.2;
  }
  @keyframes floatBubble {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
  }
  
  .sms-bubble {
    animation: floatBubble 3s ease-in-out infinite;
  }
  .sms-bubble::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
  }
  