* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}

header {
    width: 100%;
    background-color: #0b3c5d;
    color: #312d2d;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    font-weight: bold;
}

.nav-links a:hover {
    color: #e8ab5b;
}

/* ===============================
   PRIMARY DROPDOWN – HEALTHCARE UI (FIXED)
=============================== */

/* Required for hover stability */
.nav-links li {
  position: relative;
}

/* Invisible hover bridge (prevents flicker) */
.nav-links li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
  /* matches visual gap */
}

/* Main dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  /* NO gap here */
  left: 0;
  margin-top: 12px;
  /* visual spacing only */
  background: #ffffff;
  list-style: none;
  padding: 0.6rem 0;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(11, 60, 93, 0.18);
  border: 1px solid rgba(11, 60, 93, 0.08);
  z-index: 1500;
}

/* Dropdown links */
.dropdown li a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-size: 0.95rem;
  color: #0b3c5d;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

/* Hover state */
.dropdown li a:hover {
  background: #f0f7fb;
  color: #0ea5e9;
}

/* Show dropdown */
.nav-links li:hover>.dropdown {
  display: block;
}

/* ===============================
   SECOND-LEVEL (SIDE) DROPDOWN – FIXED
=============================== */

.dropdown li {
  position: relative;
}

/* Hover bridge for side dropdown */
.dropdown li::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  width: 12px;
  height: 100%;
}

/* Side dropdown */
.dropdown li>.dropdown {
  top: 0;
  left: 100%;
  margin-left: 10px;
  border-radius: 12px;
}

/* ===============================
   HAMBURGER – MODERN STYLE
=============================== */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  width: 32px;
  height: 28px;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 4px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animate to X */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* ===============================
   MOBILE NAV – FIXED & CLEAN
=============================== */

@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0b3c5d;
    /* healthcare dark blue */
    flex-direction: column;
    width: 280px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    z-index: 2000;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  }

  .nav-links.open {
    max-height: 600px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links>li>a {
    padding: 0.9rem 1.2rem;
    color: #ffffff;
    font-weight: 600;
  }

  /* Mobile dropdown */
  .nav-links .dropdown {
    position: static;
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    transition: max-height 0.3s ease;
    border-radius: 8px;
    margin: 0 0.8rem 0.6rem;
  }

  .nav-links li.open>.dropdown {
    max-height: 400px;
  }

  .dropdown li a {
    padding: 0.7rem 1rem;
    color: #0b3c5d;
    font-size: 0.9rem;
  }

  .hamburger {
    display: flex;
  }
}


/* HERO SECTION */
.hero-healthcare {
    width: 100%;
    background: linear-gradient(135deg, #e9f5ff 0%, #ffffff 100%);
    padding: 5rem 1rem 4rem 1rem;
    /* Added top padding to give space under sticky header */
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 550px;
}

.hero-content h1 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: #003e8a;
    margin-bottom: 1rem;
}

.hero-subtext {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #003666;
}

.hero-body {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.9rem 1.6rem;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary {
    background: #003e8a;
    color: white;
}

.btn-primary:hover {
    background: #002f68;
}

.btn-secondary {
    border: 2px solid #003e8a;
    color: #003e8a;
    background: white;
}

.btn-secondary:hover {
    background: #003e8a;
    color: white;
}

.hero-image {
    flex: 1 1 450px;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 42, 82, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-flex {
        text-align: center;
        flex-direction: column;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* SECTION 2 — WHY HEALTHCARE WEB DESIGN MATTERS */

/* SECTION 2 — WHY HEALTHCARE WEB DESIGN MATTERS */
.why-healthcare {
    background: #ffffff;
    padding: 1rem 1rem;
    /* reduced from 4rem */
}

.why-healthcare h2 {
    font-size: 2.2rem;
    /* slightly bigger and bold */
    font-weight: 700;
    color: #003e8a;
    text-align: center;
    margin-bottom: 1.2rem;
    /* less spacing */
}

.why-intro {
    max-width: 1100px;
    /* controls readable width */
    padding: 0 2rem;
    /* adds equal left & right spacing */
    margin: 0 auto 1.5rem;
    /* centers it */
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    color: #2a2a2a;
    text-align: center;
}

/* Reduce large space between paragraphs */
.why-body {
    margin-bottom: 1.5rem;
}

.why-grid {
    margin-top: 2rem;
    /* tighter spacing */
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    /* reduced from 2rem */
    flex-wrap: wrap;
}

.why-box {
    flex: 1 1 280px;
    max-width: 330px;
    background: #f0f6ff;
    padding: 1.7rem;
    /* reduced padding */
    text-align: center;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 42, 82, 0.09);
    transition: 0.3s ease;
}

.why-box:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 18px rgba(0, 42, 82, 0.15);
}

.why-box i {
    font-size: 2.1rem;
    /* smaller */
    color: #003e8a;
    margin-bottom: 0.7rem;
}

.why-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #003666;
    margin-bottom: 0.4rem;
}

.why-box p {
    font-size: 1rem;
    font-weight: 400;
    color: #444;
    line-height: 1.5;
}

/* MOBILE FIXES */
@media (max-width: 768px) {
    .why-healthcare {
        padding: 2.5rem 1rem;
    }

    .why-intro,
    .why-body {
        font-size: 1.05rem;
    }

    .why-box {
        padding: 1.5rem;
    }
}

/* SECTION 3 — WHO WE DESIGN FOR */

/* SECTION 3 — WHO WE DESIGN FOR */
.who-healthcare {
    background: #f9fbff;
    padding: 1rem 1rem;
}

.who-healthcare h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #003e8a;
    text-align: center;
    margin-bottom: 1.2rem;
}

.who-intro {
    max-width: 1100px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    color: #2a2a2a;
    padding: 0 1.5rem;
}

/* GRID */
.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* BOX */
.who-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0px 4px 14px rgba(0, 42, 82, 0.08);
    transition: 0.3s ease;
}

.who-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 42, 82, 0.16);
}

/* ICONS */
.who-box i {
    font-size: 2.4rem;
    color: #003e8a;
    margin-bottom: 1rem;
}

/* HEADING */
.who-box h3 {
    color: #003666;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* LIST */
.who-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* MODERN LINK STYLE */
.who-box ul li {
    margin-bottom: 0.6rem;
}

.who-box ul li a {
    color: #003e8a;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    padding: 2px 0;
    transition: all 0.25s ease;
}

.who-box ul li a:hover {
    color: #002f68;
    transform: translateX(4px);
    text-decoration: none;
}

.who-box ul li a:hover::after {
    content: " →";
    opacity: 0.7;
    transition: opacity 0.25s ease;
}

/* MOBILE */
@media (max-width: 768px) {
    .who-healthcare {
        padding: 3rem 1rem;
    }

    .who-intro {
        font-size: 1.05rem;
    }

    .who-box {
        padding: 1.7rem;
    }
}

/* SECTION — FEATURES & BENEFITS */
.features-healthcare {
    background: #ffffff;
    padding: 1rem 1rem;
}

.features-healthcare h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #003e8a;
    text-align: center;
    margin-bottom: 1.2rem;
}

.features-intro {
    max-width: 1100px;
    margin: 0 auto 3rem auto;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    color: #2a2a2a;
    padding: 0 1.5rem;
}

/* 2×2 Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Feature Cards */
.feature-box {
    background: #f5f9ff;
    padding: 2.2rem;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0px 4px 14px rgba(0, 42, 82, 0.08);
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 22px rgba(0, 42, 82, 0.16);
}

/* Icons */
.feature-box i {
    font-size: 2.4rem;
    color: #003e8a;
    margin-bottom: 1rem;
}

/* Headings */
.feature-box h3 {
    font-size: 1.3rem;
    color: #003666;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

/* Text */
.feature-box p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

/* CTA Buttons */
.features-cta {
    text-align: center;
    margin-top: 1rem;
}

.features-cta a {
    margin: 0 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .features-healthcare {
        padding: 3rem 1rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-box {
        padding: 1.7rem;
    }
}

/* SECTION — WHY CHOOSE US */
.why-choose {
    background: #f9fbff;
    padding: 1rem 1rem;
}

.why-choose h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #003e8a;
    margin-bottom: 1.2rem;
}

.whychoose-intro {
    max-width: 1100px;
    margin: 0 auto 3rem auto;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    color: #2a2a2a;
    padding: 0 1.5rem;
}

/* GRID */
.whychoose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* BOX */
.whychoose-box {
    background: #ffffff;
    padding: 2.2rem;
    border-radius: 14px;
    box-shadow: 0px 4px 14px rgba(0, 42, 82, 0.08);
    transition: 0.3s ease;
    text-align: left;
}

.whychoose-box:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 22px rgba(0, 42, 82, 0.16);
}

/* ICON */
.whychoose-box i {
    font-size: 2.4rem;
    color: #003e8a;
    margin-bottom: 1rem;
}

/* HEADERS */
.whychoose-box h3 {
    font-size: 1.3rem;
    color: #003666;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

/* PARAGRAPH */
.whychoose-box p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

/* CTA */
.whychoose-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.whychoose-cta a {
    margin: 0 0.5rem;
}

/* MOBILE */
@media (max-width: 768px) {
    .why-choose {
        padding: 3rem 1rem;
    }

    .whychoose-box {
        padding: 1.7rem;
    }

    .whychoose-intro {
        font-size: 1.05rem;
    }
}

/* SECTION — OUR PROCESS */
/* SECTION — OUR PROCESS (ALTERNATING ROWS) */
.process-alt {
    background: #ffffff;
    padding: 1rem 1rem;
}

.process-alt h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #003e8a;
    margin-bottom: 1rem;
}

.process-alt-intro {
    max-width: 1100px;
    margin: 0 auto 3rem auto;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    color: #2a2a2a;
}

/* Rows wrapper */
.process-rows {
    max-width: 1200px;
    margin: 0 auto;
}

/* EACH PROCESS ROW */
.process-row {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    gap: 3rem;
    margin-bottom: 1rem;

    /* NEW border & radius */
    border: 1px solid #dbe5f3;
    border-radius: 12px;
    background: #ffffff;

    /* Hover effect */
    transition: 0.3s ease;
}

.process-row:hover {
    background: #f5f9ff;
    border-color: #b8cff0;
    transform: translateY(-4px);
}

/* Reverse layout rows */
.process-row.reverse {
    flex-direction: row-reverse;
}

/* Icons */
.process-icon i {
    font-size: 3rem;
    color: #003e8a;
}

/* Text block */
.process-text {
    flex: 1;
}

.process-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #003666;
    margin-bottom: 0.6rem;
}

.process-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.65;
}

/* CTA */
.process-alt-cta {
    text-align: center;
    margin-top: 3rem;
}

.process-alt-cta a {
    margin: 0 0.5rem;
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {

    .process-alt {
        padding: 3rem 1rem;
    }

    .process-row,
    .process-row.reverse {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.2rem;
    }

    .process-icon i {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }

    .process-text p {
        font-size: 1.05rem;
    }
}

/* SECTION — TOOLS & TECHNOLOGY */
.tech-healthcare {
    background: #f9fbff;
    padding: 1rem 1rem;
}

.tech-healthcare h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #003e8a;
    margin-bottom: 1.2rem;
}

.tech-intro {
    max-width: 1100px;
    margin: 0 auto 3rem auto;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    color: #2a2a2a;
}

/* GRID */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* BOX */
.tech-box {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid #dbe5f3;
    transition: 0.3s ease;
}

.tech-box:hover {
    background: #f5f9ff;
    border-color: #b8cff0;
    transform: translateY(-5px);
}

/* ICON */
.tech-box i {
    font-size: 2.4rem;
    color: #003e8a;
    margin-bottom: 0.8rem;
    display: block;
}

/* HEADINGS */
.tech-box h3 {
    color: #003666;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

/* LIST */
.tech-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tech-box ul li {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0.4rem;
}

/* MOBILE */
@media (max-width: 768px) {
    .tech-healthcare {
        padding: 3rem 1rem;
    }

    .tech-box {
        padding: 1.7rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 1rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    font-family: "Inter", sans-serif;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.faq-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
    font-size: 1rem;
}

/* FAQ List Styling */
.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Each Item */
.faq-item {
    background: #fff;
    border: 1px solid #5c5b5b;
    border-radius: 16px;
    padding: 1rem 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.6s ease forwards;
}

/* Entry Animation Stagger */
.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

.faq-item:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.faq-item:hover {
    transform: translateY(-5px);
    border-color: #0077ff;
    box-shadow: 0 8px 20px rgba(0, 119, 255, 0.1);
}

.faq-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #0077ff, #00c2ff);
    transition: width 0.4s ease;
}

.faq-item:hover::before {
    width: 100%;
}

/* Text Styling */
.faq-list h3 strong {
    display: block;
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.faq-item:hover h3 strong {
    color: #0077ff;
}

.faq-list p {
    color: #363535;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Responsive */
@media (max-width: 700px) {
    .faq-section h2 {
        font-size: 2rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-list h3 strong {
        font-size: 1.2rem;
    }

    .faq-list p {
        font-size: 0.95rem;
    }
}


/* CTA Form Section */

.cta-form {
    background: linear-gradient(135deg, #1d1f27, #2c2f3a);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 12px;
    max-width: 700px;
    margin: 50px auto;
}

.cta-form h2 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.cta-form p {
    margin-bottom: 20px;
}

.cta-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-form input,
.cta-form textarea {
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.cta-form button {
    background: #ff6b00;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.cta-form button:hover {
    background: #e65a00;
}

#formStatus {
    margin-top: 15px;
    font-size: 0.9rem;
}

.cta-split {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f6fa;
    padding: 60px 20px;
    border-radius: 12px;
    max-width: 1100px;
    margin: 50px auto;
    gap: 40px;
}

.cta-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.cta-form-box {
    background: linear-gradient(135deg, #1d1f27, #2c2f3a);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 300px;
}

.cta-form-box h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-form-box p {
    margin-bottom: 20px;
    color: #ddd;
}

.cta-form-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-form-box input,
.cta-form-box textarea {
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.cta-form-box button {
    background: #ff6b00;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.cta-form-box button:hover {
    background: #e65a00;
}

#formStatus {
    margin-top: 15px;
    font-size: 0.9rem;
}

/* 📱 Responsive */
@media (max-width: 900px) {
    .cta-split {
        flex-direction: column;
        text-align: center;
    }

    .cta-image img {
        max-width: 100%;
    }

    .cta-form-box {
        width: 100%;
    }
}

/* footer Section */

.footer {
    background: #0b3c5d;
    color: #ddd;
    padding: 3rem 1rem 1rem;
    font-family: Arial, sans-serif;
    border-radius: 10px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-about p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-social a {
    color: #ddd;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #3a9c9b;
}

.footer h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-contact p,
.footer-countries p {
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #3a9c9b;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #aaa;
}

/* ✅ Responsive */
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        margin-bottom: 1rem;
    }
}

/* SECTION — AREAS WE SERVICE */
.service-areas {
  background: #ffffff;
  padding: 1rem 1rem;
}

.service-areas h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #003e8a;
  margin-bottom: 1.2rem;
}

.service-areas-intro {
  max-width: 1100px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.7;
  color: #2a2a2a;
  padding: 0 1rem;
}

/* Table Wrapper */
.service-areas-table-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
}

/* Table Styling */
.service-areas-table {
  width: 100%;
  border-collapse: collapse;
  background: #f9fbff;
  border: 1px solid #dbe5f3;
  border-radius: 12px;
  overflow: hidden;
}

.service-areas-table thead {
  background: #003e8a;
  color: white;
}

.service-areas-table th,
.service-areas-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.6;
}

.service-areas-table tbody tr:nth-child(odd) {
  background: #f3f7ff;
}

.service-areas-table tbody tr td:first-child {
  font-weight: 600;
  color: #003666;
}

.service-areas-table tbody tr:hover {
  background: #e8f0ff;
  transition: 0.2s ease;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-areas-table th,
  .service-areas-table td {
    font-size: 0.95rem;
    padding: 0.9rem;
  }
}
