/* CSS Variables for Color Palette */
:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8660;
    --secondary-color: #004e89;
    --secondary-dark: #003a66;
    --secondary-light: #1a6ba8;
    --accent-color: #f7931e;
    --accent-dark: #d87c1a;
    --accent-light: #ffb347;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --light-bg: #f8f9fa;
    --dark-bg: #212529;
    --text-dark: #333333;
    --text-light: #ffffff;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  overflow-x: hidden;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: bold;
    color: var(--text-light) !important;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#hero-title-1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

#hero-subtitle-1 {
    font-size: 1.5rem;
    color: var(--accent-light);
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Form Styles */
.form-control {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

/* Utility Classes */
.py-5 { padding: 3rem 0; }
.mb-4 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }

/* Header */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: bold;
    color: var(--text-light) !important;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../ELD_images/hero-bg.webp') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

#hero-title-1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

#hero-subtitle-1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-light);
}

#hero-desc-1 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

/* Typography */
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--secondary-color); }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
h5 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin: 1rem 0;
}

.service-card ul li {
    padding: 0.25rem 0;
    color: var(--text-dark);
}

.service-card ul li::before {
    content: '✓';
    color: var(--success-color);
    margin-right: 0.5rem;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* Features */
.feature-item {
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item i {
    color: var(--primary-color);
}

/* Price Cards */
.price-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.price-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.price-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.price-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

/* Team Members */
.team-member {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-3px);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.team-member h4 {
    color: var(--primary-color);
    margin-top: 1rem;
}

.team-member p {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Reviews Slider */
.reviews-slider {
    padding: 2rem 0;
}

.review-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin: 1rem;
}

.review-item p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.review-item h5 {
    color: var(--primary-color);
    font-weight: bold;
}

/* Process Steps */
.process-step {
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin: 2rem 0;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
}

.timeline-item:nth-child(even) {
    margin-left: 55%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::before {
    right: -30px;
}

.timeline-item:nth-child(even)::before {
    left: -30px;
}

.timeline-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Career Items */
.career-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.career-item:hover {
    transform: translateY(-3px);
}

.career-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.career-item span {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Info Items */
.info-item {
    text-align: center;
    padding: 2rem 1rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
}

.info-item i {
    color: var(--primary-color);
}

.info-item h4 {
    color: var(--secondary-color);
    margin: 1rem 0;
}

/* Contact Info */
.contact-info {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
}

/* Blog Items */
.blog-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-3px);
}

.blog-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-item h4 {
    color: var(--primary-color);
    margin: 1rem 1rem 0.5rem;
}

.blog-item p {
    margin: 0 1rem;
}

.blog-item a {
    display: inline-block;
    margin: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.blog-item a:hover {
    color: var(--primary-dark);
}

/* Case Study Items */
.case-study-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.case-study-item:hover {
    transform: translateY(-3px);
}

.case-study-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-item h4 {
    color: var(--primary-color);
    margin: 1rem 1rem 0.5rem;
}

.case-study-item p {
    margin: 0 1rem 1rem;
}

/* FAQ */
.accordion-button {
    background: #ffffff;
    border: none;
    box-shadow: none;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Gallery */
#gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-bg), var(--secondary-dark)) !important;
}

footer h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
}

footer p {
    margin-bottom: 0.5rem;
}

footer i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .navbar, footer { display: none; }
    body {
  overflow-x: hidden; font-size: 12pt; }
    h1 { font-size: 18pt; }
    h2 { font-size: 16pt; }
    h3 { font-size: 14pt; }
} 