@media screen and (max-width: 467px) {

    html,
    body {
        width: 100%;
        /* height: 100%; */
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        background-color: #fede00;
    }
}



/* -------request call back-----------  */

@media only screen and (max-width:467px) {
    .main-container {
        display: flex;
        flex-direction: column;
        /* margin: 40px 0px 0px 10px; */
        justify-content: center;
    }

    .container-right {
        display: none;
    }

    .container-left {
        /* margin: 0px 10px 0px 0px; */
        background-color: #fede00;
        width: 98%;
        height: auto;
        border-radius: 10px;
    }

    .email {
        display: flex;
        flex-direction: column;
    }

    .email input {
        height: 40px;
        width: 91%;
        outline: none;
        border-radius: 5px;
        border: 0.5px solid gray;
        padding: 0px 0px 0px 10px;
        font-size: 16px;
        margin: 10px 10px 0px 15px;
    }

    .name-field input {
        height: 40px;
        width: 91%;
        outline: none;
        border-radius: 5px;
        border: 0.5px solid gray;
        padding: 0px 0px 0px 10px;
        font-size: 16px;
        margin: 10px 0px 0px 15px;
    }

    .year-field input {
        height: 40px;
        width: 91%;
        outline: none;
        border-radius: 5px;
        border: 0.5px solid gray;
        padding: 0px 10px 0px 10px;
        font-size: 16px;
        margin: 10px -100px 0px 15px;
    }

    .job-title select {
        height: 40px;
        width: 91%;
        outline: none;
        border-radius: 5px;
        border: 0.5px solid gray;
        padding: 0px 50px 0px 10px;
        font-size: 16px;
        margin: 10px 50px 0px 15px;
    }

    .programe select {
        height: 40px;
        width: 91%;
        outline: none;
        border-radius: 5px;
        border: 0.5px solid gray;
        padding: 0px 50px 0px 10px;
        font-size: 16px;
        margin: 10px 35px 0px 15px;
    }

    .phone {
        display: flex;
    }

    .phone select {
        height: 40px;
        width: 110px;
        outline: none;
        border-radius: 5px;
        border: 0.5px solid gray;
        padding: 0px 50px 0px 5px;
        font-size: 16px;
        margin: 50px -10px 0px 15px;
    }

    .phone input {
        height: 40px;
        width: 63%;
        outline: none;
        border-radius: 5px;
        border: 0.5px solid gray;
        padding: 0px 6px 0px 10px;
        font-size: 16px;
        margin: 50px -240px 0px 15px;
    }

    .email label {
        font-size: 20px;
        padding: 10px 0px 0px 20px
    }

    .name-field label {
        font-size: 20px;
        padding: 10px 0px 0px 20px;
        margin-top: 10px;
    }

    .year-field label {
        font-size: 20px;
        padding: 20px 0px 0px 20px;
    }

    .job-title label {
        font-size: 20px;
        padding: 20px 0px 0px 20px;
    }

    .programe label {
        font-size: 20px;
        padding: 20px 0px 0px 20px;
    }

    #number label {
        font-size: 20px;
        padding: 0px 0px 0px 20px;
    }

    #option {
        height: 40px;
        width: 91%;
        outline: none;
        border-radius: 5px;
        border: 0.5px solid gray;
        padding: 0px 50px 0px 10px;
        font-size: 16px;
        margin: 10px 35px 0px 15px;
    }

    .row1,
    .row2,
    .row3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #btn {
        width: 91%;
        height: 40px;
        outline: none;
        border-radius: 5px;
        border: 0.5px solid gray;
        padding: 0px -456px 0px 80px;
        font-size: 16px;
        margin: 20px -240px 20px 15px;
        background-color: #0962ea;
        color: #F1C40F;
    }
}


@media only screen and (max-width:467px) {
    nav {
        display: none;
    }

    .ham-menu {
        display: block;
    }

    #ham-item {
        display: flex;
        justify-content: space-between;
    }






}


/* -----------------------ham-menu-------------------- */

@media only screen and (max-width:467px) {
    .hamburger {
        background-color: white;
        border-radius: 50px;
        -webkit-box-shadow: 2px 4px 14px -1px rgba(110, 94, 99, 1);
        -moz-box-shadow: 2px 4px 14px -1px rgba(110, 94, 99, 1);
        box-shadow: 2px 4px 14px -1px rgba(110, 94, 99, 1);
    }

    .ham-menu {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.65rem 0.5rem;
        cursor: pointer;
        transition: width 0.3s ease;
        /* Smooth transition */
        width: 65px;
        /* Default width */
        height: 65px;

    }

    .ham-menu:hover {
        width: 160px;
        /* Expanded width on hover */

    }

    /* .ham-menu:hover{
    transform: ;
  } */

    .ham-icon-img {

        margin-left: 0.3rem;

    }

    .ham-icon-img img {
        width: 40px;
        height: 40px;

    }

    .ham-icon i {
        color: #0962ea;
        font-size: 48px;
        margin-left: 0;
        text-align: center;

    }

    .hamburger:hover {
        background: #081f37;
    }

    .ham-icon {
        display: none;
        transition: opacity 0.3s ease;
        background: #ffffff;
        border-radius: 50px;
        padding: 0 .1rem;

    }

    .ham-menu:hover .ham-icon {
        display: block;

    }

    .ham-menu:hover .ham-icon-img {
        /* margin-left: -3rem; */
        display: none;
        position: relative;


    }



    .shape {
        width: 400px;
        display: none;
        height: 400px;
        border: 1px solid blue, 1px solid blue, 1px solid blue 1px solid blue 1px solid blue;
        background-position: center;
        background: url(images/n2.jpg) no-repeat;
        background-size: contain;

        clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    }

    .nav-social-con {
        display: flex;
        flex-direction: column;
    }

    .main-contact {
        display: flex;
        gap: 1rem;
        margin-left: 0;
        padding-bottom: 3rem;

    }

    .nav-socials {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 4rem;
    }


    .nav-socials li {
        list-style: none;
    }

    .nav-socials li a i {
        padding: 0.5rem;
    }


    .nav-socials li a {
        width: 44px;
        height: 44px;
        margin-right: 10px;
        margin-left: 10px;
        background-color: #D46FCF;
        /* border: 1px solid rgb(106, 106, 235); */
        border-radius: 50%;
        font-size: 20px;
        text-decoration: none;
        /* display: flex;
    align-items: center;
    justify-content: center; */
        padding: 1rem;
        text-align: center;
        transition: all 0.3s ease-out;
    }

    .nav-socials li a:hover {
        background-color: #7B47C5;
        color: #ffffff;
        border: none;
    }

    .nav-socials li a i {
        color: #ffffff;
    }







    .nav-logo img {
        width: 150px;
        height: 120px;
        margin-left: 2rem;

    }

    nav {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 3rem 0 0;
        align-items: center;
        /* background-color: #040053; */

    }

    .navigation-menu {
        display: flex;
        flex-direction: column;
        margin: 0.75rem;
        gap: 1rem;
        align-items: center;
    }

    .navitems {
        display: flex;
        flex-direction: column;

        /* gap: 1rem; */
    }

    @keyframes smoothHover {
        0% {
            background-image: none;
            -webkit-text-fill-color: white;
            font-weight: 400;
            letter-spacing: 3px;
            font-size: 55px;
            font-style: normal;
        }

        100% {
            background-image: url(images/text-bg.jpg);
            -webkit-text-fill-color: transparent;
            -webkit-background-clip: text;
            font-weight: 800;
            letter-spacing: 1px;
            font-size: 60px;
            font-style: italic;
        }
    }



    .navitems li {
        list-style: none;
        display: inline-block;
        height: 80px;
        position: relative;

    }


    .navitems li a {
        color: white;
        text-decoration: none;
        letter-spacing: 3px;
        font-size: 55px;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: black;
        /* font-family: myFontnav; */
        font-family: "Archivo Black", sans-serif;
        text-transform: uppercase;
        transition: all 0.5s ease;
    }

    .navitems li a:hover {
        animation: smoothHover 0.5s forwards;
        -webkit-text-stroke-width: 0.5px;
        -webkit-text-stroke-color: none;
    }


    /* 
.navitems li a:hover {
   
    background-image: url(images/text-bg.jpg);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-weight: 800;
    letter-spacing: 10px;
    font-size: 80px;
    font-style: italic;
       
} */

    .navigation-main-modal {
        display: flex;
        display: none;
        justify-content: center;

        /* width: 1300px; */
        /* display: none; */
    }

    .navigation-main-modal.show {
        display: block;
        /* animation: fadeIn 0.3s ease-out; */
    }

    .navigation-modal {
        /* display: none; */
        /* Hidden by default */
        position: fixed;
        /* Stay in place */
        z-index: 1001;
        /* Sit on top */
        left: 0;
        top: -5%;
        display: flex;
        justify-content: center;
        width: 100%;
        height: 800px;


    }

    .nav-modal-content {
        background-color: #fff;
        margin: 4rem 1rem;
        padding: 20px;

        width: 100%;
        /* height: 100%;
    width: 1200px; */
        /* Could be more or less, depending on screen size */
        /* max-width: 2500px; */
        /* Limit the max width */
        border-radius: 8px;
        /* Rounded corners */
    }

    .nav-close-button {
        color: #aaa;
        float: right;
        font-size: 60px;
        font-weight: bold;
        cursor: pointer;
    }

    .nav-close-button:hover,
    .nav-close-button:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

    .contact-btn {
        display: flex;
        justify-content: center;
        padding-left: 0.5rem;
    }



    /* --------------------------------banner------------------------------ */


    .c-ban-wrapper {
        position: relative;
        text-align: center;
        padding: 50px 20px 80px;
        overflow: hidden;
        background: #fede00;
        font-family: "Poppins", serif;
        display: flex;
        justify-content: center;
    }

    .c-ban-title {
        max-width: 1400px;
        font-size: 50px;

        font-weight: 900;
        color: #000000;
        /* line-height: 1.3; */
    }

    .c-ban-title span {
        background-color: #000;
        color: #fff;
        padding: 5px 20px;
        border-radius: 30px;
        display: inline-block;
        transform: rotate(-5deg);
        font-size: 38px;
        font-style: italic;
    }



    .c-ban-title span::after {
        content: "";
        position: absolute;
        top: 65px;
        /* Adjust the position as needed */
        right: -1rem;
        transform: rotate(-90deg);
        width: 70px;
        height: 90px;
        background: url(../images/paper-plane.png) no-repeat center;
        background-size: contain;
        z-index: 1;
    }

    /* Abstract shapes */
    .c-ban-shape {
        position: absolute;
        width: 35px;
        height: 35px;
        background-color: #0000007b;
        opacity: 0.9;
        animation: float 8s infinite ease-in-out;
    }

    .c-ban-circle {
        border-radius: 50%;
    }

    .c-ban-square {
        border-radius: 35px;
    }

    .c-ban-triangle {
        width: 0;
        height: 0;
        border-left: 17px solid transparent;
        border-right: 17px solid transparent;
        border-bottom: 34px solid #000;
        background: none;
    }

    .c-ban-outline-square {
        border: 2px solid #000;
        background: transparent;
    }

    @keyframes float {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    /* Random positions */
    .c-ban-shape1 {
        top: 20px;
        left: 30px;
    }

    .c-ban-shape2 {
        top: 40px;
        right: 40px;
    }

    .c-ban-shape3 {
        bottom: 50px;
        left: 20px;
    }

    .c-ban-shape4 {
        bottom: 150px;
        right: 30px;
    }

    .c-ban-shape5 {
        top: 45%;
        left: 3%;
    }

    .c-ban-shape6 {
        top: 5%;
        right: 18%;
    }


    /* --------------------------------banner-end----------------------------- */























    /* ----------------------------faq section-------------------------- */

    .faq-container {
        display: flex;
        flex-direction: column;
        margin: 0;
    }

    .faq-main-section {
        background-color: #e63946;
        opacity: 1;
    }

    .faq-main-section h1 {
        text-align: center;
        font-family: "Poppins", serif;
        font-size: 38px;
        padding: 1rem 2rem 3rem 1.5rem;
        font-weight: 800;
    }

    .faq-sub-section {
        display: flex;
        justify-content: center;
        margin-bottom: 4rem;
    }

    .faq-column1 {
        width: 100%;

    }

    .faq-column2 {
        width: 100%;
    }

    .faq-column1 .faq {
        border-bottom: 1px solid #ffffff;
        padding: 15px 0;
        margin: 1rem;
    }



    .faq-column2 .faq {
        border-bottom: 1px solid #ffffff;
        padding: 15px 0;
        margin: 1rem;

    }

    .faq-question {
        font-weight: bold;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-question p {
        font-family: "Poppins", serif;
        font-size: 18px;
        font-weight: 400;
        margin-right: 1rem;
        padding: 0 1rem;
    }

    .faq-question span {
        display: inline-block;
        transition: transform 0.3s ease-in-out;
        font-size: 30px;
        margin-right: 1rem;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding 0.3s ease-in-out;

    }

    .faq-answer p {
        font-family: "Poppins", sans-serif;
        font-weight: 300;
        font-size: 16px;
        padding: 1rem 0 0 1rem;

    }


    .faq.active .faq-answer {
        max-height: 200px;
        opacity: 1;
        /* padding: 10px 15px; */
    }

    .faq.active .faq-question span {
        transform: rotate(180deg);
    }

    /* ----------------------------end faq section-------------------------- */
}


/* Responsive */
@media (max-width: 992px) {
    .cntc-container {
        flex-direction: column;
        padding: 40px 30px;
         top: 25%;
    }

    .cntc-map-wrapper {
        padding-top: 5rem;
    }

    .cntc-form-section,
    .cntc-contact-info {
        width: 100%;
    }

    .cntc-input-group {
        flex-direction: column;
    }

    .cntc-form-container {
        position: absolute;
        top: 40rem;
        right: 3.5%;
        transform: translateY(-50%);
        background: #fff;
        width: 360px;
        padding: 45px 30px 60px 30px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        z-index: 10;
    }

    
.cntc-form-container h3 {
    font-size: 18px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cntc-form-container input,
.cntc-form-container textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #aaa;
    margin-bottom: 20px;
    padding: 10px 5px;
    font-size: 14px;
    background: transparent;
    outline: none;
    font-family: "Poppins", serif;
}


.cntc-submit-btn {
    position: absolute;
    bottom: 18px;
    right: -10px;
    background: #1b1b1b;
    color: white;
    border: none;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

    
}