:root {
    --primary: #005f73;
    --primary-dark: #0a4c6b;
    --secondary: #bb3e03;
    --accent: #ee9b00;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    padding-top: 72px; /* For fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 100px;
}

/* Card Hover Effect */
.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;
}

/* Blog Badge */
.badge {
    font-weight: 500;
    padding: 5px 10px;
}

/* Footer Links */
footer a {
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 1 !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section .d-flex {
        justify-content: center;
    }
    
    .experience-badge {
        position: static;
        margin: 20px auto 0;
        width: 80px;
    }
}