@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@400;500;700&display=swap');

:root {
    --dark-green: #122223;
    --light-green: #293836;
    --btn-hover-green: #404c4a;
    --grey-green: #2d3b39;
    --sand: #da9e63;
    --btn-hover-sand: #e6bd94;
}

body {
    scroll-behavior: smooth;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #c6a769;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.btn-primary {
    background-color: #1a365d;
    color: white;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #0f172a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #c6a769;
    color: #1a365d;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background-color: #b89a5e;
    transform: translateY(-2px);
}

.expertise-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 3px solid transparent;
}

.expertise-card:hover {
    transform: translateY(-8px);
    border-color: #c6a769;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.team-member-img {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-member:hover .team-member-img {
    transform: scale(1.05);
}

.hero-overlay {
    background: linear-gradient(45deg, rgba(26, 54, 93, 0.9) 0%, rgba(26, 54, 93, 0.7) 100%);
}

.stat-number {
    font-size: 3.5rem;
    line-height: 1;
    background: linear-gradient(45deg, #1a365d, #c6a769);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 2px #c6a769;
}

.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-500 {
    animation-delay: 0.5s;
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}  
