/* ---------- Tab Styling ---------- */
.tab-link {
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 50px;
    background: linear-gradient(45deg, #ff6b00, #ff4500, #ffd700, #00bfff, #00ff7f);
    background-size: 400% 400%;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tab-link.active {
    animation: gradientBG 5s ease infinite;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.tab-link:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.tab-link i {
    transition: transform 0.3s ease;
}

.tab-link:hover i {
    transform: rotate(20deg);
}

/* Keyframes for animated gradient */
@keyframes gradientBG {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

/* ---------- History Section ---------- */
.history {
    background-image: url('bg.jpg'); 
    background-repeat: no-repeat; 
    background-position: center;
    background-size: cover;
    padding: 1rem; /* replaces p-auto */
}

/* ---------- Buttons ---------- */
.btn1 {
    border: none;
    outline: none;
    height: 50px;
    width: 50%;
    background-color: rgb(0, 135, 225);
    color: white;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
}
.btn1:hover {
    background: white;
    border: 1px solid;
    color: black;
}

.btn {
    border: none;
    outline: none;
    background-color: rgb(0, 135, 100) !important;
    color: white !important;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
}
.btn:hover {
    background: transparent !important;
    border: 1px solid !important;
    color: white !important;
}

/* ---------- Pagination / Margin Example ---------- */
.bs-example {
    margin: 20px;
}

/* ---------- About / History Text Styling ---------- */
.font-italic.lead {
    text-align: justify;
}
