  *{margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff;
    padding-top: 90px;

  }

header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 999;
  transition: top 0.3s ease-in-out;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  position: relative;
  list-style: none;
}

.navbar a {
  text-decoration: none;  
  color: #333;            
  font-weight: 600;
  font-size: 16px;
}

.navbar:hover,
.navbar:hover a {
  color: #d14827;         
  text-decoration: none;  
  cursor: pointer;
}

.nav-logo img {
  height: 70px;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links ul li {
  position: relative;
}

.nav-links a,
.nav-links span.dropdown {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 200%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  width:230px;
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.dropdown-container.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-container {
  position: relative;
}

.dropdown-menu li {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dropdown-menu li:hover {
  background-color: transparent !important;
  color: #d14827;
}


.dropdown-menu li:hover a {
  color: #d14827;
}

.dropdown-container:hover .dropdown-menu,
.dropdown-container.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
  pointer-events: auto;
}


.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -9px; 
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid rgba(167, 167, 167, 0.2); 
  z-index: 9;
}

.dropdown-menu::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fbfbfb; 
  z-index: 10;
}

.dropdown-container:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.dropdown-menu li {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dropdown-menu li:hover {
  background-color: #f1f3f6;
  color: #d14827;
}

.dropdown-menu li:hover a {
  color: #d14827;
}

.dropdown-menu ul {
  list-style: none;
  display: block;
}

.dropdown-menu li {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}

.dropdown-menu li:hover {
  background-color: #f1f3f6;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: #2c2c2c;
  text-decoration: none;
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.nav-right .contact-btn {
  background: linear-gradient(45deg, #d14827, #f26b38);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.icon {
  display: none;
}

.mobile-contact {
  display: none;
}

.menu-top{
  display: none;
}

.mobile-contact {
    display: none !important;
}
.desktop-contact {
    display: flex !important;
}

  .mission-vision-section {
    padding: 60px 20px;
    background-color: #ffffff;
    overflow: hidden;
  }

  .section-title {
    text-align: center;
    color: #061729;
    margin-bottom: 30px;
    font-size: 2.5rem;
      font-weight: 500;
      line-height: 1.2;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }

  .column {
    flex: 0 0 48%;
  }

  .card {
    background: #fff;
    border-left: 8px solid #d14827;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    min-height: 350px;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card h3 {
    font-size: 2rem;
    color: #d14827;
    margin-bottom: 15px;
  }

  .card p {
  font-size: 1rem;
  line-height: 1.6;    
  color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .card ul {
    padding-left: 20px;
    list-style-type: disc;
  }

  .card ul li {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
  }

  @media (max-width: 768px) {
    .row {
      flex-direction: column;

    }

    .mission-vision-section {
    padding: 60px 20px;
    background-color: #ffffff;
    overflow: hidden;
  }

    .column {
      width: 100%;
      overflow: hidden;
    }

    .card {
    background: #fff;
    border-left: 8px solid #d14827;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    min-height: 350px;
  }

  }


  .about-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1573165231977-3f0e27806045?q=80&w=1169&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') 
                no-repeat center center;
    background-size: cover;
    padding: 100px;
    min-height: 600px;
  }

  .about-content {
    display: flex;
    margin-top: 50px;
    max-width: 700px;
    width: 100%;
    align-items: left;
    justify-content: left;
    padding: 0px;
  }

  .about-left {
    flex: 1;
    min-width: 280px;
    color: #ffffff;
  }

  .about-left h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
    display: flex;
    align-items: center;
  }

  .highlight-bar {
    width: 4px;
    height: 60px;
    background-color: #d14827;
    margin-right: 15px;
  }

  .about-left p {
    margin: 20px 0;
    line-height: 1.6;
  }

  .btn {
    background-color: #d14827;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
  }

  .btn:hover {
    background-color: #b2371d;
  }

  .about-right {
    flex: 1;
    min-width: 280px;
  }

  .about-right h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
  }

      .What-Do-We-Do-section {
        display: flex;
        align-items: left;
        padding-top: 50px;
        padding-left: 50px;
        padding-right: 50px;
        flex-wrap: wrap;
      }

      .What-Do-We-Do-text {
        flex: 1 1 400px;
        padding-right: 0px;
      }

      .section-divider {
    width: 100px;
    height: 4px;
    background-color: #d14827;
    border: none;
    margin-bottom: 10px;
  }


.What-Do-We-Do-text h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;         
  color: #061729;
  text-align: left;
  margin-bottom: 20px;

}

.What-Do-We-Do-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
      }

      .features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 0px;
      }

      .feature-item {
        display: flex;
        align-items: center;
        font-weight: 600;
      }

      .feature-item::before {
        content: '✓';
        margin-right: 10px;
        color: #d14827;
      }

      .tax-image {
        flex:1 100px;
        text-align: center;
      }

      .tax-image img {
        max-width: 100%;
        border-radius: 20px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
      }

      @media (max-width: 900px) {
        .tax-section {
          flex-direction: column;
          text-align: center;
        }

        .tax-text {
          padding-right: 0;
        }

        .features {
          grid-template-columns: 1fr;
          justify-items: left;
        }

                .tax-image {
        display: none;
      }

      
      }


  @media (max-width: 768px) {
    body {
      overflow-x: hidden;
    }

    .about-content {
      flex-direction: column;
      align-items: left;
      padding: 0 15px;
      text-align: left;
    }

      .about-content {
    display: flex;
    margin-top: 40px;
    max-width: 500px;
    width: 100%;
    align-items: left;
    justify-content: left;
    padding: 0px;
  }

    .about-section {
    padding: 20px;
    min-height: 600px;
  }

    .about-left h2 {
      justify-content: left;
    }

    .highlight-bar {
      height: 40px;
    }

    .about-left {
      text-align: left;
    }

    .btn {
      margin: 20px auto 0;
    }

      .section-title {
    text-align: left;
    color: #061729;
    margin-bottom: 30px;
    font-size: 1.5rem;
      font-weight: 500;
      line-height: 1.2;
  }

      .card p {
  font-size: 0.95rem;
  line-height: 1.6;    
  color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
  }

          .card h3 {
    font-size: 1.2rem;
    color: #d14827;
    margin-bottom: 15px;
  }


        .What-Do-We-Do-section {
        display: flex;
        align-items: left;
        padding: 20px;
        padding-top: 30px;
        padding-right: 10px;
        flex-wrap: wrap;
      }

      .What-Do-We-Do-text p {
  font-size: 0.95rem;

      }

      
  .section-divider {
    width: 100px;
    justify-content: left;
    height: 4px;
    background-color: #d14827;
    border: none;
    margin: 0 auto 10px auto; /* <-- This centers it */
  }

    .section-divider {
      margin: 0 0 10px 0; /* left-aligned */
    }



        .What-Do-We-Do-text h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: #061729;
        text-align: left;
      }

      

          .tax-image {
        display: none;
      }


    .tax-section {
      flex-direction: column;
      text-align: center;
    }

    .tax-text {
      padding-right: 0;
    }

    .features {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .feature-item {
      display: flex;
      font-weight: 600;
      margin-bottom: 2px;
      text-align: left;
      justify-content: flex-start;
    }
  }

  @media screen and (max-width: 768px) {
    html, body {
      overflow-x: hidden;
      width: 100%;
    }

    .about-section,
    .about-content,
    .nav-bar,
    .section,
    .row,
    .footer-container {
      max-width: 100%;
      width: 100%;
      overflow-x: hidden;
    }

    .about-content {
      padding-left: 15px !important;
      padding-right: 15px !important;
    }

    .nav-bar {
      padding-left: 10px !important;
      padding-right: 10px !important;
    }
  }

  .footer {
    background: linear-gradient(45deg, #061729, #28374d);
    color: #eee;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }


  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-social {
    flex: 1 1 220px;
    min-width: 220px;
  }

  .footer-about h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .footer-links h4,
  .footer-contact h4,
  .footer-social h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #d14827;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
  line-height: 1.6;}

  .footer-links ul li a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease; 
    display: inline-block; 
    margin-bottom: 8px; 
  }

  .footer-links ul li a:hover {
    transform: translateX(10px); 
  }


  .footer-contact p {
    margin-bottom: 8px;
  }

  .footer-social .social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 20px;
    color: #eee;
    transition: color 0.3s ease;
  }

  .footer-social .social-icons a:hover {
    color: #d14827;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding-left: 20px;
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      width: 100%;
      flex-wrap: wrap;
    }

    .footer-about,
    .footer-social {
      flex: 1;
      max-width: 90%;
    }

    .footer-social .social-icons {
      display: flex;
      gap: 10px;
      margin-top: 8px;
    }

    .footer-social .social-icons a {
      margin: 0;
    }
  }

@media screen and (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: white;
  }

    .mobile-contact {
    display: block !important;
  }
  .desktop-contact {
    display: none !important;
  }
  
.nav-bar {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-logo img {
    height: 60px;
  }

  .icon {
    font-size: 28px;
    color: #d14827;
    cursor: pointer;
  }

  .nav-logo img {
    height: 60px;
    align-self: flex-start;
    flex-direction: row;
  }

  .icon {
    display: block;
    font-size: 15px;
    cursor: pointer;
    color: #d14827;
    align-self: flex-end;
    margin: 10px 0;
  }

  .nav-links,
  .nav-right {
    display: none;
  }

  .nav-links.show {
    display: flex;
    width: 100%;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #eee;
  }

    #mobileMenu {
      position: fixed;
      top: 0;
      left: 0;
      width: 90vw;
      height: 100vh;
      background: white;
      transform: translateX(-100%);
      transition: transform 0.3s ease-in-out;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }

  body.menu-open .mobile-header {
    display: none !important;
  } 

  #mobileMenu.show {
    transform: translateX(0);
  }

  .menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    background-color: white;
    z-index: 10001;
  }

  .menu-top .nav-logo img {
    height: 40px;
    padding-left: 20px;
  }

  .menu-top .icon {
    font-size: 30px;
    color: #d14827;
    cursor: pointer;
    padding-right: 20px;
  }

  body.menu-open .page-content {
    filter: blur(20px);
    pointer-events: none; 
    user-select: none;    
    transition: filter 0.3s ease;
  }

  body.menu-open footer {
    filter: blur(20px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.3s ease;
  }
  .icon {
    font-size: 28px;
    color: #d14827;
    cursor: pointer;
    user-select: none;
  }

  .nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    overflow-y: auto;
  }

  .nav-links ul li {
    border-bottom: 1px solid #eee;
  }

  .nav-links ul li a,
  .nav-links ul li span.dropdown {
    display: block;
    padding: 5px 20px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
  }

  .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
    padding-left: 10px;
  }

  .dropdown-container.active .dropdown-menu {
    max-height: 500px;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-links ul li {
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    border-top: 1px solid #eee;
    position: relative;
  }

  .nav-links ul li a,
  .nav-links ul li span.dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
  }

  .dropdown-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #f9f9f9;
    padding: 0;
    margin-top: 0;
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 0;
  }

  .dropdown-container.active .dropdown-menu {
    display: flex;
  }

  .dropdown-menu li {
    padding: 10px;
    border-top: 1px solid #eee;
  }

  .dropdown-menu a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
  }

  .dropdown-container:hover .dropdown-menu,
  .dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto;
  }

  .dropdown-menu::before,
  .dropdown-menu::after {
    display: none;
  }

 .nav-right {
    display: none;
  }

  .mobile-contact {
    display: block;
    padding: 16px;
  }

}
  .section-subtext {
      font-size: 1.25rem;
  line-height: 1.6;
  color: #555;
  }
  .section-subtext {
      font-size: 1.25rem;
  line-height: 1.6;
  color: #555;
  }

