/*---------------------------------------
      TESTIMONIAL             
  -----------------------------------------*/

  #testimonial .item {
    background: #ffffff;
    margin: 20px 0;
    padding: 4em 3em;
    text-align: left;
  }

  #courses .col-md-4,
  #testimonial .col-md-4 {
    display: block;
    width: 100%;
  }

  #testimonial .item > p {
    font-size: 16px;
    line-height: 26px;
  }

  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  .footer {
    background: linear-gradient(180deg, #050b1f, #020617);
    color: #cbd5f5;
    padding: 80px 8% 40px;
    font-family: system-ui, sans-serif;
  }

  .footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .footer-newsletter h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .footer-newsletter p {
    max-width: 480px;
    opacity: 0.8;
  }
  
  .newsletter-form {
    display: flex;
    background: #0b122f;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .newsletter-form input {
    padding: 14px 16px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    width: 260px;
  }
  
  .newsletter-form button {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 0 24px;
    cursor: pointer;
    font-weight: 600;
  }
  
  .newsletter-form button:hover {
    background: #1d4ed8;
  }
  
  .footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 50px 0;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand p {
    margin: 15px 0 20px;
    font-size: 16px;
    color: #cbd5f5;
  }

  .footer-bottom p {
    color: #cbd5f5;
  }
  
  .logo {
    width: 80%;
    height: auto;
  }

  .socials {
    display: flex;
    gap: 5px;
  }
  
  .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5f5;
    font-size: 14px;
    font-weight: 600;
  
    transition: 
      background 0.25s ease,
      color 0.25s ease,
      transform 0.25s ease;
  }
  
  .social-icon:hover {
    background: #2563eb; /* primary brand blue */
    color: #ffffff;
    transform: translateY(-2px);
  }
  
  .socials a {
    margin-right: 5px;
    color: #cbd5f5;
    text-decoration: none;
    font-size: 22px;
    opacity: 0.8;
  }
  
  .socials a:hover {
    color: #fff;
  }
  
  .footer-links h4,h5 {
    color: #fff;
    margin-bottom: 15px;
  }

  .footer-links p {
    color: #cbd5f5;
    margin-bottom: 2px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #cbd5f5;
    font-size: 16px;
    opacity: 0.8;
  }
  
  .footer-links a:hover {
    color: #2563eb;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-legal a {
    margin-left: 20px;
    text-decoration: none;
    color: #cbd5f5;
    opacity: 0.7;
  }
  
  .footer-legal a:hover {
    opacity: 1;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .footer-content {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .footer-content {
      grid-template-columns: 1fr;
    }
  
    .footer-newsletter {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .newsletter-form {
      width: 100%;
    }
  
    .newsletter-form input {
      width: 100%;
    }
  }
  

  .newsletter-form .form-control {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid #858585;
    height: 50px;
    margin: 5px 0;
  }

   /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
    margin-bottom: 5px;
  }

  .social-icon li a {
    border-radius: 100px;
    color: #08a2e8;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;
    margin: 5px 5px 5px 0;
  }

  .social-icon li a:hover {
    background: #08a2e8;
    color: #ffffff;
  }
