:root {
    /* Main color palette */
    --primary-color: #8a56ac; /* Purple - elegant, associated with wisdom, dignity */
    --secondary-color: #62b6cb; /* Soft blue - trust, stability */
    --accent-color: #e27d60; /* Coral - energy, compassion */
    --neutral-color: #f7f7f7; /* Light gray - clean background */
    --dark-color: #31424a; /* Dark blue-gray - text, headings */
    
    /* Shades and tints */
    --primary-light: #a778c4;
    --primary-dark: #6e3e8d;
    --secondary-light: #8dd7e5;
    --secondary-dark: #4c90a0;
    --accent-light: #f0a08d;
    --accent-dark: #c5654d;
    --neutral-dark: #dddddd;
    --dark-light: #5d727a;
}

/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Shape elements */
.shape {
    position: absolute;
    z-index: -1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    opacity: 0.1;
    border-radius: 41% 59% 47% 53% / 34% 44% 56% 66%;
    animation: morph 12s linear infinite;
}

.shape-2 {
    bottom: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--accent-light);
    opacity: 0.1;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 15s linear infinite;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Header Styles */
header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.sticky {
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark-color);
}

.nav-link {
    font-weight: 600;
    margin: 0 12px;
    padding: 8px 0;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--neutral-color);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title-1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-subtitle-1 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--dark-light);
}

.hero-desc-1 {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    background-color: white;
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-content {
    position: relative;
}

.about-feature {
    margin-top: 40px;
}

.about-feature-item {
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-feature-item: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);
}

.about-feature-title {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Services Section */
.services-section {
    background-color: var(--neutral-color);
    position: relative;
}

.services-container {
    margin-top: 50px;
}

.service-item {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.service-desc {
    margin-bottom: 15px;
    color: var(--dark-light);
}

.service-features {
    margin-bottom: 20px;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Features Section */
.features-section {
    background-color: white;
    position: relative;
}

.features-container {
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    background: var(--neutral-color);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Price Plans Section */
.priceplan-section {
    background-color: var(--neutral-color);
    position: relative;
}

.priceplan-container {
    margin-top: 50px;
}

.priceplan-item {
    text-align: center;
    margin-bottom: 30px;
    padding: 40px 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.priceplan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.priceplan-item.featured {
    border: 2px solid var(--primary-color);
}

.priceplan-item.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: 600;
}

.priceplan-name {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.priceplan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.priceplan-desc {
    margin-bottom: 25px;
    color: var(--dark-light);
}

.priceplan-features {
    margin-bottom: 30px;
}

.priceplan-features ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.priceplan-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.priceplan-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Team Section */
.team-section {
    background-color: white;
    position: relative;
}

.team-container {
    margin-top: 50px;
}

.team-member {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.team-role {
    color: var(--primary-color);
    font-style: italic;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--neutral-color);
    position: relative;
}

.reviews-slider {
    margin-top: 50px;
}

.review-item {
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 20px 15px;
    position: relative;
}

.review-item:before {
    content: '\f10d';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.3;
}

.review-text {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
}

.review-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.review-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author-name {
    font-weight: 700;
}

/* Core Info Section */
.coreinfo-section {
    background-color: white;
    position: relative;
}

.coreinfo-container {
    margin-top: 50px;
}

.coreinfo-item {
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.coreinfo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.coreinfo-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--neutral-color);
    position: relative;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: 30px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(138, 86, 172, 0.25);
}

textarea.form-control {
    height: 150px;
    border-radius: 20px;
    padding: 15px 20px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-info {
    padding: 40px;
    border-radius: 15px;
    background: var(--primary-color);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-info-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.contact-info-text {
    font-size: 1.1rem;
}

/* Blog Section */
.blog-section {
    background-color: white;
    position: relative;
}

.blog-container {
    margin-top: 50px;
}

.blog-item {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    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 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.blog-excerpt {
    margin-bottom: 20px;
    color: var(--dark-light);
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    padding-right: 20px;
}

.blog-link:after {
    content: '\f061';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.blog-link:hover:after {
    transform: translate(5px, -50%);
}

/* FAQ Section */
.faq-section {
    background-color: var(--neutral-color);
    position: relative;
}

.faq-container {
    margin-top: 50px;
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    background-color: white;
    color: var(--dark-color);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 20px 25px;
    background-color: white;
}

/* Gallery Section */
.gallery-section {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    margin-top: 50px;
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(138, 86, 172, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    color: white;
    font-size: 2rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 0;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
}

.footer-contact-icon {
    margin-right: 15px;
    color: var(--primary-light);
}

.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: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 60px;
}

.footer-bottom small {
    color: rgba(255, 255, 255, 0.7);
} 