:root {
    /* Color Palette - Pastel */
    --primary-color-1: #e6f2ff; /* Light Blue */
    --primary-color-2: #ffe6e6; /* Light Pink */
    --primary-color-3: #e6ffe6; /* Light Green */
    --primary-color-4: #f7e6ff; /* Light Purple */
    --primary-color-5: #fff2e6; /* Light Orange */
    
    /* Darker Shades */
    --primary-color-1-dark: #99ccff;
    --primary-color-2-dark: #ffb3b3;
    --primary-color-3-dark: #b3ffb3;
    --primary-color-4-dark: #e6b3ff;
    --primary-color-5-dark: #ffcc99;
    
    /* Lighter Shades */
    --primary-color-1-light: #f0f8ff;
    --primary-color-2-light: #fff0f0;
    --primary-color-3-light: #f0fff0;
    --primary-color-4-light: #f8f0ff;
    --primary-color-5-light: #fff8f0;
    
    /* Text Colors */
    --text-dark: #333;
    --text-medium: #666;
    --text-light: #999;
    
    /* Other Variables */
    --section-padding: 80px 0;
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color-1-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color-1);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.btn-primary {
    background-color: var(--primary-color-3-dark);
    border-color: var(--primary-color-3-dark);
    color: white;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color-3-dark);
}

.btn-secondary {
    background-color: var(--primary-color-1-dark);
    border-color: var(--primary-color-1-dark);
    color: white;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--primary-color-1-dark);
}

/* Header */
header {
    padding: 20px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color-3-dark) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* About Section */
.about-section {
    background-color: var(--primary-color-1-light);
}

.about-feature {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color-3-dark);
}

/* Services Section */
.services-section {
    background-color: white;
}

.service-item {
    background-color: var(--primary-color-3-light);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    transition: var(--transition);
    height: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color-3-dark);
}

.service-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color-3-dark);
    margin: 15px 0;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color-3-dark);
}

/* Features Section */
.features-section {
    background-color: var(--primary-color-5-light);
}

.blog-content {
    background-color: #ffffff;
    position: relative;
    z-index: 9;
}

.feature-item {
    text-align: center;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color-5-dark);
}

/* Price Plan Section */
.priceplan-section {
    background-color: white;
}

.price-item {
    background-color: var(--primary-color-1-light);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.price-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color-1-dark);
    margin: 20px 0;
}

.price-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.price-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.price-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color-1-dark);
}

/* Team Section */
.team-section {
    background-color: var(--primary-color-2-light);
}

.team-member {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-image {
    width: 100%;
    transition: var(--transition);
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transition: var(--transition);
}

.team-member:hover .team-info {
    transform: translateY(0);
}

/* Reviews Section */
.reviews-section {
    background-color: white;
}

.review-item {
    background-color: var(--primary-color-4-light);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 15px;
    position: relative;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 700;
    color: var(--primary-color-4-dark);
}

/* Core Info Section */
.coreinfo-section {
    background-color: var(--primary-color-2-light);
}

.coreinfo-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.coreinfo-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color-2-dark);
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-color-3-light);
}

.contact-form {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-control {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px 15px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color-3-dark);
}

.contact-info {
    padding: 40px;
    background-color: var(--primary-color-3-dark);
    color: white;
    border-radius: var(--border-radius);
    height: 100%;
}

.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-icon {
    font-size: 1rem;
    margin-right: 15px;
}

/* Blog Section */
.blog-section {
    background-color: white;
}

.blog-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    margin-bottom: 15px;
}

.blog-excerpt {
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 30px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color-3-dark) !important;
}

.bg-light-1 {
    background-color: var(--primary-color-1-light);
}

.bg-light-2 {
    background-color: var(--primary-color-2-light);
}

.bg-light-3 {
    background-color: var(--primary-color-3-light);
}

.bg-light-4 {
    background-color: var(--primary-color-4-light);
}

.bg-light-5 {
    background-color: var(--primary-color-5-light);
}

/* Shape Elements */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.shape-divider .shape-fill {
    fill: #FFFFFF;
}

.shape-top {
    top: 0;
    bottom: auto;
    transform: rotate(180deg);
}

/* Additional Page Styles */
.page-header {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color-3-light);
    position: relative;
}

.page-title {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Space Page */
#space {
    height: 500px;
    background-color: var(--primary-color-1-light);
    display: flex;
    align-items: center;
    justify-content: center;
} 