:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #0064e4;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 25px;
}

.header h2 {
    color: var(--primary-color);
    font-size: 2.2em;
    margin-bottom: 10px;
}

.custom-search-container {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.custom-search-input {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.custom-search-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 100, 228, 0.2);
    outline: none;
}

.custom-search-button {
    
  background: #0064e4 !important;
  color: #fff !important;
}

.custom-search-button:hover {
    background: #fff!important;
  color:#0064e4 !important;
  }

.search-input-group {
    position: relative;
}

.search-input-group .form-control {
    padding-right: 40px;
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.filter-group {
    display: flex;
    gap: 15px;
}

.table-responsive {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: 20px;
}

.table {
    margin-bottom: 0;
}

.table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    padding: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.table tbody td {
    padding: 15px;
    vertical-align: middle;
}

.link-cell {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.link-btn {
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9em;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

.link-btn:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.dataTables_wrapper .dataTables_length select {
    padding: 8px 32px 8px 12px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.dataTables_info {
    padding: 15px 0;
    color: var(--secondary-color);
}

.pagination {
    margin: 15px 0 0;
}

.pagination .page-link {
    padding: 8px 16px;
    margin: 0 3px;
    border-radius: 6px;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

[dir="rtl"] {
    text-align: right;
}

.ftco-footer {
    padding: 4em 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #fff;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .ftco-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0064e4, transparent);
    opacity: 0.3;
  }

  .ftco-footer .logo a {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: inline-block;
    position: relative;
  }

  .ftco-footer .logo span {
    display: block;
    font-size: 13px;
    color: #0064e4;
    font-weight: 500;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
  }

  .footer-header {
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-description {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.7;
    margin: 1.5rem 0;
    max-width: 90%;
  }

  .footer-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
  }

  .footer-buttons .btn {
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
  }

  .footer-buttons .btn .ion-ios-arrow-forward {
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
  }

  .footer-buttons .btn:hover .ion-ios-arrow-forward {
    transform: translateX(3px);
  }

  .footer-buttons .btn-primary {
    background: #0064e4;
    border: none;
    box-shadow: 0 4px 15px rgba(0,100,228,0.2);
  }

  .footer-buttons .btn-primary:hover {
    background: #0056c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,100,228,0.3);
  }

  .footer-buttons .btn-light {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff !important;
    backdrop-filter: blur(10px);
  }

  .footer-buttons .btn-light:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.2);
  }

  .ftco-footer-widget {
    margin-bottom: 2.5rem;
  }

  .ftco-footer-widget h2 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
  }

  .ftco-footer-widget h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: #0064e4;
    border-radius: 2px;
  }

  .ftco-footer-widget ul li {
    margin-bottom: 12px;
    list-style: none;
  }

  .ftco-footer-widget ul li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    line-height: 1.4;
  }

  .ftco-footer-widget ul li a:hover {
    color: #fff;
    transform: translateX(5px);
  }

  .ftco-footer-widget .ion-ios-arrow-forward {
    font-size: 12px;
    color: #0064e4;
    margin-right: 10px;
    transition: all 0.3s ease;
    opacity: 0.8;
  }

  .ftco-footer hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 2.5rem 0;
  }

  .copyright {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  @media (max-width: 767.98px) {
    .ftco-footer {
      padding: 3em 0;
    }

    .footer-header {
      text-align: center;
      padding-bottom: 2rem;
      margin-bottom: 2rem;
    }
    
    .footer-buttons {
      margin-top: 1.5rem;
      flex-direction: column;
      align-items: stretch;
    }

    .footer-buttons .btn {
      width: 100%;
    }

    .footer-description {
      text-align: center;
      max-width: 100%;
    }
    
    .ftco-footer-widget {
      text-align: center;
      margin-bottom: 2rem;
    }

    .ftco-footer-widget h2::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .ftco-footer-widget ul li a {
      justify-content: center;
    }

    .ftco-footer-widget ul li a:hover {
      transform: translateX(0) translateY(-2px);
    }
  }
    /* Partners slider styles */
    .slider {
        background: white;
        box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
        height: 100px;
        margin: auto;
        overflow: hidden;
        position: relative;
        width: 80%;
        border-radius: 10px;
      }
  
      .slider::before,
      .slider::after {
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
        content: "";
        height: 100px;
        position: absolute;
        width: 200px;
        z-index: 2;
      }
  
      .slider::after {
        right: 0;
        top: 0;
        transform: rotateZ(180deg);
      }
  
      .slider::before {
        left: 0;
        top: 0;
      }
  
      .slide-track {
        animation: scroll 40s linear infinite;
        display: flex;
        width: calc(250px * 14);
      }
  
      .slide {
        height: 100px;
        width: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;
      }
  
      .slide img {
        max-width: 100%;
        height: auto;
        filter: grayscale(100%);
        transition: filter 0.3s ease;
      }
  
      .slide img:hover {
        filter: grayscale(0%);
      }
  
      @keyframes scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-250px * 7));
        }
      }
      .custom-dropdown-menu {
        display: none;
        position: absolute;
        background-color: #f8f9fa;
        border: 1px solid #e9ecef;
        z-index: 1000;
        border-radius: 2%;
        margin-left: 0%
      }
      
      .custom-menu-item {
        display: block;
        color: #343a40;
        padding: 0.5rem 1rem;
        text-decoration: none;  
        font-size: 80%;
      
      }
      
      .custom-menu-item:hover {
        background-color: #0050b8;
        color: white	;  
        border-radius: 2%;
        transition: all 0.1s ease;
      }
      
      .custom-dropdown:hover .custom-dropdown-menu {
        display: block;
      }
      
      .custom-dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.255em;
        vertical-align: 0.255em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
      }