 /*About page */
 
 .about-header {
      background: linear-gradient(135deg, #092747, #0d55a1);
      color: white;
      padding: 80px 0;
      text-align: center;
    }

    .about-header h1 {
      font-weight: bold;
      font-size: 3rem;
    }

    .section-title {
      font-weight: bold;
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .highlight {
      color: #092747;
    }

    .feature-icon {
      font-size: 30px;
      color: #092747;
    }

    .team-card img {
      border-radius: 10px;
    }

    .bg-light-alt {
      background-color: #f8f9fa;
    }
    /*contact page */
     .contact-container {
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
      padding: 40px;
    }
    .contact-header h2 {
      font-weight: 700;
    }
    .contact-header p {
      color: #6c757d;
    }
    .form-control:focus {
      box-shadow: none;
      border-color: #0d6efd;
    }
    .contact-info i {
      color: #0d6efd;
      margin-right: 10px;
    }
    .btn-primary {
      background-color: #0d6efd;
      border: none;
    }
    /*blog page*/
     .blog-header {
     background: linear-gradient(135deg, #092747, #0d55a1);
      color: white;
      padding: 60px 0;
      text-align: center;
    }


    .partners-section {
       background: linear-gradient(135deg, #092747, #0d55a1);
      color: white;
      padding: 60px 20px;
      overflow: hidden;
    }

    .logo-track {
      display: flex;
      width: max-content;
      animation: scrollLeft 25s linear infinite;
      gap: 30px;
    }

    .logo-circle {
      background-color: white;
      border-radius: 50%;
      width: 100px;
      height: 100px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }

    .logo-circle img {
      max-width: 80%;
      max-height: 80%;
    }

    @keyframes scrollLeft {
      from {
        transform: translateX(100%);
      }
      to {
        transform: translateX(-100%);
      }
    }

    .scrolling-wrapper {
      white-space: nowrap;
      overflow: hidden;
    }

    .card {
      border: none;
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .card img {
      height: 180px;
      object-fit: cover;
    }

    .btn-read {
      background-color: #0d6efd;
      color: white;
      font-size: 0.9rem;
      padding: 6px 12px;
    }

    .btn-read:hover {
      background-color: #084298;
      color: white;
    }