.custom-navbar {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.custom-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.custom-navbar .navbar-brand .logo-img {
  width: 150px;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .custom-navbar .navbar-brand .logo-img {
    width: 120px;
  }
}
@media (max-width: 480px) {
  .custom-navbar .navbar-brand .logo-img {
    width: 100px;
  }
}
.custom-navbar .navbar-toggler {
  border: none;
}
.custom-navbar .navbar-toggler:focus {
  box-shadow: none;
}
.custom-navbar .navbar-nav .nav-link {
  color: #000;
  font-weight: 500;
  margin-left: 1.5rem;
  font-size: 1rem;
}
.custom-navbar .navbar-nav .nav-link:hover {
  color: #00b1e1;
}
.custom-navbar .navbar-nav .dropdown-toggle::after {
  margin-left: 0.3rem;
}
.custom-navbar .navbar-nav .dropdown-menu {
  border: none;
  border-radius: 0;
  padding: 0.5rem 0;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
.custom-navbar .navbar-nav .dropdown-menu .dropdown-item {
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
}
.custom-navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #00b1e1;
}

.hero-banner {
  background: url("../Image/Banner3.png") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 6rem 0;
  color: #fff;
}
.hero-banner .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 400px;
}
.hero-banner .hero-content {
  max-width: 600px;
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 8px;
}
.hero-banner .hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
.hero-banner .hero-content h1 span {
  display: inline-block;
  color: #fff;
}
@media (max-width: 768px) {
  .hero-banner .hero-content h1 {
    font-size: 2rem;
  }
}
.hero-banner .hero-content p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}
.hero-banner .hero-content .btn-primary {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #00b1e1;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.hero-banner .hero-content .btn-primary:hover {
  background-color: #0095c7;
}

.solutions-section .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
}
.solutions-section .nav-tabs {
  border-bottom: none;
}
.solutions-section .nav-tabs .nav-link {
  color: #007bff;
  font-weight: 500;
  border: none;
  border-bottom: 2px solid transparent;
}
.solutions-section .nav-tabs .nav-link.active {
  border-bottom: 2px solid #f7941d;
  color: #f7941d;
  background-color: #fff;
}
.solutions-section .nav-tabs .nav-link:hover {
  color: #0056b3;
}
.solutions-section .card {
  background: #fff;
  border-radius: 6px;
}
.solutions-section .card p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.solutions-section .card img {
  max-width: 100%;
  border-radius: 4px;
}
.solutions-section .card .btn-outline-warning {
  color: #f7941d;
  border-color: #f7941d;
}
.solutions-section .card .btn-outline-warning:hover {
  background-color: #f7941d;
  color: #fff;
}

.industries-section {
  background-image: url("../Image/Banneer5.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}
.industries-section .bg-blur {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.5);
}
.industries-section .industries-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.industries-section .industries-content .left {
  flex: 1 1 40%;
  margin-bottom: 30px;
}
.industries-section .industries-content .left h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
}
.industries-section .industries-content .left h2 .highlight {
  color: #ffc107;
}
.industries-section .industries-content .right {
  flex: 1 1 55%;
  padding: 30px;
  border-radius: 8px;
}
.industries-section .industries-content .right h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 15px;
}
.industries-section .industries-content .right p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.industries-section .industries-content .right .btn-yellow {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.industries-section .industries-content .right .btn-yellow:hover {
  background-color: #e0a800;
}
@media (max-width: 768px) {
  .industries-section {
    padding: 60px 0;
    background-image: none;
  }
  .industries-section .industries-content {
    flex-direction: column;
  }
  .industries-section .industries-content .left,
  .industries-section .industries-content .right {
    flex: 1 1 100%;
    text-align: center;
  }
  .industries-section .industries-content .left h2,
  .industries-section .industries-content .right h2 {
    font-size: 36px;
  }
  .industries-section .industries-content .right {
    padding: 20px;
  }
}

.partner-slider img {
  padding: 10px;
}

.footer-section {
  background-color: #000;
  font-size: 14px;
  color: #ccc;
}
.footer-section .logo {
  font-size: 24px;
  font-weight: bold;
}
.footer-section .logo span.text-primary {
  color: #00bfff;
}
.footer-section p {
  margin-bottom: 8px;
  color: #ccc;
}
.footer-section a.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 6px;
}
.footer-section a.footer-link:hover {
  color: #00bfff;
}
.footer-section .social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  color: #00bfff;
  border: 1px solid #333;
  transition: all 0.3s ease;
}
.footer-section .social-icons a:hover {
  background-color: #00bfff;
  color: #000;
  transform: translateY(-2px);
}
.footer-section h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-section ul {
  padding-left: 0;
  list-style: none;
}
.footer-section .footer-bottom {
  font-size: 13px;
  color: #666;
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 30px;
}
.footer-section .footer-bottom a {
  color: #888;
  margin-left: 10px;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-section .footer-bottom a:hover {
  color: #fff;
}/*# sourceMappingURL=style.css.map */