:root {
    /* Color Palette - 5 primary colors */
    --primary-color: #4CAF50;      /* Fresh Green */
    --secondary-color: #8BC34A;    /* Light Green */
    --accent-color: #CDDC39;       /* Lime */
    --neutral-color: #F5F5F5;      /* Light Gray */
    --dark-color: #2E7D32;         /* Dark Green */
    
    /* Shades and tints */
    --primary-light: #A5D6A7;
    --primary-dark: #388E3C;
    --secondary-light: #C5E1A5;
    --secondary-dark: #689F38;
    --accent-light: #E6EE9C;
    --accent-dark: #AFB42B;
    --neutral-dark: #E0E0E0;
    --dark-light: #43A047;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

/* Header Styles */
.header {
    padding: 1rem 0;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    color: #333;
    margin: 0 0.5rem;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--neutral-color);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title-1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-subtitle-1 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.hero-desc-1 {
    color: #fff;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-blob {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
}

.about-title {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.about-subtitle {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about-desc {
    margin-bottom: 3rem;
}

.about-feature {
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-10px);
}

.about-feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--neutral-color);
    position: relative;
}

.services-title {
    color: var(--dark-color);
}

.services-subtitle {
    color: var(--primary-color);
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-body {
    padding: 1.5rem;
}

.service-price {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

.features-title {
    color: var(--dark-color);
}

.features-subtitle {
    color: var(--primary-color);
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
    padding: 5rem 0;
    background-color: var(--neutral-color);
}

.priceplan-title {
    color: var(--dark-color);
}

.priceplan-subtitle {
    color: var(--primary-color);
}

.price-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 2rem 1.5rem;
    text-align: center;
}

.price-card-body {
    padding: 2rem 1.5rem;
    flex-grow: 1;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.price-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.price-features li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-title {
    color: var(--dark-color);
}

.team-subtitle {
    color: var(--primary-color);
}

.team-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card-body {
    padding: 1.5rem;
    text-align: center;
}

.team-member-name {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-member-role {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background-color: var(--neutral-color);
}

.reviews-title {
    color: var(--dark-color);
}

.reviews-subtitle {
    color: var(--primary-color);
}

.review-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 1rem;
    height: auto;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    font-weight: 700;
    color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* Core Info Section */
.coreinfo-section {
    padding: 5rem 0;
}

.coreinfo-title {
    color: var(--dark-color);
}

.coreinfo-subtitle {
    color: var(--primary-color);
}

.coreinfo-item {
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.coreinfo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--neutral-color);
}

.contact-title {
    color: var(--dark-color);
}

.contact-subtitle {
    color: var(--primary-color);
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
    border: 1px solid #e0e0e0;
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
}

.form-check {
    margin-bottom: 1.5rem;
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
}

.blog-title {
    color: var(--dark-color);
}

.blog-subtitle {
    color: var(--primary-color);
}

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-date {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--neutral-color);
}

.faq-title {
    color: var(--dark-color);
}

.faq-subtitle {
    color: var(--primary-color);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1.2rem;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fff;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background-color: var(--dark-color);
    color: #fff;
}

.footer-title {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 0.8rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.site-copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 6rem 0 2rem;
    background-color: var(--neutral-color);
}

/* Additional Pages */
.page-header {
    position: relative;
    padding: 8rem 0 4rem;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 5rem 0;
}

/* Animation Styles */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Decorative Elements */
.shape {
    position: absolute;
    z-index: -1;
    opacity: 0.2;
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.shape-2 {
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background-color: var(--secondary-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-color: var(--accent-color);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.1;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
} 