.card-mobiledev {
  width: fit-content;
  height: 400px;
  border-radius: 30px;
  background: #e0e0e0;
  box-shadow: 15px 15px 30px #bebebe,
             -15px -15px 30px #ffffff;
  margin-top: 50px;  
  margin-left: 50px;   
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-mobiledev img{
    height: 400px;
    border-radius: 30px;
}

.mobiledev-main{
    display: flex;
    flex-direction: row;
}


.mobiledev-heading h1{
    font-size: 60px;
    font-weight: 500;
    background: -webkit-linear-gradient(hsl(39, 81%, 52%), #583232);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mobiledev-heading {
    margin-top: 60px;
    margin-left: 50px;
}

@media (max-width: 768px) {
  mobiledev-main{
    flex-direction:column;
    height: 800px;
}

  .card-mobiledev{
    display: none;
  }

.mobiledev-heading h1{
  font-size: 40px;
  padding-left: 20px;
  
}

.mobiledev-heading {
  margin-top: 60px;
  margin-left: 0px;
  
}
}




.ag-format-container {
    width: 1142px;
    margin: 0 auto;
  }
  

  .ag-courses_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  
    padding: 50px 0;
  }
  .ag-courses_item {
    -ms-flex-preferred-size: calc(33.33333% - 30px);
    flex-basis: calc(33.33333% - 30px);
  
    margin: 0 15px 30px;
  
    overflow: hidden;
  
    border-radius: 28px;
  }
  .ag-courses-item_link {
    display: block;
    padding: 30px 20px;
    background-color: #121212;
    height: 300px;
  
    overflow: hidden;
  
    position: relative;
  }
  .ag-courses-item_link:hover,
  .ag-courses-item_link:hover .ag-courses-item_date {
    text-decoration: none;
    color: #FFF;
  }
  .ag-courses-item_link:hover .ag-courses-item_bg {
    -webkit-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
  }
  .ag-courses-item_title {
    min-height: 87px;
    margin: 0 0 25px;
  
    overflow: hidden;
  
    font-weight: bold;
    font-size: 30px;
    color: #FFF;
  
    z-index: 2;
    position: relative;
  }
  .ag-courses-item_date-box {
    font-size: 18px;
    color: #FFF;
  
    z-index: 2;
    position: relative;
  }
  .ag-courses-item_date {
    font-weight: bold;
    color: white;
  
    -webkit-transition: color .5s ease;
    -o-transition: color .5s ease;
    transition: color .5s ease
  }
  .ag-courses-item_bg {
    height: 128px;
    width: 128px;
    background-color: #f9b234;
  
    z-index: 1;
    position: absolute;
    top: -75px;
    right: -75px;
  
    border-radius: 50%;
  
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
  }
  
  
  
  
  @media only screen and (max-width: 979px) {
    .ag-courses_item {
      -ms-flex-preferred-size: calc(50% - 30px);
      flex-basis: calc(50% - 30px);
    }
    .ag-courses-item_title {
      font-size: 24px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .ag-format-container {
      width: 96%;
    }
  
  }
  @media only screen and (max-width: 639px) {
    .ag-courses_item {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
    }
    .ag-courses-item_title {
      min-height: 72px;
      line-height: 1;
  
      font-size: 24px;
    }
    .ag-courses-item_link {
      padding: 22px 40px;
    }
    .ag-courses-item_date-box {
      font-size: 16px;
    }
  }





.info-card-container {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.info-card {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
}

.tab-list {
    display: flex;
    justify-content: space-around;
    background-color: #f9f9f9;
    border-bottom: 2px solid #ddd;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tab-item {
    flex: 1;
}

.tab-button {
    display: block;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-button:hover,
.tab-button[aria-selected="true"] {
    background-color: rgb(0, 0, 0);
    color: #ffffff;
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane[role="tabpanel"]:target {
    display: block;
}

.tab-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.tab-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.tab-link {
    display: inline-block;
    font-size: 18px;
    color: #007BFF;
    text-decoration: none;
    margin-top: 10px;
}

.tab-link:hover {
    text-decoration: underline;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1 1 30%;
    margin: 10px;
    padding: 20px;
    background: #f0f0f0;
    border-radius: 8px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: black;
}

.stat-text {
    font-size: 18px;
    color: #555;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.benefit-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-size: 18px;
    color: #555;
}

.benefit-item::before {
    content: '✔';
    color: navy;
    margin-right: 10px;
}
