/* Study Visa Page Styles */
.study-visa {
    padding: 60px 0;
    background-color: #f8f9fa;
  }
  ul{
    list-style-type: none;
  }
  .study-visa h1 {
    color: #0b1f47;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .study-visa > p {
    color: #6c757d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
  }
  
  .visa-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  .visa-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .visa-card:hover {
    transform: translateY(-5px);
  }
  
  .visa-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .visa-card h3 {
    padding: 20px 20px 10px;
    margin: 0;
    color: #0b1f47;
    font-size: 1.5rem;
  }
  
  .visa-card p {
    padding: 0 20px 20px;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .btn-details {
    display: block;
    text-align: center;
    padding: 12px 0;
    background-color: #0b1f47;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 600;
  }
  
  .btn-details:hover {
    background-color: #ffd700;
    color: #0b1f47;
  }
  
  .visa-process {
    margin-top: 60px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .visa-process h2 {
    color: #0b1f47;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .visa-process ol {
    padding-left: 20px;
    counter-reset: visa-process-counter;
  }
  
  .visa-process li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    counter-increment: visa-process-counter;
  }
  
  .visa-process li::before {
    content: counter(visa-process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background-color: #0b1f47;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .visa-types {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .visa-types {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .study-visa {
      padding: 40px 0;
    }
  
    .study-visa h1 {
      font-size: 2rem;
    }
  
    .visa-types {
      grid-template-columns: 1fr;
    }
  
    .visa-process {
      padding: 30px;
    }
  
    .visa-process h2 {
      font-size: 1.5rem;
    }
  }
  
  