/* Base styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1f2937;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: 700;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Prevent underline on navigation and button links */
.navbar a:hover,
.btn:hover {
    text-decoration: none;
}

/* Hero section */
.hero-bg {
    background-color: #2A665C;
    background-image: linear-gradient(135deg, #2A665C 0%, #358476 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.1) 100%);
}

/* Navigation */
.navbar-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Custom font styles */
.hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 800;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtext {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-subtext {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.card-body {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
}

.team-name {
    font-size: 1.125rem;
    font-weight: 700;
}

.team-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
}

.team-bio {
    font-size: 0.9375rem;
    line-height: 1.6;
}

.testimonial-quote {
    font-size: 0.9375rem;
    font-style: italic;
    font-weight: 400;
}

.testimonial-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
}

/* Testimonial carousel */
.swiper {
    width: 100%;
    padding-bottom: 50px;
}

.swiper-pagination-bullet-active {
    background: #3B82F6 !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #3B82F6 !important;
}

/* Transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Hover effects */
.hover-shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Responsive images */
.responsive-img {
    max-width: 100%;
    height: auto;
} 