body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .top-bar {
    background-color: #003366;
    color: white;
    padding: 5px 0;
  }
  .top-bar p {
    margin: 0;
    font-size: 14px;
  }
  .navbar {
    padding: 0.5rem;
  }
  .me-4 {
  margin-right: 2.5rem !important;
  }
  .navbar-nav .nav-link {
    color: #003366 !important;
    font-weight: 500;
    transition: color 0.3s;
  }
  .navbar-nav .nav-link:hover {
    color: #007bff !important;
  }
  .carousel-item img {
    /* height: 80vh; */
    object-fit: cover;
  }
  .section-title {
    color: #003366;
    font-weight: bold;
  }
  .solution-box, .service-box {
    text-align: center;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .solution-box:hover, .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  .solution-box img, .service-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  footer {
    background-color: #003366;
    color: white;
    padding: 20px 0;
  }
  .footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .carousel-caption {
background: rgba(0, 0, 0, 0.5);
padding: 20px;
border-radius: 10px;
}

/* Common Image Styling */
.service-box img {
  width: 80px;
  height: 80px;
}

.rotate img {
animation: rotateAnim 2s linear infinite;
}

@keyframes rotateAnim {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

.scale img {
animation: scaleAnim 2s ease-in-out infinite;
}

@keyframes scaleAnim {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.2); }
}

.bounce img {
animation: bounceAnim 1.5s infinite;
}

@keyframes bounceAnim {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.service-box ul {
padding-left: 0;
list-style-position: inside; /* optional: if you want bullet close to text */
text-align: left;
}
.solution-box {
background: #fff;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.testimonial-logo {
  width: 80px; /* Small size */
  height: 80px;
  border-radius: 50%; /* Rounded circle */
  object-fit: cover;
  border: 3px solid #dee2e6; /* optional border */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* optional shadow for effect */
  margin: 0 auto; /* center image */
}
.testimonial-name {
  font-weight: 600;
  color: #333;
}
.testimonial-desc {
  font-style: italic;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}
  .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #6c757d;
    margin: 0 5px;
    opacity: 0.7;
  }

  .carousel-indicators .active {
    background-color: #000;
    opacity: 1;
  }

  .testimonial-section {
    background: #f8f9fa;
    padding: 4rem 0;
  }
  .form-control, .form-select {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  box-shadow: none;
}
.form-label {
  font-size: 14px;
  color: #6c757d;
}
.btn-outline-primary {
border: 2px solid #0d6efd;
transition: all 0.3s ease-in-out;
}
.btn-outline-primary:hover {
background-color: #0d6efd;
color: white;
}

