/* Custom Modern CSS for FBKN */

:root {
    --primary-color: #1a237e;
    --secondary-color: #fbc02d;
    --accent-color: #ff5722;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
}

/* Navbar Enhancements */
.ftco_navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
    margin-right: 15px;
    vertical-align: middle;
}

.navbar-nav .nav-link {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    position: relative;
    padding: 10px 20px !important;
}

.navbar-nav .nav-link.btn {
    color: var(--white) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

/* Hero Slider */
.home-slider .slider-item {
    height: 90vh !important;
    min-height: 600px;
}

.home-slider .slider-text h1 {
    font-weight: 900;
    font-size: 4rem;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.home-slider .slider-text h1 span {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

/* Section Titles */
.heading-section h2 {
    font-weight: 900;
    font-size: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.heading-section h2 span {
    color: var(--primary-color);
}

.heading-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Program Cards */
.services {
    background: var(--white) !important;
    border-radius: 15px;
    margin: 15px !important;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 40px 20px !important;
    flex: 1 0 18%;
}

.services:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.services .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px !important;
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f5;
    border-radius: 50%;
    padding: 15px;
    transition: var(--transition);
}

.services:hover .icon {
    background: var(--secondary-color);
}

.services .icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1));
}

.services .heading {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.services p {
    font-size: 0.9rem;
    color: #666;
}

/* Feature Sections */
.wrap-about {
    border-radius: 20px;
    overflow: hidden;
}

.services-2 .icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.services-2 h3 {
    font-weight: 700;
    font-size: 1.3rem;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-secondary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #333 !important;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Testimonial */
.testimonial {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin: 20px;
    text-align: center;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Gallery */
.staff {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}

.staff .img-fluid {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.staff-body {
    padding: 20px;
}

.staff-name {
    font-weight: 700;
    color: var(--primary-color);
}

/* Tables */
.table {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow);
}

.table thead th {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px;
}

.table tbody td {
    padding: 15px;
    vertical-align: middle;
}

/* WhatsApp Floating Button */
.wa-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-float:hover {
    text-decoration: none;
    color: #FFF;
    transform: scale(1.1);
}

/* Inner Pages Hero */
.hero-wrap-2 {
    height: 400px !important;
    position: relative;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
}

.hero-wrap-2 .overlay {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-wrap-2 .bread {
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumbs {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.breadcrumbs span a {
    color: var(--secondary-color);
}

/* Animations */
@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animate {
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

.slideIn {
    animation-name: slideIn;
}

/* DataTables Styling */
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
}

.dataTables_wrapper .dataTables_filter input {
    border-radius: 50px !important;
    padding: 5px 15px !important;
    border: 1px solid #ddd !important;
}
