:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --text-color: #333;
    --text-light: #fff;
    --gradient-main: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    --gradient-overlay: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-color) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-primary {
    background: var(--secondary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-overlay), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-color: var(--primary-color); /* Fallback color */
    color: white;
    padding: 150px 0 100px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Service Cards */
.services-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-main);
    transition: height 0.3s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover h3, 
.service-card:hover p, 
.service-card:hover .icon-box {
    color: white;
}

.service-card .icon-box {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card p {
    color: #666;
    transition: color 0.3s ease;
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
}

.location-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 600;
    margin: 0 10px;
}

/* Features/Software Section */
.software-section {
    padding: 80px 0;
    background: var(--dark-bg);
    color: white;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* Footer */
footer {
    background: #111;
    color: #aaa;
    padding: 60px 0 20px;
}

footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: white;
}
