/* Primary Color Scheme */
:root {
    --primary: #007bff;
    --primary-dark: #0069d9;
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #343a40;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: white !important; /* Force white background */
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: black !important; /* Black text for brand */
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: black !important; /* Black text for links */
}

/* Mobile menu toggle styles */
.navbar-toggler {
    border-color: black; /* Black border for toggle */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu dropdown styling */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white; /* White background for dropdown */
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 15px rgba(0,0,0,0.1);
        margin-top: 10px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .nav-item {
        margin: 5px 0;
    }
    
    .nav-link {
        padding: 10px 15px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: #f8f9fa;
    }
}

/* Hero Section */


.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('/images/financial.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 150px 0;
    text-align: left;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

/* Adjust logo size in navbar */
.logo {
    height: 40px;
    width: auto;
    margin-right: 13px;
}

/* Page Header */
.page-headerabout {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('/images/team.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 150px 0;
    text-align: left;
}
.page-headercontact {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('/images/contact.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 150px 0;
    text-align: left;
}
.page-headerservice {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('/images/service.webp') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 150px 0;
    text-align: left;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

/* Backgrounds */
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark);
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

/* Client Logos */
.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


/* Contact Form */
.form-control, .form-select {
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
}
.contact-form {
    flex: 1;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
    color: white;
    text-decoration: underline;
}
.bg-deepblue {
    background-color: #1C245A;
  }
  

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}
.team-card {
    transition: transform 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.team-card:hover {
    transform: translateY(-10px);
}
.team-img {
    height: 250px;
    object-fit: cover;
    object-position: top;
}
.team-social {
    background: rgba(0,123,255,0.1);
    padding: 15px 0;
}
.team-social a {
    color: var(--primary);
    margin: 0 5px;
    transition: all 0.3s;
}
.team-social a:hover {
    transform: scale(1.2);
}
/* Read More/Less Button Styling */
.btn-link.text-primary {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-link.text-primary:hover {
    color: var(--primary-dark) !important;
}

.read-more, .read-less {
    display: inline-block;
    margin-top: 10px;
}

.read-more i, .read-less i {
    transition: transform 0.3s;
}

[aria-expanded="true"] .read-more i {
    transform: rotate(180deg);
}

.full-bio {
    text-align: left;
    padding-top: 15px;
}

.full-bio ul {
    padding-left: 20px;
    margin: 10px 0;
}
/* Circular Image Styles */
.ceo-img-circle-container {
    width: 180px;
    height: 180px;
    margin: 20px auto 15px;
    border: 4px solid var(--primary-dark);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ceo-img-circle {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: all 0.4s ease;
}

/* Hover Effects */
.ceo-img-circle-container:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.ceo-img-circle-container:hover .ceo-img-circle {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ceo-img-circle-container {
        width: 150px;
        height: 150px;
    }
}
/* Add this for animated border */
.ceo-img-circle-container {
    position: relative;
}

.ceo-img-circle-container::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid var(--primary-dark);
    border-radius: 50%;
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.ceo-img-circle-container:hover::before {
    opacity: 0.6;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}