:root {
    /* Color Palette */
    --primary-color: #4A6D7C;     /* Teal Blue - Main brand color */
    --secondary-color: #F39237;   /* Orange - Call to action color */
    --accent-color: #5D576B;      /* Purple Gray - Accent elements */
    --neutral-color: #F7F9FB;     /* Off-White - Background color */
    --dark-color: #2E383F;        /* Dark Blue-Gray - Text color */
    
    /* Shades and Tints */
    --primary-light: #6A8D9C;
    --primary-dark: #3A5D6C;
    --secondary-light: #F5B267;
    --secondary-dark: #D37217;
    --accent-light: #7D778B;
    --accent-dark: #4D475B;
    --neutral-dark: #E7E9EB;
    --dark-light: #4E585F;
}

/* Base Styles */
html, body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: var(--neutral-color);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-title p {
    font-size: 18px;
    color: var(--accent-color);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

header.scrolled {
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--dark-color);
}

.navbar-brand:hover {
    color: var(--secondary-color);
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    margin: 0 15px;
    position: relative;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--neutral-color);
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: var(--primary-light);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.hero-image {
    position: relative;
}

.shape-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--secondary-color);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blob-animation 15s infinite alternate;
}

@keyframes blob-animation {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }
    75% {
        border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* About Section */
.about-section {
    background-color: white;
}

.about-feature {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: var(--neutral-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-feature h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.about-feature p {
    font-size: 16px;
    color: var(--accent-color);
}

/* Services Section */
.services-section {
    background-color: var(--neutral-color);
    position: relative;
    overflow: hidden;
}

.services-section:before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
}

.service-item {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service-item:hover:before {
    width: 100%;
    opacity: 0.05;
    z-index: -1;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--neutral-color);
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 30px;
    color: var(--secondary-color);
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-desc {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 16px;
}

.service-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
    font-size: 14px;
}

/* Features Section */
.features-section {
    background-color: white;
}

.features-item {
    display: flex;
    margin-bottom: 40px;
}

.features-icon {
    flex: 0 0 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    border-radius: 10px;
    margin-right: 25px;
}

.features-icon i {
    font-size: 35px;
    color: white;
}

.features-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.features-content p {
    color: var(--accent-color);
}

/* Price Plan Section */
.price-plan-section {
    background-color: var(--neutral-color);
    position: relative;
    overflow: hidden;
}

.price-plan-section:after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--accent-color);
    opacity: 0.05;
    border-radius: 50%;
}

.price-plan-item {
    text-align: center;
    padding: 50px 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.price-plan-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-plan-header {
    margin-bottom: 30px;
}

.price-plan-header h4 {
    font-size: 26px;
    margin-bottom: 20px;
}

.price-plan-price {
    font-size: 60px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.price-plan-price span {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 400;
}

.price-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.price-plan-features li {
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 16px;
}

.price-plan-features li:last-child {
    border-bottom: none;
}

/* Team Section */
.team-section {
    background-color: white;
}

.team-member {
    text-align: center;
    margin-bottom: 40px;
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-image img {
    transition: all 0.3s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.05);
}

.team-member h4 {
    font-size: 22px;
    margin-bottom: 5px;
}

.team-member p {
    color: var(--accent-color);
    font-size: 16px;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--neutral-color);
    position: relative;
}

.reviews-slider {
    padding-bottom: 60px;
}

.review-item {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 20px 15px;
    position: relative;
}

.review-text {
    font-size: 16px;
    color: var(--accent-color);
    margin-bottom: 20px;
    position: relative;
    padding-top: 30px;
}

.review-text:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: var(--secondary-color);
}

.review-author {
    display: flex;
    align-items: center;
}

.review-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.review-author-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
}

/* Core Info Section */
.core-info-section {
    background-color: white;
}

.core-info-item {
    text-align: center;
    padding: 30px;
    background-color: var(--neutral-color);
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.core-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.core-info-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.core-info-icon i {
    font-size: 35px;
    color: white;
}

.core-info-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.core-info-desc {
    color: var(--accent-color);
}

/* Contact Section */
.contact-section {
    background-color: var(--neutral-color);
    position: relative;
}

.contact-form {
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #eee;
    padding: 10px 20px;
    font-size: 16px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

/* Blog Section */
.blog-section {
    background-color: white;
}

.blog-item {
    background-color: var(--neutral-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    transition: all 0.3s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.blog-title a:hover {
    color: var(--secondary-color);
}

.blog-excerpt {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.blog-link {
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-block;
    position: relative;
}

.blog-link:after {
    content: '\f30b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.blog-link:hover:after {
    margin-left: 10px;
}

/* FAQ Section */
.faq-section {
    background-color: var(--neutral-color);
}

.accordion-item {
    margin-bottom: 20px;
    border: none;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    font-size: 18px;
    padding: 20px 30px;
    background-color: white;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%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");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F39237'%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: 0 30px 20px;
    font-size: 16px;
    color: var(--accent-color);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: white;
}

.gallery-container {
    position: relative;
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
}

footer h4 {
    color: white;
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
}

footer h4:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

footer p {
    font-size: 16px;
    margin-bottom: 15px;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color);
}

.footer-contact {
    margin-bottom: 40px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-policies {
    margin-bottom: 40px;
}

.footer-policies ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-policies ul li {
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    section {
        padding: 80px 0;
    }
    
    .hero-section {
        height: auto;
        padding: 150px 0 100px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .service-item,
    .price-plan-item,
    .review-item,
    .contact-form {
        padding: 25px 20px;
    }
    
    .features-icon {
        flex: 0 0 60px;
        height: 60px;
    }
    
    .features-icon i {
        font-size: 25px;
    }
    
    .price-plan-price {
        font-size: 50px;
    }
    
    footer {
        padding: 60px 0 20px;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 30px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .about-feature,
    .team-member {
        margin-bottom: 20px;
    }
} 