:root {
    --bs-primary: #1a3c6e;
    --bs-secondary: #2c5aa0;
    --bs-accent: #4a90e2;
    --bs-light-blue: #87CEEB;
    --gradient-primary: linear-gradient(135deg, #1a3c6e 0%, #2c5aa0 50%, #4a90e2 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --gradient-accent: linear-gradient(135deg, #87CEEB 0%, #4a90e2 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.hero-section {
    background: linear-gradient(135deg, #1a3c6e 0%, #2c5aa0 50%, #4a90e2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.bg-primary {
    background: linear-gradient(135deg, #1a3c6e 0%, #2c5aa0 50%, #4a90e2 100%) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #1a3c6e 0%, #2c5aa0 50%, #4a90e2 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(26, 60, 110, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 60, 110, 0.4);
}

.btn-outline-primary {
    border-color: #1a3c6e !important;
    color: #1a3c6e !important;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #1a3c6e 0%, #2c5aa0 50%, #4a90e2 100%) !important;
    border-color: #1a3c6e !important;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.text-primary {
    color: #1a3c6e !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a3c6e 0%, #2c5aa0 50%, #4a90e2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.navbar-brand img {
    height: 60px;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.contact-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.footer {
    background: #1a1a1a;
    color: white;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.container {
    max-width: 1200px;
}

.card {
    display: flex;
    flex-direction: column;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-text {
    flex: 1;
}

.list-unstyled li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(26, 60, 110, 0.1);
}

.list-unstyled li:last-child {
    border-bottom: none;
}

.icon-circle {
    transition: all 0.3s ease;
}

.card:hover .icon-circle {
    transform: scale(1.1);
}

.position-relative {
    position: relative;
    z-index: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    position: relative;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

.fas, .far, .fab {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
}

.footer .fas {
    font-size: 14px !important;
    line-height: 1 !important;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        text-align: center;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}