body {
    font-family: 'Arial', sans-serif;
}

/* Navbar Styling */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #2E2E2E;
}

.navbar-nav {
    margin: auto; /* Centers the menu items */
    display: flex;
    justify-content: center;
    width: 50%; /* Adjust width to center properly */
}

.navbar-nav .nav-item {
    margin: 0 15px; /* Adds spacing between menu items */
}

.navbar-nav .nav-link {
    color: white !important;
    transition: color 0.3s ease-in-out;
    font-size: 18px; /* Makes the menu items slightly larger */
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important; /* Changes to yellow on hover */
    /* font-weight: bolder; Makes the font weight lighter */
}


/* Navbar Brand Logo */
.navbar-brand  {
    margin-left: 100px;
}
.navbar-brand img{
    width: 150px;
   
}

/* About Us */
.about-us {
    background: #eef2f7; /* Light background for differentiation */
    padding: 60px 20px;
    position: relative;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #004aad; 
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #7e7e7e;
    border-radius: 50%;
    margin-left: 6px;
}

.about-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #333; /* Professional dark text */
    max-width: 800px;
    margin: 0 auto 10px;
}

/* Modern HR Line */
.custom-hr {
    width: 200px; /* Longer HR line */
    height: 4px;
    background: linear-gradient(to right, #7e7e7e, #0056b3); /* Gradient blue */
    border-radius: 3px;
    margin: 30px auto;
    transition: width 0.4s ease-in-out;
}

/* Hover effect: Expands slightly */
.custom-hr:hover {
    width: 250px;
    box-shadow: 0px 4px 10px rgba(0, 91, 187, 0.3);
}


/* ============================================ service ========================== */
.what-we-do {
    text-align: center;
    padding: 60px 20px;
    background: #eef2f7;
    margin-top: -80px;
    margin-bottom: -40px;
}

.flip-card {
    background: transparent;
    width: 100%;
    height: 250px;
    perspective: 1000px;
    display: inline-block;
    margin: 20px auto;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 20px;
}

.flip-card-front {
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.flip-card-front h4 {
    margin-top: 10px;
    font-size: 20px;
    color: #333;
}

.flip-card-back {
    background: linear-gradient(135deg, #0056b3, #7e7e7e);
    color: white;
    transform: rotateY(180deg);
    text-align: center;
    padding: 15px;
}

.service-icon {
    font-size: 50px;
    color: #0056b3;
}



/* Responsive Design */
@media (max-width: 768px) {
    .service-item {
        text-align: center;
    }

    .service-item.flex-row-reverse {
        flex-direction: column;
        text-align: center;
    }

    .text-right {
        text-align: center !important;
    }

    /* On small screens, overlay appears normally */
    .service-item .overlay {
        transform: translateX(0) !important;
    }
}

/* Industries With Icons */
.industry-item {
    margin-bottom: 20px;
}
.industry-item .icon {
    font-size: 36px;
    color: #0056b3;
    margin-bottom: 10px;
    margin-top: 10px;
}
.industry-item p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Software Carousel Styling */
.software-carousel-section {
    background-color: #f7f9fc;
    padding: 40px 20px;
    text-align: center;
    margin-top: -40px;
}

.software-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 30px;
}

.software-track {
    display: flex;
    width: calc(250px * 14); /* Adjust based on number of images */
    animation: scrollSoftware 30s linear infinite;
    align-items: center;
}

.software-track img {
    width: 150px;
    height: auto;
    margin: 0 20px;
    /* filter: grayscale(0%); */
    /* transition: filter 0.3s ease; */
}

/* .software-track img:hover {
    filter: grayscale(0%);
} */

/* Animation */
@keyframes scrollSoftware {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Testimonials */
.testimonials-section {
    background: #eef2f7;
    text-align: center;
    padding: 60px 20px;
  }
  
  .testimonial-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: auto;
    position: relative;
  }
  
  .testimonial-slider {
    flex: 1;
    max-width: 700px;
    position: relative;
  }
  
  .testimonial {
    display: none;
    background: white;
    padding: 25px;
    border-left: 5px solid #0056b3;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
  }
  
  .testimonial.active {
    display: block;
  }
  
  .testimonial blockquote {
    font-size: 17px;
    font-style: italic;
    margin: 0 0 10px;
  }
  
  .testimonial .author {
    font-weight: bold;
    color: #555;
  }
  
  /* Arrows */
  .arrow {
    font-size: 26px;
    color: #0056b3;
    cursor: pointer;
    padding: 40px;
    transition: 0.3s ease;
  }
  
  .arrow:hover {
    color: #003f8a;
  }
  

