:root {
    /* Primary Colors */
    --primary-1: #4A90E2; /* Sky Blue */
    --primary-2: #E27A4A; /* Coral */
    --primary-3: #8055C9; /* Purple */
    --primary-4: #55B88C; /* Teal */
    --primary-5: #E2C94A; /* Amber */
    
    /* Shades */
    --primary-1-light: #6FA8E8;
    --primary-1-dark: #3776C9;
    --primary-2-light: #E8966C;
    --primary-2-dark: #C96435;
    --primary-3-light: #9A75D4;
    --primary-3-dark: #6940A8;
    --primary-4-light: #75C9A3;
    --primary-4-dark: #449A75;
    --primary-5-light: #E8D475;
    --primary-5-dark: #C9AD35;
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --mid-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #212529;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-1-light);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.5), rgba(128, 85, 201, 0.5));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-feature {
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    background-color: var(--off-white);
    border-left: 4px solid var(--primary-1);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    background-color: var(--off-white);
}

.service-item {
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    color: var(--primary-1);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-price {
    display: inline-block;
    background-color: var(--primary-1-light);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 1rem;
}

/* Features Section */
.features-section {
    background-color: var(--white);
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--primary-3-light);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
    background-color: var(--off-white);
}

.price-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
    background-color: var(--primary-2);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.price-body {
    padding: 2rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

/* Team Section */
.team-section {
    background-color: var(--white);
}

.team-member {
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.team-info {
    background-color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.team-role {
    color: var(--primary-4);
    font-weight: 600;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--off-white);
}

.review-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 1rem;
    height: 100%;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -2rem;
    left: -1rem;
    color: var(--light-gray);
    opacity: 0.5;
}

.review-author {
    font-weight: 600;
    color: var(--primary-3);
}

/* Core Info Section */
.coreinfo-section {
    background-color: var(--white);
}

.coreinfo-item {
    padding: 2rem;
    background-color: var(--off-white);
    border-radius: 10px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--primary-5);
}

.coreinfo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-1-light);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.9), rgba(128, 85, 201, 0.9));
    z-index: 0;
}

.contact-content {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: none;
    border-bottom: 2px solid var(--light-gray);
    border-radius: 0;
    padding: 1rem 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-1);
}

.form-check-input:checked {
    background-color: var(--primary-1);
    border-color: var(--primary-1);
}

.btn-submit {
    background-color: var(--primary-1);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-1-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Blog Section */
.blog-section {
    background-color: var(--off-white);
}

.blog-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blog-excerpt {
    color: var(--mid-gray);
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-1);
    font-weight: 600;
    text-decoration: none;
}

.blog-link:hover {
    color: var(--primary-1-dark);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 1.5rem;
    background-color: var(--white);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-1);
    background-color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--light-gray);
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--off-white);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--off-white);
    padding-bottom: 3rem;
}

.gallery-item {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 250px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-logo {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-desc {
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: none;
}

.contact-info {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--primary-1);
}

.site-copyright {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    text-align: center;
} 