/* site.css - custom styles */
@font-face {
    font-family: 'Timeburner';
    src: url('../fonts/timeburner-xjb8.ttf') format('truetype');
}

@font-face {
    font-family: 'TimeburnerBold';
    src: url('../fonts/timeburnerbold-pegr.ttf') format('truetype');
}

body, html {
    font-family: Tahoma, Verdana, sans-serif;
}

/* Common Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #1a365d 0%, #2B6CB0 100%);
    --primary-dark: #1a365d;
    --primary-light: #2B6CB0;
    --text-dark: #2D3748;
    --text-light: #4A5568;
    --background-light: #F7FAFC;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.1);
    --transition-standard: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Navigation */
.navbar-brand img {
    height: 50px;
}

.top-nav {
    background-color: #e7e0c7;
    color: #008db9;
    display: flex;
    gap: 2rem;
    padding: 1rem;
    z-index: 1000;
}

    .top-nav a {
        color: black;
        text-decoration: none;
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        transition: background-color 0.3s ease;
    }

        .top-nav a:hover {
            background-color: #eee;
            color: blue;
        }

/* Page Header Styles */
.page-header {
    background: var(--primary-gradient);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Card Styles */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition-standard);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--primary-gradient);
    padding: 6rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-button {
    background: white;
    color: var(--primary-dark);
    padding: 1rem 2rem;
    border-radius: 30px;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition-standard);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Contact Form Styles */
.contact-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-control {
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

.submit-button {
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: var(--transition-standard);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.2);
}

.contact-info {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary-dark);
}

.contact-text {
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: #e7e0c7;
    color: #008db9;
    padding: 20px 0;
    text-align: center;
}

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

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

/* Parallax logos */
.logos-track {
    animation: scroll 20s linear infinite;
}

.testimonial-track {
    animation: scroll 10s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Counter styling */
.counter .count {
    font-size: 3rem;
    animation: countUp 2s ease-out forwards;
}

/* Fade-in on scroll */
[data-aos] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

    [data-aos].aos-animate {
        opacity: 1;
    }

/* Sticky navbar (assuming MainLayout applies .sticky-top) */
/* no extra CSS needed�Bootstrap�s .sticky-top does it */

.services {
    padding: 40px 0;
}

    .services .card {
        border: thick;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

/* Common Header Styles */
.page-header, .hero {
    background: var(--primary-gradient);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before, .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.page-header::after, .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.header-content, .hero-content {
    position: relative;
    z-index: 2;
}

/* Common Card Styles */
.service-card, .contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition-standard);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Common Button Styles */
.cta-button, .submit-button {
    padding: 1rem 2rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: var(--transition-standard);
}

.cta-button {
    background: white;
    color: var(--primary-dark);
}

.submit-button {
    background: var(--primary-gradient);
    color: white;
}

.cta-button:hover, .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Common Section Styles */
.service-section, .contact-section {
    padding: 5rem 0;
    background: var(--background-light);
}

/* Common Text Styles */
.service-title, .expertise-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description, .expertise-description {
    color: var(--text-light);
    line-height: 1.6;
}
