.aboutbg {
    position: relative;
    background-image: url('../Images/bg16.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.aboutbg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.aboutbg .content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.aboutbg h2 {
    font-size: 55px;
    margin-bottom: 20px;
    font-weight: 800;
    color: black;
}

.aboutbg h5 {
    font-size: 28px;
    margin-bottom: 15px;
}

.aboutbg p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .aboutbg h2 {
        font-size: 36px;
    }

    .aboutbg h5 {
        font-size: 22px;
    }

    .aboutbg p {
        font-size: 16px;
    }
}













.aboutcontent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    /* background-color: #f8f8f8; */
    padding: 50px;
    /* border-radius: 20px; */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
    margin: 50px auto;
    max-width: 1200px;
    transition: 0.3s ease;
}

.aboutcontent:hover {
    transform: translateY(-5px);
}

.aboutcontent .left {
    width: 70%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.aboutcontent .left img {
    width: 70%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.aboutcontent .right {
    flex: 1;
    color: #333;
}

.aboutcontent .right h2 {
    font-size: 46px;
    color: #385474;
    font-weight: 800;
    margin-bottom: 20px;
}

.aboutcontent .right p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .aboutcontent {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .aboutcontent .right h2 {
        font-size: 28px;
    }

    .aboutcontent .right p {
        font-size: 16px;
    }

    .aboutcontent .left img {
        max-width: 100%;
        height: auto;
    }
}























.aboutsteps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
    padding: 40px;
    position: relative;
    background-image: url('../Images/bg20.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.aboutsteps::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    opacity: 0.8;   /* ADDED OPACITY */
    z-index: 1;
}

.aboutsteps .rectangular {
    position: relative;
    flex: 0 1 48%;
    background-color: rgba(255, 255, 255, 0.95); /* Slight opacity to the box */
    border-radius: 12px;
    padding: 30px 25px 30px 90px;  /* left padding for icon */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
    z-index: 2;
}

.aboutsteps .rectangular:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.aboutsteps .icon-box {
    position: absolute;
    top: -15px;
    left: 25px;
    background-color: #9f6615;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.aboutsteps .content h5 {
    color: #385474;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.aboutsteps .content p {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .aboutsteps .rectangular {
        flex: 0 1 100%;
        padding: 30px 25px 30px 80px;
    }

    .aboutsteps .icon-box {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}























.steps-heading {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 33px;
    font-weight: 900;
    color: #385474;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.steps-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
    padding: 50px 40px;
    background-color: #f9f9f9;
    position: relative;
}

.step-card {
    background-color: #fff;
    border-radius: 15px;
    flex: 0 1 23%;
    padding: 30px 20px;
    position: relative;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.4s;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-icon {
    background-color: #385474;
    color: #fff;
    font-size: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(56, 84, 116, 0.4);
}

.step-content h5 {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
}

.step-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .step-card {
        flex: 0 1 48%;
    }
}

@media (max-width: 600px) {
    .step-card {
        flex: 0 1 100%;
    }
}



