:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2c5282;
    --accent-color: #c9a86c;
    --light-bg: #f7f9fc;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.nav-link {
    color: #fff !important;
    margin: 0 0.5rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
}

.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
}

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

.hero-section {
    background: linear-gradient(rgba(30, 58, 95, 0.85), rgba(30, 58, 95, 0.92)), 
                url('images/1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-tagline {
    font-size: 1.3rem;
    opacity: 0.95;
}

.section-padding {
    padding: 5rem 0;
}

.about-section {
    background-color: var(--light-bg);
}

.section-title {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-card {
    background: #fff;
    border: none;
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.cta-section {
    background: linear-gradient(rgba(30, 58, 95, 0.9), rgba(30, 58, 95, 0.9)), 
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1200&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-accent:hover {
    background-color: #b8975a;
    color: var(--primary-color);
    transform: scale(1.05);
}

footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #152a45 100%);
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-heading {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.footer-text {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.85;
}

.hours-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1.05rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.contact-item i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.2rem;
    min-width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.about-img-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid var(--accent-color);
    border-radius: 15px;
    z-index: 0;
}

.about-img-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
}

.company-info {
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.company-info p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.nexum-code-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nexum-code-logo .nexum {
    background: linear-gradient(90deg, #ffffff 0%, #888888 25%, #ffffff 50%, #888888 75%, #ffffff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nexumShine 5s linear infinite;
}

@keyframes nexumShine {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.nexum-code-logo:hover .nexum {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    filter: brightness(1.2);
}

.nexum-code-logo span {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #ff0080 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nexum-code-logo span::before {
    content: 'Code';
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(15px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.nexum-code-logo:hover span::before {
    opacity: 0.7;
    filter: blur(30px);
}

.nexum-code-logo:hover span {
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.8);
}
