@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-section------------------------------ */

    .inter-ban-banner {
        background-color: #fede00;
        padding: 0 20px 30px 20px;
        font-family: 'Poppins', sans-serif;
        text-align: center;
    }



    .inter-ban-subheading {
        color: #e63946;
        font-weight: 600;
        font-size: 27px;
    }

    .inter-ban-heading {
        font-size: 40px;
        color: #000;
        font-weight: 900;
    }

    .inter-ban-container {
        max-width: 1200px;
        margin: auto;
    }

    .inter-ban-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        margin-top: 1rem;
    }

    .inter-ban-left,
    .inter-ban-right {
        flex: 1 1 250px;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .inter-ban-box {
        display: flex;
        align-items: center;
        gap: 15px;
        background-color: #000;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 8px 8px 0 #fff;
        text-align: left;
    }

    .inter-ban-box img {
        width: 50px;
        height: 50px;
    }

    .inter-ban-box h4 {
        margin: 0;
        font-size: 18px;
        color: #fede00;
        font-weight: 600;
    }

    .inter-ban-box p {
        margin: 5px 0 0;
        font-size: 14px;
        color: #c4c5c8;
    }

    .inter-ban-center {
        /* flex: 1 1 300px; */
        text-align: center;
    }

    .inter-ban-center img {
        width: 350px;
        filter: drop-shadow(8px 8px 0 #fff);
    }

    .inter-ban-main-img {
        max-width: 100%;
        width: 250px;
        border-radius: 10px;
    }



    .inter-ban-heading .up::before {
        content: "";
        position: absolute;
        top: 15px;
        /* Adjust the position as needed */
        left: -2rem;
        transform: translateX(-50%) rotate(-15deg);
        width: 100px;
        height: 60px;
        background: url(../images/book.png) no-repeat center;
        background-size: contain;
        z-index: 1;
    }


    .inter-ban-heading .futu {
        position: relative;
        display: inline-block;
        /* color: #fff;
        -webkit-text-stroke: 2px #000000; */
    }


    .inter-ban-heading .futu::before {
        content: "";
        position: absolute;
        top: 1px;
        /* Adjust the position as needed */
        left: 19rem;
        transform: translateX(-50%) rotate(-5deg);
        width: 100px;
        height: 50px;
        background: url(../images/startup.png) no-repeat center;
        background-size: contain;
        z-index: 1;
    }

    /* -----------------------------------banner-end-------------------------------- */




    /*  ---------------------------course-details-cards-------------------------------------------- */

    .c-dtl-main {
        font-family: "Poppins", serif;
        padding: 3rem 0;
        background-color: #000000;
        background-image: url("https://www.transparenttextures.com/patterns/axiom-pattern.png");
    }


    .c-dtl-sub {
        display: flex;
        justify-content: center;
        padding-top: 2rem;
    }

    .c-dtl-main h1 {
        font-size: 40px;
        font-weight: 900;
        text-align: center;
        color: #fede00;
        padding: 1rem 0;
    }

    .c-dtl-subhead {
        font-size: 18px;
        font-weight: 400;
        text-align: center;
        color: #81817e;
        padding: 0 1rem;
    }


    .c-dtl-section {
        max-width: 1200px;
    }

    .c-dtl-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        padding: 0 2rem;
    }

    .c-dtl-card {
        background: #fede00;
        /* border-radius: 8px; */
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

    .c-dtl-card:hover {
        transform: translateY(-5px);
    }

    .c-dtl-icon {
        font-size: 4rem;
        color: #e63946;
        /* You can customize the color */
        transition: transform 0.3s ease;
        padding: 2rem 1rem 0 1rem;
    }

    /* Optional hover effect */
    .c-dtl-card:hover .c-dtl-icon {
        transform: scale(1.1) rotate(5deg);
        color: #2c3e50;
        /* Slight color shift on hover */
    }


    .c-dtl-content {
        padding: 2rem 1rem;
    }

    .c-dtl-tag {
        display: inline-block;
        font-size: 13px;
        color: #424040;
        background: #e639471b;
        padding: 4px 10px;
        border-radius: 20px;
        margin-bottom: 8px;
    }

    .c-dtl-title {
        font-size: 20px;
        margin-bottom: 6px;
        color: #333;
    }

    .c-dtl-desc {
        font-size: 16px;
        color: #444;
        text-align: left;
    }

    .c-dtl-more {
        font-size: 16px;
        text-align: left;
        color: #444;
        /* margin-top: 10px; */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .c-dtl-more.expanded {
        max-height: 300px;
    }

    .c-dtl-toggle {
        display: inline-block;
        color: #e63946;
        font-weight: bold;
        cursor: pointer;
        font-size: 14px;
    }

    .c-dtl-btn-group {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }

    .c-dtl-btn {
        padding: 0.5rem 0.6rem;
        border: none;
        outline: none;
        font-family: "Poppins", serif;
        font-size: 15px;
        cursor: pointer;
        background-color: #e63946;
        color: #faf4f4;
    }

    .c-dtl-btn:hover {
        background-color: #f6c524;
        outline: 2px solid #e63946;
        color: #000000;
    }





    /* --------------------------course-details-cards-end--------------------------------------------------- */




    /* -----------------------------------get-inter--------------------------------------------------------- */

    .get-inter-wrapper {
        background: #fede00;
        padding: 30px 10px;
        font-family: 'Poppins', serif;
    }

    .get-inter-container {
        max-width: 1200px;
        margin: 0;
        text-align: center;
    }

    .get-inter-title {
        font-size: 45px;
        color: #222;
        margin-bottom: 10px;
        font-weight: 900;
    }

    .get-inter-subtitle {
        font-size: 18px;
        color: #3f3f3f;
        margin-bottom: 50px;
    }

    .get-inter-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
    }

    .get-inter-card {
        background: #000;
        padding: 30px 20px;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        position: relative;
        transition: all 0.3s ease;
    }

    .get-inter-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    }

    .get-inter-icon {
        width: 60px;
        height: 60px;
        background: #e63946;
        color: #fff;
        font-size: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: -50px auto 20px;
        box-shadow: 2px 2px 0 rgb(255, 255, 255);
    }

    .get-inter-heading {
        font-size: 1.5rem;
        color: #827f7f;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .get-inter-text {
        color: #555;
        font-size: 1rem;
        line-height: 1.
    }


    /* -----------------------------------get-inter-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-------------------------- */
}