@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;
    max-width: 1900px;
     margin: 0 auto;
    overflow-x: hidden;
    background-color: white;
}

/* header */
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
max-width: 1900px;
margin: 0 auto;
    transition: all 0.5s;
    z-index: 997;
  
  }
  
  
  .header .header-container {
    background: var(--surface-color);

    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 */
.video-background {
    position: relative;
    height: 700px;

    margin: 0 auto;
    background-size: cover;
    display: flex;
    max-width: 1900px;
    align-items: center;
    justify-content: center;

}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 80%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);

    object-fit: cover;

}



.content {
    position: relative;
    z-index: 2;
    margin-top: 100px;
    color: white;
    text-align: left;
    max-width: 600px;
    padding: 0px 20px;
    margin-right: 700px
}

.content h5 {
    font-size: 3.9rem;
    margin-bottom: 1rem;

}

.content h1 {
    font-size: 3.9rem;

    margin-bottom: 1rem;
    font-weight: bold;

}
.about-video {
    width: 100%;

    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}




/* erp */
.erp-section {
    background: #ffffff;
    color: rgb(0, 0, 0);

    height: 700px;
    display: flex;
    max-width: 1900px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.erp-section .container {
    display: flex;
    justify-content: center;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    height: 500px;


}

.img-fluid {
    margin-top: -25px;
    height: 600px;
    width: 350px;
    padding-bottom: 40px;
}

.erp-section h2 {
    color: rgba(255,153,0,255);
    font-weight: bold;

}

.how-content {
    margin-bottom: 70px;

}

.erp-section p {
    color: #000000;
    line-height: 1.7;
    max-width: 750px;

}

.btn-ordr-custom {
    background-color: white;
    color: black;
    border: 2px solid black;
    padding: 10px 25px;

    font-size: 18px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;



}

.btn-ordr-custom:hover {
    background-color: black;
    /* Black background on hover */
    color: white;
    /* White text on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Black shadow on hover */
    transform: scale(1.05);
    /* Slight button scale effect on hover */
}




/* proc3sss */
.process-section {
    padding: 60px 0;
}

.process-title {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.process-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.process-icon {
    font-size: 50px;
    color: rgba(255,153,0,255);
    margin-bottom: 15px;
}

.process-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.process-card p {
    color: #666;
    font-size: 14px;
}



/* Section Styling */
.listening-section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 40px;
    color: #000000;

}

.team-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.18);
    border-color: rgba(255,153,0,255);
}


.team-icon {
    font-size: 65px;
    color: rgba(255,153,0,255);
    margin-bottom: 15px;
    transition: 0.3s ease-in-out;
    display: inline-block;
}

.team-card:hover .team-icon {
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
    transform: scale(1.1);
}

.team-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
    color: #2c3e50;
}

.team-card ul {
    list-style: none;
    padding: 0;
}

.team-card ul li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-card ul li i {
    color: rgba(255,153,0,255);
    font-size: 18px;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .team-card {
        padding: 25px;
    }

    .team-icon {
        font-size: 55px;
    }
}










/* Contribution Brand  loop */
.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0;
    max-width: 100px;
}

.carousel-item .col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.con-logo {
    border: 1px solid #e0e0e0;
    padding: 8px;
    border-radius: 8px;
    background-color: #f9f9f9;

}

.carousel {
    padding: 40px 0;
}

.rand-head {
    margin-top: 40px;
    font-size: 2.5rem;
    font-weight: bold;


}

.carousel-inner {
    padding: 20px 0;

}


/* Analysis Section */
.analysis-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 80px 20px;
    position: relative;
    max-width: 1700px;
}

.analysis-text {
    width: 40%;
    text-align: left;
    padding: 20px;
}

.analysis-text h2 {
    font-size: 28px;
    font-weight: bolder;
    color: #000000;
}

.analysis-text p {
    font-size: 18px;
    color: #555;
}

/* Centered Phone */
.phone-container {
    width: 20%;
    text-align: center;

}

.phone-container img {
    width: 300px;
    height: auto;


}

.brands-container {
    background: linear-gradient(135deg, #ffe169, rgba(255,153,0,255));
    padding: 60px 20px;
    text-align: center;
    position: relative;
    max-width: 1900px;
    margin: 0 auto;
    border-radius: 20px;
}

.brand-logos img {
    width: 140px;
    max-width: 100%;
    height: auto;
    margin: 15px;
    transition: transform 0.3s ease-in-out;
}

.brand-logos img:hover {
    transform: scale(1.1);
}

.hero-title {
    font-size: 26px;
    font-weight: bolder;
    color: #333;
    margin-bottom: 20px;
}


.wave {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #ffe169, rgba(255,153,0,255));
    border-radius: 50% 50% 0 0;
}

/* Responsive */
@media (max-width: 768px) {
    .analysis-container {
        flex-direction: column;
        text-align: center;
    }

    .analysis-text,
    .phone-container {
        width: 100%;
    }
}



/* Navigation Buttons */
/* Navigation Buttons */
.case-study-nav .btn {
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    padding: 10px 15px;
    text-transform: capitalize;
}

.text-cap{
    text-transform: capitalize !important;
}

.case-study-nav .btn.active {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;

}

.case-study-nav .btn:hover {
    background-color: rgba(255,153,0,255);
    /* Yellow */
    color: #000000;
}

/* Case Study Container */
.case-study-container {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.case-study-container.active {
    display: block;
}

/* Case Study Box */
.case-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
    height: 375px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-left: 5px solid rgba(255,153,0,255);
    /* Yellow Accent */
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.case-box:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

/* Headings with Yellow Underline */
.case-box h3 {
    position: relative;
    display: inline-block;
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.case-box h3::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    background-color: rgba(255,153,0,255);
    /* Yellow Underline */
    margin-top: 5px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.case-boxthre {

    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
    height:auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-left: 5px solid #ffc107;
    /* Yellow Accent */
}

.case-boxthre:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

/* Headings with Yellow Underline */
.case-boxthre h3 {
    position: relative;
    display: inline-block;
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.case-boxthre h3::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    background-color: #ffc107;
    /* Yellow Underline */
    margin-top: 5px;
}



.case-boxfr {

    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
    height:auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-left: 5px solid #ffc107;
    /* Yellow Accent */
}

.case-boxfr:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

/* Headings with Yellow Underline */
.case-boxfr h3 {
    position: relative;
    display: inline-block;
}

.case-boxfr h3::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    background-color: #ffc107;
    /* Yellow Underline */
    margin-top: 5px;
}







/* 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;
}