:root {
    --primary-color-1: #70c174; /* Green */
    --primary-color-2: #ffc107; /* Amber */
    --primary-color-3: #6bbfdd; /* Light blue */
    --primary-color-4: #f8f0e6; /* Cream */
    --primary-color-5: #ed7156; /* Coral */
    
    --primary-color-1-light: #8fce90;
    --primary-color-1-dark: #4e9651;
    --primary-color-2-light: #ffcd38;
    --primary-color-2-dark: #c79100;
    --primary-color-3-light: #8fd5ea;
    --primary-color-3-dark: #4d9bb8;
    --primary-color-4-light: #ffffff;
    --primary-color-4-dark: #e6d8c8;
    --primary-color-5-light: #f39582;
    --primary-color-5-dark: #c55642;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: #333;
    background-color: var(--primary-color-4-light);
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-primary {
    background-color: var(--primary-color-1);
    border-color: var(--primary-color-1);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color-1-dark);
    border-color: var(--primary-color-1-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.section-title h2:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary-color-1);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
}

.navbar-scrolled .navbar-brand {
    color: #333;
}

.nav-link {
    font-weight: 600;
    margin: 0 15px;
    color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-scrolled .nav-link {
    color: #333;
}

.nav-link:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color-1);
    transition: all 0.3s ease;
}

.nav-link:hover:before,
.nav-link.active:before {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    position: relative;
}

.about-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background-color: var(--primary-color-4);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: -1;
}

.about-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
}

.about-feature {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color-1);
}

/* Services Section */
.services-section {
    background-color: var(--primary-color-4-light);
    position: relative;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.webp');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.service-item {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background-color: var(--primary-color-4);
    color: var(--primary-color-1);
    font-size: 2rem;
}

.service-price {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-color-1);
    color: #fff;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-features {
    margin-top: 20px;
    padding-left: 0;
}

.service-features li {
    list-style: none;
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
}

.service-features li i {
    color: var(--primary-color-1);
    margin-right: 10px;
    margin-top: 5px;
}

/* Features Section */
.features-section {
    position: relative;
    overflow: hidden;
}

.features-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    height: 60%;
    background-color: var(--primary-color-3-light);
    border-radius: 0 100% 0 0;
    opacity: 0.1;
    z-index: 0;
}

.feature-item {
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--primary-color-4-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color-1);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary-color-1);
    color: #fff;
}

/* Price Plan Section */
.price-plan-section {
    background-color: var(--primary-color-4-light);
    position: relative;
}

.price-plan-item {
    background: #fff;
    border-radius: 15px;
    padding: 50px 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 2px solid transparent;
}

.price-plan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color-1-light);
}

.price-plan-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.price-plan-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price-plan-price {
    font-size: 3rem;
    color: var(--primary-color-1);
    margin-bottom: 20px;
    font-weight: 700;
}

.price-plan-features {
    margin-bottom: 30px;
    padding-left: 0;
}

.price-plan-features li {
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.price-plan-features li i {
    color: var(--primary-color-1);
    margin-right: 10px;
}

.price-plan-btn {
    text-align: center;
}

/* Team Section */
.team-section {
    position: relative;
}

.team-member {
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.team-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-img img {
    width: 100%;
    transition: all 0.5s ease;
}

.team-member:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    background: #fff;
    border-radius: 10px;
    padding: 25px 20px;
    margin: -30px 20px 0;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover .team-info {
    background: var(--primary-color-1);
}

.team-member:hover .team-name, 
.team-member:hover .team-role {
    color: #fff;
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.team-role {
    color: var(--primary-color-1);
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--primary-color-4);
    position: relative;
    overflow: hidden;
}

.reviews-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--primary-color-1-light);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(50%, -50%);
}

.review-item {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.review-text {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
}

.review-text:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color-1-light);
    font-size: 1.5rem;
}

.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: 600;
    margin-bottom: 5px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color-1-light);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color-1);
}

/* Core Info Section */
.core-info-section {
    position: relative;
}

.core-info-item {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.core-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.core-info-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    color: var(--primary-color-4);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.core-info-item:hover .core-info-icon {
    transform: scale(1.2);
}

.core-info-item h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.core-info-item p {
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    position: relative;
}

.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.form-control {
    height: 55px;
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: var(--primary-color-1);
    box-shadow: none;
}

textarea.form-control {
    height: 150px;
    resize: none;
    padding: 20px;
}

.form-check {
    margin-bottom: 20px;
}

.form-check-input {
    margin-top: 0.3rem;
}

.form-check-input:checked {
    background-color: var(--primary-color-1);
    border-color: var(--primary-color-1);
}

.contact-info {
    background: var(--primary-color-1);
    color: #fff;
    padding: 50px;
    border-radius: 20px;
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-info-item p {
    margin-bottom: 0;
}

/* Blog Section */
.blog-section {
    background-color: var(--primary-color-4-light);
    position: relative;
}

.blog-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.blog-excerpt {
    margin-bottom: 20px;
}

.blog-link {
    font-weight: 600;
    color: var(--primary-color-1);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.blog-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-color-1-dark);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    position: relative;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 30px;
    font-weight: 600;
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color-1);
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #eee;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2370c174'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 30px;
}

/* Gallery Section */
.gallery-section {
    overflow: hidden;
}

.gallery-container {
    margin: 0 -10px;
}

.gallery-item {
    padding: 10px;
    transition: all 0.3s ease;
}

.gallery-item img {
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.gallery-item:hover img {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #2d3436;
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
}



.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-desc {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color-1);
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #fff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links li a:hover {
    color: var(--primary-color-1);
    padding-left: 5px;
}

.footer-links li a i {
    margin-right: 10px;
    font-size: 0.8rem;
}

.contact-info-footer p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info-footer i {
    margin-right: 15px;
    color: var(--primary-color-1);
    font-size: 1.2rem;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom small {
    opacity: 0.7;
} 