:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --navbar-height: 76px;
}

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section h2 {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 20px auto;
}

/* Navbar Styles */
.navbar {
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(44, 62, 80, 0.98) !important;
    padding: 0.5rem 0;
    box-shadow: var(--box-shadow);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    position: relative;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-section .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Why Us Cards */
.why-us-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-us-card:hover {
    transform: translateY(-5px);
}

.why-us-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.why-us-card:hover .icon {
    background: var(--secondary-color);
    color: white;
}

/* Contact Section */
.contact-section {
    position: relative;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('/images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.visible {
    animation: fadeInUp 1s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }
}

/* Button Styles */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-width: 2px;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Image Styles */
.img-feature {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.img-feature:hover {
    transform: scale(1.02);
}

/* Stats Counter */
.stats-counter {
    text-align: center;
    margin: 2rem 0;
}

.stats-counter .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stats-counter .label {
    color: var(--text-color);
    font-weight: 500;
}

/* Bank Transactions Table Fixes */
#bankTxTable th, #bankTxTable td {
    color: #fff !important;
    background: transparent !important;
    font-weight: 500;
}
#bankTxTable tr {
    background: rgba(34, 34, 54, 0.95) !important;
}
#bankTxTable tr:nth-child(even) {
    background: rgba(44, 44, 74, 0.98) !important;
}
#bankTxTable td {
    vertical-align: middle;
    font-size: 1rem;
    letter-spacing: 0.01em;
}
#bankTxTable .badge {
    font-size: 1em;
    padding: 0.5em 1.2em;
}

/* Make sure description text is not faded */
#bankTxTable td:nth-child(2) {
    color: #fff !important;
    opacity: 1 !important;
    font-weight: 500;
    white-space: pre-line;
} 