*{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;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); 
}

.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;
}

.menu-top{
  display: none;
}

.mobile-contact {
    display: none !important;
}
.desktop-contact {
    display: flex !important;
}

    .hero-section {
      height: 90vh;
      width: 100%;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(10, 10, 10, 0.3)),
            url('Business\ Solutions.jpg') no-repeat center center / cover;

      display: flex;
      align-items: center;
      padding: 0 5%;
    }

    .hero-content {
      max-width: 800px;
      color: white;
    }

    .hero-content .tagline {
      color: #d14827;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .hero-content h1 {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-content p {
      font-size: 1rem;
      line-height: 1.6;
      color: #e0e0e0;
      max-width: 90%;
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 1.5rem;
      }
      .hero-content p {
        font-size: 0.95rem;
      }

      .hero-section {
      height: 60vh;
    }

    .tax-image-1{
      display: none;
    }
    }

          .What-Do-We-Do-section {
        display: flex;
        align-items: left;
        padding-top: 50px;
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 30px;
        flex-wrap: wrap;
      }

      .What-Do-We-Do-text {
        flex: 1 1 300px;
        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: 2rem;
  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-1 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px 40px;
  margin-top: 30px;
}

.feature-item-1 {
  position: relative;
  padding-left: 25px; /* Space for tick */
}

.feature-item-1 h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 15px;
  position: relative;
}

.feature-item-1 h3::before {
  content: '✓';
  position: absolute;
  left: -25px;
  color: #d14827;
}

.feature-item-1 p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}


      .tax-image {
        flex:1 100px;
        text-align: center;
      }

      .tax-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
      }
      .tax-image-1 {
        flex:1 100px;
        text-align: center;
        margin-right: 50px;
      }

      .tax-image-1 img {
        max-width: 100%;
        border-radius: 10px;
        margin-top: 40px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
      }

    .tax-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 30px 10%;
      padding-top: 30px;
      background-color: #fff;
    }

    .tax-text {
      flex: 1 1 500px;
      padding-right: 40px;
      font-size: 1rem;
      line-height: 1.6;
    }

    .tagline {
      color: #d14827;
      font-size: 0.9rem;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .heading-with-line {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .vertical-line {
      width: 4px;
      height: 80px; /* FIXED height for visibility */
      background-color: #d14827;
      margin-right: 15px;
      border-radius: 2px;
      flex-shrink: 0;
    }

    .heading-with-line h2 {
      font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;         
  color: #061729;
  text-align: left;
    }

    .tax-text ul {
      list-style: none;
      padding-left: 0;
      color: #333;
    }

    .tax-text ul li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 10px;
    }

    .tax-text ul li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 0;
      color: #d14827;
      font-weight: bold;
    }

    .tax-image {
      flex: 1 1 400px;
      text-align: center;
    }

    .tax-image img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

          .features {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin-top: 20px;
      }

      .industry {
        display: flex;
        align-items: center;
        font-weight: 600;
      }

      .industry::before {
        content: '✓';
        margin-right: 10px;
        color: #d14827;
      }

            .section-divider {
    width: 100px;
    height: 4px;
    background-color: #d14827;
    border: none;
  }

    @media (max-width: 1508px) {
          .tax-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 20px;
      padding-top: 40px;
      padding-bottom: 20px;
      background-color: #fff;
    }
      .tax-text {
        padding-right: 0;
        font-size: 0.9rem;
      }
          .heading-with-line h2 {
      font-size: 1rem;
      color: #062241;
    }


      .vertical-line {
        height: 100px;
      }
      .heading-with-line h2 {
      font-size: 1.5rem;
    }
    .tax-image {
      display: none;
    }

    .features {
              grid-template-columns: repeat(2, 1fr);
      padding-bottom: 20px;

    }

    .industry {
      display: flex;
      margin-bottom: 2px;
      text-align: left;
      justify-content: flex-start;
    }
    }

  .erp-heading {
        flex: 1 1 300px;
        padding-right: 0px;
        margin-top: 30px;
      }

.section-divider-1 {
  display: block;       /* make it a block element */
  width: 100px;
  height: 4px;
  background-color: #d14827;
  border-radius: 2px;
  margin: 10px auto 20px auto; /* center horizontally with auto margins */
}


.erp-heading h2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;         
  color: #061729;
  text-align: center;
  margin-bottom: 20px;
}

.erp-heading p{
 font-size: 1rem;
 text-align: center;
   line-height: 1.6;
  color: #555;
  margin-bottom: 30px;

}

    .options-box {
      display: flex;
      max-width: 900px;
      margin: auto;
      background: #fff;
      text-align: left;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 5px 10px 12px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
    }

    .options-left {
      width: 30%;
      background: #061729; /* solid fallback */
      display: flex;
      flex-direction: column;

    }

    .option-btn {
      background: none;
      border: none;
      padding: 20px;
      text-align: left;
      font-size: 1rem;
      color: #fff;
      cursor: pointer;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      transition: background 0.3s, color 0.3s;
    }

    /* Gradient hover effect */
    .option-btn:hover {
      background: linear-gradient(135deg, #28374d, #061729);
    }

    /* Active button */
    .option-btn.active {
      background: linear-gradient(135deg, #28374d, #061729);
      color: #fff;
    }

    .options-right {
      width: 70%;
      padding: 30px;
        line-height: 1.6;
  color: #555;
  text-align: left;
        font-size: 1rem;

    }

    .content {
      display: none;
    }

    .content.active {
      display: block;
    }

    h2 {
      color: #d14827;
      text-align: left;
      font-size: 1.3rem;
    }

  @media (max-width: 900px) {
    h2{
      font-size: 1.2rem;
      margin-bottom: 12px;
    }

    p{
      font-size: 16px;
    }
    .options-box {
      flex-direction: column;
      padding: 20px;
    }
    .options-left {
      width: 100%;
      flex-direction: row; /* row-wise buttons */
      flex-wrap: wrap;     /* wrap to next line if needed */
      justify-content: space-between;
      background: #061729;
    }
    .option-btn {
      flex: 1 1 30%; /* two buttons per row */
      border-bottom: none;
      border-right: 1px solid rgba(255,255,255,0.2);
      border-left: 1px solid rgba(255, 255, 255, 0.2);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      margin-bottom: 2px;
      font-size: 16px;
    }
    .option-btn:nth-child(2n) {
      border-right: none; /* remove border for last button in row */
    }
    .options-right {
      width: 95%;
      padding: 20px;
      line-height: 1.2;
      color: #555;
      font-size: 0.95rem;
        padding: 20px;
    }
    .erp-heading p {
      padding: 20px;
      line-height: 1.2;
      color: #555;
      margin-bottom: 0;
    }

     .erp-heading h2{
      font-size: 1.5rem;
      font-weight: 500px;
      margin-bottom: 0;

     }
  }

  @media (max-width: 500px) {
    .option-btn {
       flex: 1 1 50%; /* two buttons per row */
    }

        .options-right {
      padding: 20px;
    }
  }

    .parallax {
      position: relative;
      height: 350px;
      background-image: url('ERP\ Implementation.png');
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      overflow: hidden;
    }

    /* Black overlay */
    .parallax::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .content-1 {
      position: relative; /* keep above overlay */
      z-index: 2;
      max-width: 500px;
      background: transparent;
      padding: 40px 30px;
      text-align: center;
    }

    .content-1 h1 {
      margin-bottom: 15px;
      font-size: 28px;
      letter-spacing: 1.2px;
    }

    .content-1 p {
      margin-bottom: 20px;
      font-size: 18px;
    }

    .email-form {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

.email-form input[type="email"] {
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  flex-grow: 1;
  min-width: 200px;
}

.email-form input[type="email"]:focus {
  outline: none;
  box-shadow: none;
}

    .email-form button {
      padding: 10px 20px;
      font-size: 16px;
      background-color: #d14827;
      border: none;
      color: white;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .email-form button:hover {
      background-color: #d65737;
    }
@media (max-width: 480px) {
  .parallax {
    background-attachment: scroll; /* fix for mobile */
    background-position: center center;
  }

  .content h1 {
    margin-bottom: 15px;
    font-size: 20px;
    letter-spacing: 1.2px;
  }

  .email-form {
    flex-direction: column;
    gap: 15px; /* space between input and button */
    align-items: center; /* center children horizontally */
    justify-content: center;
  }

  .email-form input[type="email"] {
    width: 90%; /* full width input */
  }

  .email-form button {
    max-width: 200px;
    width: 90%; /* full width but limited by max-width */
    margin: 0 auto; /* center button */
  }
}

  @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-text {
      padding-right: 0;
    }


  }
    .tax-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 50px;
      padding-bottom: 0;
      padding-right: 0px;
      background-color: #fff;
    }

    .tax-text {
      flex: 1 1 500px;
      padding-right: 40px;
      font-size: 1rem;
  line-height: 1.6;
color: #555;
    }

    .tagline {
      color: #d14827;
      font-size: 0.9rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .heading-with-line {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .vertical-line {
      width: 4px;
      height: 100px; /* FIXED height for visibility */
      background-color: #d14827;
      margin-right: 15px;
      border-radius: 2px;
      flex-shrink: 0;
    }

    .heading-with-line h2 {
      font-size: 2rem;
      color: #062241;
    }

    .tax-text ul {
      list-style: none;
      padding-left: 0;
      color: #333;
    }

    .tax-text ul li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 10px;
    }

    .tax-text ul li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 0;
      color: #d14827;
      font-weight: bold;
      font-size: 1rem;
  line-height: 1.6;
    }

    .tax-image {
      flex: 1 1 400px;
      text-align: center;
    }

    .tax-image img {
      max-width: 90%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 1200px){
    .tax-image {
      display: none;
    }
    }
    @media (max-width: 708px) {
          .tax-section {
      display: flex;
      flex-wrap: wrap;
      align-items: left;
      padding: 30px;
      background-color: #fff;
            padding-left: 30px;
            padding-right: 10px;

    }
      .tax-text {
          font-size: 0.95rem;
  line-height: 1.6; 
      }

      .vertical-line {
        height: 100px;
      }
      .heading-with-line h2 {
      font-size: 1.5rem;
    }
    .tax-image {
      display: none;
    }
    }

    .timeline-section {
  padding: 0 30px;
}

.timeline-heading {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;  
  color: #062241;
  text-align: center;
  margin-top: 40px;
}

.heading-line {
  display: block;       /* make it a block element */
  width: 100px;
  height: 4px;
  background-color: #d14827;
  border-radius: 2px;
  margin: 20px auto 20px auto; /* center horizontally with auto margins */
}

/* Mobile adjustments */
@media (max-width: 800px) {
  .timeline-section {
    text-align: left;
    padding-left: 30px;
  }
  .timeline-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;

}


}

    .timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 20px;
    margin-bottom: 30px;
  }

  /* Horizontal timeline line */
  .timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 40px;
    right: 20px;
    height: 3px;
    background: #ddd;
    z-index: 1;
  }

  .timeline-item {
    position: relative;
    max-width: 220px;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }

  /* Circle style */
  .circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #d14827;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
  }

  /* Vertical connector line from circle to horizontal line */
  .timeline-item::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 15px;
    background: #ddd;
    z-index: 2;
  }

  /* Arrow on timeline line pointing right, except last item */
  .timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15px;
    width: 20px;
    height: 20px;
    border-top: 3px solid #d14827;
    border-right: 3px solid #d14827;
    transform: rotate(45deg);
    z-index: 2;
  }

  /* Hide arrows for first two items */
  .timeline-item:nth-child(1)::after,
  .timeline-item:nth-child()::after,
  .timeline-item:nth-child(2)::after {
    display: none;
  }

  .timeline-item h4 {
    margin: 0 0 8px;
    font-weight: 600;
    color: #d14827;
  }

  .timeline-item p {
    font-size: 1rem;
  line-height: 1.4;
color: #555;
    margin: 0;
  }

@media (max-width: 800px) {
  .timeline {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    padding-bottom: 20px;
    max-width: 100%;
    position: relative;
  }

  /* Hide horizontal line */
  .timeline::before {
    display: none;
  }

  /* Vertical line */
  .timeline::after {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 50px;
    left: 78px;
    width: 4px;
    background: #ddd;
    z-index: 1;
  }

  .timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 40px;
    max-width: 100%;
    text-align: left;
    align-items: flex-start;
  }

  .heading-line {
  display: block;       /* make it a block element */
  width: 100px;
  height: 4px;
  background-color: #d14827;
  border-radius: 2px;
  margin: 20px auto 20px auto; /* center horizontally with auto margins */
}

  .circle {
    position: absolute;
    left: 15px;
    top: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #d55d2d;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
    margin: 0;
  }

  /* Mobile downward arrow (except last item) */
  .timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 100px; /* just below the circle */
    left: 50px; /* center of vertical line */
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #d55d2d;
    z-index: 2;
  }

  /* Remove horizontal connector and right arrow */
  .timeline-item::before {
    display: none;
  }

  .timeline-item h4,
  .timeline-item p {
    margin: 0 0 10px 0;
  }

  .timeline-item p{
      font-size: 0.95rem;
  line-height: 1.6;  
  }
}

.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;
  }

}
