:root {
    --primary-color: #6c7ae0;
    --primary-light: #8a96ff;
    --primary-dark: #4f5cc9;
    --secondary-color: #ff6b6b;
    --secondary-light: #ff8a8a;
    --secondary-dark: #ff4757;
    --accent-color: #4ecdc4;
    --accent-light: #7ed3cc;
    --accent-dark: #36b9af;
    --success-color: #2ed573;
    --success-light: #7bed9f;
    --success-dark: #26de81;
    --warning-color: #ffa502;
    --warning-light: #ffb347;
    --warning-dark: #ff9500;
    --light-bg: #f8f9fa;
    --dark-text: #2c2c2c;
    --gray-text: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* Header Styles */
#header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

#navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

#navbar-brand:hover {
    color: var(--primary-dark);
}

.navbar-nav .nav-link {
    color: var(--dark-text);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    overflow: hidden;
    padding-top: 100px;
    min-height: 70vh;
}

#hero-title-1, .hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

#hero-subtitle-1, .hero-section h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#hero-desc-1, .hero-section p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

#hero-cta {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

#hero-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

#hero-image {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-light));
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: var(--gray-text);
    line-height: 1.7;
}

/* Services Section */
#services .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    height: 100%;
}

#services .card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

#services .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#services .card:hover .card-img-top {
    transform: scale(1.05);
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* Testimonials Section */
#testimonials {
    background: var(--light-bg);
}

#testimonials .card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

#testimonials .card:hover {
    transform: translateY(-5px);
}

.rating {
    color: var(--warning-color);
}

/* Gallery Section */
#gallery img {
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

#gallery img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* FAQ Section */
#faq .card {
    border: none;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

#faq .card:hover {
    transform: translateY(-3px);
}

#faq .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* Team Section */
#team .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

#team .card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

#team .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Contact Section */
#contact {
    background: var(--light-bg);
}

#contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

#contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(108, 122, 224, 0.25);
}

#contact-form .btn {
    background: var(--primary-color);
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

#contact-form .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
#footer {
    background: var(--dark-text);
    color: var(--white);
}

#footer h5, #footer h6 {
    color: var(--white);
}

#footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--white);
}

#footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

#site-copyright {
    color: rgba(255, 255, 255, 0.6);
}

/* Breadcrumb */
#breadcrumb {
    background: var(--light-bg);
}

.breadcrumb-icon {
    height: 24px;
    width: auto;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Cards */
.card {
    border-radius: 15px;
    border: none;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

/* Utilities */
.bg-light {
    background-color: var(--light-bg);
}

.text-primary {
    color: var(--primary-color);
}

/* Animation */
@media (prefers-reduced-motion: no-preference) {
    [data-sal] {
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
} 

.hero-section h1 {
    padding-top: 1rem;
}

/* Step Numbers */
.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-date {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Contact Info Styles */
.contact-info {
    font-size: 0.95rem;
}

.contact-info i {
    width: 20px;
    text-align: center;
}

/* Alert Styles */
.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

/* Blog Section */
#blog .card {
    transition: all 0.3s ease;
}

#blog .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Process Section Responsive */
@media (max-width: 768px) {
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-item {
        padding: 1.5rem;
    }
    
    .timeline-item:hover {
        transform: none;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding-top: 80px;
        min-height: 60vh;
    }
    
    #hero-title-1, .hero-section h1 {
        font-size: 2rem;
    }
    
    #hero-subtitle-1, .hero-section h2 {
        font-size: 1.2rem;
    }
    
    .hero-section h1 {
        padding-top: 0.5rem;
    }
}

/* Ensure content visibility */
body {
    position: relative;
    z-index: 1;
}

/* Fix any potential overlay issues */
.navbar {
    z-index: 1030;
}

/* Make sure all sections are visible */
section {
    position: relative;
    z-index: 1;
}