:root {
    --primary-color: #0f172a; /* Deep Navy */
    --secondary-color: #f59e0b; /* Vibrant Gold */
    --accent-color: #3b82f6; /* Bright Blue */
    --text-main: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    border: none;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #d97706;
    transform: translateY(-3px);
}

/* Glassmorphism Classes */
.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(31, 38, 135, 0.12);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 100px;
    background: radial-gradient(circle at top right, #e2e8f0 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(245, 158, 11, 0.05);
    border-radius: 50%;
    z-index: 0;
}

/* Services Page Icons */
.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Footer Styling */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 40px;
}

footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active-nav::after {
    width: calc(100% - 30px);
}

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

/* Image Hover Effects */
img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.img-hover-container {
    overflow: hidden;
    border-radius: 20px;
}

img:hover {
    transform: scale(1.05);
}

.hero-img-container img:hover {
    transform: scale(1.02) rotate(1deg);
}

/* Micro-animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}
