
/* hero section */
.hero-cetion-img {
    background-image: url('../Assest/hero-of-carrier.avif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 60vh;
}

.hero-cetion-img h1 {
    color: white;
    padding: 20px;
    font-size: 2.8rem;
	margin-top:10%;
}

.hero-cetion-img p {
    font-size: 1.3rem;
    color: white;
}

.hero-cetion-img button {
    padding: 10px;
    background-color: #eb5b25;
    font-size: 2rem;
    margin-top: 60px;
    color: white;
    border: none;
    border-radius: 5px;
}

@media (max-width: 768px){
    .hero-cetion-img h1{
        margin-top: 70px;
        font-size: 32px;
    }
    .hero-cetion-img p{
        margin: 10px;
    }
    .hero-cetion-img button{
        margin-top: 30px;
        font-size: 24px;
    }
}

/* hero section */

/* timing */
.timing-boxes {
    background-image: url('Assest/timing-bg.avif');
    background-repeat: no-repeat;
    /* width: 82%; */
    background-size: cover;
}

.info-boxes {

    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    padding: 15px 0;
    gap: 20px;
}

.box {
    background-color: #121212;
    border-radius: 10px;
    padding: 10px;
    flex: 1 1 300px;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.icon {
    font-size: 50px;
    color: #fbe5c4;
    width: 68px;
    text-align: center;
    flex-shrink: 0;
}

.content {
    flex: 1;
}

.content h3 {
    margin: 0 0 5px;
    color: #ff4a00;
    font-size: 24px;
}

.content p {
    color: white;
    font-size: 12px;
}

.content span {
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.arrow {
    font-size: 20px;
    color: #ff4a00;
}

@media (max-width: 768px) {
    .info-boxes {
        flex-direction: column;
        align-items: center;
    }

    .content h3 {
        font-size: 1.3rem;
    }

    .box {
        flex: 1 1 100px;
        width: 100%;
    }

    .content p {
        font-size: 12px;
    }

    .content span {
        color: white;
        font-size: 12px;
        font-weight: bold;
    }
}

/* timing */

/* carrier section */
.career-section {
    display: flex;
    justify-content: center;
}

.career-container {
    max-width: 1100px;
    background-color: #fff;
    padding: 50px;
    width: 100%;
    margin-top: 50px;
}

.career-title {
    font-size: 2.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
}

.career-subtitle {
    font-size: 2.4rem;
    font-weight: 300;
    text-align: left;
    margin-bottom: 40px;
    /* text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3); */
}

.career-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #999;
    border-radius: 4px;
}

.form-group.full {
    width: 100%;
}

.form-group.half {
    flex: 1;
    min-width: 200px;
}

.form-group.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.career-form button {
    background: #f25c22;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.career-form button:hover {
    background: #d84a12;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-group.half {
        width: 100%;
    }
    .career-title{
        font-size: 26px;
    }
    .career-subtitle{
        font-size: 18px;
    }
}

/* carrier section */


/* Contact Info */
.contact-info {
    color: #bbb;
    padding: 8px;
}

.contact-info i {
    font-size: 20px;
}


.contact-info span {
    margin-bottom: 10px;
    font-size: 18px;
    font-family: 'Rajdhani';
}
