@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;
    }


    /* ---------------------------------all-services------------------------------------- */

    .all-ser-nav {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0.5rem 1rem;
        gap: 1rem;
        scrollbar-width: none;
        /* Firefox */
    }

    .all-ser-nav::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .all-ser-item {
        flex: 0 0 auto;
        font-size: 17px;
        padding: 0.5rem 1rem;
        background: #000;
        /* Optional: set background for better visibility */
        color: #fede00;
        border-radius: 20px;
        white-space: nowrap;
        cursor: pointer;
    }

    .all-ser-item.active {
        background: #fede00;
        color: #000;
    }

    /* ------------------web-design---------------------- */

    .web-des-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .web-des-box {
        flex: 0 0 85%;
        scroll-snap-align: start;
        width: 20px;
        /* min-width: 260px;
        max-width: 85%; */
    }

    .web-des-wrapper {
        padding: 30px 15px;
    }

    .web-des-title {
        font-size: 38px;
    }

    .web-des-subtitle {
        font-size: 15px;
        padding: 0 10px;
        text-align: center;
    }

    .web-des-btn {
        background: linear-gradient(135deg, #fede00, #e63946);
        color: #000000;
        padding: 14px 20px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        transition: all 0.4s ease;
        box-shadow: 0 5px 20px rgba(254, 222, 0, 0.4);
        display: inline-block;
    }

    .web-des-btn:hover {
        background: #ffffff;
        color: #e63946;
        transform: scale(1.05);
    }

    /* ------------------web-design-end--------------------- */

    /* ---------------------------maintenance---------------------------- */


    .maintain-header h1 {
        font-size: 35px;
        color: #fff;
        font-weight: 800;
    }

    /* ---------------------------maintenance---------------------------- */




    /* ---------------------------------all-services-end------------------------------------ */


    /* ===========================start of :: consult ================================== */

    .consult-lounge-section {
        background-color: #fede00;
        color: #fff;
        font-family: 'Poppins', sans-serif;
        padding: 40px 0;

    }

    .consult-lounge-container {
        flex-direction: column;
        max-width: 600px;
        padding: 0 1rem;
        margin: 0;
    }

    .consult-lounge-points {
        grid-template-columns: repeat(1, 1fr);
    }

    .consult-lounge-visual img {
        width: 350px;
        /* max-width: 500px; */
        height: 400px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(254, 222, 0, 0.2);
    }



    /* ===========================end of :: consult ================================== */




    /* ==============================start of :: custom-sotlution======================== */
    /* Updated general styling */


    .cstm-sln-chess-wrapper {
        padding: 80px 15px;
        position: relative;
        z-index: 1;
        font-family: "Poppins", serif;
        background-color: #fff;
    }

    .cstm-sln-chess-heading {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        z-index: 2;
    }

    .cstm-sln-chess-heading h1 {
        font-size: 50px;
        color: #000;
        margin-bottom: 10px;
        position: relative;
        z-index: 2;
    }

    .cstm-sln-strategy {
        color: #fede00;
        -webkit-text-stroke: 3px #000;
    }

    .cstm-sln-cover-grid {
        display: flex;
        justify-content: center;
    }

    .cstm-sln-chess-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border: 4px solid #000;
        max-width: 900px;
        position: relative;
        z-index: 2;
    }

    .cstm-sln-chess-block {
        padding: 40px 15px;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: 0.3s ease;
    }

    .cstm-sln-chess-grid .cstm-sln-chess-block:nth-child(even) {
        background: #fede00;
        color: #000;
    }

    .cstm-sln-chess-grid .cstm-sln-chess-block:nth-child(odd) {
        background: #000;
        color: #fff;
    }

    .cstm-sln-chess-block h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .cstm-sln-chess-block p {
        font-size: 14px;
        line-height: 1.5;
    }

    .cstm-sln-chess-grid .cstm-sln-chess-block:hover {
        background: #e63946;
        color: #fff;
        cursor: pointer;
    }

    .cstm-sln-chess-cta {
        text-align: center;
        margin-top: 60px;
    }

    .cstm-sln-chess-cta a {
        background: #000;
        color: #fff;
        padding: 14px 34px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    .cstm-sln-chess-cta a:hover {
        background: #fede00;
        color: #000;
    }

    .cstm-sln-decor {
        position: absolute;
        z-index: 0;
        opacity: 0.3;
        animation: float 6s ease-in-out infinite;
    }

    .decor-circle {
        width: 100px;
        height: 100px;
        background: #fede00;
        border-radius: 50%;
        top: 20px;
        left: 30px;
    }

    .decor-triangle {
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-bottom: 100px solid #e63946;
        top: 200px;
        right: 50px;
        transform: rotate(20deg);
    }

    .decor-blob {
        width: 100px;
        height: 80px;
        background: #5f0f40;
        border-radius: 50% 40% 60% 50%;
        bottom: 60px;
        left: 20%;
    }

    .decor-square {
        width: 80px;
        height: 80px;
        background: #00b4d8;
        bottom: 100px;
        right: 10%;
        transform: rotate(45deg);
    }

    @keyframes float {
        0% {
            transform: translateY(0px) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(5deg);
        }

        100% {
            transform: translateY(0px) rotate(0deg);
        }
    }

    /* Existing floating animation */
    @keyframes float {
        0% {
            transform: translateY(0px) rotate(0deg);
        }

        50% {
            transform: translateY(-15px) rotate(3deg);
        }

        100% {
            transform: translateY(0px) rotate(0deg);
        }
    }

    /* Additional floating animation with delay */
    @keyframes float2 {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(10px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    /* Alternative blob shape */
    .decor-blob-alt {
        width: 100px;
        height: 70px;
        background: #f15bb5;
        border-radius: 45% 55% 40% 60%;
        top: 400px;
        left: 5%;
        opacity: 0.25;
        animation: float2 5s ease-in-out infinite;
    }

    /* Outlined circle */
    .decor-circle-outline {
        width: 100px;
        height: 100px;
        border: 4px dashed #00f5d4;
        border-radius: 50%;
        top: 80px;
        right: 15%;
        animation: float2 6s ease-in-out infinite;
    }

    /* Diagonal animated line */
    .decor-line {
        width: 4px;
        height: 120px;
        background: #7209b7;
        top: 320px;
        left: 60%;
        transform: rotate(-45deg);
        animation: float 7s ease-in-out infinite;
    }

    /* Dotted background element */
    .decor-dots {
        width: 150px;
        height: 150px;
        background-image: radial-gradient(#000 1.5px, transparent 1.5px);
        background-size: 12px 12px;
        opacity: 0.1;
        bottom: 30px;
        left: 5%;
        animation: float2 8s ease-in-out infinite;
    }


    /* ==============================end of :: custom-sotlution======================== */





    /* ==============================start of :: indus-we-serve============================ */

    .indus-we-container {
        max-width: 1200px;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        align-items: center;
        justify-content: center;
        /* background: #f8fcff; */
        font-family: "Poppins", serif;
        padding: 3rem 0;
    }

    .indus-we-left {
        flex: 1;
        min-width: 0;
    }

    .indus-we-left h1 {
        font-size: 38px;
        font-weight: 900;
        margin: 0;
        color: #000000;
    }

    .indus-we-left p {
        font-size: 17px;
        color: #2c2c2c;
        line-height: 1.5;
        max-width: 600px;
        padding: 0 1rem;
    }

    .indus-we-left button {
        margin-top: 30px;
        padding: 12px 24px;
        font-size: 18px;
        font-weight: 600;
        background-color: #000000;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .indus-we-grid {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 0 2rem;
        min-width: 0;
    }


    .indus-we-icon {
        font-size: 38px;
        margin-bottom: 12px;
        background-color: #111;
        margin: 0 8rem;
        border-radius: 50%;
    }

    .indus-we-container {
        flex-direction: column;
        text-align: center;
    }



    /* ==============================end of :: indus-we-serve============================ */





    /* ==================================start of :: why-choose-us============================ */


    .chus-section {
        padding: 40px 20px;
        background-color: #000;
        font-family: "Poppins", serif;
    }

    .chus-container {
        margin: auto;
        max-width: 1200px;
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        align-items: flex-start;
        justify-content: space-between;
    }

    .chus-left {
        flex: 1 1 45%;
    }

    .chus-badge {
        display: inline-block;
        background: #fede00;
        color: #000;
        padding: 6px 14px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 14px;
    }

    .chus-heading {
        font-size: 40px;
        font-weight: 900;
        margin-bottom: 30px;
        color: #fff;
    }

    .chus-testimonial {
        background: #d8f5c1;
        border-radius: 16px;
        padding: 14px;
        font-size: 16px;
        position: relative;
    }


    /* ==================================end of :: why-choose-us============================ */








    /* ----------------------------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;
        padding: 1rem 0 0 1rem;
        font-size: 16px;
    }


    .faq.active .faq-answer {
        max-height: 200px;
        opacity: 1;
        /* padding: 10px 15px; */
    }

    .faq.active .faq-question span {
        transform: rotate(180deg);
    }

    /* ----------------------------end faq section-------------------------- */
}