/* .banner {
    background-image: url('../images/about_banner.jpg'); 
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
} */
/* .banner h1 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
} */
:root {
    --primary-color: #009ee2;
    --secondary-color: #002c6c;
    --accent-color: #ff7f00;
}

.navbar-custom {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 5px 0;
}

.navbar-brand .logo {
    width: 100px !important;
    height: 65px !important;
    object-fit: contain;
    background-size: contain;
    background-position: center;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.main-content {
    margin: 20px;
}

.navbar-brand .logo {
    width: 150px;
    height: 50px;
}

.img-fluid-about-banner {
    width: 100%;
    height: auto; /* maintains aspect ratio */
    padding: 0;
}

.about-section {
    padding: 60px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
}
.about-text {
    flex: 1;
    padding: 20px;
}
.about-image {
    flex: 1;
    padding: 20px;
}
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.about-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
}
.about-section p {
    font-size: 1.0rem;
    line-height: 1.6;
    color: #434343;
}

.mail-about-us{
    color: #434343;
    text-decoration: underline;
}

.mail-about-us:hover{
    color: #434343;
}

.about-us {
    background-color: #f8f9fa; /* Light background */
  }
  
  .about-title {
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  .about-description,
  .about-focus,
  .about-employees,
  .about-contact {
    font-size: 1.2rem;
    color: #343a40; /* Dark text */
  }


  /* footer */

  footer {
    background-color: #002152;
    color: white;
    padding: 50px 0 20px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.solutions-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.solution-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.solution-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.solution-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    color: white;
}

.stats-section {
    padding: 80px 0;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-title {
    color: var(--secondary-color);
    font-weight: 600;
}

.innovation-section {
    padding: 80px 0;
}

.innovation-img {
    border-radius: 10px;
    overflow: hidden;
}

.about-txt-img{
    display: flex;
    align-items: center; /* Center align the items */
}

.about-description{
    padding: 0 0 20px 0;
    width: 100%;
}

  @media only screen and (max-width: 768px) {
    .about-txt-img{
        flex-direction: column; /* Stack the text and image vertically */
        align-items: center; /* Center align the items */
        padding: 0 20px; /* Add some padding for smaller screens */

    }
    
  }