*{
    margin: 0;
    padding: 0; 
    font-family: 'Poppins', sans-serif;
}
body, html {
    overflow-x: hidden;
}

.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;
}

/* navbar */
/* .navbar {
    width: 100%;
    height: 100%;
    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;
}
.navbar_btn {
    margin-top: 3.9%;
    margin-right: 2.8%;
}
.navbar_btn > a {
    text-decoration: none;
    background-color: #0040C1;
    border-radius: 16px;
    color: white;
    padding: 5px 25px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
} 
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
} */
.services_info {
    width: 60%;
    margin: 2% auto;
    opacity: 0;
    transform: translateY(50px); 
    transition: all 2s ease;
}
.services_info.animate {
    opacity: 1; 
    transform: translateY(0);
}
.services_info > h2 {
    width: 60%;
    margin: auto;
    text-align: center;
}
.services_info > p {
    width: 75%;
    margin: auto;
    margin-top: 1%;
    text-align: center;
    font-size: 13px;
}
.about {
    background-color: whitesmoke;
    border-radius: 20px;
    width: 90%;
    margin: 4% auto;
}
.software_dev {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: space-around;
    height: 50%;
    opacity: 0;
    transform: translateY(30px); 
    transition: all 2s ease;
}
.software_dev.animate {
    opacity: 1; 
    transform: translateY(0);
}
.software_dev1 {
    font-size: 13px;
    padding-top: 7%;
    padding-left: 7%;
    width: 90%;
}
.software_dev1 > p {
    margin-top: 4%;
}
.software_dev2 {
    font-size: 13px;
    padding-top: 7%;
    padding-bottom: 3%;
    width: 90%;
}
.software_dev2 img {
    margin: 10px; 
    width: 50px; 
    height: 50px;
}
.about hr {
    width: 93%;
    margin: 0 auto;
}
.specializations {
    background-image: url("../Assets/Images/service_spcl.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
}
.specializations1 {
    color: white;
    display: flex;
    gap: 15%;
    padding-top: 5%;
    padding-bottom: 3%;
}
.spcl_a {
    display: flex;
    flex-direction: row;
    padding-left: 7%;
    gap: 50px;
    opacity: 0; 
    transform: translateX(-80px); 
    transition: all 2s ease;
}
.spcl_a.animate {
    opacity: 1; 
    transform: translateX(0); 
}
.spcl_a > img {
    height: 52px;
    width: 52px;
}
.spcl_b {
    width: 50%;
    opacity: 0; 
    transform: translateX(80px); 
    transition: all 2s ease;
}
.spcl_b.animate {
    opacity: 1; 
    transform: translateX(0); 
}
.spcl_b > p {
    font-size: 13px;
    margin-top: 2%;
}
.specializations hr {
    width: 90%;
    margin: 0 auto;
}
.specializations2 {
    color: white;
    display: flex;
    gap: 15%;
    padding-top: 3%;
    /* padding-bottom: 3%; */
}
.spcl_c {
    display: flex;
    flex-direction: row;
    padding-left: 7%;
    gap: 50px;
    width: 19.5%;
    opacity: 0; 
    transform: translateX(-80px); 
    transition: all 2s ease;
}
.spcl_c.animate {
    opacity: 1; 
    transform: translateX(0); 
}
.spcl_c > img {
    height: 53px;
    width: 59px;
}
.spcl_d {
    width: 50%;
    opacity: 0; 
    transform: translateX(80px); 
    transition: all 2s ease;
}
.spcl_d.animate {
    opacity: 1; 
    transform: translateX(0); 
}
.spcl_d > p {
    font-size: 13px;
    margin-top: 2%;
}
.about_services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 5% auto;
    width: 85%;
    gap: 20px; 
}
.about_services1 {
    background-color: whitesmoke;
    height: 350px;
    border-radius: 20px;
    padding: 10% 7% 0%;
    opacity: 0; 
    transform: translateY(40px); 
    transition: all 2s ease;
}
.about_services1.animate {
    opacity: 1; 
    transform: translateY(0); 
}
.about_services1 > p {
    font-size: 13px;
    margin-top: 5%;
}
.about_services2 {
    background-color: whitesmoke;
    height: 350px;
    border-radius: 20px;
    padding: 10% 7% 0%;
    opacity: 0; 
    transform: translateY(80px); 
    transition: all 2s ease;
}
.about_services2.animate {
    opacity: 1; 
    transform: translateY(0); 
}
.about_services2 > p {
    font-size: 13px;
    margin-top: 5%;
}
.about_services3 {
    background-color: whitesmoke;
    height: 350px;
    border-radius: 20px;
    padding: 10% 7% 0%;
    opacity: 0; 
    transform: translateY(100px); 
    transition: all 2s ease;
}
.about_services3.animate {
    opacity: 1; 
    transform: translateY(0); 
}
.about_services3 > p {
    font-size: 13px;
    margin-top: 5%;
}
.flex > p {
    font-size: 13px;
}
.flex {
    display: flex;
    gap: 5px;
}
.flex > span {
    color: blue;
}
.flex1 {
    line-height: 30px;
    margin-top: 3%;
}
.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../Assets/Images/new_contact.png");
    height: 350px;
    /* width: 880px; */
    width: 80%;
    margin: auto;
    margin-top: 7%;
    border-radius: 22px;
    text-align: center;
    gap: 15px;
}
.contact > h3 {
    color: white;
    width: 40%;
}
.contact > a {
    background-color: #0040C1;
    color: white;
    border-radius: 16px;
    padding: 5px 10px;
    text-decoration: none;
    width: 10%;
    text-align: center;
}
.contact > a:hover {
    background-color: black;
}
  #scrollToTop {
    display: none !important;
}
@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;
        font-size: 15px;
        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;
}
/* 
    .menu-toggle {
        display: flex;
        margin-right: 5%;
        margin-top: 7%;
    }

    .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;
} */
      .services_info {
        width: 90%;
        margin-top: 5%;
    }
    .services_info > h2 {
        width: 80%;
    }
    .services_info > p {
        width: 75%;
    }
    .software_dev {
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
    .software_dev2 {
        padding-left: 7%;
    }
    .specializations {
        background-image: url("../Assets/Images/service_rec.png");
        height: 500px;
        display: flex;
        flex-direction: column;
    }
    .specializations1 {
        display: flex;
        flex-direction: column;
    }
    .spcl_a > img {
        height: 50px;
        width: 50px;
    }
    .spcl_b {
        width: 80%;
        padding-left: 5%;
        margin-top: 3%;
    }
    .specializations2 {
        display: flex;
        flex-direction: column;
    }
    .specializations hr {
        margin-top: 5%;
    }
    .spcl_c {
        display: flex;
        flex-direction: row;
        width: 80%;
    }
    .spcl_c > img {
        height: 50px;
        width: 50px;
    }
    .spcl_d {
        width: 80%;
        padding-left: 5%;
        margin-top: 3%;
    }
    .about_services {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .about_services3 {
        opacity: 0; 
        transform: translateY(40px); 
        transition: all 2s ease;
    }
    .about_services3.animate {
        opacity: 1; 
        transform: translateY(0); 
    }
    
      .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: 90%;
    }
    .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 {
        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;
    } */
}
@media only screen and (min-width:480px) and (max-width:700px) {
    .navbar_logo > img {
        margin-top: 7%;
    }
    .navbar_list {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: blue;
        color: white;
        position: absolute;
        top: 50px;
        right: 10px;
        width: 84%;
        border-radius: 5px;
        padding: 10px;
    }
    .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 button styling */
    /* .close-btn {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 2rem;
        color: white;
        cursor: pointer;
    } */
      .services_info {
        width: 90%;
        margin-top: 5%;
    }
    .services_info > h2 {
        width: 80%;
    }
    .services_info > p {
        width: 75%;
    }
    .software_dev {
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
    .software_dev2 {
        padding-left: 7%;
    }
    .specializations {
        background-image: url("../Assets/Images/service_rec.png");
        height: 500px;
        display: flex;
        flex-direction: column;
    }
    .specializations1 {
        display: flex;
        flex-direction: column;
    }
    .spcl_a > img {
        height: 50px;
        width: 50px;
    }
    .spcl_b {
        width: 80%;
        padding-left: 5%;
        margin-top: 3%;
    }
    .specializations2 {
        display: flex;
        flex-direction: column;
    }
    .spcl_c {
        display: flex;
        flex-direction: row;
        width: 80%;
    }
    .spcl_c > img {
        height: 50px;
        width: 50px;
    }
    .spcl_d {
        width: 80%;
        padding-left: 5%;
        margin-top: 3%;
    }
    .about_services {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .about_services3 {
        opacity: 0; 
        transform: translateY(40px); 
        transition: all 2s ease;
    }
    .about_services3.animate {
        opacity: 1; 
        transform: translateY(0); 
    }
    .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: 70%;
    }
    .contact > a {
        background-color: #0040C1;
        color: white;
        border-radius: 22px;
        padding: 1% 3%;
        text-decoration: none;
        width: 15%;
        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 {
        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;
    } */
}
@media only screen and (min-width:701px) and (max-width:1024px) {
    .navbar_logo > img {
        margin-top: 7%;
    }
    .navbar_list {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: blue;
        color: white;
        position: absolute;
        top: 50px;
        right: 10px;
        width: 84%;
        border-radius: 5px;
        padding: 10px;
    }
    .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;
    } */
      .services_info {
        width: 90%;
        margin-top: 5%;
    }
    .services_info > h2 {
        width: 80%;
    }
    .services_info > p {
        width: 75%;
    }
    .spcl_a > img {
        width: 50%;
        height: 50%;
    }
    .spcl_c > img {
        width: 50%;
        height: 50%;
    }
    /* .specializations2 {
        gap: 15%;
    } */
    .about_services {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .about_services3 {
        opacity: 0; 
        transform: translateY(40px); 
        transition: all 2s ease;
    }
    .about_services3.animate {
        opacity: 1; 
        transform: translateY(0); 
    }
    .about_services1 > p {
        font-size: 14px;
        margin-top: 5%;
    }
    .flex > p {
        font-size: 13px;
    }
    .flex {
        display: flex;
        gap: 5px;
    }
    .flex > span {
        color: blue;
    }
    .flex1 {
        line-height: 30px;
        margin-top: 3%;
    }
    .contact {
        width: 80%;
    }
    .contact > h3 {
        width: 70%;
    }
    .contact > a {
        text-wrap: nowrap;
        width: 20%;
    }
}
@media only screen and (min-width:700px) and (max-width:730px) {
    .specializations2 {
        gap: 27.5%;
    }
     }
@media only screen and (min-width:730px) and (max-width:750px) {
    .specializations2 {
        gap: 27%;
    }
 }
 @media only screen and (min-width:750px) and (max-width:800px) {
    .specializations2 {
        gap: 25%;
    }
 }
 @media only screen and (min-width:801px) and (max-width:840px) {
    .specializations2 {
        gap: 24%;
    }
 }
 @media only screen and (min-width:841px) and (max-width:900px) {
    .specializations2 {
        gap: 23.5%;
    }
 }
 @media only screen and (min-width:901px) and (max-width:950px) {
    .specializations2 {
        gap: 22%;
    }
 }
 @media only screen and (min-width:951px) and (max-width:1000px) {
    .specializations2 {
        gap: 20%;
    }
 }
 @media only screen and (min-width:1001px) and (max-width:1024px) {
    .specializations2 {
        gap: 20%;
    }
 }
 @media only screen and (min-width:1024px) and (max-width:1060px) {
    .specializations2 {
        gap: 19.5%;
    }
 }
 @media only screen and (min-width:1061px) and (max-width:1100px) {
    .specializations2 {
        gap: 18%;
    }
 }
 @media only screen and (min-width:1101px) and (max-width:1140px) {
    .specializations2 {
        gap: 17%;
    }
 }
 @media only screen and (min-width:1141px) and (max-width:1170px) {
    .specializations2 {
        gap: 16.5%;
    }
 }
 @media only screen and (min-width:1171px) and (max-width:1200px) {
    .specializations2 {
        gap: 16.5%;
    }
 }
 @media only screen and (min-width:1201px) and (max-width:1240px) {
    .specializations2 {
        gap: 16%;
    }
 }
 @media only screen and (min-width:1240px) and (max-width:1279px) {
    .specializations2 {
        gap: 15%;
    }
 }
 @media only screen and (min-width:1280px) and (max-width:1320px) {
    .specializations2 {
        gap: 15%;
    }
 }
 @media only screen and (min-width:1320px) and (max-width:1380px) {
    .specializations2 {
        gap: 13%;
    }
 }
 @media only screen and (min-width:1380px) and (max-width:1400px) {
    .specializations2 {
        gap: 13%;
    }
 }
@media only screen and (min-width:1025px) and (max-width:1440px) {
    .menu {
     display: none;
    }
    .navbar_list{
        font-size: 16px;
    }
    .navbar_btn {
        font-size: 16px;
    }
    .subscribe-container > p {
        margin-top: 2%;
    }
}

@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.26%;
        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;
    }
    .specializations {
        height: 450px;
    }
    .spcl_b > p {
        font-size: 17px;
    }
    .spcl_d > p {
        font-size: 17px;
    }
    .services_info > p {
        font-size: 15px;
    }
    .software_dev1 > h2 {
        font-size: 20px;
    }
    .software_dev1 > p {
        font-size: 15px;
    }
    .software_dev2 > p {
        font-size: 15px;
    }
    /* .about_services1 {
        height: 350px;
    }
    .about_services2 {
        height: 350px;
    }
    .about_services3 {
        height: 350px;
    } */
    .about_services1 > p {
        font-size: 16px;
    }
    /* .about_services1 {
        height: 400px;
    } */
    /* .specializations2 {
        gap: 17.5%;
    } */
    .specializations2 {
        gap: 21%;
    }
    .spcl_c {
        width: 10%;
    }
    .spcl_b > h5 {
        font-size: 17px;
    }
    .spcl_b > p {
        font-size: 15px;
    }
    .spcl_d > h5 {
        font-size: 17px;
    }
    .spcl_d > p {
       font-size: 15px;
    }
    .flex > p {
        font-size: 15px;
    }
    .about_services1 > p {
        font-size: 15px;
    }
    .about_services1 > h4 {
        font-size: 16px;
    }
    .about_services2 > p {
        font-size: 15px;
    }
    .about_services2 > h4 {
        font-size: 16px;
    }
    .about_services3 > p {
        font-size: 15px;
    }
    .about_services3 > h4 {
        font-size: 16px;
    }
    .contact {
        width: 60%;
        background-size: cover;
        border-radius: 22px;
        height: 350px;
    }
    .contact > h3 {
        width: 60%;
    }
    .contact > a {
        margin-top: 2%;
    }
}
/* @media only screen and (min-width: 1425px) {
    .specializations2 {
        gap: 18%;
        border: 2px solid green;
    }
} */
@media only screen and (min-width: 1566px) {
.specializations2 {
    gap: 18%;
}
}
