@media (min-width: 641px) and (max-width: 900px) {

    *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background:#fff;
}

html, body{
    overflow-x: hidden;
    width: 100%;
}


    .navbar{
        padding: 12px 15px;
    }

    .logo img{
        height: 50px;
    }

    .plan-btn{
        padding: 15px 25px;
        font-size: 16px;
        border-radius: 4px;
        background-color: #16388f;
        font-weight: 500;
    }

    h2{
        font-size: 20px;
    }

    #logo:hover{
        transform: scale(1.1);
    }
}

@media (min-width: 641px) and (max-width: 900px){

    .services{
        margin: 20px 30px;
        padding: 15px;
    }

    .service-grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .card{
        min-height: 190px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .card img{
        height: 230px;
        object-fit: cover;
    }

    .services h2{
        font-size: 26px;
    }


    .divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.lineicon{
    width:800px;
    height:2px;
    background:#16388f;
}

.icon{
    font-size:40px;
    color:#16388f;
}
}

@media (min-width: 641px) and (max-width: 900px){

    .video-section{
        padding: 50px 25px;
        text-align: center;
    }

    /* Title typing text */
    #text{
        width: 100%;
        font-size: 40px;
        text-align: center;
        margin-bottom: 20px;
        color: #ffffff;
    }

    /* Sub heading */
    .h4{
        margin-top: 10px;
        text-align: center;
        font-size: 26px;
        font-weight: 700;
        color: #ffffff;
    }

    /* Paragraph styling */
    .para{
        font-size: 16px;
        line-height: 1.7;
        text-align: center;
        margin: 20px auto;
        max-width: 90%;
        color: #fff;
    }

    /* VIDEO GOES DOWNWARD (IMPORTANT CHANGE) */
    .video-box{
        width: 90%;
        max-width: 900px;
        height: 260px;

        display: block;
        margin: 30px auto 0 auto; /* centers + pushes down */
        border-radius: 12px;

        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

    /* optional container fix if used */
    .video-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* section 3rd  */

@media (min-width: 641px) and (max-width: 900px){

    .section3{
        padding: 50px 25px;
        background: linear-gradient(135deg, #0f2a6b, #163d99);
        color: #fff;
    }

    .divs3{
        max-width: 100%;
        margin: auto;
    }

    /* MAIN TITLE */
    .text{
        font-size: 30px;
        line-height: 1.4;
        text-align: center;
        font-weight: 800;
        margin-bottom: 25px;
    }

    /* MEDIA BOX CLEAN LAYOUT */
    .media-box{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 10px;
    }

    /* IMAGE */
    .media-box img{
        width: 85%;
        max-width: 500px;
        border-radius: 6px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

    /* SUB TITLE */
    #vtext{
        font-size: 26px;
        text-align: center;
        font-weight: 700;
        color: #ffffff;
        margin-top: 10px;
    }

    /* VIDEOS SIDE BY SIDE (LOOKS MODERN) */
    .video{
        width: 90%;
        height: 200px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    /* WRAP VIDEOS PROPERLY */
    .media-box{
        flex-wrap: wrap;
    }

    /* FORCE VIDEO ROW */
    .media-box .video:nth-of-type(1),
    .media-box .video:nth-of-type(2){
        margin-top: 10px;
    }

    /* DESCRIPTION */
    .para2{
        font-size: 15px;
        line-height: 1.7;
        text-align: center;
        max-width: 90%;
    }

    /* HOW IT WORKS TITLE */
    #v3{
        font-size: 30px;
        margin-top: 20px;
        text-align: center;
    }

    /* LIST STYLING (CLEAN CARDS FEEL) */
    .main-list{
        padding: 0;
        margin-top: 15px;
    }

    .main-list li{
        background: rgba(255,255,255,0.08);
        margin: 12px 0;
        padding: 15px;
        border-radius: 10px;
        list-style: none;
        backdrop-filter: blur(6px);
    }

    .main-list h3{
        font-size: 16px;
        margin-bottom: 5px;
        color: #fff;
    }

    .main-list p{
        font-size: 14px;
        line-height: 1.5;
    }

    /* HIGHLIGHT TEXT */
    .highlight{
        text-align: center;
        font-size: 18px;
        font-weight: 800;
        margin-top: 20px;
        color: #ffd700;
    }

    .para5{
        text-align: center;
        font-size: 14px;
        margin-top: 8px;
        opacity: 0.9;
    }
}


/* section faq */

@media (min-width: 641px) and (max-width: 900px){

    .faq-section{
        max-width: 100%;
        margin: 0;
        padding: 40px 20px;
        background: linear-gradient(135deg, #0f2a6b, #163d99);
        box-sizing: border-box;
    }

    .faq-title{
        font-size: 26px;
        line-height: 1.4;
        margin-bottom: 25px;
        color: #fff;
    }

    /* FAQ ITEM FULL WIDTH CLEAN */
    .faq-item{
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    /* BUTTON FIX */
    .faq-question{
        width: 100%;
        font-size: 15px;
        padding: 16px 18px;

        border-radius: 8px;
        box-shadow: 0 8px 18px rgba(0,0,0,0.2);

        transition: 0.2s ease;
    }

    .faq-question:hover{
        transform: scale(1.01);
    }

    /* ANSWER FIX */
    .faq-answer{
        font-size: 14px;
        padding: 12px 15px;
        background: rgba(255,255,255,0.9);
        color: #111;
        border-radius: 0 0 8px 8px;
    }

}

/* testimonial section  */

@media (min-width: 641px) and (max-width: 900px){

    body{
        overflow: hidden;
    }

    .video-box{
    position: relative;
    background: #000;
    width: 40%;
    max-width: 540px;
    /* margin: 20px !important; */
    cursor: pointer;
    border-radius: 2px;
    height: 150px !important;
    border: 2px solid white;
    align-items: center;
    /* min-height: 100%; */
    max-height: 100%;
    margin: 0 auto;
    align-items: center;

    overflow: hidden;
    
} 

   .img{
    width: 100%;
    max-width: 100%;
    height: 200% !important;
    max-height: 300px;
    display: block;
    margin: 0px auto 0;
    border: 4px solid white;
    /* border: whitesmoke; */
    margin-bottom: 10px;
    align-self: center;
    object-fit: cover;
    margin-left: 100px;

  }  

  .video-frame{

        margin-left: 100px;


    width: 100%;
    height: 300px !important;
    border: none;
    display: none;
    background: #000;
}

    /* width: 100%; */
    /* display: block; */


.play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 120px;
    height: 120px;

    background: transparent;
    border: 3px solid rgb(255, 255, 255,0.8);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 35px;
    color: white;

    cursor: pointer;
    transition: 0.3s ease;
}

.media-box img{
    width:600px;
    max-width:600px;
    height:400px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

    .testimonial-section {
        background-color: #ffffff;
        padding: 0px 0px;
        margin-top: 0;
        min-height: 900;
    }

    .testimonial-heading{
    background-image: url("websiteimg/our testimonial.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 2px;
    /* height: 60%; */
    }

    #testimonialh2 {
        font-size: 30px;
        color: rgb(2, 2, 2);
        
    }


     .video-contain{
        display:grid;
    grid-template-columns: repeat(1fr);
    flex-wrap: wrap;
  flex-direction: row;
    gap:10px;
    padding-bottom: 0;
    margin-bottom: 2px;
    width: 190% !important;
    margin-left: 20px;
}


.video-contain iframe{
    /* width:100%; */
    /* height:220px; */
    border-radius:2px;
    gap: 2px;
    width:100% !important;
    max-width:100%;
    margin-left: 0;
    /* margin-right: 2px; */
    overflow: hidden;

    height:250px;

    border:2px solid rgb(3, 3, 122);
    background:#000;

    object-fit:cover;

    box-shadow:0 10px 25px rgba(0,0,0,0.2);

    transition:0.3s ease;
    cursor:pointer;
} 


   
}




 

/* footer section  */

@media (min-width: 641px) and (max-width: 900px){

    /* ================= FOOTER 1 ================= */
    .footer-section{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;

        padding: 40px 20px;
        background: linear-gradient(135deg, #001bb3, #0a0f2c);
        border-radius: 12px;
    }

    .footer-column{
        padding: 10px;
    }

    .footer-column h3{
        font-size: 15px;
        color: #f5c542;
        margin-bottom: 10px;
    }

    .footer-column .a{
        font-size: 13px;
        margin: 6px 0;
    }

    .headoffice,
    .techoffice{
        font-size: 12px;
        line-height: 1.5;
        padding: 10px;
        border-left: 2px solid #f5c542;
    }

    .line2{
        grid-column: 1 / -1;
        height: 1px;
        background: rgba(255,255,255,0.2);
        margin-top: 10px;
    }

    /* ================= FOOTER 2 ================= */
    .footer-section2{
        padding: 50px 20px;
    }

    #footerh2{
        font-size: 24px;
        padding: 0 15px;
        line-height: 1.4;
    }

    .city-grid{
        max-height: 280px;
        padding: 10px;
        gap: 10px;
    }

    .city-grid span{
        font-size: 12px;
        padding: 6px 10px;
    }

    /* ================= BOTTOM FOOTER ================= */
    .lfooter{
        margin-top: 20px;
    }

    .lfooter img{
        width: 120px;
        transition: 0.3s ease;
    }

    .lfooter img:hover{
        transform: scale(1.08);
    }

    .lfooter p{
        font-size: 18px;
    }

    .lfooter:hover{
        color: red;
    }

}

/* resolution for 1024 screen  */

/* @media (min-width: 901px) and (max-width: 1024px) { */

    @media (min-width: 901px) and (max-width: 1024px){

    .logo img{
    height:70px;
    width:auto;
    display:block;
}


    .service-grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        width: 100%;
    }

    .card{
        width: 100%;
        height: 260px;

        border: 3px solid #1f5cff;
        border-radius: 12px;
        overflow: hidden;

        box-shadow: 8px 8px 15px rgba(0,0,0,0.25);
    }

    .card img{
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .card h3{
        font-size: 15px;
        padding: 8px;
    }
    .lineicon{
    width: 100%;
    height:2px;
    background:#16388f;
}

.icon{
    font-size:20px;
    color:#16388f;
}
}



/* video section second  */

@media (min-width: 901px) and (max-width: 1024px){

    
    .video-section{
        padding: 50px 30px;
        text-align: center;
        height: auto;
    }

    .content{
        width: 90%;
        margin: 0 auto 20px;
        font-size: 28px;
        color: #cdf100;
    }

    .h4{
        font-size: 30px;
        color: white;
        margin-bottom: 20px;
        margin-top: 0%;
    }

    #text{
        font-size: 40px;
        color: #ffffff;
    }

    .para{
        width: 85%;
        max-width: 800px;

        margin: 0 auto;

        text-align: center;
        line-height: 1.8;
        font-size: 17px;
        color: white;
    }

    .video-box{
        display: block;

        width: 75%;
        max-width: 700px;
        height: 350px;

        margin: 30px auto 0;

        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .section3{
        background-color: #061a52;
    }

    .text{
        color: #ffffff;
    }
    #vtext{
        color: white;
    }
    #v3{
        color: white;
    }
    .para2{
            color: white;

    }
    .main-list{
        color: #d9dce7;
    }

    .highlight{
        text-align: center;
        font-size: 28px;
        color: #ffffff;

    }

    .para5{
        text-align: left;
        font-size: 22px;
        margin-bottom: 60px;
        color: #ffffff;
        
    }

    .video{
        height: 250px;
    }
}

/* Faq section  */

@media (min-width: 901px) and (max-width: 1024px){

    /* .faq-section{
        width: 100%;
        max-width: 1000px;

        margin: 0 auto; 

        padding: 60px 30px;

        background: #061a52;
    } */

    .faq-section{
    width: 100%;
    max-width: 100%;
    margin: 0;
    /* padding: 1px 20px; */
    background: #061a52;
}

    .faq-title{
        font-size: 2.8rem;
        line-height: 1.2;

        text-align: center;

        color: wheat;

        margin-bottom: 40px;

        text-decoration: underline;
    }

    .faq-item{
        width: 100%;
        margin-bottom: 15px;

        border: 1px solid #d9d9d9;
        border-radius: 8px;

        overflow: hidden;
    }

    .faq-question{

        width: 100%;

        display: flex;
        align-items: center;

        gap: 15px;

        padding: 22px 20px;

        border: none;

        cursor: pointer;

        background: linear-gradient(
            to bottom,
            #8d96b6 0%,
            #d9dce7 40%,
            #f5f5f5 100%
        );

        color: #222;

        font-size: 18px;
        font-weight: 600;

        text-align: left;
    }

    .icon{
        width: 35px;
        min-width: 35px;

        font-size: 28px;
        font-weight: bold;
    }

    .faq-answer{
        display: none;

        padding: 22px;

        background: #1f3d97;

        color: white;

        font-size: 17px;
        line-height: 1.8;
    }

    .faq-item.active .faq-answer{
        display: block;
    }

    .faq-question:hover{
        filter: brightness(1.03);
    }

}

@media (min-width: 901px) and (max-width: 1024px){

 .testimonial-section{
    /* padding:70px 50px; */
    height: 100%;
    background:#f7f7f7;
    font-family:Arial, sans-serif;
    /* background-color: #061a52; */
    height: auto;
}

.testimonial-heading{
    background-image: url("websiteimg/our testimonial.png");
    text-align:center;
    /* height: 150%; */
    max-height: 400px;
    margin-bottom:50px;
}

#testimonialh2{
    font-size:42px;
    font-weight:700;
    line-height:1.3;
    color: wheat;
}

/* VIDEO CONTAINER  */
/* .video-contain{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    flex-direction: row !important;
    gap:10px;
    /* width: 1180px !important; */
    /* height: 280px !important; */
    /* height: auto; */
    /* flex-wrap: nowrap; *
     }*/



     .video-contain{
        display:grid;
        grid-template-columns: repeat(4, 2fr);
       flex-direction: row;
        width: 180%;
       gap:10px;
       /* max-width: 1200px; */
      margin-bottom: 5px;
      margin-left: 40px;
}
     /* .video-contain2{
    display:grid;
    grid-template-columns: repeat(4, 2fr);
    gap:10px;
    margin-bottom: 5px;
}
     .video-contain3{
    display:grid;
    grid-template-columns: repeat(4, 2fr);
    gap:10px;
    margin-bottom: 5px;
}
     .video-contain4{
display:grid;
    grid-template-columns: repeat(4, 2fr);
    gap:10px;
    margin-bottom: 5px;
} */

.video-contain iframe{
    /* width:100%; */
    /* height:220px; */
    border-radius:2px;
    gap: 2px;
    width:100%;
    max-width:1500px;
    margin-left: 2px !important;
    /* margin-right: 2px; */
    overflow: hidden;

    height:250px;

    border:2px solid rgb(255, 255, 255);
    background:#000;

    object-fit:cover;

    box-shadow:0 10px 25px rgba(0,0,0,0.2);

    transition:0.3s ease;
    cursor:pointer;
} 


/* 
.video-contain{
    display: flex !important;
    flex-direction: column;
    gap: 25px;
    justify-items: center;
    all: unset;
    height: 1000px;
    /* flex-direction: column; */
 


/* HOVER */
.video-card1:hover,
.video-card2:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.3);
} }





 /* .testimonial-section{
        /* padding: 60px 30px; 
        background: #ffffff;
        margin-top: 0px 0px 0px;
    }

    .testimonial-heading{
        background-image: url("websiteimg/our testimonial.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
        text-align: center;
        margin-bottom: 30px;
        width: 100%;
    }

    #testimonialh2{
        font-size: 38px;
        font-weight: 700;
        line-height: 1.3;
        color: wheat
    }

    .video-contain{
        display: flex;
        justify-content: center;
        align-items: center;

        gap: 30px;

        flex-wrap: nowrap;
    }

    .video-card1,
    .video-card2{

        width: 48%;
        max-width: 48%;

        height: 280px;

        border-radius: 15px;

        background: #000;

        object-fit: cover;

        box-shadow: 0 12px 30px rgba(0,0,0,0.25);

        transition: 0.3s ease;
    }

    .video-card1:hover,
    .video-card2:hover{
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    }
} */
@media  (min-width: 1025px) and (max-width: 1600px){
    

   .logo img {
    height:50px;
    width:100%;
    display:block;}


    .service-grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        width: 100%;
    }

    .card{
        width: 70%;
        height: 250px;

        border: 3px solid #1f5cff;
        border-radius: 12px;
        overflow: hidden;

        box-shadow: 8px 8px 15px rgba(0,0,0,0.25);
    }

    .card img{
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    .card h3{
        font-size: 25px;
        padding: 8px;
        font-weight:1000px;
    }
    .lineicon{
    width: 100%;
    height:2px;
    background:#16388f;
}

.icon{
    font-size:20px;
    color:#16388f;
}

.new{
    height: 200px !IMPORTANT;
}






/* video section second  */

@media  (min-width: 1025px) and (max-width: 1600px){
    
    .video-section{
        padding: 50px 30px;
        text-align: center;
        height: auto;
    }

    .content{
        width: 90%;
        margin: 0 auto 20px;
        font-size: 28px;
        color: #cdf100;
    }

    .h4{
        font-size: 30px;
        color: white;
        margin-bottom: 20px;
        margin-top: 0%;
    }

    #text{
        font-size: 40px;
        color: #ffffff;
    }

    .para{
        width: 85%;
        max-width: 800px;

        margin: 0 auto;

        text-align: center;
        line-height: 1.8;
        font-size: 17px;
        color: white;
    }

    .video-box{
        display: block;
        margin-left: 200px;

        width: 25%;
        max-width: 700px;
        height: 300px;

        margin: 30px auto 0;

        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .section3{
        background-color: #061a52;
    }

    .text{
        color: #ffffff;
    }
    #vtext{
        color: white;
    }
    #v3{
        color: white;
    }
    .para2{
            color: white;

    }
    .main-list{
        color: #d9dce7;
    }

    .highlight{
        text-align: center;
        font-size: 28px;
        color: #ffffff;

    }

    .para5{
        text-align: left;
        font-size: 22px;
        margin-bottom: 60px;
        color: #ffffff;
        
    }

    .video{
        height: 250px;
    }

    .media-box img{
        width:120%;
        max-width:350px;
        height:300px;
        margin:0;
        /* border-radius:10px; */
    }
}

/* Faq section  */

@media  (min-width: 1025px) and (max-width: 1600px){
    /* .faq-section{
        width: 100%;
        max-width: 1000px;

        margin: 0 auto; 

        padding: 60px 30px;

        background: #061a52;
    } */

    .faq-section{
    width: 100%;
    max-width: 100%;
    margin: 0;
    /* padding: 1px 20px; */
    background: #061a52;
}

    .faq-title{
        font-size: 2.8rem;
        line-height: 1.2;

        text-align: center;

        color: wheat;

        margin-bottom: 40px;

        text-decoration: underline;
    }

    .faq-item{
        width: 100%;
        margin-bottom: 15px;

        border: 1px solid #d9d9d9;
        border-radius: 8px;

        overflow: hidden;
    }

    .faq-question{

        width: 100%;

        display: flex;
        align-items: center;

        gap: 15px;

        padding: 22px 20px;

        border: none;

        cursor: pointer;

        background: linear-gradient(
            to bottom,
            #8d96b6 0%,
            #d9dce7 40%,
            #f5f5f5 100%
        );

        color: #222;

        font-size: 18px;
        font-weight: 600;

        text-align: left;
    }

    .icon{
        width: 35px;
        min-width: 35px;

        font-size: 28px;
        font-weight: bold;
    }

    .faq-answer{
        display: none;

        padding: 22px;

        background: #1f3d97;

        color: white;

        font-size: 17px;
        line-height: 1.8;
    }

    .faq-item.active .faq-answer{
        display: block;
    }

    .faq-question:hover{
        filter: brightness(1.03);
    }

}

@media  (min-width: 1025px) and (max-width: 1600px) {

    .testimonial-section {
        background-color: #ffffff;
        padding: 0px 0px;
        margin-top: 0;
        min-height: 900;
    }

    .testimonial-heading{
    background-image: url("websiteimg/our testimonial.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 2px;
    height: 60%;
    }

    #testimonialh2 {
        font-size: 30px;
        color: rgb(2, 2, 2);
        
    }


     .video-contain{
        display:grid;
    grid-template-columns: repeat(1fr);
  flex-direction: row;
    gap:10px;
    padding-bottom: 0;
    margin-bottom: 2px;
    width: 180%;
    margin-left: 50px;
}


.video-contain iframe{
    /* width:100%; */
    /* height:220px; */
    border-radius:2px;
    gap: 2px;
    width:100% !important;
    max-width:100%;
    margin-left: 0;
    /* margin-right: 2px; */
    overflow: hidden;

    height:250px;

    border:2px solid rgb(3, 3, 122);
    background:#000;

    object-fit:cover;

    box-shadow:0 10px 25px rgba(0,0,0,0.2);

    transition:0.3s ease;
    cursor:pointer;
} 

}

 /* .testimonial-section{
        /* padding: 60px 30px; 
        background: #ffffff;
        margin-top: 0px 0px 0px;
    }

    .testimonial-heading{
        background-image: url("websiteimg/our testimonial.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
        text-align: center;
        margin-bottom: 30px;
        width: 100%;
    }

    #testimonialh2{
        font-size: 38px;
        font-weight: 700;
        line-height: 1.3;
        color: wheat
    }

    .video-contain{
        display: flex;
        justify-content: center;
        align-items: center;

        gap: 30px;

        flex-wrap: nowrap;
    }

    .video-card1,
    .video-card2{

        width: 48%;
        max-width: 48%;

        height: 280px;

        border-radius: 15px;

        background: #000;

        object-fit: cover;

        box-shadow: 0 12px 30px rgba(0,0,0,0.25);

        transition: 0.3s ease;
    }

    .video-card1:hover,
    .video-card2:hover{
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    }
} */

