@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
body{
   
    font-family: Poppins;
   
   
}
 
/* ========================= web development============================ */
/* ========================= web development============================ */
 
section{
 
    height: 600px;
    background-color: #0c0c0c;
    /* background-color: aqua; */
}
.webDevelopment {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-left: 50px;
    position: relative;
}
 
.info-box {
    background-color: orange;
    height: 480px;
    width: 450px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}
 
.content-box {
    height: 460px;
    width: 340px;
    text-align: justify;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: left;
}
 
.content-box h2 {
    font-size: 50px;
    margin: 0 0 20px;
    transform: translateX(100%);
    opacity: 0;
    animation: slide-in-right 2s forwards;
}
 
.content-box p {
    word-spacing: -1px;
    font-size: 13px;
    margin: 5px 0;
    opacity: 0;
    transform: translateX(-100%);
    animation: slide-in-left 2s forwards;
    animation-delay: 1s;
}
 
@keyframes slide-in-right {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
 
@keyframes slide-in-left {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
 
 
.image-box {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -60px;
}
 
.image-box img {
    height: 400px;
    width: auto;
    z-index: 100;
    animation: upDown 3s ease-in-out infinite;
}
 
@keyframes upDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
 
/* ========================= mobile application============================ */
/* ========================= mobile application============================ */
section{
 
    height: 600px;
    background-color: #0c0c0c;
    /* background-color: aqua; */
}
.mobileApplication {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-left: 50px;
    position: relative;
}
 
.info-box1 {
    background-color: #22a29b;
    height: 480px;
    width: 450px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}
 
.content-box1 {
    height: 460px;
    width: 340px;
    text-align: justify;
    margin-left: 20px;
 
    display: flex;
    flex-direction: column;
    justify-content: left;
}
 
.content-box1 h2 {
    font-size: 50px;
    margin: 0 0 20px;
    transform: translateX(100%);
    opacity: 0;
    animation: slide-in-right 2s forwards;
}
 
.content-box1 p {
    word-spacing: -1px;
    font-size: 13px;
    margin: 5px 0;
    opacity: 0;
    transform: translateX(-100%);
    animation: slide-in-left 2s forwards;
    animation-delay: 1s;
}
 
@keyframes slide-in-right {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
 
@keyframes slide-in-left {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
 
 
 
.image-box1 {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -90px;
}
 
.image-box1 img {
    height: 400px;
    width: auto;
    z-index: 100;
    animation: upDown 3s ease-in-out infinite;
}
@keyframes upDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
 
/* ========================= cloud computing============================ */
/* ========================= cloud computing============================ */
section{
 
    height: 600px;
    background-color: #0c0c0c;
    /* background-color: aqua; */
}
.cloudComputing {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-left: 50px;
    position: relative;
}
 
.info-box2 {
    background-color: #0dc0f0;
    height: 480px;
    width: 450px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}
 
.content-box2 {
    height: 460px;
    width: 340px;
    text-align: justify;
    margin-left: 20px;
 
    display: flex;
    flex-direction: column;
    justify-content: left;
}
 
.content-box2 h2 {
    font-size: 50px;
    margin: 0 0 20px;
    transform: translateX(100%);
    opacity: 0;
    animation: slide-in-right 2s forwards;
}
 
.content-box2 p {
    word-spacing: -1px;
    font-size: 13px;
    margin: 5px 0;
    opacity: 0;
    transform: translateX(-100%);
    animation: slide-in-left 2s forwards;
    animation-delay: 1s;
}
@keyframes slide-in-right {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
 
@keyframes slide-in-left {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
 
.image-box2 {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -230px;
}
 
.image-box2 img {
    height: 400px;
    width: auto;
    z-index: 100;
    animation: upDown 3s ease-in-out infinite;
}
@keyframes upDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
/* ========================= game development============================ */
/* ========================= game development============================ */
 
.gameDevelopment {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-left: 50px;
    position: relative;
}
 
.info-box3 {
    background-color: #1A4D2E;
    height: 480px;
    width: 450px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}
 
.content-box3 {
    height: 460px;
    width: 340px;
    text-align: justify;
    margin-left: 20px;
 
    display: flex;
    flex-direction: column;
    justify-content: left;
}
 
.content-box3 h2 {
    font-size: 50px;
    margin: 0 0 20px;
    transform: translateX(100%);
    opacity: 0;
    animation: slide-in-right 2s forwards;
}
 
.content-box3 p {
    word-spacing: -1px;
    font-size: 13px;
    margin: 5px 0;
    opacity: 0;
    transform: translateX(-100%);
    animation: slide-in-left 2s forwards;
    animation-delay: 1s;
}
@keyframes slide-in-right {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
 
@keyframes slide-in-left {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
 
.image-box3 {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -20px;
}
 
.image-box3 img {
    height: 450px;
    width: auto;
    z-index: 100;
    animation: upDown 3s ease-in-out infinite;
}
@keyframes upDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
 
/* ========================= ERP Application============================ */
/* ========================= ERP Application============================ */
.erpApplication {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-left: 50px;
    position: relative;
}
 
.info-box4 {
    background-color: #124076;
    height: 480px;
    width: 450px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}
 
.content-box4 {
    height: 460px;
    width: 340px;
    text-align: justify;
    margin-left: 20px;
 
    display: flex;
    flex-direction: column;
    justify-content: left;
}
 
.content-box4 h2 {
    font-size: 50px;
    margin: 0 0 20px;
    transform: translateX(100%);
    opacity: 0;
    animation: slide-in-right 2s forwards;
}
 
.content-box4 p {
    word-spacing: -1px;
    font-size: 13px;
    margin: 5px 0;
    opacity: 0;
    transform: translateX(-100%);
    animation: slide-in-left 2s forwards;
    animation-delay: 1s;
}
 
@keyframes slide-in-right {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
 
@keyframes slide-in-left {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
 
.image-box4 {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -110px;
}
 
.image-box4 img {
    height: 450px;
    width: auto;
    z-index: 100;
    animation: upDown 3s ease-in-out infinite;
}
@keyframes upDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
 
 
    /* ======================  responsive  ====================== */
    /* ======================  responsive  ====================== */
    /* ======================  responsive  ====================== */
 
 
/* ============= Web development Responsive  ==================*/
/* ============= Web development Responsive  ==================*/
 
 
@media (max-width: 768px) {
   
    #webSection{
        height: 1000px;
        width: 100%;
     
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin:0;
        padding: 0 ;
       
    }
    .webDevelopment {
        height: 500px;
        width: 95%;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin:0;
        padding: 0 ;
       
    }
 
     .info-box {
        /* height: 500px; */
        width: 100%;
        margin:  0;
        padding: 0;
       
       
       
       
    }
    .content-box{
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin-top: 0;
        padding: 0 ;
       
    }
    .content-box h2 {
        font-size: 36px;
        animation: slide-in-right 1.5s forwards;
    }
 
    .content-box p {
        /* height: 50px; */
        width: 90%;
        font-size: 12px;
        text-align: justify;
        animation: slide-in-left 1.5s forwards;
    }
 
     .image-box {
        margin: 20px 0;
    }
 
    .image-box img {
        height: 300px;
        width: auto;
        margin-top: -80px;
       
    }  
}
 

/*
=================== 4k responsive web development===============
=================== 4k responsive web development=============== */
 
 
@media screen and (min-width: 3840px) {
    #webSection{
        height:2300px; /* Adjusted height for larger screens */
    }
 
    .webDevelopment {
       
        height: 800px; /* Adjusted height for larger screens */
    }
 
    .info-box {
        margin-top: 1450px;
        height: 1500px;
        width: 1500px;
       
    }
 
    .content-box {
        width: 100%; /* Adjusted width for larger screens */
        margin-top: 20px; /* Adjusted margin-top for larger screens */
    }
 
    .content-box h2 {
        font-size: 98px; /* Adjusted font size for larger screens */
    }
 
    .content-box p {
        padding: 60px;
        font-size: 40px;
        margin-left: -30px;
    }
 
    .image-box {
        margin: 40px 0; /* Adjusted margin for larger screens */
    }
 
    .image-box img {
        height: 950px; /* Adjusted height for larger screens */
        margin-top: 1400px; /* Adjusted margin-top for larger screens */
        margin-left: -30px;
    }
}


/* ============= Mobile Application Responsive  ==================*/
/* =============Mobile Application Responsive   ==================*/
@media (max-width: 768px) {
   
    #mobSection{
        height: 1000px;
        width: 100%;
     
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin:0;
        padding: 0 ;
       
    }
    .mobileApplication {
        height: 500px;
        width: 95%;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin:0;
        padding: 0 ;
       
    }
 
     .info-box1 {
        /* height: 500px; */
        width: 100%;
        margin:  0;
        padding: 0;
       
       
       
       
    }
    .content-box1{
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin-top: 0;
        padding: 0 ;
       
    }
    .content-box1 h2 {
        font-size: 36px;
        animation: slide-in-right 1.5s forwards;
    }
 
    .content-box1 p {
        /* height: 50px; */
        width: 90%;
        font-size: 12px;
        text-align: justify;
        animation: slide-in-left 1.5s forwards;
    }
 
     .image-box1 {
        margin: 20px 0;
    }
 
    .image-box1 img {
        height: 300px;
        width: auto;
        margin-top: -80px;
       
    }  
}
 /*
===================4k responsive mobile development===============
===================4k responsive mobile development=============== */
 
 
@media screen and (min-width: 3840px) {
    #mobSection{
        height:2300px; /* Adjusted height for larger screens */
    }
 
    .mobileApplication {
       
        height: 800px; /* Adjusted height for larger screens */
    }
 
    .info-box1 {
        margin-top: 1450px;
        height: 1500px;
        width: 1500px;
       
    }
 
    .content-box1 {
        width: 100%; /* Adjusted width for larger screens */
        margin-top: 20px; /* Adjusted margin-top for larger screens */
    }
 
    .content-box1 h2 {
        font-size: 98px; /* Adjusted font size for larger screens */
    }
 
    .content-box1 p {
        padding: 60px;
        font-size: 40px;
        margin-left: -30px;
    }
 
    .image-box1 {
        margin: 40px 0; /* Adjusted margin for larger screens */
    }
 
    .image-box1 img {
        height: 950px; /* Adjusted height for larger screens */
        margin-top: 1400px; /* Adjusted margin-top for larger screens */
        margin-left: -110px;
    }
}
 

/* ============= cloud computing Responsive ==================*/
/* =============cloud computing Responsive  ==================*/
@media (max-width: 768px) {
   
    #cloudSection{
        height: 1000px;
        width: 100%;
     
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin:0;
        padding: 0 ;
       
    }
    .cloudComputing {
        height: 500px;
        width: 95%;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin:0;
        padding: 0 ;
       
    }
 
     .info-box2 {
        /* height: 500px; */
        width: 100%;
        margin:  0;
        padding: 0;
       
       
       
       
    }
    .content-box2{
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin-top: 0;
        padding: 0 ;
       
    }
    .content-box2 h2 {
        font-size: 36px;
        animation: slide-in-right 1.5s forwards;
    }
 
    .content-box2 p {
        /* height: 50px; */
        width: 90%;
        font-size: 12px;
        text-align: justify;
        animation: slide-in-left 1.5s forwards;
    }
 
     .image-box2 {
        height: 200px;
        width: 100%;
        margin: 20px 0;
       
    }
 
    .image-box2 img {
        height: 300px;
        width: 100%;
       
    }  
}
 

/*
===================4k responsive cloud development===============
===================4k responsive cloud development=============== */
 
 
@media screen and (min-width: 3840px) {
    #cloudSection{
        height:2300px; /* Adjusted height for larger screens */
    }
 
    .cloudComputing {
       
        height: 800px; /* Adjusted height for larger screens */
    }
 
    .info-box2 {
        margin-top: 1450px;
        height: 1500px;
        width: 1500px;
       
    }
 
    .content-box2 {
        width: 100%; /* Adjusted width for larger screens */
        margin-top: 20px; /* Adjusted margin-top for larger screens */
    }
 
    .content-box2 h2 {
        font-size: 98px; /* Adjusted font size for larger screens */
    }
 
    .content-box2 p {
        padding: 60px;
        font-size: 40px;
        margin-left: -30px;
    }
 
    .image-box2 {
        margin: 40px 0; /* Adjusted margin for larger screens */
    }
 
    .image-box2 img {
        height: 950px; /* Adjusted height for larger screens */
        margin-top: 1400px; /* Adjusted margin-top for larger screens */
        margin-left: -290px;
    }
}
 
/* ============ game development Responsive================== */
/* ============ game development Responsive=================== */
 
@media (max-width: 768px) {
   
    #gameSection{
        height: 1000px;
        width: 100%;
     
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin:0;
        padding: 0 ;
       
    }
    .gameDevelopment {
        height: 500px;
        width: 95%;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin:0;
        padding: 0 ;
       
    }
 
     .info-box3 {
        /* height: 500px; */
        width: 100%;
        margin:  0;
        padding: 0;
       
       
       
       
    }
    .content-box3{
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin-top: 0;
        padding: 0 ;
       
    }
    .content-box3 h2 {
        font-size: 36px;
        animation: slide-in-right 1.5s forwards;
    }
 
    .content-box3 p {
        /* height: 50px; */
        width: 90%;
        font-size: 12px;
        text-align: justify;
        animation: slide-in-left 1.5s forwards;
    }
 
     .image-box3 {
        margin: 20px 0;
    }
 
    .image-box3 img {
        height: 300px;
        width: auto;
        margin-top: -70px;
       
    }  
}



/*
===================4k responsive game development===============
===================4k responsive game development=============== */
 
 
@media screen and (min-width: 3840px) {
    #gameSection{
        height:2300px; /* Adjusted height for larger screens */
    }
 
    .gameDevelopment {
       
        height: 800px; /* Adjusted height for larger screens */
    }
 
    .info-box3 {
        margin-top: 1450px;
        height: 1500px;
        width: 1500px;
       
    }
 
    .content-box3 {
        width: 100%; /* Adjusted width for larger screens */
        margin-top: 20px; /* Adjusted margin-top for larger screens */
    }
 
    .content-box3 h2 {
        font-size: 98px; /* Adjusted font size for larger screens */
    }
 
    .content-box3 p {
        padding: 60px;
        font-size: 40px;
        margin-left: -30px;
    }
 
    .image-box3 {
        margin: 40px 0; /* Adjusted margin for larger screens */
    }
 
    .image-box3 img {
        height: 950px; /* Adjusted height for larger screens */
        margin-top: 1400px; /* Adjusted margin-top for larger screens */
        margin-left: -110px;
    }
}
/* =============== ERP Application Responsive================== */
/* =============== ERP Application Responsive================ */
 
@media (max-width: 768px) {
   
    #erpSection{
        height: 1000px;
        width: 100%;
     
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin:0;
        padding: 0 ;
       
    }
    .erpApplication {
        height: 500px;
        width: 95%;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin:0;
        padding: 0 ;
       
    }
 
     .info-box4 {
        /* height: 500px; */
        width: 100%;
        margin:  0;
        padding: 0;
       
       
       
       
    }
    .content-box4{
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin-top: 0;
        padding: 0 ;
       
    }
    .content-box4 h2 {
        font-size: 36px;
        animation: slide-in-right 1.5s forwards;
    }
 
    .content-box4 p {
        /* height: 50px; */
        width: 90%;
        font-size: 12px;
        text-align: justify;
        animation: slide-in-left 1.5s forwards;
    }
 
     .image-box4 {
        margin: 20px 0;
    }
 
    .image-box4 img {
        height: 300px;
        width: auto;
        margin-top: -70px;
       
    }  
}




/*
===================4k responsive erp development===============
===================4k responsive erp development=============== */
 
 
@media screen and (min-width: 3840px) {
    #erpSection{
        height:2300px; /* Adjusted height for larger screens */
    }
 
    .erpApplication {
       
        height: 800px; /* Adjusted height for larger screens */
    }
 
    .info-box4 {
        margin-top: 1450px;
        height: 1500px;
        width: 1500px;
       
    }
 
    .content-box4 {
        width: 100%; /* Adjusted width for larger screens */
        margin-top: 20px; /* Adjusted margin-top for larger screens */
    }
 
    .content-box4 h2 {
        font-size: 98px; /* Adjusted font size for larger screens */
    }
 
    .content-box4 p {
        padding: 60px;
        font-size: 40px;
        margin-left: -30px;
    }
 
    .image-box4 {
        margin: 40px 0; /* Adjusted margin for larger screens */
    }
 
    .image-box4 img {
        height: 950px; /* Adjusted height for larger screens */
        margin-top: 1400px; /* Adjusted margin-top for larger screens */
        margin-left: -110px;
    }
}