:root {
    --primary: #004A4A;
    --accent: #F0A500;
    --dark: #333333;
    --light: #ffffff;
    --offwhite: #F5F7FA;
  
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
  }
  
  body {
    font-family: var(--font-body);
    color: var(--dark);
    margin: 0;
    padding: 0;
    background-color: var(--offwhite)
  }
  
  /* Navigation */
  .navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 20px;
  }
  
  /* Hero */
  .hero {
    position: relative;
    background: url('images/Hero-image.png') no-repeat center center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    color: var(--light);
    text-align: center;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 74, 74, 0.5); /* Teal overlay */
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
  }
  
  .hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 1.5rem;
  }
  
  .btn-teal {
    font-family: var(--font-heading);
    background-color: var(--primary);
    color: var(--light);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    transition: background-color 0.3s ease;
  }
  
  .btn-teal:hover {
    background-color: #003737;
  }
  
  .link-arrow {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .link-arrow::after {
    content: " ➜"; /* Medium bold arrow */
    font-weight: bold;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
  }
  
  .link-arrow:hover {
    color: #d88f00; /* Slightly darker orange */
  }

  .link-arrow:hover::after {
    transform: translateX(4px);
  }

  /* Mobile full screen */
  @media (max-width: 767.98px) {
    .hero {
      min-height: 100vh;
    }
  
    .hero h1 {
      font-size: 30px;
    }
  
    .hero p {
      font-size: 16px;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: flex-start;
    }
    .hero-content {
        text-align: left; /* Optional: align all text left */
      }
  }
  
  /* Subheadings */
  .subheading {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
  }
  
  /* Paragraphs */
  p.section-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
  }
  
  /* Small Headings */
  h4.small-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
  }

  @media (max-width: 1024px) {
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 18px; }
    .subheading { font-size: 28px; }
    h4.small-heading { font-size: 18px; }
    .navbar-nav .nav-link { font-size: 18px; }
  }
  
  @media (max-width: 768px) {
    .hero h1 { font-size: 30px; }
    .hero p { font-size: 16px; }
    .subheading { font-size: 24px; }
    h4.small-heading { font-size: 16px; }
    .navbar-nav .nav-link { font-size: 16px; }
    .hero-buttons { align-items: flex-start !important; }
  }
  
  .navbar {
    background-color: #004944;
  }
  
  .navbar-brand {
    color: white;
  }
  
  .nav-link {
    color: white !important;
    padding: 0.5rem 1rem;
  }
  
  .nav-link:hover {
    color: #ffa500 !important;
  }
  
  .btn-quote {
    background-color: #ff7f32;
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    text-transform: uppercase;
  }
  
  .btn-quote:hover {
    background-color: #e76f28;
  }
  
  .dummy-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
  }
  
  /* Hamburger */
  #nav-toggle {
    display: none;
  }
  
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 2001;
    transition: transform 0.3s ease;
  }
  
  .hamburger span {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  #nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  
  #nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }
  
  #nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
  
  /* Fullscreen mobile nav */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #004944;
    overflow: hidden;
    transition: height 0.4s ease;
    z-index: 2000;
  }
  
  #nav-toggle:checked ~ .nav-overlay {
    height: 100vh;
  }
  
  .nav-overlay .nav {
    padding-top: 100px;
    gap: 1.5rem;
    transition: opacity 0.3s ease;
  }
  
  .nav-overlay .nav-link {
    font-size: 1.25rem;
    padding: 1rem;
  }
  
  /* Desktop only nav spacing */
  @media (min-width: 992px) {
    .navbar-nav .nav-link {
      margin-right: 15px;
    }
  }
  
  @media (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav .nav-link {
      font-size: 0.9rem;
      padding: 0.5rem 0.75rem;
      margin-right: 10px;
    }
  
    .btn-quote {
      font-size: 0.85rem;
      padding: 0.45rem 0.75rem;
      white-space: nowrap;
    }
  
    .navbar-nav {
      flex-wrap: nowrap;
    }
  }
  
  .trusted-by {
    padding: 60px 0;
    background-color: transparent;
  }
  
  .trusted-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #666666; /* Medium grey */
    margin-bottom: 40px;
  }
  
  .trusted-logo {
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  
  .trusted-logo:hover {
    filter: grayscale(0%);
  }

  .core-services {
        background-color: #f5f7fa;
        background-image: radial-gradient(#d6dce1 1px, transparent 0);
        background-size: 20px 20px;
        background-position: center;
        padding: 60px 0;
  }
  
  .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #004A4A;
    margin-bottom: 10px;
  }
  
  .section-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #333333;
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(245, 247, 250, 0.05));
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(31, 38, 135, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
    color: #333333;
  }
  
  .service-box:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(245, 247, 250, 0.08));
  }
  
  .service-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #004A4A;
    margin: 0;
  }
  
  .service-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #F0A500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
  }
  
  .service-link::after {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.3s ease;
    font-weight: bold;
    content: " ➜"; /* Medium bold arrow */
  }
  
  .service-link:hover {
    color: #d88f00; /* Slightly darker orange */
  }
  
  .service-link:hover::after {
    transform: translateX(4px); /* Arrow slides to the right */
  }
  



  .advantage-section {
    background-color: #004A4A;
    color: #ffffff;
    padding: 60px 0;
  }
  
  .advantage-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
  }
  
  .advantage-section p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto; /* Increased spacing */
    color: #e0f0ef;
  }
  
  .advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    text-align: left;
  }
  
  .advantage-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
  
  .advantage-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    text-align: left !important;
  }

  .advantage-section p.intro {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
    color: #e0f0ef;
  }
  
  .process-steps {
    gap: 30px;
  }
  
  .step-box {
    background: white;
    border-radius: 16px;
    padding: 10px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  
  .step-box:hover {
    transform: translateY(-5px);
  }
  
  .step-number {
    font-size: 32px;
    font-weight: 700;
    color: #F0A500;
    margin-bottom: 15px;
  }
  
  .step-title {
    font-size: 20px;
    font-weight: 600;
    color: #004A4A;
    margin-bottom: 10px;
  }
  
  .step-text {
    font-size: 16px;
    color: #333;
  }
  
  .arrow-icon {
    color: #004A4A;
    margin: 0 10px;
  }

  .fas{
    color: #F0A500;
  }
  
  @media (max-width: 767.98px) {
    .process-steps {
      margin: 0px;
    }
  
    .step-title {
      font-size: 18px;
      text-align: center;
    }
  
    .step-text {
      text-align: center;
    }
  
    .arrow-icon {
      display: none; /* hide arrows on mobile */
    }
  }
  
  .testimonial-section {
    background-color: #FFF5E6;
  }
  
  .testimonial-box {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .testimonial-box img {
    object-fit: cover;
    border: 2px solid #fff;
  }

  
  
  .card-img-top {
    object-fit: cover;
    height: 200px;
  }
  
  .card-body {
    padding: 1.5rem;
  }
   





  .footer {
    background-color: #004A4A;
    color: white;
    padding: 40px 20px;
    font-family: 'Open Sans', sans-serif;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  
  .footer-left {
    max-width: 280px;
  }
  
  .tagline {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .footer-logo {
    height: 30px;
    margin-bottom: 10px;
  }
  
  .footer-desc {
    font-size: 14px;
    color: #d3d3d3;
  }
  
  .footer-links {
    display: flex;
    gap: 60px;
  }
  
  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .footer-column a {
    color: white;
    text-decoration: none;
    font-size: 14px;
  }
  
  .footer-column a:hover {
    text-decoration: underline;
  }
  
  .footer-right {
    max-width: 300px;
  }
  
  .newsletter-text {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .newsletter-form {
    display: flex;
    margin-bottom: 15px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 4px 0 0 4px;
  }
  
  .newsletter-form button {
    padding: 8px 16px;
    background-color: #F0A500;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
    cursor: pointer;
  }
  
  .quote-btn {
    margin-top: 10px;
    background-color: #F0781E;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .footer-divider {
    border-top: 1px solid #ffffff30;
    margin: 30px 0;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
    color: #d3d3d3;
  }
  
  .footer-policy-links a {
    color: #d3d3d3;
    margin-left: 20px;
    text-decoration: none;
  }
  
  .footer-policy-links a:hover {
    text-decoration: underline;
  }
  
  /* Mobile responsive */
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-links {
      flex-direction: column;
      gap: 20px;
    }
  
    .newsletter-form {
      flex-direction: column;
    }
  
    .newsletter-form input,
    .newsletter-form button {
      width: 100%;
      border-radius: 4px;
      margin-bottom: 10px;
    }
  
    .quote-btn {
      width: 100%;
    }
  
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    .footer-policy-links {
      margin-left: 0;
    }
  }

  
  