@media screen and (max-width: 467px) {

    html,
    body {
        width: 100%;
        /* height: 100%; */
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        background-color: #fede00;
    }

    html {
        scroll-behavior: smooth;
    }
}



/* -------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;
    }





    /* ==============================start of :: hero section=============================== */

    .abt-hero-subheading .codeF {
        color: #fff;
        display: inline-block;
        z-index: 1;
        position: relative;
        margin-right: 1rem;
    }

    .abt-hero-subheading .codeF::before {
        content: "";
        position: absolute;
        top: -4.5rem;
        /* Adjust the position as needed */
        left: -2.5rem;
        transform: rotate(-25deg);
        width: 180px;
        height: 180px;
        background: url(../images/shape.png) no-repeat center;
        background-size: contain;
        z-index: -1;
        color: #fff;
    }

    .abt-hero-subheading .futu {
        /* color: #fff; */
        display: inline-block;
        position: relative;
        z-index: 1;
        font-weight: 600;

    }

    .abt-hero-subheading .futu::before {
        content: "";
        position: absolute;
        top: -5rem;
        left: 0;
        /* transform: rotate(-25deg); */
        border-bottom: 10px solid #fff;
        width: 120px;
        height: 120px;
        /* background: url(../images/shape.png) no-repeat center;
    background-size: contain; */
        z-index: -1;
        color: #fff;
    }


    .abt-hero-sec {
        background-color: #fede00;
        color: #000000;
        padding: 50px 20px 60px 30px;
        text-align: center;
        font-family: 'Poppins', sans-serif;
    }

    .abt-hero-subheading {
        font-size: 35px;
        font-weight: 400;
        margin: 0;
        opacity: 0.9;
        position: relative;
        /* So the pseudo-element can be positioned properly */
        display: inline-block;
    }

    .abt-hero-content .abt-hero-heading {
        font-size: 70px;
        font-weight: 900;
        letter-spacing: -4px;
        -webkit-text-stroke: 5px #fede00;
        /* margin: 10px 0 20px; */
    }

    .abt-hero-para {
        font-size: 18px;
        font-weight: 400;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
        color: #3a3a3a;
    }




    /* ==============================end of :: hero section=============================== */





    /* =============================start of :: about-banner=============================== */

    .abt-ban-sec {
        font-family: "Poppins", serif;
        /* background: #fede00; */
        width: 100%;
        height: 100%;
        background: linear-gradient(145deg,
                rgb(0, 0, 0),
                #e63946,
                rgb(50, 50, 50));
        filter: url(#advanced-texture);
        /* padding: 3rem; */
        color: rgb(0, 0, 0);
        position: relative;
        padding: 60px 30px;
        clip-path: polygon(0 0, 100% 0%, 100% 60%, 0% 100%);
    }

    .abt-main h1 {
        font-size: 130px;
        font-weight: 900;
        transform: rotate(-5deg);
        letter-spacing: -10px;
        -webkit-text-stroke: 2px #fff;
        color: #fede00;
    }


    /* =============================end of :: about-banner=============================== */



    /* =============================start of :: how-we-work===============================  */



    .h-wrk-section {
        margin: 0 auto;
        font-family: "Poppins", serif;
    }

    .h-wrk-title {
        text-align: center;
        font-size: 45px;
        font-weight: 900;
        margin-top: 0;
        margin-bottom: 40px;
        color: #000000;
    }

    .h-wrk-subtitle {
        text-align: center;
        color: #5b5a5a;
        font-size: 23px;
        font-weight: 300;
        margin-top: -30px;
        margin-bottom: 50px;
        /* padding: 0 2rem; */
    }


    .h-wrk-timeline {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
        position: relative;
        max-width: 900px;
        margin: auto;
        padding: 0 2ren;
    }

    .h-wrk-step {
        width: 100%;
        margin-bottom: 80px;
        position: relative;
        padding: 0 3rem;
        text-align: center;
    }

    .h-wrk-step:nth-child(4),
    .h-wrk-step:nth-child(5) {
        width: 100%;
    }

    .h-wrk-number {
        background-color: #000000;
        color: #fede00;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 15px;
        /* -webkit-text-stroke: 1.5px #141414; */
    }

    .h-wrk-heading {
        font-size: 25px;
        margin: 10px 0;
        color: #000000;
    }

    .h-wrk-text {
        font-size: 18px;
        color: #333;
    }

    .h-wrk-link {
        color: #e63946;
        text-decoration: none;
    }

    .h-wrk-link:hover {
        text-decoration: underline;
    }

    /* Connector line */
    .h-wrk-timeline::before {
        content: "";
        position: absolute;
        top: 30px;
        left: 5%;
        right: -6%;
        height: 2px;
        background: #e63946;
        z-index: -1;
        display: none;
    }

    .h-wrk-step:nth-child(4),
    .h-wrk-step:nth-child(5) {
        margin-top: 0;
    }

    .h-wrk-step:nth-child(4)::before {
        content: "";
        position: absolute;
        top: 20px;
        left: 2px;
        width: 950px;
        height: 2px;
        background: #e63946;
        z-index: -1;
        display: none;

    }



    .h-wrk-step:nth-child(5)::before {
        content: "";
        position: absolute;
        top: -206px;
        left: 322px;
        width: 2px;
        height: 228px;
        background: #e63946;
        display: none;

    }

    /* =============================end of :: how-we-work===============================  */




    /* ================================start of :: over-view-section=========================== */


    .ovr-viu-section {
        padding: 5px 20px;
        background-color: #000000;
        /* background-image: url("https://www.transparenttextures.com/patterns/cubes.png"); */
        margin: auto;
        border-top: 2px solid #fede00;
        font-family: "Poppins", serif;
    }

    .ovr-viu-heading {
        font-size: 42px;
        font-weight: 900;
        max-width: 1000px;
        color: #fede00;
        text-align: center;
        padding: 60px 0;
        margin: auto;
    }

    .ovr-viu-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 20px;
        max-width: 1000px;
        margin: auto;
        padding-bottom: 5rem;

    }

    .ovr-viu-block {
        padding: 30px;
        background-color: #000000;
        box-shadow: 5px 5px 10px #999;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .ovr-viu-block::before,
    .ovr-viu-block::after {
        position: absolute;
        width: 40px;
        height: 20px;
        content: "";
    }

    .ovr-viu-block::before {
        left: 0;
        top: 0;
        border-left: 5px solid #fede00;
        border-top: 5px solid #fede00;
    }

    .ovr-viu-block:hover {
        transform: translateY(-5px);
    }

    .ovr-viu-block h2 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #fede00;
    }

    .ovr-viu-block p {
        font-size: 15px;
        line-height: 1.6;
        color: #ddd;
    }

    .ovr-viu-img-block {
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .ovr-viu-img-block img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        object-fit: cover;
        border: 3px solid #fede00;
    }

    /* Grid Positioning */
    .ovr-viu-item-1 {
        grid-column: span 6;
    }

    .ovr-viu-item-2 {
        grid-column: span 3;
    }

    .ovr-viu-item-3 {
        grid-column: span 3;
    }

    .ovr-viu-item-4 {
        grid-column: span 4;
    }

    .ovr-viu-item-5 {
        grid-column: span 4;
    }

    .ovr-viu-item-6 {
        grid-column: span 4;
    }

    @media (max-width: 768px) {
        .ovr-viu-grid {
            grid-template-columns: 1fr;
        }

        .ovr-viu-item-1,
        .ovr-viu-item-2,
        .ovr-viu-item-3,
        .ovr-viu-item-4,
        .ovr-viu-item-5,
        .ovr-viu-item-6 {
            grid-column: span 12;
        }
    }


    /* ================================end of :: over-view-section=========================== */















    /* ----------------------------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-------------------------- */
}