*{margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  padding-top: 90px; 
  text-align: left;
  justify-content: left;
}


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: #061729;         
  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;
}

.services-menu {
  position: relative;
}

.dropdown-container.services-menu {
  position: relative;
}

.dropdown-container {
  position: relative;
}

.mega-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 20%;
  transform: translateX(-50%) translateY(10px);

  width: 400px;
  background: #fff;

  padding: 20px 20px 20px; /* bottom space kam */
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 22px;

  border-radius: 0 0 14px 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}

/* Important: invisible bridge between menu text and dropdown */
.mega-dropdown::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 18px;
  background: transparent;
}

.dropdown-container:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-20%) translateY(0);
}

.dropdown-container:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.mega-col {
  position: relative;
}

.mega-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  right: -23px;
  width: 1px;
  height: 85%;
  border-right: 1px dashed #b9c9bd;
}

.mega-icon {
  width: 42px;
  height: 42px;
  background: #dff3e3;
  color: #032f40;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.mega-col h4 {
  color: #032f40;
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 700;
}

.mega-col a {
  display: block;
  color: #566b66;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 400;
  transition: 0.2s ease;
}

.mega-col a:hover {
  color: #d13d2f;
  padding-left: 5px;
}

@media (max-width: 991px) {
  .mega-dropdown {
    position: static;
    width: 100%;
    transform: none;
    grid-template-columns: 1fr;
    box-shadow: none;
    padding: 20px;
  }

  .mega-col:not(:last-child)::after {
    display: none;
  }
}

.company-mega-menu {
  position: relative;
}

.company-mega-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 20%;
  transform: translateX(-20%) translateY(10px);

  width: 200px;
  background: #fff;

  padding: 20px 20px 20px; /* bottom space kam */

  border-radius: 0 0 14px 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}

.company-mega-dropdown::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 18px;
  background: transparent;
}

/* company dropdown links spacing */
.company-mega-dropdown a {
  display: block;
  margin-bottom: 12px;
}

.company-mega-dropdown a:last-child {
  margin-bottom: 0; /* last item ke baad space remove */
}

.company-mega-menu:hover .company-mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-20%) translateY(0); /* yahan -50% nahi, -20% */
}

.company-mega-menu:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-shrink: 0;
}

.nav-right .phone-link {
  color: #032f40;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-right .phone-link:hover {
  color: #d13d2f;
}

.nav-right .contact-btn {
  background: linear-gradient(45deg, #b63434, #061729);
  color: white; 
  padding: 10px 20px; 
  border-radius: 25px; 
  text-decoration: none; 
  font-weight: bold; 
  transition: background 0.3s ease;
}

.nav-right .contact-btn:hover {
  background: linear-gradient(45deg, #dc4141, #072a4f);

}



/* Small Mobile */
@media (max-width: 480px) {
  .nav-logo img {
    height: 52px;
  }

  .nav-links {
    top: px;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 72px);
  }

  .nav-right .contact-btn {
    display: none;
  }
}



.mobile-consultation {
  display: none;
}

html.menu-open,
body.menu-open {
  overflow: hidden !important;
  height: 100vh !important;
  position: fixed;
  width: 100%;
}

.nav-bar {
  display: grid;
  grid-template-columns: 220px 1fr 460px;
  align-items: center;
}

.nav-links {
  justify-content: center;
}

.nav-links ul {
  justify-content: center;
}

.nav-right {
  justify-content: flex-end;
}

.icon {
  display: none;
}

.mobile-contact {
  display: none;
}

.menu-top{
  display: none;
}

.mobile-contact {
    display: none !important;
}
.desktop-contact {
    display: flex !important;
}


@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: #061729;
    cursor: pointer;
  }

  .nav-logo img {
    height: 60px;
    align-self: flex-start;
    flex-direction: row;
  }

  .icon {
    display: block;
    font-size: 15px;
    cursor: pointer;
    color: #061729;
    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: #061729;
    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: #061729;
    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;
  }


    /* ===== MOBILE HEADER FIX ===== */
@media (max-width: 786px) {

  body {
    padding-top: 80px;
  }

  header {
    height: 80px;
  }

  .nav-bar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 28px !important;
    height: 80px;
  }

  .nav-logo img {
    height: 55px !important;
  }

  .icon {
    display: block !important;
    font-size: 28px !important;
    color: #061729 !important;
    margin: 0 !important;
    align-self: center !important;
  }

  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 100% !important;
    height: 100vh !important;
    background: #fff !important;
    display: block !important;
    z-index: 99999 !important;
    transition: right 0.3s ease !important;
    overflow-y: auto !important;
  }

  .nav-links.active {
    right: 0 !important;
  }

  .menu-top {
    display: flex !important;
    height: 80px !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 28px !important;
    border-bottom: 1px solid #eee !important;
  }

  .menu-top .nav-logo img {
    height: 45px !important;
    padding-left: 0 !important;
  }

  .menu-top .icon {
    font-size: 30px !important;
    padding-right: 0 !important;
  }

  .nav-links ul {
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-links ul li {
    padding: 0 !important;
    border-bottom: 1px solid #eee !important;
  }

  .nav-links ul li a,
  .nav-links ul li span.dropdown {
    padding: 18px 28px !important;
    font-size: 16px !important;
  }

.nav-links ul li.mobile-consultation {
  display: block !important;
  width: 100% !important;
  padding: 20px 28px !important;
  border-bottom: none !important;
  box-sizing: border-box !important;
}

.nav-links ul li.mobile-consultation a.mobile-consult-btn {
  display: flex !important;
  width: 100% !important;
  box-sizing: border-box !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(45deg, #b63434, #061729);
  color: #fff !important;
  padding: 14px 20px !important;
  border-radius: 25px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  margin: 0 !important;
}

.nav-links ul {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  height: auto !important;
  min-height: auto !important;
}

.nav-links ul li.mobile-consultation {
  margin-top: 20px !important;
}
}

@media (max-width: 1100px) {
  .mega-dropdown,
  .company-mega-dropdown {
    display: none !important;
    position: static !important;
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
  }

  .dropdown-container.active .mega-dropdown,
  .company-mega-menu.active .company-mega-dropdown {
    display: grid !important;
  }

  .nav-links ul {
    justify-content: flex-start !important;
    height: auto !important;
    min-height: 0 !important;
    flex-grow: 0 !important;
  }

  .nav-links ul li.mobile-consultation {
    display: block !important;
    padding: 20px 28px !important;
    margin: 0 !important;
    border-bottom: none !important;
  }

  .mobile-consult-btn {
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}

/* ===== TABLET SAME AS MOBILE: 1100px to 769px ===== */
@media (max-width: 1100px) and (min-width: 769px) {
  body {
    padding-top: 80px;
  }

  header {
    height: 80px;
    padding: 0 28px;
  }

  .nav-bar {
    height: 80px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-header {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo img {
    height: 55px !important;
  }

  .icon {
    display: block !important;
    font-size: 30px !important;
    color: #061729 !important;
    cursor: pointer;
  }

  .nav-right {
    display: none !important;
  }

  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 100% !important;
    height: 100vh !important;
    background: #fff !important;
    display: block !important;
    overflow-y: auto !important;
    transition: right 0.3s ease !important;
    z-index: 999999 !important;
  }

  .nav-links.show {
    right: 0 !important;
  }

  .menu-top {
    display: flex !important;
    height: 80px !important;
    align-items: center;
    justify-content: space-between;
    padding: 10px 28px;
    border-bottom: 1px solid #eee;
  }

  .nav-links ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    flex-grow: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-links ul li {
    width: 100% !important;
    border-bottom: 1px solid #eee;
    padding: 0 !important;
  }

  .nav-links a,
  .nav-links span.dropdown {
    width: 100% !important;
    padding: 18px 28px !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    font-size: 16px !important;
  }

  .mega-dropdown,
  .company-mega-dropdown {
    position: static !important;
    width: 100% !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 15px 28px !important;
    grid-template-columns: 1fr !important;
  }

  .dropdown-container.active .mega-dropdown,
  .company-mega-menu.active .company-mega-dropdown {
    display: grid !important;
  }

  .mobile-consultation {
    display: block !important;
    padding: 20px 28px !important;
    border-bottom: none !important;
  }

  .mobile-consult-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    box-sizing: border-box !important;
    background: linear-gradient(45deg, #b63434, #061729);
    color: #fff !important;
    padding: 14px 20px !important;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    margin: 0 !important;
  }
} 

@media (max-width: 1100px) {
  .nav-links ul {
    flex-grow: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    justify-content: flex-start !important;
  }

  .nav-links ul li {
    padding: 12px 20px !important;
  }

  .nav-links ul li a,
  .nav-links ul li span.dropdown {
    padding: 12px 20px !important; /* reduce space */
    font-size: 15px !important;
  }

  .mobile-consultation {
    padding: 15px 20px !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('../images/web-development.png') no-repeat center center / cover;

      display: flex;
      align-items: center;
      padding: 0 5%;
    }

    .hero-content {
      max-width: 800px;
      color: white;
    }

    .hero-content .tagline {
      color: #d13d2f;
      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;
    }
    }

.What-Do-We-Do-section {
  display: flex;
  align-items: flex-start;
  padding: 50px;
  gap: 40px; /* Ã°Å¸â€˜Ë† Adds spacing between image and text */
  flex-wrap: wrap;
}

      .What-Do-We-Do-text {
        flex: 1 1 400px;
        padding-right: 0px;
      }

      .section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #b63434, #061729);
    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 {
        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: '\2713';
        margin-right: 10px;
        color: #061729;
      }

      .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);
      }
.tech-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 20px;
  gap: 40px;
  box-sizing: border-box;
}

.tech-container {
  flex: 1 1 20%;
  padding-left: 50px;
  width: 100%;
  box-sizing: border-box;
}

.tech-image {
  flex: 1 1 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-image img {
  max-width: 80%;
  height: 80%;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.section-title {
  margin-top: 20px;
  text-align: left;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #061729;
}

.section-title::after {
  content: '';
  margin-top: 20px;
  width: 100px;
  height: 4px;
    background: linear-gradient(45deg, #b63434, #061729);
  display: block;
  border-radius: 2px;
}

.tech-group {
  margin-bottom: 30px;
}

.group-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #061729;
  margin-bottom: 20px;
  padding-left: 12px;
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 8px;
  font-size: 1rem;
  color: #333;
  padding-left: 12px;
}

.tech-list span::before {
  content: "Ã¢â‚¬Â¢";
  color: #061729;
  margin-right: 10px;
}


/* Responsive for Ã¢â€°Â¤ 768px */
@media (max-width: 1150px) {
  .tech-section {
    flex-direction: column;
    align-items: left;
    text-align: left;
  }
.tech-image{
  display: none;
}

  .tech-container {
    flex: 1 1 100%;
    padding: 0;
    width: 100%;
  }

  .tech-container {
    padding: 0 20px;
  }

  .section-title::after {
    margin-left: 0;
  }
}

@media (max-width: 1050px){
        .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: linear-gradient(45deg, #b63434, #061729);
    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;
    }

}

 .footer {
      background: linear-gradient(50deg, #061729, #07214c);
    color: #eee;
    padding: 40px 20px 20px;
    font-size: 15px;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 120px;
    padding-right: 120px;
    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: #ffffff;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
  line-height: 1.6;
    color:#d9d8d8;
}

  .footer-links ul li a {
    color: #d9d8d8;
    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;
    color: #aaaaaa;
  }

  .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: #ffffff;
  }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  margin-top: 30px;
  padding: 22px 120px;

  border-top: 1px solid rgba(255, 255, 255, 0.18);

  color: #d9d8d8;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
  color: #d9d8d8;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.footer-bottom-links a {
  color: #d9d8d8;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* Tablet */
@media (max-width: 1100px) {
  .footer-bottom {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 16px;

    padding: 24px 20px;

    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 22px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
}
  @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;
    }
  }

/* =====================================================================
   FINAL SHARED HEADER Ã¢â‚¬â€ COPIED FROM THE WORKING Social Media Marketing PATTERN
   Desktop: Logo left | Navigation centre | Contact details right
   Mobile/tablet: working slide-in menu with clickable dropdowns
   Services: Accounting | IT | Marketing
   ===================================================================== */

.header-shadow {
  box-shadow: 0 8px 28px rgba(6, 23, 41, 0.10) !important;
}

/* ============================= DESKTOP ============================== */
@media (min-width: 1101px) {
  body {
    padding-top: 90px !important;
    overflow-y: auto !important;
    position: static !important;
    height: auto !important;
  }

  header {
    height: 90px !important;
    padding-left: 100px !important;
    padding-right: 100px !important;
  }

  .nav-bar {
    display: grid !important;
    grid-template-columns: 220px minmax(300px, 1fr) 460px !important;
    align-items: center !important;
    width: 100% !important;
    height: 90px !important;
    padding: 10px 40px !important;
  }

  /* The Social Media Marketing header keeps its logo wrapper as the first column. */
  .mobile-header {
    display: flex !important;
    width: 220px !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .mobile-header .nav-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .mobile-header .nav-logo img {
    display: block !important;
    width: auto !important;
    height: 70px !important;
    max-width: 190px !important;
    object-fit: contain !important;
  }

  .mobile-header .icon,
  .menu-top,
  .icon {
    display: none !important;
  }

  #mobileMenu,
  .nav-links,
  .nav-links.show,
  .nav-links.active {
    position: static !important;
    display: flex !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .nav-links {
    align-items: center !important;
    justify-content: center !important;
  }

  .nav-links > ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    gap: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .nav-links > ul > li {
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
  }

  .nav-links > ul > li > a,
  .nav-links > ul > li > .dropdown {
    display: flex !important;
    width: auto !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    color: #333333 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
  }

  .nav-right {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 18px !important;
  }

  .mobile-consultation {
    display: none !important;
  }

  /* Desktop Services dropdown box. */
  .dropdown-container.services-menu > .mega-dropdown {
    position: fixed !important;
    top: 90px !important;
    left: 50% !important;
    right: auto !important;

    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-rows: auto !important;
    column-gap: 0 !important;
    row-gap: 0 !important;

    width: min(1000px, calc(100vw - 40px)) !important;
    max-width: 1000px !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 30px !important;

    background: #ffffff !important;
    border-radius: 0 0 14px 14px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14) !important;
    z-index: 999999 !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate(-50%, 12px) !important;

    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease !important;
  }

  .dropdown-container.services-menu:hover > .mega-dropdown,
  .dropdown-container.services-menu.active > .mega-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) !important;
  }

  .dropdown-container.services-menu > .mega-dropdown::before {
    content: "" !important;
    position: absolute !important;
    top: -22px !important;
    left: 0 !important;
    width: 100% !important;
    height: 22px !important;
    background: transparent !important;
  }

  .dropdown-container.services-menu > .mega-dropdown > .mega-col {
    position: relative !important;
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 0 28px !important;
    margin: 0 !important;
  }

  .dropdown-container.services-menu
  > .mega-dropdown
  > .mega-col:first-child {
    padding-left: 0 !important;
  }

  .dropdown-container.services-menu
  > .mega-dropdown
  > .mega-col:last-child {
    padding-right: 0 !important;
  }

  .dropdown-container.services-menu
  > .mega-dropdown
  > .mega-col:not(:last-child)::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 0 !important;
    height: 100% !important;
    border: 0 !important;
    border-right: 1px dashed #aebdb8 !important;
  }

  .dropdown-container.services-menu
  > .mega-dropdown
  > .mega-col h4 {
    display: block !important;
    color: #032f40 !important;
    font-size: 19px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    margin: 0 0 18px !important;
    padding: 0 0 12px !important;
    border-bottom: 1px solid #c8d3cf !important;
  }

  .dropdown-container.services-menu
  > .mega-dropdown
  > .mega-col a {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    color: #566b66 !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    padding: 0 !important;
    margin: 0 0 16px !important;
  }

  .dropdown-container.services-menu
  > .mega-dropdown
  > .mega-col a:last-child {
    margin-bottom: 0 !important;
  }

  .dropdown-container.services-menu
  > .mega-dropdown
  > .mega-col a:hover {
    color: #d13d2f !important;
    padding-left: 5px !important;
  }
}

/* Prevent large desktop padding from squeezing the centre at smaller laptops. */
@media (min-width: 1101px) and (max-width: 1450px) {
  header {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .nav-bar {
    grid-template-columns: 190px minmax(280px, 1fr) 430px !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .mobile-header {
    width: 190px !important;
  }
}

/* ========================== MOBILE/TABLET =========================== */
@media (max-width: 1100px) {
  body {
    padding-top: 80px !important;
  }

  header {
    height: 80px !important;
    padding: 0 !important;
  }

  .nav-bar {
    display: flex !important;
    width: 100% !important;
    height: 80px !important;
    padding: 10px 28px !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .mobile-header {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .mobile-header .nav-logo,
  .menu-top .nav-logo {
    display: flex !important;
    align-items: center !important;
  }

  .mobile-header .nav-logo img {
    display: block !important;
    width: auto !important;
    height: 55px !important;
    max-width: 180px !important;
    object-fit: contain !important;
  }

  .mobile-header .icon {
    display: block !important;
    align-self: center !important;
    margin: 0 !important;
    padding: 8px !important;
    color: #061729 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    cursor: pointer !important;
  }

  .nav-right {
    display: none !important;
  }

  #mobileMenu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;

    display: flex !important;
    flex-direction: column !important;

    width: min(90vw, 430px) !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100dvh !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #ffffff !important;
    border: none !important;
    box-shadow: 14px 0 40px rgba(0, 0, 0, 0.18) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    z-index: 999999 !important;

    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-105%) !important;
    transition: transform 0.3s ease-in-out !important;
  }

  #mobileMenu.show,
  #mobileMenu.active {
    transform: translateX(0) !important;
  }

  .menu-top {
    position: sticky !important;
    top: 0 !important;
    z-index: 5 !important;

    display: flex !important;
    flex: 0 0 80px !important;
    width: 100% !important;
    height: 80px !important;

    align-items: center !important;
    justify-content: space-between !important;

    padding: 10px 28px !important;
    background: #ffffff !important;
    border-bottom: 1px solid #eeeeee !important;
  }

  .menu-top .nav-logo img {
    display: block !important;
    width: auto !important;
    height: 48px !important;
    max-width: 170px !important;
    padding: 0 !important;
    object-fit: contain !important;
  }

  .menu-top .icon {
    display: block !important;
    margin: 0 !important;
    padding: 8px !important;
    color: #061729 !important;
    font-size: 34px !important;
    line-height: 1 !important;
    cursor: pointer !important;
  }

  #mobileMenu > ul {
    display: flex !important;
    flex-direction: column !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  #mobileMenu > ul > li {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
    border-top: none !important;
    border-bottom: 1px solid #eeeeee !important;
  }

  #mobileMenu > ul > li > a,
  #mobileMenu > ul > li > .dropdown {
    display: flex !important;
    width: 100% !important;
    min-height: 54px !important;
    padding: 16px 28px !important;
    align-items: center !important;
    justify-content: space-between !important;
    color: #333333 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
  }

  #mobileMenu .dropdown-arrow {
    transition: transform 0.3s ease !important;
    transform: rotate(0deg) !important;
  }

  #mobileMenu .dropdown-container.active > .dropdown .dropdown-arrow {
    transform: rotate(180deg) !important;
  }

  #mobileMenu .company-mega-dropdown,
  #mobileMenu .mega-dropdown {
    position: static !important;
    display: none !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;

    margin: 0 !important;
    padding: 10px 28px 18px !important;

    background: #f9f9f9 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  #mobileMenu .company-mega-menu.active > .company-mega-dropdown {
    display: block !important;
  }

  #mobileMenu .services-menu.active > .mega-dropdown {
    display: grid !important;
  }

  #mobileMenu .mega-col {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 0 14px !important;
  }

  #mobileMenu .mega-col:last-child {
    margin-bottom: 0 !important;
  }

  #mobileMenu .mega-col::after {
    display: none !important;
  }

  #mobileMenu .mega-col h4 {
    display: block !important;
    margin: 10px 0 8px !important;
    padding: 0 0 8px !important;
    color: #032f40 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-bottom: 1px solid #d8e0dd !important;
  }

  #mobileMenu .company-mega-dropdown a,
  #mobileMenu .mega-dropdown a {
    display: block !important;
    width: 100% !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    color: #566b66 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
  }

  #mobileMenu .mobile-consultation {
    display: block !important;
    width: 100% !important;
    padding: 20px 28px !important;
    margin: 0 !important;
    border-bottom: none !important;
    box-sizing: border-box !important;
  }

  #mobileMenu .mobile-consult-btn {
    display: flex !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 14px 20px !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    background: linear-gradient(45deg, #b63434, #061729) !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
  }

  html.menu-open,
  body.menu-open {
    overflow: hidden !important;
    position: static !important;
    width: 100% !important;
    height: auto !important;
  }

  body.menu-open .page-content,
  body.menu-open footer {
    filter: blur(20px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.3s ease;
  }
}

/* Tablet follows the Social Media Marketing page: three Services columns. */
@media (min-width: 769px) and (max-width: 1100px) {
  #mobileMenu .services-menu.active > .mega-dropdown {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    padding: 20px 28px !important;
  }

  #mobileMenu .services-menu.active > .mega-dropdown > .mega-col {
    position: relative !important;
    padding: 0 20px !important;
  }

  #mobileMenu
  .services-menu.active
  > .mega-dropdown
  > .mega-col:first-child {
    padding-left: 0 !important;
  }

  #mobileMenu
  .services-menu.active
  > .mega-dropdown
  > .mega-col:last-child {
    padding-right: 0 !important;
  }

  #mobileMenu
  .services-menu.active
  > .mega-dropdown
  > .mega-col:not(:last-child)::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    height: 100% !important;
    border-right: 1px dashed #aebdb8 !important;
  }
}

/* Small mobile remains stacked and readable. */
@media (max-width: 768px) {
  #mobileMenu .services-menu.active > .mega-dropdown {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .nav-bar {
    padding: 10px 18px !important;
  }

  #mobileMenu {
    width: 92vw !important;
  }

  .menu-top {
    padding: 10px 18px !important;
  }

  #mobileMenu > ul > li > a,
  #mobileMenu > ul > li > .dropdown {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  #mobileMenu .company-mega-dropdown,
  #mobileMenu .mega-dropdown,
  #mobileMenu .mobile-consultation {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* =====================================================================
   EXACT Social Media Marketing MOBILE MENU SIZE
   Full screen width, content starts at top, same row/button spacing.
   Keep this block at the absolute end of erp.css.
   ===================================================================== */
@media (max-width: 1100px) {

  /* Social Media Marketing uses a full-screen menu, not a narrow side panel. */
  #mobileMenu,
  .nav-links#mobileMenu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    left: auto !important;

    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100dvh !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #ffffff !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;

    /* Remove the narrow-panel transform and vertical centring. */
    transform: none !important;
    justify-content: initial !important;
    align-items: initial !important;

    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999999 !important;

    transition: right 0.3s ease-in-out !important;
  }

  #mobileMenu.show,
  #mobileMenu.active,
  .nav-links#mobileMenu.show,
  .nav-links#mobileMenu.active {
    right: 0 !important;
    transform: none !important;
  }

  /* Same top logo/close section as Social Media Marketing. */
  #mobileMenu .menu-top {
    position: sticky !important;
    top: 0 !important;
    z-index: 10 !important;

    display: flex !important;
    width: 100% !important;
    height: 80px !important;
    min-height: 80px !important;

    align-items: center !important;
    justify-content: space-between !important;

    margin: 0 !important;
    padding: 10px 28px !important;

    background: #ffffff !important;
    border-bottom: 1px solid #eeeeee !important;
  }

  #mobileMenu .menu-top .nav-logo img {
    width: auto !important;
    height: 45px !important;
    max-width: 170px !important;
    padding: 0 !important;
    object-fit: contain !important;
  }

  #mobileMenu .menu-top .icon {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    color: #061729 !important;
  }

  /* Same list sizing and spacing as the Social Media Marketing page. */
  #mobileMenu > ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    overflow: visible !important;
  }

  #mobileMenu > ul > li {
    display: block !important;
    width: 100% !important;

    margin: 0 !important;
    padding: 12px 20px !important;

    text-align: left !important;
    border-top: none !important;
    border-bottom: 1px solid #eeeeee !important;
    box-sizing: border-box !important;
  }

  #mobileMenu > ul > li > a,
  #mobileMenu > ul > li > span.dropdown {
    display: flex !important;
    width: 100% !important;
    min-height: 0 !important;

    align-items: center !important;
    justify-content: space-between !important;

    margin: 0 !important;
    padding: 12px 20px !important;

    color: #333333 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }

  /* Same full-width consultation button spacing. */
  #mobileMenu > ul > li.mobile-consultation {
    display: block !important;
    width: 100% !important;

    margin: 0 !important;
    padding: 15px 20px !important;

    border-bottom: none !important;
    box-sizing: border-box !important;
  }

  #mobileMenu .mobile-consult-btn {
    display: flex !important;
    width: 100% !important;
    min-height: 0 !important;

    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 14px 20px !important;

    background: linear-gradient(45deg, #b63434, #061729) !important;
    color: #ffffff !important;
    border-radius: 25px !important;

    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }

  /* Dropdowns remain inside the full-width menu. */
  #mobileMenu .company-mega-dropdown,
  #mobileMenu .mega-dropdown {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}

/* Small phones also remain 100% wide, exactly like Social Media Marketing. */
@media (max-width: 480px) {
  #mobileMenu,
  .nav-links#mobileMenu {
    width: 100% !important;
    max-width: 100% !important;
  }

  #mobileMenu .menu-top {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}


/* =========================================================
   SOFTWARE DEVELOPMENT PAGE
   Header, footer and hero typography inherit the approved
   Web Development page styling above.
   ========================================================= */

.software-page .hero-section {
  background:
    linear-gradient(to right, rgba(1, 12, 27, 0.92) 0%, rgba(3, 23, 43, 0.74) 52%, rgba(10, 10, 10, 0.22) 100%),
    url("../images/software-development.png") no-repeat center center / cover;
}

.software-page .hero-content .tagline,
.software-kicker {
  color: #d13d2f;
  font-weight: 500;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.software-kicker {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
}

.software-foundation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
  gap: clamp(55px, 7vw, 120px);
  align-items: center;
  padding: 110px 7%;
  background: #ffffff;
}

.foundation-copy h2,
.lifecycle-heading h2,
.solutions-copy > h2 {
  margin: 0 0 26px;
  color: #061729;
  font-size: 2rem;
  line-height: 1.14;
  letter-spacing: -1.4px;
}

.foundation-copy > p,
.lifecycle-heading > p {
  max-width: 760px;
  color: #61716e;
  font-size: 18px;
  line-height: 1.85;
}

.software-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
  padding-bottom: 7px;
  color: #0b6f9e;
  border-bottom: 2px solid #d13d2f;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.25s ease, gap 0.25s ease;
}

.software-link:hover {
  color: #d13d2f;
  gap: 19px;
}

.foundation-system {
  position: relative;
  padding-left: 44px;
  border-left: 2px solid #d13d2f;
}

.system-line {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #d7e0e1;
}

.system-line:last-child {
  border-bottom: 0;
}

.system-line > span {
  color: #d13d2f;
  font-size: 14px;
  letter-spacing: 1px;
}

.system-line div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.system-line strong {
  color: #061729;
  font-size: 22px;
}

.system-line small {
  color: #61716e;
  font-size: 15px;
  line-height: 1.5;
}

.software-lifecycle {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(65px, 8vw, 145px);
  align-items: center;
  overflow: hidden;
  padding: 115px 7%;
  background: #061729;
  color: #ffffff;
}

.delivery-intro {
  max-width: 650px;
}

.delivery-intro h2 {
  margin: 17px 0 24px;
  color: #ffffff;
font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -2px;
}

.delivery-intro > p {
  max-width: 610px;
  color: #b8c6d1;
  font-size: 18px;
  line-height: 1.75;
}

.delivery-promise {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  margin: 37px 0 29px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 3px solid #d13d2f;
  border-radius: 4px 18px 18px 4px;
  background: rgba(255, 255, 255, 0.055);
}

.delivery-promise > i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #137da6, #d13d2f 72%);
  color: #ffffff;
  font-size: 20px;
}

.delivery-promise strong,
.delivery-promise span {
  display: block;
}

.delivery-promise strong {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 17px;
}

.delivery-promise span {
  color: #aebdca;
  font-size: 14px;
  line-height: 1.55;
}

.delivery-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.delivery-outcomes span {
  color: #d8e1e8;
  font-size: 14px;
}

.delivery-outcomes i {
  margin-right: 8px;
  color: #d13d2f;
}

.delivery-flow {
  position: relative;
  display: grid;
  gap: 13px;
}

.delivery-flow::before {
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 47px;
  width: 1px;
  background: linear-gradient(#137da6, #d13d2f 50%, #137da6);
  content: "";
  opacity: 0.8;
}

.delivery-flow article {
  position: relative;
  display: grid;
  grid-template-columns: 28px 66px 1fr;
  gap: 19px;
  align-items: center;
  min-height: 112px;
  padding: 18px 24px 18px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: linear-gradient(100deg, rgba(19, 58, 91, 0.68), rgba(255, 255, 255, 0.035));
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.delivery-flow article:hover {
  transform: translateX(-8px);
  border-color: rgba(209, 61, 47, 0.55);
  background: linear-gradient(100deg, rgba(19, 58, 91, 0.85), rgba(209, 61, 47, 0.11));
}

.flow-number {
  align-self: start;
  color: #d13d2f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.flow-icon {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: linear-gradient(145deg, #123a5b, #8e3038);
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.delivery-flow small {
  display: block;
  margin-bottom: 4px;
  color: #d13d2f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.delivery-flow h3 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 19px;
}

.delivery-flow p {
  margin: 0;
  color: #afbfca;
  font-size: 13px;
  line-height: 1.55;
}

.software-solutions {
  display: grid;
  grid-template-columns: minmax(430px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
  padding: 115px 7%;
  background: #f4f7f9;
}

.solutions-console {
  overflow: hidden;
  border: 1px solid #244663;
  border-radius: 16px;
  background: #061729;
  box-shadow: 28px 28px 0 rgba(19, 94, 132, 0.09);
}

.console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c2944;
}

.console-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d13d2f;
}

.console-bar span:nth-child(2) {
  background: #e7a33a;
}

.console-bar span:nth-child(3) {
  background: #0b7ca7;
}

.console-bar em {
  margin-left: 12px;
  color: #9fb2c1;
  font-size: 12px;
  font-style: normal;
}

.console-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(28px, 4vw, 55px);
}

.console-body code {
  color: #dce7ef;
  font-size: clamp(14px, 1.25vw, 19px);
  line-height: 1.5;
}

.console-body mark {
  color: #31a5d1;
  background: transparent;
}

.console-body strong {
  color: #e04a3d;
  font-weight: 500;
}

.console-body q {
  color: #efb55f;
}

.console-status {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 14px;
}

.console-status i {
  margin-right: 9px;
  color: #d13d2f;
}

.solution-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid #d5dfe2;
}

.solution-row:last-child {
  border-bottom: 0;
}

.solution-row > i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(145deg, #0b7ca7, #d13d2f);
  color: #ffffff;
  font-size: 18px;
}

.solution-row h3 {
  margin: 0 0 7px;
  color: #061729;
  font-size: 21px;
}

.solution-row p {
  margin: 0;
  color: #61716e;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .software-foundation,
  .software-lifecycle,
  .software-solutions {
    grid-template-columns: 1fr;
    gap: 65px;
    padding: 85px 6%;
  }

  .software-solutions {
    grid-template-columns: 1fr;
  }

  .solutions-console {
    width: min(680px, 100%);
    margin: auto;
  }

  .delivery-intro {
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  .software-foundation,
  .software-lifecycle,
  .software-solutions {
    padding: 70px 24px;
  }

  .foundation-system {
    padding-left: 24px;
  }

  .delivery-intro h2 {
    letter-spacing: -1px;
  }

  .delivery-flow article {
    grid-template-columns: 24px 58px 1fr;
    gap: 14px;
    padding-right: 16px;
  }

  .delivery-flow::before {
    left: 42px;
  }

  .flow-icon {
    width: 58px;
    height: 58px;
  }

  .software-solutions {
    grid-template-columns: 1fr;
  }

  .solutions-console {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .foundation-copy h2,
  .delivery-intro h2,
  .solutions-copy > h2 {
    font-size: 31px;
  }

  .system-line {
    grid-template-columns: 46px 1fr;
  }

  .solution-row {
    grid-template-columns: 50px 1fr;
  }

  .console-body {
    padding: 25px 20px;
  }
}


/* =====================================================================
   SOFTWARE DEVELOPMENT — FINAL CONSISTENCY FIX
   Matches the already approved AADPlus service-page visual system.
   ONLY visual consistency changes:
   - official orange section labels
   - approved heading/body sizes
   - vertical red -> navy bars beside main headings
   - official red -> navy gradients
   - approved footer styling
   No content, section order or layout changes.
   ===================================================================== */

:root {
  --aad-navy: #061729;
  --aad-red: #b63434;
  --aad-orange: #d13d2f;
  --aad-gradient: linear-gradient(135deg, #b63434 0%, #061729 100%);
}

/* ===== HEADER / CTA ===== */
.nav-right .contact-btn,
.mobile-consult-btn,
.floating-contact-toggle {
  background: var(--aad-gradient) !important;
}

.nav-right .contact-btn:hover,
.mobile-consult-btn:hover {
  background: linear-gradient(135deg, #d13d2f 0%, #061729 100%) !important;
}

/* ===== OFFICIAL ORANGE SECTION LABELS ===== */
.software-kicker {
  color: var(--aad-orange) !important;
  background: none !important;
  -webkit-text-fill-color: var(--aad-orange) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  letter-spacing: 1.6px !important;
  text-transform: uppercase !important;
}

/* ===== APPROVED TYPOGRAPHY ===== */
.foundation-copy h2,
.delivery-intro h2,
.solutions-copy h2 {
font-size: 2rem;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  margin-bottom: 20px !important;
}

.foundation-copy > p,
.delivery-intro > p,
.solutions-copy > p {
  font-size: 1rem !important;
  line-height: 1.6 !important;
}

/* ===== VERTICAL GRADIENT BAR BESIDE MAIN HEADINGS ===== */
.foundation-copy h2,
.delivery-intro h2,
.solutions-copy h2 {
  position: relative !important;
  padding-left: 22px !important;
}

.foundation-copy h2::before,
.delivery-intro h2::before,
.solutions-copy h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    var(--aad-red) 0%,
    var(--aad-navy) 100%
  );
}

/* ===== OFFICIAL GRADIENT CLEANUP ===== */
.system-line > span,
.flow-icon,
.delivery-promise > i,
.solution-row > i,
.console-status i {
  background: var(--aad-gradient) !important;
  color: #ffffff !important;
}

.software-link {
  color: var(--aad-red) !important;
}

.software-link:hover {
  color: var(--aad-navy) !important;
}

.delivery-outcomes i {
  color: var(--aad-red) !important;
}

.solutions-console {
  border-color: rgba(182, 52, 52, 0.24) !important;
}

.console-bar {
  background: linear-gradient(90deg, #061729 0%, #0b2a56 100%) !important;
}

.console-status {
  color: #ffffff !important;
  background: linear-gradient(135deg, #061729 0%, #0b2a56 100%) !important;
}

/* ===== APPROVED FOOTER ===== */
.footer {
  background: linear-gradient(50deg, #061729 0%, #0b2a56 100%) !important;
  color: #eeeeee !important;
  padding: 40px 20px 0 !important;
  font-size: 15px !important;
}

.footer-container {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 40px !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
  padding: 8px 120px 36px !important;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social {
  flex: 1 1 220px !important;
  min-width: 220px !important;
}

.footer-about h3 {
  margin: 0 0 15px !important;
  color: #ffffff !important;
  font-size: 24px !important;
  font-weight: 700 !important;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  margin: 0 0 12px !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

.footer-about p,
.footer-links ul,
.footer-links ul li,
.footer-links ul li a {
  color: #f0f0f0 !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}

.footer-links ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-links ul li a {
  display: inline-block !important;
  margin-bottom: 8px !important;
  text-decoration: none !important;
}

.footer-links ul li a:hover {
  color: #ffffff !important;
  transform: translateX(6px);
}

.footer-social .social-icons {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
}

.footer-social .social-icons a {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 21px !important;
  line-height: 1 !important;
}

.footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 30px !important;
  max-width: 1840px !important;
  margin: 0 auto !important;
  padding: 28px 135px 32px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  font-size: 14px !important;
}

.footer-bottom p {
  margin: 0 !important;
  color: #ffffff !important;
}

.footer-bottom-links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 30px !important;
  flex-wrap: wrap !important;
}

.footer-bottom-links a {
  color: #ffffff !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: opacity 0.2s ease !important;
}

.footer-bottom-links a:hover {
  opacity: 0.8 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-container {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .footer-bottom {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

@media (max-width: 768px) {
  .foundation-copy h2,
  .delivery-intro h2,
  .solutions-copy h2 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    padding-left: 18px !important;
  }

  .foundation-copy h2::before,
  .delivery-intro h2::before,
  .solutions-copy h2::before {
    width: 3px !important;
    top: 3px !important;
    bottom: 3px !important;
  }

  .footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .footer-container {
    flex-direction: column !important;
    gap: 26px !important;
    padding: 30px 20px !important;
  }

  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-social {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    justify-content: center !important;
    gap: 16px !important;
    padding: 24px 20px !important;
    text-align: center !important;
  }

  .footer-bottom-links {
    justify-content: center !important;
    gap: 12px 22px !important;
  }
}

@media (max-width: 480px) {
  .footer-bottom-links {
    flex-direction: column !important;
    gap: 10px !important;
  }
}


/* =====================================================================
   SOFTWARE DEVELOPMENT — FINAL BUTTON FIX ONLY
   Makes "Discuss Your Software Idea" match the approved
   "Get Free Consultation" pill button style exactly.
   Nothing else is changed.
   ===================================================================== */

.software-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;

  min-height: 46px !important;
  padding: 0 24px !important;

  background: linear-gradient(
    45deg,
    #b63434 0%,
    #061729 100%
  ) !important;

  color: #ffffff !important;
  border: none !important;
  border-radius: 999px !important;
  box-shadow: none !important;

  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  text-decoration: none !important;
  text-underline-offset: 0 !important;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease !important;
}

.software-link::before,
.software-link::after {
  display: none !important;
  content: none !important;
}

.software-link i {
  color: #ffffff !important;
  font-size: 15px !important;
  line-height: 1 !important;
  margin: 0 !important;
  transition: transform 0.25s ease !important;
}

.software-link:hover,
.software-link:focus,
.software-link:active,
.software-link:visited {
  color: #ffffff !important;
  text-decoration: none !important;

  background: linear-gradient(
    45deg,
    #b63434 0%,
    #061729 100%
  ) !important;
}

.software-link:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 18px rgba(6, 23, 41, 0.16) !important;
}

.software-link:hover i {
  transform: translateX(2px) !important;
}

@media (max-width: 768px) {
  .software-link {
    min-height: 44px !important;
    padding: 0 22px !important;
    font-size: 15px !important;
  }
}
