/* ----------------------
   BODY STYLE
------------------------- */

body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box; 
  overflow-x: hidden;
  overflow-y: hidden;
}





/* ----------------------
   HERO SECTION
------------------------- */

.youSection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
    margin-top: 70px;
  }
  
  .youLeft {
    position: relative;
    width: 100%;
  }
  
  .youSlider {
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    justify-items: center;
  }
  
  .youSlider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: youSlide 15s infinite;
  }
  
  @keyframes youSlide {
    0% { transform: translateX(0); }
    20% { transform: translateX(-100%); }
    40% { transform: translateX(-200%); }
    60% { transform: translateX(-300%); }
    80% { transform: translateX(-400%); }
    100% { transform: translateX(0); }
  }
  
  .youRight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .youRight h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.0;
  }
  
  .youRight p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
  }
  
  @media (max-width: 768px) {
    .youSection {
      grid-template-columns: 1fr;
      width: 90%;
    }
  
    .youLeft {
      margin-bottom: -30px;
    }
  
    
    .youRight h2 {
      font-size: 25px;
    }
  
    .youRight p {
      font-size: 1em;
    }
  }
  
  @media (max-width: 480px) {
    .youRight h2 {
      font-size: 1.6em;
    }
  
    .youRight p {
      font-size: 0.9em;
    }
  }
  






/* ----------------------
   YOUTUBE DETAILS
------------------------- */

.serviceSection {
    padding: 50px 20px;
    background-color: white;
}

.serviceContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}


.serviceContentBox {
  color: #e1f0fd;
  padding: 40px;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
}

.serviceTitle {
    font-size: 27px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
    background-color: #2e2f2f;
    border-radius: 3px;
    padding: 10px;
    font-family: 'poppins';
}

.serviceItem {
    margin-bottom: 25px;
}

.serviceItemTitle {
    font-size: 20px;
    font-weight: 700;
    color: #464646;
    margin-bottom: 15px;
    border: 1px solid rgb(213, 234, 255);
    padding: 10px;
    border-radius: 50px;
}

.youNum{
    color: #0085ff;
    font-size: 23px;
}

.serviceItemDescription {
    font-size: 16px;
    line-height: 1.5;
    color: #414040;
}

.actionButton {
    display: inline-block;
    background-color: #ff7f50;
    color: #fff;
    font-size: 18px;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 30px;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
}

.actionButton:hover {
    background-color: #e75d3c;
    transform: scale(1.05);
}

.serviceImageWrapper {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.serviceImageColumn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 10px;
}

.serviceImage {
    width: 100%;
    height: 150%;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .serviceContainer {
        flex-direction: column-reverse;
        align-items: center;
    }

    .serviceContentBox {
        padding: 30px;
        width: 90%;
    }

    .serviceItemTitle {
        font-size: 18px;
    }

    .serviceItemDescription {
        font-size: 14px;
    }

    .actionButton {
        padding: 10px 20px;
        font-size: 16px;
    }

    .serviceImageWrapper {
        max-width: 100%;
    }

    .serviceImage {
        height: auto;
        width: 90%;
        margin: auto;
    }
}




