:root {
    --primary-color: #0056b3;
    --primary-light: #3380cc;
    --primary-dark: #004494;
    --secondary-color: #f8f9fa;
    --text-dark: #212529;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --background: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

.section {
    padding: 60px 0;
}

.card {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: none;
    margin-bottom: 2rem;
}

.card-body {
    padding: 2rem;
}

.solution-item, .content-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    margin-bottom: 0;
}

.solution-item:last-child, .content-item:last-child {
    border-bottom: none;
}

h2 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3, .h3 {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

h4, .h4 {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.list-unstyled li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.list-unstyled li:before {
    content: "-";
    position: absolute;
    left: 0;
}

/* Pre-footer and Footer */
.pre-footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

.pre-footer h6 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.pre-footer a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.pre-footer a:hover {
    color: var(--primary-color);
}

.footer-section {
    font-family: 'Inter', sans-serif;
}

.footer-section .social-links a {
    font-size: 18px;
    transition: color 0.3s;
}

.footer-section .social-links a:hover {
    color: var(--bs-primary) !important;
}

.footer-section ul li a {
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--bs-primary) !important;
}

.footer-section i {
    width: 20px;
}


/* Utility classes */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--text-light) !important;
}

.bg-light {
    background-color: var(--secondary-color) !important;
}

/* Animation classes */
[data-aos] {
    transition-duration: 600ms;
    transition-timing-function: ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* Navbar customization */
.navbar {
    background-color: var(--white) !important;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-dark) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.dropdown-item {
    color: var(--text-light);
}

.dropdown-item:hover {
    color: var(--primary-light);
    background-color: var(--primary-color);
}

/* Primary colored elements */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Section styling */
section {
    background-color: var(--white);
}

section.bg-light {
    background-color: var(--secondary-color) !important;
}

/* Header and overlay styling */
.header .overlay {
    background: linear-gradient(45deg, rgba(0, 86, 179, 0.9), rgba(0, 68, 148, 0.9));
}

/* Footer styling */
.footer-section {
    background-color: var(--secondary-color) !important;
}

.footer-section a:hover {
    color: var(--primary-color) !important;
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

/* Title and heading styles */
.title {
    color: var(--primary-color);
}

/* Custom animations */
@keyframes fadeInBlue {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        color: var(--primary-color);
    }
}

.animate-text {
    animation: fadeInBlue 0.8s ease-out forwards;
} 