/* course details section start */
.coursesDetailsAllMain {
    width: 100%;
}

.coursesDetailsAll {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.coursesDetails {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px 0px;
    background-color: #FEF6E0;
    border-radius: 5px;
}

.coursesDetails i {
    font-size: 50px;
    color: #F7C32E;
}

.coursesDetails:nth-child(2) {
    background-color: #DDE2E5;
}

.coursesDetails:nth-child(2) i {
    color: #1D3B53;
}

.coursesDetails:nth-child(3) {
    background-color: #EAE3F6;
}

.coursesDetails:nth-child(3) i {
    color: #6F42C1;
}

.coursesDetails:nth-child(4) {
    background-color: #DCF1F4;
}

.coursesDetails:nth-child(4) i {
    color: #17A2B8;
}

.coursesDetails h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.coursesDetails p {
    margin: 0;
    color: rgb(46, 46, 46);
}

.coursesDetailsTitle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* course details section end */

/* instructor section start */
.instructor {
    background: linear-gradient(135deg, #17A2B8, #0d6e7e);
    border-radius: 15px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeIn 1s ease-out;
    margin: 50px 0;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.instructor-content {
    max-width: 60%;
}

.instructor h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.instructor-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    padding-right: 50px;
    letter-spacing: 0.5px;
}

.instructor-btn {
    width: 40%;
    display: flex;
    justify-content: flex-end;
}

.instructor-btn button {
    padding: 14px 40px !important;
    border: 2px solid #ff9500;
    color: white;
    background: linear-gradient(90deg, transparent, rgba(255, 149, 0, 0.2));
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.3);
}

.instructor-btn button:hover {
    background: linear-gradient(90deg, #ff9500, #ff6200);
    color: #1a1a1a;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 149, 0, 0.5);
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .instructor-content {
        max-width: 55%;
    }

    .instructor-btn {
        width: 45%;
    }

    .instructor-content p {
        padding-right: 20px;
    }
}

@media screen and (max-width: 768px) {
    .instructor {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .instructor-content {
        max-width: 100%;
    }

    .instructor-content p {
        padding-right: 0;
        padding-top: 15px;
    }

    .instructor-btn {
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }

    .instructor h2 {
        font-size: 28px;
    }

    .instructor-content p {
        font-size: 16px;
    }

    .instructor-btn button {
        padding: 12px 30px !important;
    }

    .coursesDetailsAll {
        flex-wrap: wrap;
    }

    .coursesDetails {
        width: 48.5%;
    }
}

@media screen and (max-width: 426px) {
    .coursesDetails {
        width: 100%;
    }

    .instructor {
        padding: 30px 20px;
    }

    .instructor h2 {
        font-size: 24px;
    }

    .instructor-content p {
        font-size: 14px;
    }

    .instructor-btn button {
        font-size: 14px;
        padding: 10px 25px !important;
    }

    .large_img_Section_main {
        min-height: 250px !important;
        padding: 0px !important;
    }

    .large_img {
        height: 250px !important;
    }

    .small_img {
        display: none;
    }

    .getintouch .getInTouchMains .getInTouchFormBox {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px !important;
    }

    .about_section_mains {
        padding: 0 !important;
    }
}

/* instructor section end */

/* get in touch section start */
.getintouch .getInTouchMains {
    position: relative;
    width: 100%;
    height: 90vh;
    background-image: url("https://img.freepik.com/free-photo/businesswoman-taking-notes-clipboard-sitting-desk-corporate-office-while-taking_482257-4201.jpg?uid=R156497285&ga=GA1.1.1921166926.1684059532");
    background-size: contain;
    background-position: -120px center;
    display: flex;
    align-items: center;
}

.getintouch .getInTouchMain {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.getintouch .getInTouchMains .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 40%, #161616 80%);
}

.getintouch .getInTouchMains .getInTouchForm {
    position: relative;
    background: rgba(255, 255, 255, 0.989);
    padding: 30px;
    border-radius: 8px;
    width: 50%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.002);
}

.getintouch .getInTouchMains .getInTouchForm h2 {
    margin-bottom: 20px;
    color: white;
    text-align: start;
    font-weight: bold;
}

.getintouch .getInTouchMains .getInTouchFormBox {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.getintouch .getInTouchMains .inputGroup {
    position: relative;
    width: 100%;
}

.getintouch .getInTouchMains .inputGroup input {
    width: 100%;
    padding: 10px;
    padding-right: 40px;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    border: none;
    background-color: rgba(255, 255, 255, 0.258);
    color: white;
}

.getintouch .inputGroupTextarea textarea {
    background-color: rgba(255, 255, 255, 0.258);
    color: white;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    outline: none;
    border: none;
}

.getintouch .inputGroupTextarea textarea::placeholder {
    color: white;
}

.getintouch .getInTouchMains .inputGroup input::placeholder {
    color: white;
}

.getintouch .getInTouchMains .icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 18px;
}

@media (max-width: 500px) {
    .getintouch .getInTouchMains .row {
        flex-direction: column;
    }
}

.getintouch .submitBtn {
    margin-top: 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(241, 2, 2, 0.2);
    padding: 0.5rem 1.25rem;
    background-color: #6F42C1;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
    padding: 15px 100px;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
}

.getintouch .submitBtn .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.getintouch .submitBtn:hover {
    transform: scale(1.05);
    border-color: #fff9;
    background-color: blue;
}

.getintouch .submitBtn:hover .icon {
    transform: translate(4px);
}

.getintouch .submitBtn:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.getintouch .submitBtn::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

/* media query for responsive */
@media(max-width: 769px) {
    .getintouch .getInTouchMains {
        background-size: cover;
    }

    .getintouch .getInTouchForm {
        width: 100% !important;
        margin-top: -50px;
    }
}

@media(max-width: 426px) {
    /*.getintouch .getInTouchMains {*/
    /*    height: 80vh;*/
    /*    padding: 40px 0px;*/
    /*    padding-top: 70px;*/
    /*}*/

    .getintouch .getInTouchForm {
        padding: 0 !important;
        margin-top: -45px;
    }

    .getintouch .getInTouchMains .row {
        margin-bottom: 17px;
    }
}

/* get in touch section end */
.home_sec {
    transition: all 0.3s ease;
}

.home_sec:hover {
    color: #F5C725 !important;
}

@media(max-width:426px) {
    .about_top_img {
        height: 250px !important;
    }
}

/* news latter section start */

/* news latter section end */