html {
  scroll-behavior: smooth;
}

.card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.section-title h2 {
  font-size: 36px;
  color: #0d6efd;
}

.nav-tabs .nav-link {
  color: #0d6efd;
  border: none;
  margin: 5px;
  font-weight: 500;
}
.nav-tabs .nav-link.active {
  background: #0d6efd;
  color: #fff;
  border-radius: 5px;
}

.buildBusinessDetail a {
  text-decoration: none;
  transition: 0.3s;
}
.buildBusinessDetail a:hover {
  color: #0a58ca;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.5rem;
  }
}

/* Brand marquee section */
.brand-marquee {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.brand-track {
  display: flex;
  animation: scrollBrands 30s linear infinite;
}

.brand-logo {
  height: 60px;
  margin: 0 40px;
  opacity: 0.8;
 
  transition: all 0.3s ease;
}

.brand-logo:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .brand-logo {
    height: 40px;
    margin: 0 20px;
  }
}

/* ==== Solutions Tabs Custom Style ==== */
#solutions .section-title h2 {
  font-size: 36px;
  color: #094D75;
}

#solutions .nav-tabs .nav-link {
  color: #094D75;
  border: 2px solid transparent;
  margin: 5px;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 25px;
  transition: all 0.3s ease;
  background-color: #fff;
}

#solutions .nav-tabs .nav-link:hover {
  border-color: #ee0014;
  color: #ee0014;
  background-color: #fff5f5;
}

#solutions .nav-tabs .nav-link.active {
  background-color: #ee0014;
  color: #fff !important;
  border-color: #ee0014;
  box-shadow: 0 3px 10px rgba(238, 0, 20, 0.3);
}

#solutions .tab-content img {
  transition: transform 0.4s ease;
}
#solutions .tab-content img:hover {
  transform: scale(1.05);
}

#solutions .tab-content h4 {
  color: #094D75;
}

#solutions a {
  text-decoration: none;
  font-weight: 500;
}
#solutions a:hover {
  color: #094D75 !important;
}

#solutions ul {
  list-style: none;           /* removes bullets */
  padding: 0;
  margin: 0;
  font-size: 18px;
}

@media (max-width: 768px) {
  #solutions .nav-tabs .nav-link {
    font-size: 0.9rem;
    padding: 8px 18px;
  }
  #solutions .section-title h2 {
    font-size: 1.5rem;
  }
}

.cta-section {
  background: linear-gradient(90deg,#05164d 0%,#0c33b3 100%);
  
  color: #ffffff;
  padding: 80px 0;
  border-radius: 10px;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 36px;
}

.cta-section p {
  color: #e0f0ff;
}

.cta-section .cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #094D75;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-section .cta-button:hover {
  background-color: #e0f0ff;
  transform: translateY(-2px);
}

.cta-section .cta-stats li {
  font-size: 1rem;
  color: #ffffff;
  position: relative;
  padding-left: 30px; /* space for checkmark */
}

.cta-section .cta-stats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23FFD700' d='M6.173 12.414L2.586 8.828l1.414-1.414 2.173 2.172 5.172-5.172 1.414 1.414z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}



@media (max-width: 768px) {
  .cta-wrap {
    flex-direction: column-reverse;
    text-align: center;
  }
  .cta-section .cta-stats {
    justify-content: center;
  }
  .right-sec {
    margin-bottom: 30px;
  }
}

.single-service:hover {
  background-color: #e6f0fa;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* Section Technology Stack background */

/* Left navigation buttons */
.custom-nav .nav-link {
  position: relative;
  font-weight: 600;
  color: #094D75;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 10px;
  background-color: #fff8ea;
  transition: all 0.3s ease;
}

.custom-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 20px;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: #094D75;
  transition: width 0.3s ease;
}

.custom-nav .nav-link:hover {
  background-color: #f0f7fb;
  color: #094D75;
  transform: translateX(6px);
}

.custom-nav .nav-link:hover::after {
  width: 40%;
}

.custom-nav .nav-link.active {
  background-color: #094D75;
  color: #fff;
  border-color: #094D75;
  box-shadow: 0 4px 10px rgba(9, 77, 117, 0.25);
}

.custom-nav .nav-link.active::after {
  width: 40%;
  background: #fff8ea;
}

/* Right content card */
.content-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.content-card h3 {
  color: #094D75;
  font-weight: 700;
  margin-bottom: 15px;
}

.content-card p {
  color: #555;
  margin-bottom: 25px;
}

/* Tech icons */
.icon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.icon-grid img {
  width: 155px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  
}

.icon-grid img:hover {
  transform: scale(1.15);
  filter: grayscale(0%);
}

/*FAQ*/
.faq-section .accordion-button {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-section .accordion-button:hover {
  background-color: #e9f7ff;
}

.faq-section .accordion-button:after {
  content: ""; /* Font Awesome down arrow */
  font-family: "Font Awesome 5 Free"; 
  font-weight: 700;
}

.faq-section .accordion-body {
  background-color: #f1f9ff;
  border-radius: 0 0 8px 8px;
  padding: 1rem 1.5rem;
}

/*Testimonial*/
.client-testimonial-section .content-box {
    transition: transform 0.3s, box-shadow 0.3s;
}
.client-testimonial-section .content-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.client-testimonial-section .quote i {
    color: #0d6efd;
}
.client-testimonial-section .rating i {
    color: #ffc107;
}

.contact-section {
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

/* Left Side */
.left-panel {
  background: #fff8ea;
  position: relative;
}

.left-panel .overlay {
  position: absolute;
  inset: 0;
}

.contact-link {
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  color: #0c0c0c;
}

.contact-link img {
  width: 24px;
  height: 24px;
}

.contact-link:hover {
  color: #094D75;
  transform: translateX(4px);
}

/* Right Form */
.contact-form {
  max-width: 600px;
  border: 1px solid #fff;
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px 12px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #013382;
  box-shadow: 0 0 0 0.2rem rgba(1, 51, 130, 0.15);
}

.contact-form button {
  background: linear-gradient(90deg, #013382, #0A2D63);
  border: none;
  border-radius: 8px;
  color: #fff;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #0A2D63, #013382);
}

/* Responsive */
@media (max-width: 992px) {
  .left-panel {
    text-align: center;
    padding: 40px 20px;
  }

  .left-panel img {
    margin: auto;
  }

  .contact-form {
    margin: auto;
  }
}


 

