* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    padding-top: 76px;
    color: #1a1a2e;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0d6efd !important;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000 2000"><path fill="rgba(13,110,253,0.05)" d="M0,0 L2000,0 L2000,2000 L0,2000 Z M1000,500 L1100,700 L900,700 Z M1500,1200 L1600,1400 L1400,1400 Z M500,1500 L600,1700 L400,1700 Z"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

/* Page Hero */
.page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

/* Divider */
.divider {
    width: 80px;
    height: 4px;
    background: #0d6efd;
    margin: 1rem 0;
}

.divider.bg-white {
    background: white;
}

/* Hover Cards */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.1) !important;
}

/* Service Cards */
.service-card,
.latest-card,
.consulting-card,
.training-card {
    background: white;
    border-radius: 1rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.service-card:hover,
.latest-card:hover,
.consulting-card:hover,
.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.latest-card {
    background: #f8f9fa;
    border-radius: 1rem;
}

.consulting-card,
.training-card {
    background: white;
    border-left: 4px solid #0d6efd;
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 1rem;
}

/* Timeline Steps */
.timeline-step {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.timeline-step:hover .step-number {
    transform: scale(1.1);
}

/* Approach Steps */
.step-num {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Counters */
.counter {
    font-weight: 700;
}

/* Footer */
.footer {
    background: #0a0a0a !important;
}

.footer a:hover {
    color: #0d6efd !important;
    transition: color 0.3s ease;
}

.social-links a {
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0d6efd !important;
}

/* Contact Form */
.contact-form {
    background: white;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        text-align: center;
    }
    
    .hero-section .d-flex {
        justify-content: center;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .divider {
        margin-left: auto;
        margin-right: auto;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    animation-duration: 0.8s;
}

/* Map Container */
.map-container {
    border-radius: 1rem;
}

/* Button Styles */
.btn-primary {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
}

/* Card Styles */
.card {
    border-radius: 1rem;
    overflow: hidden;
}

/* Image Styles */
img {
    object-fit: cover;
}

/* List Styles */
.list-unstyled li {
    margin-bottom: 0.5rem;
}

/* Badge Styles */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}