@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

* { font-family: 'Inter', sans-serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }

body { 
    background: #ffffff;
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(135deg, #001f3f 0%, #003d7a 50%, #005c99 100%);
}

.accent-gold { color: #d4a574; }
.bg-accent-gold { background-color: #d4a574; }
.border-accent-gold { border-color: #d4a574; }

.nav-link {
    position: relative;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a574;
    transition: width 0.3s ease;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #001f3f;
}

.card-premium {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #001f3f, #d4a574);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.12);
    border-color: #d4a574;
}

.card-premium:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, #001f3f, #003d7a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #d4a574;
    transition: all 0.3s ease;
}

.card-premium:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #d4a574, #e5c499);
    color: #001f3f;
}

.cta-button {
    background: #001f3f;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #001f3f;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
    color: #001f3f;
}

.cta-button-secondary {
    background: transparent;
    color: #001f3f;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #001f3f;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.cta-button-secondary:hover {
    background: #001f3f;
    color: white;
}

.cta-button-gold {
    background: #d4a574;
    color: #001f3f;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #d4a574;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.cta-button-gold:hover {
    background: #001f3f;
    color: #d4a574;
}

.divider-section {
    border-top: 1px solid #e5e5e5;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4a574;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.industry-card {
    background: #f9f9f9;
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.industry-card:hover {
    background: #ffffff;
    border-color: #d4a574;
    transform: translateY(-4px);
}

.industry-icon {
    font-size: 48px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    color: #d4a574;
    transform: scale(1.15);
}

.testimonial-card {
    background: #f5f5f5;
    padding: 40px 32px;
    border-radius: 8px;
    position: relative;
    border-left: 4px solid #d4a574;
}

.quote-mark {
    font-size: 48px;
    color: #d4a574;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
}

.full-width-section {
    width: 100%;
}

.overlay-text {
    position: relative;
    z-index: 10;
}

.case-study-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
    display: flex;
    align-items: flex-end;
}

.case-study-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.case-study-content {
    position: relative;
    z-index: 10;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 31, 63, 0.9), transparent);
    width: 100%;
    color: white;
}

.counter {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}
/* Dropdown Animation */
.dropdown-enter {
  opacity: 0;
  transform: translateY(-6px);
}

.dropdown-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown-exit {
  opacity: 1;
  transform: translateY(0);
}

.dropdown-exit-active {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}
