* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body,
html {
    overflow-x: hidden;
}

/* navbar */
.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 2%;
}

.navbar_logo {
    margin-top: 2%;
    margin-left: 4%;
}

.nav {
    margin-top: 3.7%;
}

.navbar_list {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    text-decoration: none;
    gap: 50px;
}

.navbar_list > li >a {
    text-decoration: none;
    color: black;
    font-weight: normal !important;
}
.navbar_btn {
    margin-top: 3.9%;
    width: 10%;
}

.navbar_btn > a {
    text-decoration: none;
    background-color: #0040C1;
    border-radius: 16px;
    color: white;
    padding: 5px 25px;
}
.navbar_btn > a:hover {
    background-color: black;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

/* banner */
.slider {
    position: relative;
    overflow: hidden;
    height: 470px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-wrapper>div {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    height: 470px;
    width: 100%;
    color: white;
    box-sizing: border-box;
}

.banner1 {
    background-image: url("../Assets/Images/BANNER1.svg");
    height: 600px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 12%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner_img1 {
    margin-left: 7%;
}

.banner_img1>img {
    height: 350px;
    width: 400px;
}

.banner_content1 {
    width: 46%;
}

.banner_content1>h1 {
    width: 60%;
}

.banner2 {
    background-image: url("../Assets/Images/BANNER2_BG.svg");
    display: flex;
    flex-direction: row;
    gap: 9%;
    height: 450px;
    width: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner_img2>img {
    height: 350px;
    width: 330px;
}

.banner_content2 {
    width: 46%;
    margin-left: 13%;
}

.banner_content2>h1 {
    width: 40%;
}

.banner3 {
    background-image: url("../Assets/Images/BANNER3_BG.svg");
    display: flex;
    flex-direction: row;
    height: 450px;
    width: 100%;
    gap: 19%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner_img>img {
    height: 355px;
    width: 530px;
    margin-top: 23%;
}

.banner_content {
    display: flex;
    flex-direction: column;
    color: white;
    width: 30%;
    margin-left: 9%;
}
.banner_content>h2 {
    width: 50%;
}
.banner_content>p {
    font-size: 15px;
    height: 30%;
    width: 80%;
}
.banner4 {
    background-image: url("../Assets/Images/bg_ban4.png");
    display: flex;
    flex-direction: row;
    height: 450px;
    width: 100%;
    gap: 10%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}
.banner_img4 {
    margin-left: 13%;
}
.banner_img4>img {
    height: 350px;
    width: 300px;
    margin-top: 17%;
}

.banner_content4 {
    display: flex;
    flex-direction: column;
    color: white;
    margin-left: 9%;
}
.banner_content4>h2 {
    width: 50%;
}
.banner_content4>p {
    font-size: 15px;
    height: 30%;
    width: 80%;
}
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots .dot.active {
    background: black;
}

/* what we do */
.sec_tion {
    display: flex;
    flex-direction: row;
    gap: 30px;
    opacity: 0;
    transform: translateY(40px); 
    transition: all 2s ease; 
}
.sec_tion.animate {
    opacity: 1; 
    transform: translateY(0); 
}
.sec {
    margin-top: 7%;
    margin-left: 5%;
}
.sec > img {
    width: 567px;
    height:606px;
}
.diamond {
    color: blue;
    display: inline-block;
    vertical-align: middle;
}

.GND_info {
    margin-top: 13%;
    margin-right: 3%;
}

.GND_info p {
    margin-top: 1%;
}

.info_flex {
    display: flex;
    flex-direction: row;
    margin-top: 7%;
    gap: 50px;
}

.flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.GND_info>h5>span {
    color: blue;
    font-size: 20px;
}

/* core features */
.IoT_Services {
    background-color: rgb(245, 245, 245);
    margin-top: 5%;
    height: 550px;
}

.IoT_Services>h5>span {
    color: blue;
    font-size: 20px;
}

.IoT_Services>h5 {
    padding-top: 30px;
}

.IoT_Services h5,
.IoT_Services h3 {
    text-align: center;
    line-height: 30px;
    opacity: 0;
    transform: translateY(20px); 
    transition: all 2s ease; 
}
.IoT_Services h5.animate,
.IoT_Services h3.animate {
    opacity: 1; 
    transform: translateY(0); 
}
.IoT_Services_grid {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    height: 35%;
    margin-top: 2%;
}

.IoT_Product {
    height: 94%;
    width: 50%;
    border-radius: 10px;
    background-color: white;
    opacity: 0; 
    transform: translateX(-80px); 
    transition: all 2s ease;
}
.IoT_Product.animate {
    opacity: 1; 
    transform: translateX(0); 
}
.IoT_Product>p {
    margin-top: 4%;
    font-size: 14px;
    padding-left: 5%;
    width: 80%;
}

.IoT_Product_flex {
    padding-top: 5.5%;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    flex-direction: row;
}
.IoT_Product_flex>img {
    height: 24px;
    width: 23px;
    background-color: whitesmoke;
    border-radius: 50px;
    padding: 10px;
    margin-left: auto;
}

.IoT_Sol {
    height: 94%;
    width: 40%;
    border-radius: 10px;
    background-color: white;
    opacity: 0; 
    transform: translateX(80px); 
    transition: all 2s ease;
}
.IoT_Sol.animate {
    opacity: 1; 
    transform: translateX(0); 
}
.IoT_Sol>p {
    margin-top: 4%;
    font-size: 14px;
    padding-left: 5%;
    width: 80%;
}

.IoT_Sol_flex {
    padding-top: 6.5%;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    flex-direction: row;
}

.IoT_Sol_flex>img {
    height: 24px;
    width: 23px;
    background-color: whitesmoke;
    border-radius: 50px;
    padding: 10px;
    margin-left: auto;
}

.IoT_Techno {
    height: 94%;
    width: 40%;
    border-radius: 10px;
    background-color: white;
    opacity: 0; 
    transform: translateX(-80px); 
    transition: all 2s ease;
}
.IoT_Techno.animate {
    opacity: 1; 
    transform: translateX(0); 
}
.IoT_Techno>p {
    margin-top: 4%;
    font-size: 14px;
    padding-left: 5%;
    width: 80%;
}

.IoT_ITServe {
    height: 94%;
    width: 50%;
    border-radius: 10px;
    background-color: white;
    opacity: 0; 
    transform: translateX(80px); 
    transition: all 2s ease;
}
.IoT_ITServe.animate {
    opacity: 1; 
    transform: translateX(0); 
}
.IoT_ITServe_flex {
    display: flex;
    flex-direction: row;
    padding-left: 5%;
    padding-top: 5%;
    padding-right: 5%;
}

.IoT_ITServe_flex>img {
    height: 24px;
    width: 23px;
    background-color: whitesmoke;
    border-radius: 50px;
    padding: 10px;
    margin-left: auto;
}

.IoT_ITServe>p {
    font-size: 14px;
    padding-left: 5%;
    margin-top: 3.5%;
    width: 84%;
}

.IoT_Services_flex {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    height: 35%;
}

/* iot solutions deliver */
.IoT_banner {
    background-image: linear-gradient(to right, #02207E, #2E52E2);
    color: white;
    height: 530px;
}

.head_para {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 13%;
    padding-top: 5%;
    opacity: 0;
    transform: translateY(20px); 
    transition: all 2s ease; 
}
.head_para.animate {
    opacity: 1; 
    transform: translateY(0); 
}
.head_para>h1 {
    width: 30%;
}

.head_para>p {
    font-size: 15px;
    width: 38%;
}
.GND {
    opacity: 0;
    transform: translateY(40px); 
    transition: all 2s ease; 
}
.GND.animate {
    opacity: 1; 
    transform: translateY(0); 
}
.GND_insights1 {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 3%;
    gap: 7%;
}

.GND_insights2 {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 7%;
    margin-top: 3%;
}

.insights>p {
    font-size: 14px;
}

.insights {
    display: flex;
    flex-direction: column;
    width: 20%;
    gap: 10px;
}

.insights>img {
    height: 28px;
    width: 28px;
}

/* products */
.GND_Products {
    margin-top: 4%;
    height: 480px;
    opacity: 0;
    transform: translateY(40px); 
    transition: all 2s ease; 
}
.GND_Products.animate {
    opacity: 1; 
    transform: translateY(0); 
}
.GND_Products>h5>span {
    color: blue;
    font-size: 18px;
}

.GND_Products>h5,
.GND_Products>h2 {
    text-align: center;
}
.Product_imgs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 90%;
    margin:  1% auto;
}

.img_data {
    background-color: whitesmoke;
    height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.img_data>p {
    margin-top: 2%;
}

.GND_Products>a {
    text-decoration: none;
    color: black;
    display: flex;
    justify-content: center;
    margin-top: 3%;
}

/* dashboard...analytics */
.dashboard {
    background-image: url("../Assets/Images/Frame\ 1597882444.png");
    height: 230px;
    margin-top: 3%;
}
.d_a {
    height: 450px;
    opacity: 0;
    transform: translateY(30px); 
    transition: all 2s ease;
}
.d_a.animate {
    opacity: 1; 
    transform: translateY(0); 
}
.dashboard>h2 {
    text-align: center;
    color: white;
    padding-top: 3%; 
}
.da_flex {
    width: 45%;
    display: flex;
    flex-direction: column;
    padding-top: 5%;
    padding-left: 5%;
}
.da_flex>p {
    padding-right: 5%;
    font-size: 13px;
    margin-top: 3%;
}

.da_flex>a {
    font-size: 13px;
    text-decoration: none;
    color: black;
    line-height: 50px;
}

.da_flex>h4 {
    color: #366CCC;
    margin-top: 2%;
}

.da_flex>img {
    height: 30px;
    width: 30px;
}

.dashboard_analytics {
    display: flex;
    flex-direction: row;
    margin: 2% auto;
    width: 65%;
    height: 110%;
    background-color: whitesmoke;
    border-radius: 10px;
}

/* testimonials */
.mob-Testimonials {
    display: none;
}

.Testimonials {
    margin-top: 3%;
    height: 430px;
}
.Testimonials>h5,
.Testimonials>h2 {
    text-align: center;
}

.Testimonials>h5>span {
    color: blue;
    font-size: 18px;
}

.arrow_test {
    display: flex;
    flex-direction: column;
}

.arrow {
    margin: 10px 0;
    gap: 10px;
}

.arrow button {
    background: #e9ecef;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 9px;
    float: right;
    margin-right: 2%;
    cursor: pointer;
}

.arrow button ion-icon {
    font-size: 20px;
}

.testimonials-stories {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    height: 250px;
}

.test-stories {
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 0 10px;
    flex: 0 0 33%;
    text-align: left;
    position: relative;
}

.test-stories p {
    width: 85%;
}

.test-stories>p:first-of-type {
    font-size: 14px;
    padding-top: 8%;
    /* padding-top: 8%; */
}

.test-stories>p:nth-of-type(2) {
    font-size: 14px;
    margin-top: 5%;
    font-weight: bold;
    color: #366CCC;
}

.test-stories h5:last-of-type {
    margin: 6px 0;
    width: 50%;
    color: #366CCC;
}
/* .test-stories > b {
    color:  #366CCC;
    border: 2px solid red;
    font-size: 12px;
} */
/* .test-stories h5:first-of-type {
    color: #366CCC;
   
} */

.test-stories>img {
    float: right;
}

.test-stories span {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    color: #333;
}

/* over view */
.over_view {
    display: flex;
    flex-direction: row;
    gap: 6%;
    margin-top: 1%;
    opacity: 0;
    transform: translateY(30px); 
    transition: all 2s ease; 
}
.over_view.animate {
    opacity: 1; 
    transform: translateY(0); 
}
.over_view>img {
    height: 50px;
    width: 70px;
    margin-left: 5%;
    margin-top: 2%;
}

.over_view>hr {
    margin: 20px 0;
    height: 70px;
}

.view {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 90%;
    margin-top: 1%;
}

.view h1 {
    font-size: 30px;
    color: #3054E5;
}

.para {
    display: flex;
    flex-direction: row;
    margin: 5% 4%;
    font-size: 15px;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px); 
    transition: all 2s ease; 
}
.para.animate {
    opacity: 1; 
    transform: translateY(0); 
}
.para>p>span {
    color: #366CCC;
}

/* trusted partners */
/* .trusted_partners {
    margin-top: 8%;
} */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 150px;
    margin-top: 8%;
}

.carousel-track {
    display: flex;
    justify-content: space-around;
    /* width: 93%; */
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    display: flex;
    justify-content: space-between;
    flex: 0 0 100%;
}

.carousel-slide img {
    width: 20%;
    margin: 0 auto;
    max-height: 150px;
    object-fit: contain;
}

.dots-container {
    display: flex;
    justify-content: center;
    margin-top: 4%;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: blue;
}
.img-1 {
    width: 136px;
    height: 53px;
}

.img-2 {
    width: 105px;
    height: 53px;
}

.img-3 {
    width: 190px;
    height: 53px;
}

.img-4 {
    height: 53px;
}
.img-5 {
    width: 165.78px;
    height: 53px;
}
.img-6 {
    width: 230px;
    height: 53px;
}
.img-7 {
    width: 106.79px;
    height: 53px;
}
.img-8 {
    width: 67.35px;
    height: 53px;
}

/* latest news and blogs */
.news_blogs {
    margin-top: 5%;
    opacity: 0;
    transform: translateY(80px); 
    transition: all 2s ease; 
}
.news_blogs.animate {
    opacity: 1; 
    transform: translateY(0); 
}
.news_blogs>h5,
.news_blogs>h3 {
    text-align: center;
    line-height: 30px;
}

.news_blogs>h5>span {
    color: blue;
    font-size: 18px;
}

.news_blogs_img {
    display: flex;
    flex-direction: row;
    margin-left: 5%;
    gap: 30px;
    margin-top: 2%;
}

.mask_group>img {
    height: 250px;
    width: 350px;
}

.mask_group > h5 {
    line-height: 30px;
    color: #717171;
}
.mask_group > h3 {
    line-height: 30px;
    color: #353535;
}

.read_more > a > button {
    margin-top: 4%;
    background-color: white;
    /* border: 0; */
    border: 1px solid #DADFE3;
    padding: 2% 2%;
    border-radius: 5px;
    cursor: pointer;
}
.read_more > a > button:hover {
    background-color: blue;
    color: white;
}
/* dummy image */
.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../Assets/Images/new_contact.png");
    height: 350px;
    width: 80%;
    margin: auto;
    margin-top: 3%;
    border-radius: 22px;
    text-align: center;
    gap: 15px;
    background-repeat: no-repeat;
}

.contact>h3 {
    color: white;
    width: 40%;
}

.contact>a {
    background-color: #0040C1;
    color: white;
    border-radius: 16px;
    padding: 5px 10px;
    text-decoration: none;
    width: 10%;
    margin-top: 2%;
    text-align: center;
}
.contact > a:hover {
    background-color: black;
}

#scrollToTop {
    display: none !important;
}
/* @media only screen and (min-width:320px) and (max-width:600px) {
    .input-container {
        width: 100px;
        border: 2px solid red;
    }
} */
/* For Mobile */
@media only screen and (min-width:320px) and (max-width:479px) {
    .navbar_logo>img {
        margin-top: 7%;
    }

    .navbar_list {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: blue;
        color: white;
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        width: auto;
        border-radius: 5px;
        padding: 5px;
        z-index: 10;
        gap: 30px;
    }

    .navbar_list.active {
        display: flex;
    }

    .navbar_btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
        display:block;
        flex-direction: column;
        justify-content: space-between;
        width: 40px;
        height: 30px;
        cursor: pointer;
        margin-top: 8%;
        margin-right: 5%;
        z-index: 1100;
        transition: transform 0.3s ease;
      }
      .menu-toggle.active .bar {
        background-color: white; 
    }
      .menu-toggle .bar {
        width: 100%;
        height: 4px;
        background-color: #252525;
        border-radius: 2px;
        margin: 7px auto;
        transition: all 0.3s ease;
      }
      .menu-toggle .bar:nth-child(1) {
        width: 40px;
       }
       .menu-toggle .bar:nth-child(2) {
         width: 20px;
         margin: auto;
       }
       .menu-toggle .bar:nth-child(3) {
         width: 40px;
       }
      .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
      }
      
      .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
      }
      
      .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
      }
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu.open {
    display: flex;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 10px 0;
}
    .slider {
        position: relative;
        width: 99.2%;
        overflow: hidden;
        margin-top: 2%;
        height: 600px;
    }

    .slider-wrapper {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .slider-wrapper>div {
        flex: 0 0 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: 600px;
        width: 100%;
        color: white;
        box-sizing: border-box;
    }

    .banner1 {
        background-image: url("../Assets/Images/mob_banner1.svg");
        height: 500px;
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 0%;
    }

    .banner_img1>img {
        height: 100%;
        width: 100%;
    }

    .banner_img1 {
        margin-left: 0%;
        height: 250px;
        width: 330px;
        /* margin-right: 1%; */
    }

    .banner_content1 {
        width: 90%;
        height: 25%;
    }

    .banner_content1>h1 {
        width: 90%;
    }

    .banner2 {
        background-image: url("../Assets/Images/banner2_color.png");
        display: flex;
        flex-direction: column;
        height: 500px;
        position: relative;
        gap: 0%;
    }

    .banner_img2 {
        height: 350px;
        width: 300px;
        order: 1;
    }

    .banner_img2>img {
        width: 100%;
        height: 100%;
    }

    .banner_content2 {
        width: 90%;
        margin-left: 0%;
        margin-bottom: 11%;
        order: 2;
    }

    .banner_content2>h1 {
        width: 70%;
    }
    .banner_content2>p {
        margin-top: 1%;
    }
    .banner3 {
        background-image: url("../Assets/Images/mob_banner1.svg");
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        height: 500px;
        gap: 0%;
        position: relative;
    }

    .banner_content {
        width: 90%;
        order: 2;
        margin-left: 0%;
    }
    .banner_content > h2 {
        width: 80%;
    }
    .banner_content > p {
        margin-top: 1%;
        width: 95%;
    }
    .banner_img {
        height: 250px;
        order: 1;
        width: 100%;
    }

    .banner_img>img {
        width: 100%;
        height: 100%;
        margin-top: 5%;
    }
    .banner4 {
        background-image: url("../Assets/Images/bg_ban4.png");
        display: flex;
        flex-direction: column;
        height: 450px;
        width: 100%;
        gap: 0%;
        position: relative;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .banner_img4 {
        order: 1;
        width: 210px;
        height: 259px;
    }
    .banner_img4>img {
        height: 100%;
        width: 100%;
        margin-top: 5%;
    }
    
    .banner_content4 {
        order: 2;
        width: 90%;
        margin-left: 0%;
    }
    .banner_content4>h2 {
        width: 80%;
    }
    .banner_content4>p {
        font-size: 15px;
        height: 30%;
        width: 90%;
    }
    .slider-dots {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
    }

    .slider-dots .dot {
        width: 12px;
        height: 12px;
        background: #ccc;
        border-radius: 50%;
        cursor: pointer;
    }

    .slider-dots .dot.active {
        background: white;
    }

    .sec_tion {
        display: flex;
        flex-direction: column;
        margin-top: 4%;
    }

    .sec>img {
        height: 350px;
        width: 310px;
        margin: auto;
        display: block;
    }

    .sec {
        margin-left: 0px;
    }

    .icon-inner,
    .ionicon,
    svg {
        display: block !important;
        height: 100% ! important;
    }

    .GND_info {
        margin-left: 3%;
        margin-top: 0%;
    }

    .GND_info>h2 {
        font-size: 20px;
    }
    .GND_info>h5>span {
        font-size: 15px;
    }
    .IoT_Services {
        height: 1200px;
        margin-top: 8%;
    }
    .IoT_Services>h5>span {
        font-size: 13px;
    }
    .IoT_Services_grid {
        display: flex;
        flex-direction: column;
        height: 45%;
    }

    .IoT_Services_flex {
        display: flex;
        flex-direction: column;
        height: 42%;
        gap: 5px;
        margin-top: 3%;
    }

    .IoT_Product {
        width: 90%;
        height: 50%;
        margin: auto;
    }
    .IoT_Product_flex>img {
        /* height: 24px;
        width: 23px;
        background-color: whitesmoke;
        border-radius: 50px;
        padding: 10px;
        margin-left: auto; */
        padding: 13px;
    }
    .IoT_Sol_flex>img {
        padding: 13px;
    }
    .IoT_ITServe_flex>img {
        padding: 13px;
    }
    .IoT_Sol {
        width: 90%;
        height: 50%;
        margin: auto;
    }

    .IoT_Techno {
        width: 90%;
        height: 50%;
        margin: 0px auto;
    }

    .IoT_ITServe {
        width: 90%;
        height: 50%;
        margin: 1% auto;
    }

    .IoT_banner {
        height: 1200px;
        margin-top: 5%;
    }

    .head_para {
        display: flex;
        flex-direction: column;
        padding-top: 8%;
        padding-left: 5%;
    }

    .head_para>h1 {
        padding-left: 0%;
        font-size: 22px;
        width: 60%;
    }

    .head_para>p {
        padding-top: 3%;
        font-size: 15px;
        width: 75%;
    }

    .GND_insights1 {
        display: flex;
        flex-direction: column;
        margin-top: 3%;
        padding-left: 5%;
    }

    .GND_insights2 {
        display: flex;
        flex-direction: column;
        padding-left: 5%;
    }

    .insights>p {
        font-size: 14px;
    }

    .insights {
        width: 80%;
        line-height: 20px;
        margin-top: 10%;
    }

    .insights>img {
        height: 28px;
        width: 28px;
    }

    .GND_Products {
        height: 1550px;
        margin-top: 6%;
    }
    .GND_Products>h5>span {
        font-size: 13px;
    }
    .Product_imgs {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin-top: 3%;
    }

    .d_a {
        height: 660px;
    }

    .dashboard {
        height: 260px;
    }

    .dashboard_analytics {
        display: flex;
        flex-direction: column;
        margin: 8% auto;
        width: 80%;
        height: 460px;
        background-color: whitesmoke;
        border-radius: 10px;
    }

    .da_flex {
        width: 90%;
        height: 40%;
        padding-top: 10%;
    }

    .Testimonials {
        display: none;
    }

    .mob-Testimonials {
        margin-top: 3%;
        height: 480px;
        display: block;
    }

    .mob-Testimonials>h5,
    .mob-Testimonials>h2 {
        text-align: center;
    }

    .mob-Testimonials>h5>span {
        color: blue;
        font-size: 13px;
    }
    .mob-test-stories>p:first-of-type {
        font-size: 14px;
        padding-top: 8%;
        /* padding-top: 8%; */
    }
    
    .mob-test-stories>p:nth-of-type(2) {
        font-size: 14px;
        margin-top: 5%;
        font-weight: bold;
        color: #366CCC;
    }
    
    .mob-test-stories h5:last-of-type {
        margin: 6px 0;
        width: 50%;
        color: #366CCC;
    }
    .mob-arrow_test {
        display: flex;
        flex-direction: column;
    }

    .mob-arrow {
        gap: 10px;
        margin: 10px auto;
        display: flex;
        justify-content: space-between;
        width: 100px;
    }

    .mob-arrow button {
        background: #e9ecef;
        border: none;
        border-radius: 50%;
        padding: 8px 12px;
        float: right;
        margin-right: 2%;
        margin: 0;
    }

    .mob-arrow button ion-icon {
        font-size: 20px;
    }

    .mob-testimonials-stories {
        display: flex;
        overflow: hidden;
        scroll-behavior: smooth;
        height: 300px;
    }

    .mob-test-stories {
        background: #f8f9fa;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        text-align: left;
        position: relative;
        flex: 0 0 86%;
        margin: 0 8px;
    }

    .mob-test-stories p {
        width: 85%;
    }

    .mob-test-stories>p:first-of-type {
        font-size: 14px;
    }

    .mob-test-stories>p:nth-of-type(2) {
        font-size: 12px;
    }

    .mob-test-stories h5 {
        margin: 15px 0;
        width: 50%;
    }

    .mob-test-stories h5:first-of-type {
        color: #366CCC;
    }

    .mob-test-stories>img {
        float: right;
    }

    .mob-test-stories span {
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
        color: #333;
    }

    /* mob */
    .over_view {
        display: flex;
        flex-direction: column;
    }

    .over_view>hr {
        display: none;
    }

    .over_view>img {
        height: 50px;
        width: 70px;
    }

    .view {
        display: flex;
        flex-direction: column;
    }

    .view1 {
        margin-top: 9%;
        margin-left: 5%;
    }

    .para {
        display: flex;
        flex-direction: column;
        margin: 10% 4%;
        gap: 30px;
    }
    .carousel-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        height: 100px;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .carousel-slide {
        display: flex;
        flex: 0 0 100%;
    }

    .carousel-slide img {
        width: 20%; /* Adjust to show 4 images per slide */
        margin: 0 auto;
        max-height: 150px;
        object-fit: contain;
        /* border: 2px solid red; */
    }

    .dots-container .dot {
        width: 10px;
        height: 10px;
        background-color: gray;
        border-radius: 50%;
        margin: 5px;
        cursor: pointer;
    }
    
    .dots-container .dot.active {
        background-color: blue; /* Active dot color */
    }

    /* .dot {
        height: 8px;
        width: 8px;
        margin: 0 5px;
        background-color: #ccc;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
    }

    .dot.active {
        background-color: blue;
    } */

    .img-1 {
        /* width: 136px; */
        height: 53px;
        /* width: 50%; */
        /* border: 2px solid red; */
    }
    
    .img-2 {
        /* width: 105px; */
        height: 53px;
        /* border: 2px solid green; */
    }
    
    .img-3 {
        /* width: 190px; */
        height: 53px;
        /* border: 2px solid purple; */
    }
    
    .img-4 {
        /* width: 45px; */
        height: 53px;
        /* border: 2px solid orange; */
    }
    .img-5 {
        /* width: 165.78px; */
        height: 53px;
    }
    .img-6 {
        /* width: 330px; */
        height: 53px;
    }
    .img-7 {
        /* width: 106.79px; */
        height: 53px;
    }
    .img-8 {
        /* width: 67.35px; */
        height: 53px;
    }

    .news_blogs {
        width: 90%;
        margin: 7% auto;
        overflow: hidden;
        position: relative;
        height: 530px;
    }

    .news_blogs_img {
        display: flex;
        transition: transform 0.3s ease-in-out;
        /* border: 2px solid green; */
    }

    .mask_group {
        min-width: 93%;
        height: 410px;
        display: flex;
        flex-direction: column;
        font-size: 24px;
        padding-left: 0%;
    }

    .mask_group>img {
        width: 100%;
    }

    .mask_group>button {
        width: 40%;
    }

    .mask_group>h3 {
        font-size: 16px;
        line-height: 20px;
    }

    .pagination {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 1%;
    }

    .dot1 {
        width: 10px;
        height: 10px;
        margin: 0 5px;
        background-color: #bbb;
        border-radius: 50%;
        cursor: pointer;
    }

    .dot1.active {
        background-color: blue !important;
    }

    .contact {
        background-image: url("../Assets/Images/mob_dummyimage.png");
        background-repeat: no-repeat;
        background-size: cover;
        height: 360px;
        width: 80%;
    }

    .contact>h3 {
        color: white;
        width: 63%;
    }

    .contact>a {
        background-color: #0040C1;
        color: white;
        border-radius: 16px;
        padding: 2% 3%;
        text-decoration: none;
        width: 27%;
        text-wrap: nowrap;
    }

    
    #scrollToTop {
        display: block !important;
        position: fixed;
        height: 60px;
        width: 60px;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background-color: #366CCC;
        /* opacity: 0.6; */
        color: white; 
        border: none;
        border-radius: 80%; 
        padding: 4px 10px;
        font-size: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        /* transition: all 0.3s ease; */
    }
    #scrollToTop > ion-icon {
        height: 50px;
        width: 30px;
    }
    /* #scrollToTop:hover {
        background-color: blue; 
    } */
}

/* For Tablet */
@media only screen and (min-width:480px) and (max-width:700px) {
    .navbar_list {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: blue;
        color: white;
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        width: auto;
        border-radius: 5px;
        padding: 5px;
        z-index: 10;
        gap: 30px;
    }

    .navbar_list.active {
        display: flex;
    }

    .navbar_btn {
        display: none;
    }
    .menu-toggle {
        display: flex;
        display:block;
        flex-direction: column;
        justify-content: space-between;
        width: 40px;
        height: 30px;
        cursor: pointer;
        margin-top: 5%;
        margin-right: 5%;
        z-index: 1100;
        transition: transform 0.3s ease;
      }
      .menu-toggle.active .bar {
        background-color: white; 
    }
      .menu-toggle .bar {
        width: 100%;
        height: 4px;
        background-color: #333;
        border-radius: 2px;
        margin: 7px auto;
        transition: all 0.3s ease;
      }
      .menu-toggle .bar:nth-child(1) {
        width: 40px;
       }
       .menu-toggle .bar:nth-child(2) {
         width: 20px;
         margin: auto;
       }
       .menu-toggle .bar:nth-child(3) {
         width: 40px;
       }
      .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
      }
      
      .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
      }
      
      .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
      }
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu.open {
    display: flex;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 10px 0;
}
    /* .menu-toggle {
        display: flex;
        margin-right: 5%;
        margin-top: 5%;
    }

    .menu-toggle .bar {
        width: 30px;
        background-color: black;
    }
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8); 
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: all 0.3s ease;
    }
    
    .menu.open {
        display: flex;
    }
    
    .menu a {
        color: white;
        text-decoration: none;
        font-size: 1.5rem;
        margin: 10px 0;
    }
     */
   
    /* .close-btn {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 2rem;
        color: white;
        cursor: pointer;
    } */
    .slider {
        position: relative;
        width: 99.2%;
        overflow: hidden;
        margin-top: 2%;
        height: 600px;
    }

    .slider-wrapper {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .slider-wrapper>div {
        flex: 0 0 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        height: 600px;
        color: white;
        box-sizing: border-box;
        /* border: 2px solid green; */
    }

    .banner1 {
        background-image: url("../Assets/Images/mob_banner1.svg");
        height: 500px;
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 0%;
    }

    .banner_img1>img {
        height: 100%;
        width: 100%;
    }

    .banner_img1 {
        margin-left: 0%;
        height: 250px;
        width: 330px;
        /* margin-right: 1%; */
    }

    .banner_content1 {
        width: 90%;
        height: 25%;
    }

    .banner_content1>h1 {
        width: 90%;
    }

    .banner2 {
        background-image: url("../Assets/Images/banner2_color.png");
        display: flex;
        flex-direction: column;
        height: 500px;
        position: relative;
        gap: 0%;
    }

    .banner_img2 {
        height: 350px;
        width: 300px;
        order: 1;
    }

    .banner_img2>img {
        width: 100%;
        height: 100%;
    }

    .banner_content2 {
        width: 90%;
        margin-left: 0%;
        margin-bottom: 11%;
        order: 2;
    }

    .banner_content2>h1 {
        width: 70%;
    }
    .banner_content2>p {
        margin-top: 1%;
    }
    .banner3 {
        background-image: url("../Assets/Images/mob_banner1.svg");
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        height: 500px;
        gap: 0%;
        position: relative;
    }

    .banner_content {
        width: 90%;
        order: 2;
        margin-left: 0%;
    }
    .banner_content > p {
        margin-top: 1%;
    }
    .banner_img {
        height: 250px;
        order: 1;
        width: 100%;
    }

    .banner_img>img {
        width: 100%;
        height: 100%;
        margin-top: 5%;
    }
    .banner4 {
        background-image: url("../Assets/Images/bg_ban4.png");
        display: flex;
        flex-direction: column;
        height: 450px;
        width: 100%;
        gap: 0%;
        position: relative;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .banner_img4 {
        order: 1;
        width: 210px;
        height: 259px;
    }
    .banner_img4>img {
        height: 100%;
        width: 100%;
        margin-top: 5%;
    }
    
    .banner_content4 {
        order: 2;
        width: 90%;
        margin-left: 0%;
    }
    .banner_content4>h2 {
        width: 80%;
    }
    .banner_content4>p {
        font-size: 15px;
        height: 30%;
        width: 90%;
    }
    /* .banner1 {
        background-image: url("../Assets/Images/mob_banner1.svg");
        height: 500px;
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 0%;
    }

    .banner_img1>img {
        height: 100%;
        width: 100%;
    }

    .banner_img1 {
        margin-left: 0%;
        height: 300px;
        width: 300px;
    }

    .banner_content1 {
        width: 90%;
        height: 40%;
    }

    .banner_content1>h1 {
        width: 90%;
    }

    .banner2 {
        background-image: url("../Assets/Images/BAN2.svg");
        display: flex;
        flex-direction: column;
        height: 500px;
        position: relative;
        gap: 0%;
    } */

    /* .banner_img2 {
        height: 300px;
        width: 300px;
        order: 1;
    }

    .banner_img2>img {
        width: 100%;
        height: 100%;
    }

    .banner_content2 {
        width: 90%;
        margin-left: 0%;
        order: 2;
    }

    .banner_content2>h1 {
        width: 70%;
    } */

    /* .banner3 {
        background-image: url("../Assets/Images/mob_banner1.svg");
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        height: 450px;
        gap: 0%;
        position: relative;
    }

    .banner_content {
        width: 90%;
        order: 2;
        margin-left: 0%;
    }

    .banner_img {
        height: 250px;
        order: 1;
        width: 100%;
    }

    .banner_img>img {
        width: 100%;
        height: 100%;
        margin-top: 5%;
    } */

    .sec_tion {
        display: flex;
        flex-direction: column;
        margin-top: 4%;
    }

    .sec {
        margin-left: 0%;
    }

    .sec>img {
        height: 389px;
        width: 364px;
        display: block;
        margin: auto;
    }

    .GND_info {
        width: 94%;
        padding-left: 3%;
    }

    .IoT_Services {
        height: 930px;
        margin-top: 8%;
    }

    .IoT_Services_grid {
        display: flex;
        flex-direction: column;
        height: 40%;
    }

    .IoT_Services_flex {
        display: flex;
        flex-direction: column;
        height: 45%;
        gap: 5px;
    }

    .IoT_Product {
        width: 80%;
        height: 80%;
        margin: auto;
    }

    .IoT_Product_flex {
        gap: 45%;
    }

    .IoT_Sol {
        width: 80%;
        height: 80%;
        margin: auto;
    }

    .IoT_Sol_flex {
        gap: 55%;
    }

    .IoT_Techno {
        width: 80%;
        height: 43%;
        margin: 0px auto;
    }

    .IoT_ITServe {
        width: 80%;
        height: 47%;
        margin: 1% auto;
    }

    .IoT_ITServe_flex {
        gap: 63%;
    }

    .IoT_banner {
        height: 100%;
    }

    .GND_Products {
        height: 1550px;
        margin-top: 6%;
    }

    .Product_imgs {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .GND {
        padding-bottom: 5%;

    }
    .d_a {
        height: 680px;
    }

    .dashboard {
        height: 260px;
    }

    .dashboard_analytics {
        display: flex;
        flex-direction: column;
        margin: 8% auto;
        width: 80%;
        height: 460px;
        background-color: whitesmoke;
        border-radius: 10px;
    }

    .da_flex {
        width: 90%;
        height: 40%;
        padding-top: 8%;
    }

    .Testimonials {
        height: 400px;
    }

    .test-stories {
        flex: 0 0 89%;
        height: 300px;
        margin: 0;
    }

    .over_view {
        display: flex;
        flex-direction: column;
    }

    .over_view>hr {
        display: none;
    }

    .over_view>img {
        height: 50px;
        width: 70px;
    }

    .view {
        display: flex;
        flex-direction: column;
    }

    .view1 {
        margin-top: 9%;
        margin-left: 5%;
    }

    .para {
        display: flex;
        flex-direction: column;
        margin: 8% 4%;
        gap: 30px;
    }
    .carousel-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        height: 150px;
        margin-top: 8%;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .carousel-slide {
        display: flex;
        flex: 0 0 100%;
    }

    .carousel-slide img {
        width: 20%; /* Adjust to show 4 images per slide */
        margin: 0 auto;
        max-height: 150px;
        object-fit: contain;
    }
    .dots-container .dot {
        width: 10px;
        height: 10px;
        background-color: gray;
        border-radius: 50%;
        margin: 5px;
        cursor: pointer;
    }
    
    .dots-container .dot.active {
        background-color: blue; /* Active dot color */
    }
      .img-1 {
        /* width: 136px; */
        height: 53px;
    }
    
    .img-2 {
        /* width: 105px; */
        height: 53px;
    }
    
    .img-3 {
        /* width: 190px; */
        height: 53px;
    }
    
    .img-4 {
        /* width: 45px; */
        height: 53px;
    }
    .img-5 {
        /* width: 165.78px; */
        height: 53px;
    }
    .img-6 {
        /* width: 330px; */
        height: 53px;
    }
    .img-7 {
        /* width: 106.79px; */
        height: 53px;
    }
    .img-8 {
        /* width: 67.35px; */
        height: 53px;
    }

    .news_blogs {
        width: 90%;
        margin: 7% auto;
        overflow: hidden;
        position: relative;
        height: 580px;
    }

    .news_blogs_img {
        display: flex;
        transition: transform 0.3s ease-in-out;
    }

    .mask_group {
        min-width: 93%;
        height: 450px;
        display: flex;
        flex-direction: column;
        font-size: 24px;
        padding-left: 0%;
    }

    .mask_group>img {
        width: 90%;
    }

    .mask_group>button {
        width: 30%;
    }

    .mask_group>h3 {
        font-size: 16px;
        width: 90%;
    }

    .pagination {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .dot1 {
        width: 10px;
        height: 10px;
        margin: 0 5px;
        background-color: #bbb;
        border-radius: 50%;
        cursor: pointer;
    }

    .dot1.active {
        background-color: blue;
    }

    .contact {
        background-image: url("../Assets/Images/mob_dummyimage.png");
        background-repeat: no-repeat;
        background-size: cover;
        height: 360px;
        width: 80%;
    }

    .contact>a {
        text-wrap: nowrap;
        padding: 1% 3%;
        width: 15%;
        border-radius: 24px;
    }
    .contact > h3 {
        width: 70%;
    }
    
    #scrollToTop {
        display: block !important;
        position: fixed;
        height: 60px;
        width: 60px;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background-color: #366CCC;
        /* opacity: 0.6; */
        color: white; 
        border: none;
        border-radius: 80%; 
        padding: 4px 10px;
        font-size: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        /* transition: all 0.3s ease; */
    }
    #scrollToTop > ion-icon {
        height: 50px;
        width: 30px;
    }
    /* #scrollToTop {
        display: block !important;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background-color: transparent;
        color: black; 
        border: none;
        border-radius: 50%; 
        padding: 8px 15px;
        font-size: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        cursor: pointer;
    }
    #scrollToTop > ion-icon {
        height: 50px;
        width: 30px;
    } */
}

@media only screen and (min-width:701px) and (max-width:1024px) {
    .navbar_logo {
        margin-left: 3%;
    }

    .navbar_list {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: blue;
        color: white;
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        width: auto;
        border-radius: 5px;
        padding: 5px;
        z-index: 10;
        gap: 30px;
    }

    .navbar_list.active {
        display: flex;
    }

    .navbar_btn {
        display: none;
    }
    .menu-toggle {
        display: flex;
        display:block;
        flex-direction: column;
        justify-content: space-between;
        width: 40px;
        height: 30px;
        cursor: pointer;
        margin-top: 4.5%;
        margin-right: 5%;
        z-index: 1100;
        transition: transform 0.3s ease;
      }
      .menu-toggle.active .bar {
        background-color: white; 
    }
      .menu-toggle .bar {
        width: 100%;
        height: 4px;
        background-color: #333;
        border-radius: 2px;
        margin: 7px auto;
        transition: all 0.3s ease;
      }
      .menu-toggle .bar:nth-child(1) {
       width: 40px;
      }
      .menu-toggle .bar:nth-child(2) {
        width: 20px;
        margin: auto;
      }
      .menu-toggle .bar:nth-child(3) {
        width: 40px;
      }
      .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
      }
      
      .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
      }
      
      .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
      }
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu.open {
    display: flex;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 10px 0;
}
    /* .menu-toggle {
        display: flex;
        margin-right: 5%;
        margin-top: 4%;
    }

    .menu-toggle .bar {
        width: 30px;
        background-color: black;
    }
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8); 
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: all 0.3s ease;
    } */
    
    /* .menu.open {
        display: flex;
    }
    
    .menu a {
        color: white;
        text-decoration: none;
        font-size: 1.5rem;
        margin: 10px 0;
    } */
    
    /* Close button styling */
    /* .close-btn {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 2rem;
        color: white;
        cursor: pointer;
    } */
    .banner_img1 {
        margin-left: 0%;
    }

    .banner_content1 {
        width: 45%;
    }

    .banner_content1>h1 {
        width: 80%;
    }

    .banner_content2>h1 {
        width: 80%;
    }

    .banner3 {
        gap: 3%;
    }

    .banner_content {
        width: 80%;
    }

    .banner_img>img {
        width: 300px;
        height: 300px;
    }
    .banner_img4 {
        margin-left: 8%;
    }
    .banner_img4 > img {
        height: 300px;
        width: 300px;
    }
    .sec {
        width: 60%;
        height: 400px;
    }

    .sec>img {
        height: 390px;
        width: 360px;
        margin-top: 10%;
    }

    .IoT_Product_flex>img {
        margin-right: 5%;
    }

    .IoT_Services_flex {
        height: 40%;
    }

    .IoT_Sol_flex {
        margin-right: 15%;
    }

    .GND_Products {
        height: 900px;
    }

    .Product_imgs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 4%;
    }

    .GND_Products>a {
        margin-top: 5%;
    }

    .testimonials-stories {
        display: flex;
        overflow: hidden;
        scroll-behavior: smooth;
        height: 280px;
    }

    .test-stories {
        background: #f8f9fa;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin: 0 10px;
        flex: 0 0 40%;
        text-align: left;
        position: relative;
    }

    .over_view>img {
        margin-top: 3%;
    }

    .para {
        margin: 8% 2%;
        gap: 20px;
    }

    .trusted_partners img:nth-child(1) {
        width: 130px;
        height: 52.44px;
        margin-top: 2%;
    }

    .trusted_partners img:nth-child(2) {
        width: 120px;
        height: 52px;
        margin-top: 2%;
    }

    .trusted_partners img:nth-child(3) {
        width: 130px;
        height: 86px;
    }

    .trusted_partners img:nth-child(4) {
        width: 130px;
        height: 88px;
    }

    .news_blogs {
        height: 550px;
    }

    .news_blogs_img {
        margin-left: 2%;
        margin-right: 2%;
    }

    .mask_group>img {
        height: 50%;
        width: 98%;
    }

    .contact {
        width: 85%;
    }
    .contact > a {
        text-wrap: nowrap;
        width: 20%;
    }
}


@media only screen and (min-width:1025px) and (max-width:1440px) {
    .navbar_list{
        font-size: 16px;
    }
    .navbar_btn {
        font-size: 16px;
    }
    .menu {
    display: none;
   } 
    .news_blogs {
        height: 500px;
    }

    .news_blogs_img {
        margin-left: 2%;
        margin-right: 2%;
    }

    .mask_group>img {
        height: 50%;
        width: 98%;
    }

    .banner3 {
        gap: 2%;
    }
    .banner_content {
        width: 90%;
    }
    .subscribe-container > p {
        margin-top: 2%;
    }
}

@media only screen and (min-width:1024px) and (max-width:1212px) {
    .img_data>img {
        width: 100%;
        height: 100%;
    }
}
/* @media only screen and (min-width:1025px) and (max-width:1200px) {
    .navbar {
       font-size: 20px;
       }
     } */

@media only screen and (min-width: 1400px) {
    /* body {
        font-size: 22px;
    } */
    .navbar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 2%;
    }
    
    .navbar_logo {
        margin-top: 2%;
        margin-left: 4%;
    }
    .navbar_logo > img {
        height: 100%;
        width: 100%;
    }
    .nav {
        margin-top: 3%;
    }
    
    .navbar_list {
        display: flex;
        flex-direction: row;
        list-style-type: none;
        text-decoration: none;
        gap: 50px;
    }
    
    .navbar_list > li >a {
        text-decoration: none;
        color: black;
        font-weight: normal !important;
    }
    .navbar_btn {
        margin-top: 3%;
        width: 10%;
    }
    
    .navbar_btn > a {
        text-decoration: none;
        background-color: #0040C1;
        border-radius: 16px;
        color: white;
        padding: 5px 25px;
    }
    .menu {
        display: none;
       }
    .banner3 {
        gap: 2%;
    }

    .banner_content {
        width: 90%;
    }
    .banner_content2 > h1 {
        width: 30%;
    }
    .banner_content1 > h1 {
        width: 40%;
    }
    .banner_content > h2 {
        width: 35%;
    }
    .banner_content4 > h2 {
        width: 40%;
    }
    .IoT_banner {
        height: 600px;
    }
    .IoT_Services {
        height: 750px;
    }
    .IoT_Product_flex>img {
        height: 35px;
        width: 35px;
    }
    .IoT_Sol_flex > img {
        height: 35px;
        width: 35px;
    }
    .IoT_ITServe_flex > img {
        height: 35px;
        width: 35px;
    }
    /* .IoT_Services > h5 {
        border: 2px solid red;
    } */
    .IoT_Services > h3 {
        font-size: 22px;
    }
    .IoT_Product_flex > h4 {
        font-size: 18px;

    }
    .IoT_Sol_flex > h4 {
        font-size: 18px;
    }
    .IoT_ITServe_flex > h4 {
        font-size: 18px;
    }
    .IoT_Services>h5>span {
        color: blue;
        font-size: 22px;
    }

    .IoT_Services_grid {
        height: 38%;
    }

    .IoT_Product>p {
        font-size: 16px;
    }

    .IoT_Sol>p {
        font-size: 16px;
    }

    .IoT_Techno>p {
        font-size: 16px;
    }

    .IoT_ITServe>p {
        font-size: 16px;
    }

    .IoT_Services_flex {
        height: 38%;
    }
    .GND_Products {
        height: 530px;
    }
    .GND_Products > h5 {
        font-size: 14px;
    }
    .head_para {
        gap: 22%;
    }
    .head_para>p {
        font-size: 16px;
        width: 35%;
    }
    .head_para > h1 {
        width: 25%;
    }
    .insights>h5 {
        font-size: 15px;
    }

    .insights>p {
        font-size: 14px;
    }
    .dashboard_analytics {
        height: 130%;
    }
    .d_a {
        margin: 2% 0;
        height: 530px;
    }
    .da_flex>p,
    .da_flex>a {
        font-size: 16px;
    }

    .Testimonials {
        height: 450px;
    }

    .testimonials-stories {
        height: 300px;
    }

    .test-stories>p:first-of-type {
        font-size: 16px;
    }

    .test-stories>p:nth-of-type(2) {
        font-size: 16px;
    }

    .para {
        gap: 30px;
    }

    .para>p {
        font-size: 16px;
    }
    .news_blogs {
        height: 650px;
    }
    .news_blogs_img {
        margin-left: 3%;
        margin-right: 3%;
        gap: 20px;
    }

    .mask_group {
        width: 82%;
    }

    .mask_group>img {
        height: 330px;
        width: 100%;
    }

    .contact {
        width: 60%;
        background-size: cover;
        border-radius: 22px;
        height: 350px;
        margin-top: 0%;
    }
    .contact > h3 {
        width: 30%;
    }
    .contact>a {
        margin-top: 2%;
        width: 10%;
        text-wrap: nowrap;
    }
}
