body {
    /* background-color: #0d0d0d; */
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.header-banner {
    background-image: url('/assets/images/about-background-header.png'); /* image ka path yahaan daalein */
    background-size: cover; /* image ko container ke according resize karega */
    background-position: center; /* image ko center align karega */

    padding: 50px 0;
    position: relative;
    height: 40vh;
}
.black-shadow{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* black shadow */
}
.header-banner .container {
    position: absolute;
    top: 50%;
    width: 75%;
    left: 10%;
    color: white;
}
.breadcrumb-section {
    padding: 10px 0;

}

.breadcrumb-section a {
    color: white;
    text-decoration: none;
}

/* .main-heading {
    font-size: 48px;
    font-weight: bold;
    color: #00aaff;
} */

.careers-section {
    padding: 80px 15px;
    text-align: center;
}

.careers-section h1 {
    color: #00aaff;
    font-weight: bold;
}

.careers-section p {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #ccc;

}

.feature-box {
    background-color: aliceblue;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 170, 255, 0.2);
}

.feature-box p{
    font-size:medium;
    color: #444;
}
.feature-icon {
    font-size: 36px;
    color: #00aaff;
    margin-bottom: 15px;
}

.cta-section {
    background: linear-gradient(135deg, #003f66, #007acc, #00aaff);
    padding: 60px 15px;
    text-align: center;
}

.cta-section h3 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
}

.cta-section .btn {
    background-color: #00aaff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s;
}

.cta-section .btn:hover {
    background-color: #008ecc;
}
      /* Clients Section
      .clients {
        text-align: center;
        margin: 40px 0;
        border-top: 1px solid #444;
        padding-top: 20px;
        background-color: #000 !important;
      }
    
      .clients div{
        background: url(/assets/images/common/common-backround.png) no-repeat center center;
        padding: 10px;
      }
      .clients img {
        height: 35px;
        margin: 10px 20px;
        opacity: 0.8;
      }
    
      
    .contact-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #000 0%, #111 100%);
        color: #fff;
    }
    
    .contact-form {
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 10px;
        border: 1px solid #444;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .contact-form .form-control {
        background-color: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 0;
        border-bottom: 1px solid #444;
        color: #fff;
        padding: 10px 5px;
    }
    
    .contact-form .form-control:focus {
        background-color: rgba(255, 255, 255, 0.15);
        box-shadow: none;
    }
    
    .contact-form ::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }
    
    .contact-form label {
        margin-bottom: 0;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .btn-primary-custom {
        background-color: #0d6efd !important;
        border: none;
        padding: 12px;
        border-radius: 5px;
        width: 100%;
        transition: all 0.3s ease;
    }
    
    .btn-primary-custom:hover {
        background-color: #0b5ed7 !important;
        transform: translateY(-2px);
    } */