/* Root Variables */
:root {
    /* Primary Colors */
    --primary-1: #2C3E50; /* Deep Blue-Gray */
    --primary-2: #E74C3C; /* Vibrant Red */
    --primary-3: #27AE60; /* Fresh Green */
    --primary-4: #F39C12; /* Warm Orange */
    --primary-5: #9B59B6; /* Rich Purple */
    
    /* Light Shades */
    --primary-1-light: #34495E;
    --primary-2-light: #EC7063;
    --primary-3-light: #52BE80;
    --primary-4-light: #F5B041;
    --primary-5-light: #AF7AC5;
    
    /* Dark Shades */
    --primary-1-dark: #1A252F;
    --primary-2-dark: #C0392B;
    --primary-3-dark: #1E8449;
    --primary-4-dark: #D68910;
    --primary-5-dark: #7D3C98;
    
    /* Gradients */
    --gradient-1: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-5) 100%);
    --gradient-2: linear-gradient(135deg, var(--primary-2) 0%, var(--primary-4) 100%);
    --gradient-3: linear-gradient(135deg, var(--primary-3) 0%, var(--primary-1) 100%);
    --gradient-4: linear-gradient(135deg, var(--primary-4) 0%, var(--primary-2) 100%);
    --gradient-5: linear-gradient(135deg, var(--primary-5) 0%, var(--primary-3) 100%);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Typography - Conservative Sizes */
h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.625rem;
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1030;
    position: relative;
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-1) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-size: 12px !important;
    color: var(--primary-1);
    font-weight: 500;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-2);
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, -50px) rotate(180deg); }
}

.hero-section h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section h3 {
    color: var(--primary-4-light);
    margin-bottom: 1rem;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

/* Section Styles */
.about-section,
.features-section,
.team-section,
.casestudy-section,
.timeline-section,
.coreinfo-section,
.blog-section,
.gallery-section {
    padding: 4rem 0;
}

.services-section,
.priceplan-section,
.reviews-section,
.process-section,
.career-section,
.contact-section,
.faq-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

/* Feature Boxes */
.feature-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-box i {
    color: var(--primary-3);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h5 {
    padding: 1rem 1.5rem 0;
    color: var(--primary-1);
}

.service-card p {
    padding: 0 1.5rem;
    color: #666;
}

.service-card ul {
    padding: 0 1.5rem;
    list-style: none;
    flex-grow: 1;
}

.service-card ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #666;
}

.service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-3);
}

.service-card .price {
    background: var(--gradient-2);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: auto;
}

/* Price Cards */
.price-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    background: var(--gradient-3);
    color: white;
    transform: scale(1.05);
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card h4 {
    color: var(--primary-1);
    margin-bottom: 1rem;
}

.price-card.featured h4 {
    color: white;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.price-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.price-card.featured ul li {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-2);
    margin-top: auto;
}

.price-card.featured .price-tag {
    color: white;
}

/* Team Members */
.team-member {
    text-align: center;
    padding: 1.5rem;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 5px solid var(--primary-1-light);
    transition: border-color 0.3s ease;
}

.team-member:hover img {
    border-color: var(--primary-2);
}

.team-member h5 {
    color: var(--primary-1);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
    font-style: italic;
}

/* Testimonials Slider */
.testimonials-slider {
    padding: 2rem 0;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.review-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.review-card h6 {
    color: var(--primary-1);
    font-weight: 600;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
    padding: 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-1-light);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 2rem;
    width: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    text-align: left;
}

.timeline-date {
    background: var(--primary-2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-3);
    box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.25);
}

.contact-form .btn-primary {
    background: var(--gradient-2);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h5 {
    padding: 1rem 1.5rem 0;
    color: var(--primary-1);
}

.blog-card p {
    padding: 0 1.5rem;
    color: #666;
}

.blog-card .read-more {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    margin: 0 1.5rem 1.5rem;
    color: var(--primary-2);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-card .read-more:hover {
    color: var(--primary-2-dark);
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: white;
    color: var(--primary-1);
    font-weight: 600;
    padding: 1.25rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-1-light);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.25rem;
    background: #f8f9fa;
}

/* Gallery */
.gallery-section img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--primary-1-dark);
    color: white;
}

.footer h5 {
    color: var(--primary-4);
    margin-bottom: 1rem;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-4) !important;
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 5rem 0 1rem;
    background: #f8f9fa;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

/* Info Boxes */
.info-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box i {
    color: var(--primary-4);
}

/* Career Cards */
.career-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.career-card:hover {
    transform: translateY(-5px);
}

.career-card h5 {
    color: var(--primary-1);
    margin-bottom: 1rem;
}

.career-card p:last-child {
    color: var(--primary-3);
    font-weight: 600;
    margin-bottom: 0;
}

/* Case Study Cards */
.case-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-card h5 {
    padding: 1rem 1.5rem 0;
    color: var(--primary-1);
}

.case-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item i {
    color: var(--primary-5);
    margin-bottom: 1rem;
}

/* Space Page */
#space {
    min-height: calc(100vh - 200px);
    background: var(--gradient-5);
    position: relative;
    overflow: hidden;
}

#space::before,
#space::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

#space::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: float 15s infinite ease-in-out;
}

#space::after {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 10%;
    animation: float 20s infinite ease-in-out reverse;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
} 