
/* About Section */
.about {
    width: auto;
    /* max-width: 1200px; */
    margin: auto;
    padding: 50px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    background-color: #EFF5FF;
  }
  
  /* Profile Section */
  .profile {
    flex: 1;
    max-width: 350px;
    text-align: center;
    margin-left: 0;
  
  }
  
  .profile img {
    width: 100%;
    max-width: 350px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .profile h2 {
    color:  #F24D00;
    margin: 10px 0;
    font-size: 24px;
    text-align: center;
  }
  
  .profile p {
    font-size: 16px;
    margin-bottom: 10px;
    color: black;
    font-weight: bolder;
    font-size: large;
  }
  
  .profileicons {
    margin: 15px 0;
  }
  
  .profileico a {
    color:  white;
    margin: 0 10px;
    font-size: 22px;
    text-decoration: none;
    display: inline-block;
    background-color:  #F24D00;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
    align-content: center;
  }
  
  .profileico a:hover {
    background-color: #0463FA;
    transform: scale(1.2);
  }
  
  /* Buttons */
  #contbtn{
    display: inline-block;
    padding: 10px 20px;
    background-color:  #F24D00;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  #contbtn:hover {
    background-color: #0463FA;
  }
  
  /* About Content */
  .about-content {
    flex: 2;
    max-width: 600px;
  }
  
  .about-content h2 {
    font-size: 28px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    color: #1e2a38;
  }
  .about-content p {
   
    color: black;
  }
  
  .about-content h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right,  #F24D00, #0463FA);
    margin-top: 1px;
    border-radius: 2px;
  }
  
  .short-text, .more-text {
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
  }
  
  .more-text {
    display: none; /* Initially hidden */
  }
  
  .read-more-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #F24D00;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .read-more-btn:hover {
    background-color:#0463FA;
  }
  .info-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
  }
  
  .info-column {
    flex: 1;
    min-width: 250px;
  }
  
  .info-column p {
    font-size: 14px;
    font-weight: bold;
    color: #1a0808;
    margin-bottom: 10px;
  }
  
  .info-column p strong {
    color: #F24D00;
  }
  
  /* Statistics Section */
  .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    text-align: center;
  }
  
  .stat-box {
    background: #0463FA;
    flex: 1 1 calc(20% - 10px); /* Three per row with space */
    max-width: 180px; /* Reduced width like image */
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .stat-box h3 {
    color:white;
    font-size: 20px;
    margin: 0;
  }
  
  .stat-box p {
    font-size: 12px;
    color: white;
    margin-top: 5px;
  }
  
  .stat-box:hover {
    transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media (width: 320px) {
    .about {
      width: auto;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  
  .profile {
      width: auto;
  }
  .profile img {
    /* width: 100%; */
    max-width: 200px;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    margin-left:0px;
  }
  .info-wrapper {
    max-width: 100%;
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    margin-top: 20px;
    justify-content: center;
  }
  
  .info-column p {
      max-width: 250px;
      text-align: left;
      font-size: 12px;
  }
  
  .stats {
      flex-direction: column;
      align-items: center;
  }
  
  .stat-box {
      width: 80%;
      margin-bottom: 15px;
  
  }
  /* .profileicons a {
    color: white;
    margin: 0 10px;
    font-size: 22px;
    text-decoration: none;
    display: inline-block;
    background-color: #34c759;
    width:30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
    align-content: center;
  } */
  }
  @media (min-width: 375px) {
    .about {
      width: auto;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .profile {
      width: auto;
    }
  
    .profile img {
      max-width: 200px;
      height: 250px;
      border-radius: 10px;
      box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
      margin-left: 0px;
    }
  
    .info-wrapper {
      max-width: 100%;
      display: flex;
      /* flex-wrap: wrap; */
      justify-content: space-between;
      margin-top: 20px;
      justify-content: center;
    }
    
    .info-column p {
        max-width: 250px;
        text-align: left;
        font-size: 12px;
    }
    .stats {
      flex-direction: column;
      align-items: center;
    }
  
    .stat-box {
      width: 80%;
      margin-bottom: 15px;
    }
  
    /* .profileicons a {
      color: white;
      margin: 0 10px;
      font-size: 22px;
      text-decoration: none;
      display: inline-block;
      background-color: #34c759;
      width: 30px;
      height: 30px;
      line-height: 30px;
      text-align: center;
      border-radius: 50%;
      transition: transform 0.3s ease;
      align-content: center;
    } */
  }
  /* For 1024px - Medium Screen */
  @media (min-width: 1024px){
    .about {
      width: 100%;
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
      padding: 60px 40px;
    }
  
    .profile {
      flex: 1;
      max-width: 400px;
      text-align: center;
    }
  
    .about-content {
      flex: 2;
      max-width: 700px;
      padding-left: 40px;
      text-align: left;
    }
  
    .info p {
      width: 48%;
      font-size: 14px;
    }
  
    .stats {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .stat-box {
      width: 30%;
    }
  }
  
  /* For 1440px and above - Large Screen */
  @media (min-width: 1440px) {
    .about {
      width: 100%;
      margin: auto;
      padding: 70px 50px;
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
      gap: 60px;
    }
  
    .profile {
      flex: 1;
      max-width: 350px;
      text-align: center;
    }
    .profile img {
      width: 100%;
      max-width: 450px;
      height: 400px;
      border-radius: 10px;
      box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    }
  
    .about-content {
      flex: 2;
      max-width: 800px;
      padding-left: 50px;
      text-align: left;
    }
    .about-content h2 {
      font-size: 32px;
      font-weight: bolder;
      color: #ddd;
      position: relative;
      display: inline-block;
    }
    .about-content h2::after {
      content: "";
      display: block;
      width: 100%;
      height: 4px;
      background: linear-gradient(to right, #34c759, #2fa34a);
      margin-top: 1px;
      border-radius: 2px;
    }
  
    .info p {
      width: 48%;
      font-size: 16px;
    }
  
    .stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 15px;
      margin-top: 30px;
      text-align: center;
    }
  
    .stat-box {
      background:  #0463FA;
      flex: 1 1 calc(20% - 10px); /* Three per row with space */
      max-width: 180px; /* Reduced width like image */
      border-radius: 12px;
      padding: 15px;
      box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }
  }
  
  /*--------------abougroup box-----------*/
  .nav-container {
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position:relative;
    top: 0;
    z-index: 999;
  }
  .nav-container a {
    margin: 10px 15px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding-bottom: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  .nav-container a.active {
    border-bottom: 3px solid #00aa7f;
    color:  #0463FA;
  }
  
  .section {
    display: none;
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
    animation: fadeIn 0.5s ease-in-out;
    /* border: #3658A1 3px solid; */
    border-radius: 12px;
    background-color: #f9f9f9;
    height:auto;
  }
  .section.active {
    display: block;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .img-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .section-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    border: 3px solid #3658A1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  #teambtn {
    background-color:  #0463FA;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
  }
  #teambtn:hover {
    background-color: #008e6b;
  }
  
  @media (max-width: 768px) {
    .nav-container a {
      font-size: 14px;
      margin: 8px 10px;
    }
    .section {
      padding: 30px 15px;
    }
    #teambtn {
      width: 100%;
      padding: 12px;
    }
    .section-img {
      max-width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .nav-container {
      flex-direction: column;
      align-items: center;
    }
    .nav-container a {
      margin: 5px 0;
    }
  }
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color:#1e2a38;
    background: linear-gradient(to bottom right,  #0463FA, #EFF5FF);
    padding: 2rem;
    text-align: center;
  }
  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  .video-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    align-content: center;
  }
  .video-card:hover {
    transform: translateY(-5px);
  }
  .video-card iframe {
    width: 100%;
    height: 200px;
    border: none;
  }
  .video-title {
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #5e2b97;
  }
  @media (max-width: 768px) {
    .video-title {
      font-size: 1rem;
    }
    .section-title{
      font-size: 14px;
    }
  }
  
  .branchsplit{
    margin-top: 60px;
  }
  .branchsplit h3{
  display: inline;
  color: #3658A1;
  }
  
  .branchsplit p{
    font-size: 13px;
  }
  #phonedesign{
    font-size: medium;
  }
  /* #youtube{
    height: 45px;
    margin-top: 0px;
    padding-top: 0px;
  } */