* {
  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 {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

#typing-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  white-space: normal;
  /* allow wrapping */
  word-break: break-word;
  /* break long words if needed */
  border-right: 2px solid #fff;
  /* cursor */
  overflow: hidden;
  display: block;
  /* ensures button stays centered */
  text-align: center;
  /* keep text centered when wrapping */
}


.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  /* overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero .btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  background: #3a9c9b;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.hero .btn:hover {
  background: #2f7e7d;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 1rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #333;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.testimonial-card.show {
  opacity: 1;
  transform: scale(1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.2rem;
  color: #555;
}

.name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #3a9c9b;
}

.country,
.service {
  font-size: 0.95rem;
  color: #777;
}

/* Why Choose us Section */

.why-choose-us {
  padding: 2rem 1rem;
  background: #fff;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.section-subtitle {
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.choose-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  position: relative;
  /* needed for USP badge */
}

.choose-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #3a9c9b;
}

.choose-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #222;
}

.choose-card p {
  color: #555;
  font-size: 0.95rem;
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ✅ USP Badge only on the 3rd card */
.choose-card:nth-child(3)::after {
  content: "USP";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #3a9c9b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  right: 8px;
  max-width: calc(100% - 16px);
  /* keeps it inside */
  box-sizing: border-box;
}

/* ✅ Responsive styles */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .choose-card {
    padding: 1.5rem;
  }

  .choose-card h3 {
    font-size: 1.1rem;
  }

  .choose-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .why-choose-us h2 {
    font-size: 1.4rem;
  }

  .choose-card {
    padding: 1.2rem;
  }

  .choose-card .icon {
    font-size: 1.8rem;
  }

  .choose-card h3 {
    font-size: 1rem;
  }

  .choose-card p {
    font-size: 0.85rem;
  }

  .choose-card:nth-child(3)::after {
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
  }
}

/* Our Services Section */

.our-services {
  padding: 2rem 1rem;
  background: #fff;
  text-align: center;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
}

.our-services h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border-color: transparent;
  transform: translateY(-8px);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #3a9c9b;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  background: #3a9c9b;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-btn:hover {
  background: #2e7e7c;
}

/* 🌍 Responsive */
@media (max-width: 768px) {
  .our-services h2 {
    font-size: 1.8rem;
  }

  .service-card {
    text-align: center;
  }

  .service-card .icon {
    margin: 0 auto 1rem;
  }
}

.explore-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #004021;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.explore-btn:hover {
  background-color: #e8ab5b;
  transform: translateY(-3px);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .explore-btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* ================================
   WEBSITE & APP DEVELOPMENT SECTION
   ================================ */
.dev-process {
  text-align: center;
  padding: 20px 20px;
  position: relative;
}

/* Section Title */
.dev-process h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.dev-process .section-subtitle {
  color: #555;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

/* Timeline Container */
.dev-process .timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  /* Keep all steps on one line */
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow-x: auto;
  /* Allow smooth horizontal scroll on smaller screens */
  padding: 0 10px 20px;
  scroll-snap-type: x mandatory;
}

/* Connector Line (behind cards) */
.dev-process .timeline::before {
  content: "";
  position: absolute;
  top: 75px;
  /* Adjust for vertical centering of the line */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;
  height: 4px;
  background: linear-gradient(90deg, #39b982, #4b91f1, #8f55f4);
  z-index: 0;
  border-radius: 10px;
}

/* Each Step Card */
.dev-process .step {
  background: #fff;
  border-radius: 15px;
  padding: 35px 25px;
  flex: 0 0 220px;
  /* fixed width for uniformity */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
  z-index: 1;
  position: relative;
}

.dev-process .step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Step Icon */
.dev-process .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Step Heading */
.dev-process h3 {
  font-size: 1.1rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Step Text */
.dev-process p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Scrollbar Styling (for horizontal scroll on small screens) */
.dev-process .timeline::-webkit-scrollbar {
  height: 8px;
}

.dev-process .timeline::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.dev-process .timeline::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Tablet and below */
@media (max-width: 992px) {
  .dev-process .timeline {
    gap: 20px;
    padding: 0 15px 30px;
  }

  .dev-process .timeline::before {
    top: 65px;
    height: 3px;
    max-width: 900px;
  }

  .dev-process .step {
    flex: 0 0 200px;
    padding: 25px 20px;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .dev-process .timeline {
    flex-wrap: wrap;
    /* stack vertically */
    justify-content: center;
    overflow-x: hidden;
    /* disable horizontal scroll when stacked */
  }

  .dev-process .timeline::before {
    display: none;
    /* hide connector line on stacked layout */
  }

  .dev-process .step {
    max-width: 90%;
    flex: 1 1 100%;
  }
}


/* AI Section Section */

.ai-optimization {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 8%;
  background: #f5f8fc;
  font-family: "Poppins", sans-serif;
  gap: 40px;
  flex-wrap: wrap;
}

/* Arrow block */
.ai-left {
  flex: 1;
  background: #1e2a38;
  color: #fff;
  padding: 50px 40px;
  position: relative;
  max-width: 360px;
  min-width: 260px;
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%);
  border-radius: 10px;
}

.ai-left h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.ai-left p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

/* Right stacked cards */
.ai-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 280px;
}

.ai-card {
  display: flex;
  align-items: center;
  background: #243447;
  color: #fff;
  border-radius: 40px;
  padding: 15px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ai-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ai-icon {
  font-size: 28px;
  background: #fff;
  color: #243447;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.ai-text h3 {
  font-size: 18px;
  margin: 0 0 5px;
}

.ai-text p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

/* Responsive design */
@media (max-width: 992px) {
  .ai-optimization {
    flex-direction: column;
    text-align: center;
  }

  .ai-left {
    clip-path: none;
    border-radius: 12px;
    max-width: 100%;
    text-align: center;
  }

  .ai-right {
    padding-top: 20px;
    width: 100%;
  }

  .ai-card {
    justify-content: center;
    text-align: left;
  }
}

/* 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%;
  }
}

/* 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;
  }
}


/* 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;
  }
}

/* scrollTopBtn */

#scrollTopBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 20px;
  font-weight: bolder;
  border: none;
  outline: none;
  background-color: #4086ef;
  /* same dark green */
  color: white;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #006d39;
  /* lighter hover shade */
}

/* ==========================
   MAIN BLOG COLLECTION PAGE
=========================== */
.blog-header {
  padding: 50px 20px;
  background-color: #f4f4f4;
  /* Slight light background to contrast header */
  text-align: center;
}


.blog-header .page-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: #004021;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.blog-header .page-description {
  font-size: 1.1rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* ==========================
   CATEGORY GRID
=========================== */
.category-grid {
  padding: 50px 20px;
  background-color: #ffffff;
}

.category-grid h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #004021;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.category-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  background-color: #004021;
  /* Dark header green to match navbar */
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: #006633;
  /* slightly lighter green on hover */
}

/* ==========================
   BLOG CATEGORY PAGE (SEO+PPC-ETC)
=========================== */
.blog-category-section {
  padding: 50px 20px;
  background-color: #f8f8f8;
  /* Light background for contrast */
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.section-header h2 {
  font-size: 2rem;
  color: #004021;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.view-all {
  text-decoration: none;
  color: #e8ab5b;
  /* same accent as navbar hover */
  font-weight: bold;
  transition: color 0.3s;
}

.view-all:hover {
  color: #b8792c;
  /* darker accent on hover */
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.blog-card img {
  width: 100%;
  display: block;
  height: 180px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin: 15px;
  color: #004021;
}

.blog-card .author {
  margin: 0 15px 15px;
  font-size: 0.9rem;
  color: #555;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ==========================
   RESPONSIVE ADJUSTMENTS
=========================== */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .view-all {
    margin-top: 10px;
  }

  .page-title {
    font-size: 2rem;
  }

  .category-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .blog-cards-grid {
    grid-template-columns: 1fr;
  }

  .categories {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================
   MAIN BLOG PAGE
=========================== */
.blog-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* ===== BLOG TITLE + META ===== */
.blog-main-header {
  margin-bottom: 30px;
  text-align: center;
  background-color: #004021;
  border-radius: 10px;

}

.blog-title {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 10px;
  padding-top: 10px;
}

.blog-meta {
  font-size: 0.95rem;
  color: #f0ecec;
  padding-bottom: 20px;
}

/* ===== TWO COLUMN LAYOUT ===== */
.blog-content-wrapper {
  display: flex;
  gap: 30px;
}

/* ===== SIDEBAR ===== */
.blog-sidebar {
  flex: 0 0 250px;
  position: sticky;
  top: 120px;
  /* space below header */
  align-self: flex-start;
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  max-height: calc(100vh - 140px);
  /* prevents overflow */
  overflow-y: auto;
}

.blog-sidebar h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #004021;
}

.blog-sidebar ul {
  list-style: none;
}

.blog-sidebar ul li {
  margin-bottom: 10px;
}

.blog-sidebar ul li a {
  text-decoration: none;
  color: #004021;
  transition: color 0.3s;
}

.blog-sidebar ul li a:hover {
  color: #e8ab5b;
}

/* ===== MAIN BLOG CONTENT ===== */
.blog-main {
  flex: 1;
}

.blog-main section {
  margin-bottom: 40px;
}

.blog-main h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #004021;
}

.blog-main p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .blog-content-wrapper {
    flex-direction: column;
  }

  .blog-sidebar {
    position: relative;
    max-height: none;
    top: 0;
    margin-bottom: 30px;
  }
}


/* ===== REUSABLE BREADCRUMBS ===== */
.breadcrumb {
  font-size: 0.9rem;
  color: #004021;
  margin-bottom: 15px;
  margin-top: 10px;
  margin-left: 10px;
  text-align: left;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.breadcrumb a {
  color: #004021;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #e8ab5b;
  /* accent hover */
}

.breadcrumb span,
.breadcrumb .breadcrumb-current {
  color: #555;
}

/* ====== CONTACT Us Page ====== */
.contact-header {
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
  padding: 0 1rem;
  text-align: center;
}

.contact-header h1 {
  font-size: 2.5rem;
  color: #004021;
  /* Matches navbar dark green */
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.contact-header p {
  font-size: 1.125rem;
  color: #312d2d;
  /* Matches body text color */
  line-height: 1.6;
}

/* ====== CONTACT INFO CARDS ====== */
.contact-info {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.info-card {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem;
  flex: 1 1 220px;
  /* Flexible width */
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  word-wrap: break-word;
  /* Wrap long text without overflow */
  overflow-wrap: anywhere;
  /* Better handling of URLs or long strings */
}

.info-card h2 {
  font-size: 1.25rem;
  color: #004021;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 1rem;
  color: #312d2d;
  line-height: 1.5;
}

.info-card a {
  color: #004021;
  margin: 0 0.3rem;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.info-card a:hover {
  color: #e8ab5b;
  /* Matches nav hover color */
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-header p {
    font-size: 1rem;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .info-card {
    max-width: 90%;
    text-align: center;
  }
}

/* ================================
   WEBSITE SHOWCASE / PORTFOLIO GRID
   ================================ */
.portfolio-showcase {
  background: #f9f9f9;
  padding: 5px 20px;
  text-align: center;
}

.portfolio-showcase h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.portfolio-showcase .subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
}

/* Portfolio Grid Layout */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Portfolio Items */
.portfolio-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Portfolio Images */
.portfolio-item img {
  width: 110%;
  height: 340px;
  /* Larger Image Height */
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 15px;
}

.portfolio-item:hover img {
  transform: scale(1.04);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Tablets (≤ 992px) → 2 columns */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .portfolio-item img {
    height: 300px;
  }
}

/* Mobile (≤ 600px) → 1 column */
@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-item img {
    height: 250px;
  }

  .portfolio-showcase {
    padding: 70px 15px;
  }

  .portfolio-showcase h2 {
    font-size: 1.8rem;
  }
}

/* ===============================
   Reusable Content Section
   =============================== */
#content-section {
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

#content-heading {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #0f172a;
  font-weight: 700;
  text-align: center;
}

/* Make paragraph use full width with small side margins */
#content-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
  text-align: left;
  text-align: justify;
  margin: 0 30px 40px;

}

.services-list {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  margin: 0 auto 30px;
  max-width: 900px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.services-heading {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #0f172a;
  text-align: center;
}

.services-items {
  list-style: none;
  padding: 0;
}

.services-items li {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1f5f9;
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services-items li:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.closing-text {
  font-size: 1.1rem;
  color: #1e293b;
  line-height: 1.8;
  text-align: justify;
  margin: 0 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #content-heading {
    font-size: 1.7rem;
  }

  #content-paragraph,
  .closing-text {
    font-size: 1rem;
    margin: 0 15px 30px;
  }

  .services-items li {
    font-size: 0.95rem;
  }
}

/* Pain Points Table */
.pain-table-wrapper {
  margin-top: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.pain-points-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 1rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.pain-points-table:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Header Styling */
.pain-points-table thead {
  background: linear-gradient(90deg, #0077b6 0%, #00b4d8 100%);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pain-points-table th {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

/* Body Rows */
.pain-points-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #eaeaea;
  vertical-align: top;
  color: #333;
  line-height: 1.6;
  transition: background 0.2s ease, color 0.2s ease;
}

.pain-points-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.pain-points-table tbody tr:hover {
  background: #e3f3fb;
  color: #023e8a;
}

/* Subtle Highlight on Hover Cell */
.pain-points-table tbody td:hover {
  background: rgba(0, 119, 182, 0.07);
  transition: background 0.2s ease;
}

/* Add row separators as visual anchors */
.pain-points-table tbody tr td:first-child {
  border-left: 4px solid transparent;
}

.pain-points-table tbody tr:hover td:first-child {
  border-left-color: #00b4d8;
}

/* Rounded bottom corners fix for overflow hidden */
.pain-points-table tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.pain-points-table tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

/* Subtle responsive typography & padding */
@media (max-width: 768px) {

  .pain-points-table th,
  .pain-points-table td {
    font-size: 0.9rem;
    padding: 12px 10px;
  }

  .pain-points-table thead {
    display: none;
  }

  /* Mobile card-style layout */
  .pain-points-table,
  .pain-points-table tbody,
  .pain-points-table tr,
  .pain-points-table td {
    display: block;
    width: 100%;
  }

  .pain-points-table tr {
    margin-bottom: 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
    overflow: hidden;
  }

  .pain-points-table td {
    padding: 0.9rem 1rem;
    border-bottom: none;
  }

  .pain-points-table td:first-child {
    background: #0077b6;
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .pain-points-table td:last-child {
    background: #f9f9f9;
  }
}


/* Industries We Serve Section */
.industries-we-serve {
  background-color: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}

.industries-we-serve h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1e2d56;
}

.section-subtitle {
  color: #555;
  margin: 0 auto 50px;
  font-size: 1rem;
  line-height: 1.6;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.industry-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.industry-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.industry-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #1e2d56;
}

.industry-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-card ul li {
  margin-bottom: 8px;
  color: #444;
  position: relative;
  padding-left: 18px;
}

.industry-card ul li::before {
  content: "•";
  color: #007bff;
  position: absolute;
  left: 0;
}

/* 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;
  }
}