@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --background-color: #ffffff;
    --default-color: #000000;
    --heading-color: #2d465e;
    --accent-color: #0092d8;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

/* Nav Menu Colors  */
:root {
    --nav-color: #212529;
    --nav-hover-color: #0092d8;
    --nav-mobile-background-color: #ffffff;

}

body {
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    overflow-x: hidden;
    background-color: white;
    max-width: 1800px;
    margin: 0 auto;

}

/* header */
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 10px 0px;
    transition: all 0.5s;
    z-index: 997;
  
  }
  
  
  .header .header-container {
    background: var(--surface-color);
    border-radius: 45px;
    padding: 0px 55px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
  
  }
  
  .scrolled .header .header-container {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
  
  }
  
  .header .logo {
    line-height: 1;
    padding-left: 5px;
    margin: -17px;
  }
  
  .header .logo img {
    max-height: 140px;
    margin-right: 8px;
  
  }
  
  .navmenu a {
    text-decoration: none;
    background-color: #ffffff;
  }
  
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
  
    text-decoration: none;
  }
  
  .header .btn-getstarted:hover,
  .header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
  }
  
  .navmenu .dropdown ul {
    background-color: white;
    padding: 0;
  
    margin: 0;
    list-style: none;
  }
  
  /* Optional: Style the dropdown items */
  .navmenu .dropdown ul li a {
    color: black;
    padding: 15px 15px;
    text-decoration: none;
    display: block;
    padding-bottom: 21px !important;
  }
  
  .navmenu .dropdown ul li a.last-child {
    padding-bottom: 10px !important;
  }
  
  .navmenu .dropdown ul li {
    color: black;
  
    margin-top: -9px;
    text-decoration: none;
    display: block;
  }
  
  /* Optional: Add hover effect */
  .navmenu .dropdown ul li a:hover {
    background-color: var(--accent-color);
  }
  
  
  @media (max-width: 1200px) {
    .header {
      padding-top: 10px;
    }
  
    .header .header-container {
      margin-left: 10px;
      margin-right: 10px;
      padding: 10px 5px 10px 15px;
    }
  
    .header .logo {
      order: 1;
      padding-left: 30px;
    }
  
    .header .btn-getstarted {
      order: 2;
      margin: 0 10px 0 0;
      padding: 6px 15px;
    }
  
    .header .navmenu {
      order: 3;
    }
  }
  
  @media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navmenu li {
      position: relative;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-color);
      padding: 18px 15px;
      font-size: 16px;
      font-family: var(--nav-font);
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu li:last-child a {
      padding-right: 0;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-hover-color);
    }
  
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: var(--nav-dropdown-background-color);
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--nav-dropdown-color);
    }
  
    .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: 100%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      right: 100%;
      visibility: visible;
      width: 115%;
    }
  }
  
  /* Navmenu - Mobile */
  @media (max-width: 1199px) {
  
    .mobile-nav-toggle {
      color: var(--nav-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
  
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--nav-mobile-background-color);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-dropdown-color);
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
  }
  







/* hero */
.hero-section {
    background-image: url('pics/saphero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: rgb(174, 174, 174);
    color: rgb(0, 0, 0);
    position: relative;
    max-width: 1800px;
    margin: 0 auto;
    height: 500px;
    display: flex;
    margin-top: 150px;
    align-items: center;
    justify-content: flex-start;
    /* Align content to the left */
    padding-left: 50px;

    /* Add some padding */
    text-align: left;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    /* Replace with your image */
    background-size: cover;
    max-width: 100px;
    opacity: 0.6;
    z-index: 1;
}

.hero-content h1 {
    position: relative;
    z-index: 2;

    font-weight: bolder;
    font-size: 2.7rem;
    max-width: 600px;
}

.hero-content h5 {
    position: relative;
    z-index: 2;
    margin-top: -150px;
    font-weight: 50px;
    font-size: 1.5rem;
    color: #000000;
}



/* About Section */
.about-section {
    padding: 60px 0;

    color: #fff;
    font-family: 'Poppins', sans-serif;
    /* Modern font for professional look */
}

.header-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;

}


.table-container {
    overflow-x: auto;
    /* Ensures table is scrollable on smaller devices */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    /* Elegant shadow effect */
}


.table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.83);
    /* Semi-transparent black for table background */
    margin: 0;
    color: #fff;
}


.table th {
    background-color: rgb(0, 0, 0);
    /* Dark header */
    font-weight: 600;
    text-transform: uppercase;
    padding: 20px;
    font-size: 1rem;
    color: #ffffff;
    text-align: left;
    border-bottom: 2px solid #3498db;
    /* Blue separator for a modern touch */
}


.table td {
    padding: 20px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter black for contrast */
    color: #d3d3d3;
    /* Soft gray for text */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle separator */
}


.table tr:hover {
    background: rgba(52, 152, 219, 0.3);
    /* Blue highlight effect */
    transition: background 0.3s ease-in-out;
}


.partners img {
    max-width: 100px;
    /* Logos are smaller for neatness */
    margin: 5px 0;
    transition: transform 0.3s ease-in-out;
}

.partners img:hover {
    transform: scale(1.1);
    /* Enlarge logos slightly on hover */
}

.partners {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {

    .table th,
    .table td {
        font-size: 0.9rem;
        /* Smaller text on smaller screens */
        padding: 15px;
    }

    .partners img {
        max-width: 80px;
        /* Shrink logos on smaller devices */
    }
}



/* how we help Section */

.container-what {
    margin: 0 auto;
    padding: 50px 30px;
    background: linear-gradient(to bottom, #1c1c1c, #252525);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 100%;
    max-width: 1800px;
}

.subtle-card {
    background: #2b2b2b;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #e3e3e3;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3a3a3a;
    text-align: left;
    /* Align all content to the left */
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.subtle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    color: var(--accent-color);
}


.icon-container {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-align: left;
    /* Align the icon to the left */
}

.card-title {
    position: relative;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    /* Align title to the left */
    margin: 15px 0;
}


.card-title::after {
    content: '';
    position: absolute;
    left: 0;
    /* Start the underline from the left */
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
    ;
    transition: width 0.3s ease;
}

.card-title:hover::after {
    width: 80px;
}

.subtle-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bcbcbc;
    margin: 5px 0;
    text-align: left;
    /* Align text content to the left */
}


.subtle-card {
    background: #2b2b2b;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #e3e3e3;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3a3a3a;
    text-align: left;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .subtle-card {
        height: auto;
        /* Allow height to adjust for smaller screens */
        padding: 20px;
        /* Reduce padding for smaller cards */
    }
}


@media (max-width: 768px) {
    .subtle-card {
        margin-bottom: 20px;
    }

    .container-what {
        width: 95%;
    }
}


/* services */
.serv-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    border-bottom: 3px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 10px;
}

.serv-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 20px;
}

.box {
    width: calc(33.33% - 20px);
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: auto;
    text-align: left;
}

.box-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.box-number {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.box-text {
    font-size: 16px;
    color: #333;
    padding-top: 7px;
}

.box:hover {
    background-color: #f1f1f1;
    transform: translateY(-5px);
}

.box:last-child {
    margin: 30px auto 0;
    width: 50%;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .box {
        width: calc(50% - 20px);
    }

    .box:last-child {
        width: 75%;
    }
}

@media (max-width: 576px) {
    .box {
        width: 100%;
    }

    .box:last-child {
        width: 100%;
    }
}









/* what we do */
.what-header {
    background: url('pics/posbackk.png') center center / cover no-repeat;
    color: white;
    text-align: center;
    padding: 60px 0;
    position: relative;
    margin-top: 50px;
    max-width: 1800px;
    margin: 0 auto;
}

.what-header h1 {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

.what-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}


.content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 60px 0;
    position: relative;
    max-width: 1800px;
    margin: 0 auto;
}

.item {
    text-align: left;
    position: relative;
    font-weight: 700;
    font-size: 1.2rem;
    padding-top: 50px;
    padding-left: 20px;
    border-left: 4px solid var(--accent-color);
}

.item::before {
    content: attr(data-number);
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    position: absolute;
    left: -60px;
    top: 0;
}

.decorative-line {
    position: absolute;
    width: 30px;
    height: 4px;
    background: linear-gradient(to right, rgb(26, 106, 175), transparent);
    top: 20px;
    left: 0;
}


@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .item {
        margin: 30px 0;
        text-align: center;
        padding-left: 0;
        border-left: none;
    }

    .item::before {
        left: 0;
        top: -20px;
    }

    .decorative-line {
        left: 50%;
        transform: translateX(-50%);
    }
}



/* strat and consul */
.consulting-card {
    border: 1px solid #000000;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
    border-radius: 8px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.consulting-card:hover {
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px)
}

.consulting-card i {
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.consulting-card:hover i {
    color: var(--accent-color);
}

.consulting-card h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000000;
    margin-top: 10px;
    transition: color 0.3s ease-in-out;
}

.consulting-card:hover h5 {
    color: var(--accent-color);
}

.Strat-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 40px;
}



/* implementaiton */

.impli-card {
    border: 2px solid black;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: rgba(241, 241, 241, 0.197);
    border-radius: 8px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    max-width: 1800px;

}

.impli-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.impli-card i {
    color: var(--accent-color);
    transition: color 0.3s ease-in-out;
}

.impli-card:hover i {
    color: var(--accent-color);
}

.impli-card h5 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    margin-top: 10px;
    transition: color 0.3s ease-in-out;
}

.impli-card:hover h5 {
    color: var(--accent-color);
}

.impli-section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
    font-size: 2.5rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.container {
    position: relative;
    background-size: 120% auto;
    /* Make the background image wider */
    background-position: center center;
    /* Keep it centered */
    padding: 100px 100px;
    /* Added padding inside the container for extra space */
    color: #fff;
    /* White text for better contrast against dark images */
}


/* Maintenance & Support */

.maint-container {
    padding: 0 15px;
    text-align: center;
}

.maint-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.maint-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #212529;
    text-align: left;
    margin-bottom: 20px;
}


.maint-card {
    width: 100%;
    max-width: 270px;
    /* Reduced width */
    height: 230px;
    /* Reduced height */
    border: 1px solid #dee2e6;
    border-radius: 8px;

    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    position: relative;
    margin: 0 auto;
    /* Center the cards */
}

.maint-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.maint-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-top: 70px;
}

.maint-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;

}


.maint-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 0 0 8px 8px;
}


@media (max-width: 768px) {
    .maint-card {
        width: 100%;
        height: auto;
        /* Allow flexibility for smaller screens */
    }

    .maint-title {
        font-size: 1.5rem;
        /* Slightly smaller title for small screens */
    }
}





/* sap and ams  */

.sapp-container {
    padding: 0 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
}

.sapp-container h1 {
    background-color: #1c1c1c;
    color: rgb(255, 255, 255);
    padding: 30px 20px;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 1400px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.sapp-heading:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}


.sapp-table {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    border: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.sapp-table:hover {
    transform: translateY(-5px);
}


.sapp-table-header {
    background-color: var(--accent-color);
    color: rgb(255, 255, 255);
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.sapp-table th,
.sapp-table td {
    padding: 20px;
    text-align: left;
    vertical-align: top;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #333;
    border-bottom: 1px solid #f1f1f1;

}

.sapp-table th {
    font-weight: 600;
}

.sapp-table ul {
    padding-left: 20px;
}

.sapp-table li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #080808;
}


@media (max-width: 768px) {
    .sapp-table {
        font-size: 0.9rem;
    }

    .sapp-heading {
        font-size: 2rem;
        padding: 20px 10px;
    }

    .sapp-table th,
    .sapp-table td {
        padding: 12px;
    }

    .sapp-table ul {
        padding-left: 15px;
    }

    .sapp-table li {
        font-size: 0.9rem;
    }
}

@media (min-width: 1200px) {
    .sapp-heading {
        font-size: 3.5rem;
        /* Larger heading on larger screens */
    }

    .sapp-table {
        width: 85%;
        /* Make the table a bit smaller on large screens */
    }
}


/* teams */
.team-container {
    background-image: url('pics/posbackk.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 3rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-height: 80vh;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.team-section {
    border: 1px solid var(--accent-color);
    ;
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem;
    background-color: rgba(249, 249, 249, 0.2);
    color: #ffffff;
    width: 90%;
    max-width: 650px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: #f1f1f1;
    display: flex;
    align-items: center;
}

.team-title i {
    margin-right: 10px;
    font-size: 3rem;
    color: var(--accent-color);
}

.team-list {
    list-style-type: none;
    padding-left: 0;
}

.team-list-item {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}



/* Offerings Table Container */
.offerings-table {
    width: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 30px;
}


.offerings-header {
    background-color: #000000;
    color: white;
    text-align: left;
    padding: 16px;
    font-size: 1.2rem;
    font-weight: bold;
}


.offerings-cell {
    padding: 20px;
    font-size: 1rem;
    color: #ffffff;
    border-bottom: 1px solid var(--accent-color);
}


.offerings-cell ul {
    list-style-type: none;
    padding-left: 20px;
}

.offerings-cell li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #ffffff;
}



h1.text-center {
    font-size: 2.5rem;
    font-weight: bold;
    color: #212529;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    .offerings-table {
        font-size: 0.9rem;
        /* Slightly smaller text on mobile */
    }

    .offerings-header {
        font-size: 1rem;
        /* Adjust header size for mobile */
    }

    .offerings-cell {
        padding: 12px;
        /* Reduce padding on smaller screens */
    }
}






/* case study 1 */
section {
    padding: 70px 0;
}

h2,
h3,
h4,
h5 {
    font-weight: bold;
}

/* Black Boxes Styling */
.black-boxes {
    margin-top: 30px;
}

.black-boxes .box {
    background-color: #000;
    color: #000000;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    /* Align content to the left */
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    height: 300px;
    width: 350px;

    /* Set fixed height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align content to the top */
}

.black-boxes .box:hover {
    background-color: #2d2d2d;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

.black-boxes h5 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
}

.black-boxes h5:after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
    ;
    margin-top: 5px;
}

.black-boxes p {
    color: #d9d9d9;
    line-height: 1.6;
    margin-top: 10px;
}

/* Badge Styling */
.badge {
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background-color: transparent;
    border-radius: 20px;
    padding: 10px 20px;
    transition: 0.3s ease;
}

.badge:hover {
    background-color: var(--accent-color);
    color: #fff;
}

/* Solution Section Styling */
.solution-section {
    background-color: #fff;
}

.solution-section .image-wrapper {
    text-align: center;
}

.solution-section .image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.solution-section .text-wrapper {
    padding-left: 30px;
}

.solution-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.solution-section h5 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.solution-section ul {
    list-style: none;
    padding: 0;
}

.solution-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.solution-section ul li:before {
    content: "•";
    font-size: 1.5rem;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .black-boxes .box {
        height: auto;
        /* Allow flexible height for smaller screens */
    }

    .solution-section .text-wrapper {
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }

    .solution-section .image-wrapper img {
        margin-bottom: 20px;
    }
}

/* Enhanced Spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.lead {
    text-align: center;
    color: #000000;
    font-weight: 300;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}



/* case study two */
.case-study-two section {
    padding: 70px 0;
}

.case-study-two h2,
.case-study-two h3,
.case-study-two h4,
.case-study-two h5 {
    font-weight: bold;
}

.case-study-two .black-boxes {
    margin-top: 30px;
}

.case-study-two .black-boxes .box {
    background-color: #000;
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.case-study-two .black-boxes .box:hover {
    background-color: #2d2d2d;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

.case-study-two .black-boxes h5 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
}

.case-study-two .black-boxes h5:after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
    margin-top: 5px;
}

.case-study-two .black-boxes p {
    color: #d9d9d9;
    line-height: 1.6;
    margin-top: 10px;
}

.case-study-two .badge {
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background-color: transparent;
    border-radius: 20px;
    padding: 10px 20px;
    transition: 0.3s ease;
}

.case-study-two .badge:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.case-study-two .solution-section {
    background-color: #fff;
}

.case-study-two .solution-section .image-wrapper {
    text-align: center;
}

.case-study-two .solution-section .image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.case-study-two .solution-section .text-wrapper {
    padding-left: 30px;
}

.case-study-two .solution-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.case-study-two .solution-section h5 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.case-study-two .solution-section ul {
    list-style: none;
    padding: 0;
}

.case-study-two .solution-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.case-study-two .solution-section ul li:before {
    content: "•";
    font-size: 1.5rem;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}


@media (max-width: 768px) {
    .case-study-two .black-boxes .box {
        height: auto;
    }

    .case-study-two .solution-section .text-wrapper {
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }

    .case-study-two .solution-section .image-wrapper img {
        margin-bottom: 20px;
    }
}

.case-study-two .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.case-study-two .lead {
    text-align: center;
    color: #000000;
    font-weight: 300;
}

.case-study-two .row {
    margin-right: -15px;
    margin-left: -15px;
}

.case-study-two .row>[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}




/* case study three */
.case-study-three section {
    padding: 70px 0;
}

.case-study-three h2,
.case-study-three h3,
.case-study-three h4,
.case-study-three h5 {
    font-weight: bold;
}

.case-study-three .black-boxes {
    margin-top: 30px;
}

.case-study-three .black-boxes .box {
    background-color: #000;
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.case-study-three .black-boxes .box:hover {
    background-color: #2d2d2d;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

.case-study-three .black-boxes h5 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
}

.case-study-three .black-boxes h5:after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
    margin-top: 5px;
}

.case-study-three .black-boxes p {
    color: #d9d9d9;
    line-height: 1.6;
    margin-top: 10px;
}

.case-study-three .badge {
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background-color: transparent;
    border-radius: 20px;
    padding: 10px 20px;
    transition: 0.3s ease;
}

.case-study-three .badge:hover {
    background-color: var(--accent-color);
    color: #fff;
}


.case-study-three .solution-section {
    background-color: #fff;
}

.case-study-three .solution-section .image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.case-study-three .solution-section .text-wrapper {
    padding-left: 30px;
}

.case-study-three .solution-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.case-study-three .solution-section h5 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.case-study-three .solution-section ul {
    list-style: none;
    padding: 0;
}

.case-study-three .solution-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.case-study-three .solution-section ul li:before {
    content: "•";
    font-size: 1.5rem;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .case-study-three .black-boxes .box {
        height: auto;
    }

    .case-study-three .solution-section .text-wrapper {
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }

    .case-study-three .solution-section .image-wrapper img {
        margin-bottom: 20px;
    }
}

.case-study-three .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.case-study-three .lead {
    text-align: center;
    color: #000000;
    font-weight: 300;
}

.case-study-three .row {
    margin-right: -15px;
    margin-left: -15px;
}

.case-study-three .row>[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}



/* case study four */
.case-study-four section {
    padding: 70px 0;
}

.case-study-four h2,
.case-study-four h3,
.case-study-four h4,
.case-study-four h5 {
    font-weight: bold;
}

.case-study-four .black-boxes {
    margin-top: 30px;
}

.case-study-four .black-boxes .box {
    background-color: #000;
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.case-study-four .black-boxes .box:hover {
    background-color: #2d2d2d;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

.case-study-four .black-boxes h5 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
}

.case-study-four .black-boxes h5:after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
    margin-top: 5px;
}

.case-study-four .black-boxes p {
    color: #d9d9d9;
    line-height: 1.6;
    margin-top: 10px;
}

.case-study-four .badge {
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background-color: transparent;
    border-radius: 20px;
    padding: 10px 20px;
    transition: 0.3s ease;
}

.case-study-four .badge:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.case-study-four .solution-section {
    background-color: #fff;
}

.case-study-four .solution-section .image-wrapper {
    text-align: center;
}

.case-study-four .solution-section .image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.case-study-four .solution-section .text-wrapper {
    padding-left: 30px;
}

.case-study-four .solution-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.case-study-four .solution-section h5 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.case-study-four .solution-section ul {
    list-style: none;
    padding: 0;
}

.case-study-four .solution-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.case-study-four .solution-section ul li:before {
    content: "•";
    font-size: 1.5rem;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .case-study-four .black-boxes .box {
        height: auto;
    }

    .case-study-four .solution-section .text-wrapper {
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }

    .case-study-four .solution-section .image-wrapper img {
        margin-bottom: 20px;
    }
}

.case-study-four .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.case-study-four .lead {
    text-align: center;
    color: #000000;
    font-weight: 300;
}

.case-study-four .row {
    margin-right: -15px;
    margin-left: -15px;
}

.case-study-four .row>[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}



/* Footer */
.footer {
    color: var(--default-color);
    font-size: 14px;
    position: relative;
    background-image: url('pics/darkergreyfooter.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: white;
}

.fot-btn {
    transition: background-color 0.3s ease;
    /* Smooth transition */
    background-color: var(--accent-color);
    color: #fdfdfd;
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    text-decoration: none;
}

.fot-btn:hover {
    background-color: black !important;
    /* Change to black on hover */
    color: white;
    /* Optional: change text color to white on hover */
}

.footer .footer-about .logo img {
    max-height: 160px;
    margin-right: 6px;
    width: 200px;

}

.footer-contact {
    margin-top: -40px;
}

.footer .footer-about p {
    font-size: 16px;
    padding-left: 10px;
    color: white;
}

.footer .social-links a {

    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 20px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    margin-top: 60px;

}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;

}

.footer .footer-links ul li a {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    color: white;
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    color: rgb(255, 255, 255);
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
}

.footer-contact,
footer .footer-links ul li a:hover {
    color: var(--accent-color);
}

.contact-footer-links a {
    color: #ffffff;
    text-decoration: none;
}