:root {
    /* Color Palette */
    --primary-color: #9ED8DB; /* Soft Teal */
    --secondary-color: #F9C784; /* Warm Peach */
    --accent-color: #E7B7C8; /* Soft Pink */
    --neutral-color: #B8B2D1; /* Lavender */
    --dark-color: #5D576B; /* Deep Purple */
    
    /* Shades */
    --primary-light: #c5e8ea;
    --secondary-light: #fce3be;
    --accent-light: #f2d6e0;
    --neutral-light: #d6d2e8;
    --dark-light: #817a90;

    /* Font Sizes */
    --font-size-base: 16px;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.75rem;
    --font-size-h4: 1.5rem;
    --font-size-h5: 1.25rem;
    --font-size-h6: 1rem;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-size-base);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dark-color);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--dark-color);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: var(--dark-color);
    color: white;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

.bg-primary {
    background-color: var(--primary-light);
}

.text-center {
    text-align: center;
}

/* Section Title Styles */
.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-h2);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1rem;
    color: var(--dark-color);
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    color: var(--dark-color);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section Styles */
.hero-section {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: var(--font-size-h1);
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

.hero-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(93, 87, 107, 0.8), rgba(158, 216, 219, 0.6));
}

/* About Section Styles */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-feature {
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-feature h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: var(--font-size-h5);
}

.about-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Services Section Styles */
.services-section {
    position: relative;
}

.service-item {
    padding: 40px 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: var(--font-size-h5);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Features Section Styles */
.features-section {
    position: relative;
    overflow: hidden;
}

.feature-item {
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: var(--font-size-h5);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Price Plan Section Styles */
.priceplan-section {
    position: relative;
}

.price-item {
    padding: 40px 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-item h4 {
    margin-bottom: 1rem;
    font-size: var(--font-size-h4);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.price-tag span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Team Section Styles */
.team-section {
    position: relative;
}

.team-member {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    transition: all 0.3s ease;
}

.team-content {
    padding: 20px;
    text-align: center;
    background-color: white;
}

.team-content h5 {
    margin-bottom: 0.5rem;
    font-size: var(--font-size-h5);
}

.team-content span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Reviews Section Styles */
.reviews-section {
    position: relative;
    overflow: hidden;
}

.review-item {
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 15px;
    position: relative;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.review-text:before {
    content: '"';
    font-size: 60px;
    color: var(--primary-light);
    position: absolute;
    left: 0;
    top: -20px;
    font-family: serif;
}

.review-author {
    display: flex;
    align-items: center;
}

.review-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

/* Core Info Section Styles */
.coreinfo-section {
    position: relative;
}

.core-item {
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.core-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.core-item h4 {
    margin-bottom: 1rem;
    font-size: var(--font-size-h5);
}

.core-icon {
    font-size: 2.5rem;
    color: var(--neutral-color);
    margin-bottom: 1.5rem;
}

/* Contact Section Styles */
.contact-section {
    position: relative;
}

.contact-form {
    padding: 40px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #f0f0f0;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-form textarea.form-control {
    min-height: 150px;
    border-radius: 20px;
}

.contact-info {
    padding: 40px;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: white;
    height: 100%;
}

.contact-info h4 {
    color: white;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    margin-right: 15px;
    font-size: 1rem;
}

.contact-detail h5 {
    margin-bottom: 0.5rem;
    color: white;
    font-size: 1.1rem;
}

.contact-detail p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Blog Section Styles */
.blog-section {
    position: relative;
}

.blog-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    transition: all 0.3s ease;
}

.blog-content {
    padding: 30px;
    background-color: white;
}

.blog-content h4 {
    margin-bottom: 1rem;
    font-size: var(--font-size-h5);
}

.blog-content p {
    margin-bottom: 1.5rem;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-logo {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-text {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #4b4659;
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.8;
}

/* 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: 80px;
}

.shape-divider .shape-fill {
    fill: #FFFFFF;
}

/* Animation Helpers */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper Styles */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--dark-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

/* Additional Page Styles */
.page-header {
    padding: 180px 0 100px;
    background-color: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.page-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Space Page */
#space {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    text-align: center;
} 