/*header*/
.header {
    background-color: #273d4e !important;
}


/* Smooth section reveal */
.section-title {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button hover effect */
.partners-section .btn-info:hover {
    background-color: green;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}


/* Footer Navigation Link Styles */
.footer-logo-img {
    max-height: 170px;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.footer-links a {
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffffcc;
}

.footer-links a:hover::after {
    width: 80%;
}

.simple-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-footer {
    background-color: #111;
}

.social-icons a {
    font-size: 1.6rem;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.3);
}

.social-icons a.twitter:hover {
    color: #1da1f2;
}

.social-icons a.facebook:hover {
    color: #1877f2;
}

.social-icons a.instagram:hover {
    color: #e1306c;
}

.social-icons a.linkedin:hover {
    color: #0077b5;
}

.social-icons a.youtube:hover {
    color: #ff0000;
}


.footer-dropdown {
    position: relative;
    display: inline-block;
}

.footer-dropdown-menu {
    position: absolute;
    top: 100%;
    /* shows below the link */
    left: 0;
    background-color: #343a40;
    padding: 10px 0;
    border-radius: 5px;
    display: none;
    z-index: 1000;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-dropdown:hover .footer-dropdown-menu,
.footer-dropdown-menu:hover {
    display: block;
}

.footer-dropdown-menu li {
    list-style: none;
    padding: 5px 20px;
}

.footer-dropdown-menu a {
    color: white;
    text-decoration: none;
    display: block;
}

.footer-dropdown-menu a:hover {
    color: #ffc107;
    text-decoration: underline;
}

.footer-dropdown .dropdown-toggle {
    color: white;
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px;
}




#partners {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background-color: #f4f6f9;
}

#partners .table-container {
    width: 100%;
    max-width: 1100px;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
    margin-top: 150px;
}

/* Table Styling */
#partners table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

#partners thead {
    background-color: #007bff;
    color: #fff;
}

#partners th,
#partners td {
    padding: 14px 18px;
    font-size: 15px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
}

#partners th {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Table Row Hover */
#partners tbody tr:hover {
    background-color: #f8fbff;
    transition: background-color 0.3s;
}

/* Logo and Flag Styling */
#partners .img-fluid {
    max-width: 80px;
    height: auto;
    transition: transform 0.3s ease;
}

#partners .img-fluid:hover {
    transform: scale(1.05);
}

#partners .flag {
    width: 24px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
}

.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination button {
    padding: 8px 16px;
    margin: 0 4px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

.pagination button:disabled {
    background-color: #aaa;
    cursor: not-allowed;
}


.page-btn {
    display: inline-block;
    padding: 10px 18px;
    margin: 5px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: linear-gradient(145deg, #28a745, #1e7e34);
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
}

.page-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
    background: linear-gradient(145deg, #155724, #1e7e34);
}

.page-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.page-btn.active {
    background: linear-gradient(145deg, #6f42c1, #5a32a3);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.5);
    transform: scale(0.97);
  }
  