  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Literata', serif;
    }

    body, html {
      height: 100%;
    }

   /* Base Styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-family: 'Literata', serif;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #003087;
}

.nav-links a {
  margin: 0 1rem;
  text-decoration: none;
  color: #003087;
  font-weight: 500;
}

.call-now {
  background: #003087;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 1rem 2rem;
}

.mobile-menu a {
  padding: 10px 0;
  text-decoration: none;
  font-weight: 500;
  color: #003087;
  border-bottom: 1px solid #eee;
}

.call-now-mobile {
  margin-top: 10px;
  background: #003087;
  color: white;
  text-align: center;
  padding: 0.6rem;
  border-radius: 5px;
  display: block;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .call-now {
    display: none;
  }

  .hamburger {
    display: block;
  }
  .priorities .subtitle {
    font-size: 1.5rem!important;
    font-weight: 700;
    color: #b6f4e5;
}
}

    .hero-section {
      height: 100vh;
      position: relative;
      overflow: hidden;
    }

    .hero-section video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      color: white;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 0 2rem;
      max-width: 700px;
    }

    .hero-content h1 {
      font-size: 3rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }

    .hero-content a {
      background: #00c3ff;
      color: #003087;
      padding: 0.8rem 1.5rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1rem;
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2rem;
      }
      .hero-content p {
        font-size: 1rem;
      }
    }

    @import url('https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,400;700&display=swap');

.who-we-are {
  padding: 4rem 2rem;
  font-family: 'Literata', serif;
  background: #fff;
}

.who-we-are .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0b2b2f;
}

.lead-text {
  font-size: 2rem;
  line-height: 1.4;
  color: #0b2b2f;
  font-weight: 400;
}

.lead-text .highlight {
  color: #018b94;
  font-weight: 700;
}

.about-link {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  text-decoration: none;
  font-weight: 600;
  color: #0b2b2f;
  transition: all 0.3s ease;
}

.about-link .circle {
  background: #b8f7eb;
  color: #0b2b2f;
  border-radius: 50%;
  padding: 0.6rem 0.9rem;
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.about-link:hover {
  opacity: 0.8;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .lead-text {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}



.priorities {
  background: #014B4D;
  color: #fff;
  padding: 4rem 2rem;
  font-family: 'Literata', serif;
  border-radius: 2rem;
  margin: 2rem;
}

.priorities .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.priorities .title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.priorities .subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b6f4e5;
}

.priorities .subtitle span {
  color: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: #035f5f;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  color: #d5f7f3;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.card a {
  text-decoration: none;
  color: #b6f4e5;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.card a span {
  margin-left: 0.4rem;
  font-size: 1.2rem;
}


.mission-vision-section {
  padding: 4rem 2rem;
  font-family: 'Literata', serif;
  background: #f7fafa;
}

.mission-vision-section .container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.section-left {
  padding-right: 1rem;
}

.section-left .label {
  font-size: 1.2rem;
  color: #1e1e1e;
  margin-bottom: 0.5rem;
}

.section-left .headline {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.section-left .headline span {
  color: #178a85;
}

.section-left p {
  margin-top: 1rem;
  font-size: 1rem;
  color: #555;
}

.section-right {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
}

.info-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.info-card h4 {
  font-size: 1.3rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-vision-section .container {
    grid-template-columns: 1fr;
  }

  .section-right {
    flex-direction: column;
  }

  .info-card {
    flex: 1 1 100%;
  }
}

.cta-section {
  background: linear-gradient(135deg, #178a85, #0c4b63);
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  font-family: 'Literata', serif;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 3rem auto;
  max-width: 1200px;
}

.cta-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #e2f8f6;
}

.cta-button {
  background-color: #fff;
  color: #178a85;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background: #0f2f3d;
  color: #fff;
}

.industry-section {
  background-color: #f3f9fa;
  padding: 60px 20px;
}

.industry-container {
  max-width: 1200px;
  margin: 0 auto;
}

.industry-heading {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #001f21;
}

.highlight {
  color: #007d81;
  font-weight: bold;
}

.industry-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.industry-item {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.large {
  position: relative;
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background-image: url('../images/logo/people.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: white;
  overflow: hidden; /* Ensure pseudo-element doesn't overflow */
}

.large::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
  z-index: 0;
}

.large > * {
  position: relative;
  z-index: 1;
}

.industry-text h3 {
  font-size: 1.5rem;
  margin: 0 0 10px;
}

.btn-watch {
  background-color: #b8fce4;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  color: #00272a;
  font-weight: bold;
  display: inline-block;
}

.stat-box {
  background-color: #005f66;
  color: white;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
}

.stat-box h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.image-box {
  background-size: cover;
  background-position: center;
  min-height: 200px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 991px) {
  .industry-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .large {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

.plans-section {
  background-color: #f8fcfc;
  padding: 60px 20px;
}

.plans-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.plans-heading {
  font-size: 2rem;
  color: #00272a;
  margin-bottom: 40px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.plan-card {
  background: white;
  border: 2px solid #e0f1f1;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card.highlight {
  border-color: #00bfa5;
  box-shadow: 0 6px 16px rgba(0, 191, 165, 0.2);
}

.plan-card h3 {
  font-size: 1.5rem;
  color: #003b3b;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 1.25rem;
  font-weight: bold;
  color: #00bfa5;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  text-align: left;
}

.plan-features li {
  margin: 10px 0;
  color: #333;
  font-size: 0.95rem;
}

.plan-btn {
  background-color: #00bfa5;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  display: inline-block;
}

.plan-btn:hover {
  background-color: #008d79;
}

.site-footer {
  background: #002f33;
  color: #ffffff;
  font-family: 'Literata', serif;
  padding: 60px 20px 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  width: 140px;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: #e0f1f1;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-social a {
  color: #ffffff;
  font-size: 18px;
  margin-right: 12px;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #00d1b2;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form input {
  padding: 10px 15px;
  border-radius: 25px;
  border: none;
  outline: none;
}

.subscribe-form button {
  padding: 10px;
  border: none;
  border-radius: 25px;
  background: #00bfa5;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe-form button:hover {
  background: #008d79;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #004e4e;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #c9e3e3;

}

.footer-bottom a {
  color: #ffffff;
  text-decoration: underline;
}

.disclaimer {
  font-size: 0.75rem;
  color: #9fd5d5;
  max-width: 800px;
  margin: 0 auto;
}


.contact-section {
  background: #f8f9fa;
  padding: 4rem 2rem;
  font-family: 'Literata', serif;
  text-align: center;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00272a;
}

.contact-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Literata', serif;
}

.contact-form button {
  background-color: #00bfa5;
  color: #fff;
  border: none;
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #001f5c;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-section h2 {
    font-size: 2rem;
  }

  .contact-section p {
    font-size: 1rem;
  }
}
.breadcrumb {
  font-family: 'Literata', serif;
  background-color: #f8f9fa;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  margin-top: 80px;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #666;
}

.breadcrumb a {
  text-decoration: none;
  color: #003087;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #001f5c;
}

.breadcrumb span {
  margin: 0 0.25rem;
  color: #999;
}

/* Responsive */
@media (max-width: 576px) {
  .breadcrumb {
    font-size: 0.85rem;
    padding: 0.8rem 1rem;
  }
}


.support-btn-vertical {
  position: fixed;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  background-color: #003087;
  color: #fff;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px 0 0 30px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%) rotate(270deg);
  transition: background 0.3s ease;
}

.support-btn-vertical:hover {
  background-color: #001f5c;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .support-btn-vertical {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}
