/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a6fa5;
    --secondary-color: #ff6b6b;
    --accent-color: #4ecdc4;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --text-light: #6c757d;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Header Styles */
#site-header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

#pre-header {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

#pre-header-core {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#pre-header-social ul {
    display: flex;
    list-style: none;
    align-items: center;
}

#pre-header-social ul li {
    margin-left: 15px;
}

#pre-header-social ul li.social.message {
    font-weight: 600;
    margin-right: 10px;
}

#pre-header-social ul li a {
    color: white;
    font-size: 16px;
}

#pre-header-social ul li a:hover {
    color: var(--accent-color);
}

#header-core {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

#logo img {
    max-height: 60px;
    width: auto;
}

#header-links-inner {
    display: flex;
    align-items: center;
}

#header-links .menu {
    display: flex;
    list-style: none;
}

#header-links .menu li {
    margin: 0 15px;
}

#header-links .menu li a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 16px;
    position: relative;
}

#header-links .menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

#header-links .menu li a:hover::after,
#header-links .menu li.current_page_item a::after {
    width: 100%;
}

#header-links .menu li.current_page_item a {
    color: var(--secondary-color);
}

#header-search {
    margin-left: 30px;
    position: relative;
}

#header-search a {
    color: var(--dark-color);
    font-size: 18px;
    cursor: pointer;
}

#header-search form {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    width: 250px;
    margin-top: 10px;
    z-index: 100;
}

#header-search form.active {
    display: block;
}

#header-search input.search {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

#header-search input.searchsubmit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

#header-nav {
    display: none;
}

/* Slider Styles */
#slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: white;
}

/* Intro Action Styles */
#introaction {
    background: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

#introaction-core h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

#introaction-core p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Services Section */
#section-home {
    padding: 80px 0;
    background: white;
}

#section-home-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.services-builder {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.services-builder:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services-builder .iconimage {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
}

.services-builder h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.services-builder p {
    color: var(--text-light);
}

/* Blog Section */
#content {
    padding: 80px 0;
    background: var(--light-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-article {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.blog-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.entry-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.entry-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-article:hover .entry-header img {
    transform: scale(1.05);
}

.entry-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--dark-color);
}

.blog-title a:hover {
    color: var(--primary-color);
}

entry-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.entry-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.entry-meta i {
    margin-right: 5px;
}

.more-link.style2 {
    margin-top: 20px;
}

/* Footer Styles */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-widget h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-widget p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #ddd;
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

#sub-footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

#sub-footer-core {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    margin-bottom: 10px;
}

.copyright, .copyright a {
    color: #ddd;
}

#post-footer-social ul {
    display: flex;
    list-style: none;
}

#post-footer-social ul li {
    margin-left: 15px;
}

#post-footer-social ul li a {
    color: white;
    font-size: 18px;
}

#post-footer-social ul li a:hover {
    color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    #header-links {
        display: none;
    }
    
    #header-nav {
        display: block;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    #pre-header-core {
        justify-content: center;
    }
    
    #header-core {
        flex-direction: column;
        text-align: center;
    }
    
    #logo {
        margin-bottom: 15px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    #section-home-inner {
        flex-direction: column;
        align-items: center;
    }
    
    .services-builder {
        width: 100%;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    #sub-footer-core {
        flex-direction: column;
    }
    
    #post-footer-social {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}