/*
Theme Name: Preneurs Organization
Theme URI: https://preneurs.pk/
Author: Preneurs Team
Author URI: https://preneurs.pk/
Description: A simple, speedy, and secure WordPress theme for organizations. Featuring auto SEO, SMO, and AI optimization and responsive.
Version: 1.0.0
License: GPL v2 or later
Text Domain: preneurs
Tags: custom-logo, custom-menu, featured-images, theme-options, translation-ready, blog, portfolio, testimonial, team

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# CSS Variables
# Normalize
# Typography
# Elements
# Forms
# Navigation
# Accessibility
# Alignments
# Clearings
# Header
# Widgets
# Content
    ## Hero Section
    ## Buttons
    ## Sections
    ## Services Cards
    ## Stats Section
    ## Portfolio Grid
    ## Category Tabs
    ## Team Grid
    ## Blog Grid
    ## Pagination
    ## Testimonials
    ## Clients Carousel
    ## Action Bar
    ## About Section
    ## Cards Section
# Comments
# Sidebar
# Footer
# Breadcrumbs
# Post Meta
# Social Sharing
# Related Posts
# FAQ Styles
# Contact Info
# Utility Classes
# Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
    --preneurs-primary: #4A90E2;
    --preneurs-primary-rgb: 74, 144, 226;
    --preneurs-primary-dark: #3A7BC8;
    --text-dark: #1A2C3E;
    --text-muted: #5A6E87;
    --border-light: #EFF2F8;
    --bg-light: #F8FAFE;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 8px 20px rgba(74, 144, 226, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 28px;
    --radius-3xl: 32px;
    --radius-full: 40px;
    --radius-round: 50%;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
    font-family: var(--font-primary);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    clear: both;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
}

p {
    margin-bottom: 1.5em;
}

a {
    color: var(--preneurs-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--preneurs-primary-dark);
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin: 0 0 1.5em 1.5em;
}

/*--------------------------------------------------------------
# Container
--------------------------------------------------------------*/
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 10px 15px;
    width: 100%;
    font-family: inherit;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--preneurs-primary);
    box-shadow: 0 0 0 2px rgba(var(--preneurs-primary-rgb), 0.1);
}

/* Search form */
.search-form {
    display: flex;
    gap: 10px;
}

.search-form input[type="search"] {
    flex: 1;
}

.search-form button {
    padding: 10px 20px;
    background: var(--preneurs-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: var(--preneurs-primary-dark);
}

/* Captcha Styles */
.captcha-field {
    margin-bottom: 15px;
}

.captcha-field input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.main-navigation {
    display: flex;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 36px;
}

.main-navigation ul li a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current-page-item a {
    color: var(--preneurs-primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-dark);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
}

.site-title a {
    color: var(--text-dark);
}

.site-title a:hover {
    color: var(--preneurs-primary);
}

.site-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/*--------------------------------------------------------------
# Content - Hero Section
--------------------------------------------------------------*/
.hero-section {
    padding: 80px 0 70px;
    background: var(--bg-white);
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1.2;
}

.hero-badge {
    background: rgba(var(--preneurs-primary-rgb), 0.1);
    color: var(--preneurs-primary);
    padding: 6px 16px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    text-align: center;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
}

/* Hero Slider */
.hero-slider-container {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    animation: fadeEffect 0.5s;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-round);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--preneurs-primary);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.slider-arrow:hover {
    background: var(--preneurs-primary);
}

.slider-arrow i {
    color: var(--preneurs-primary);
}

.slider-arrow:hover i {
    color: #ffffff;
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/*--------------------------------------------------------------
# Content - Buttons
--------------------------------------------------------------*/
.btn-primary,
.btn-outline,
.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--preneurs-primary);
    color: white;
    border: 1.5px solid var(--preneurs-primary);
    box-shadow: 0 4px 12px rgba(var(--preneurs-primary-rgb), 0.2);
}

.btn-primary:hover {
    background: var(--preneurs-primary-dark);
    border-color: var(--preneurs-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-outline {
    border: 1.5px solid var(--preneurs-primary);
    color: var(--preneurs-primary);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(var(--preneurs-primary-rgb), 0.1);
    border-color: var(--preneurs-primary);
    color: var(--preneurs-primary);
}

/*--------------------------------------------------------------
# Content - Sections
--------------------------------------------------------------*/
section {
    padding: 90px 0;
    border-bottom: 1px solid var(--border-light);
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.section-sub {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 52px auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Content - Services Cards
--------------------------------------------------------------*/
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 34px 28px;
    flex: 1 1 260px;
    min-width: 250px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--preneurs-primary);
}

.service-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: var(--radius-round);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--preneurs-primary);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Content - Stats Section
--------------------------------------------------------------*/
.stats-section {
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h3 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--preneurs-primary);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
}

/*--------------------------------------------------------------
# Content - Portfolio Grid
--------------------------------------------------------------*/
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--preneurs-primary);
}

.portfolio-image {
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-content {
    padding: 24px;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.portfolio-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.portfolio-category {
    display: inline-block;
    background: rgba(var(--preneurs-primary-rgb), 0.1);
    color: var(--preneurs-primary);
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Content - Category Tabs
--------------------------------------------------------------*/
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cat-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    padding: 10px 30px;
    border-radius: 60px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.cat-btn.active,
.cat-btn:hover {
    background: var(--preneurs-primary);
    color: white;
    border-color: var(--preneurs-primary);
}

/*--------------------------------------------------------------
# Content - Team Grid
--------------------------------------------------------------*/
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: center;
}

.team-card {
    background: white;
    border-radius: var(--radius-3xl);
    padding: 28px 20px;
    text-align: center;
    width: 260px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.team-card:hover {
    border-color: var(--preneurs-primary);
    box-shadow: var(--shadow-md);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: var(--radius-round);
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-card .designation {
    color: var(--preneurs-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card p {
    color: var(--text-muted);
}

/*--------------------------------------------------------------
# Content - Blog Grid
--------------------------------------------------------------*/
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--preneurs-primary);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-meta span {
    margin-right: 12px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.blog-content h3 a {
    color: var(--text-dark);
}

.blog-content h3 a:hover {
    color: var(--preneurs-primary);
}

.blog-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Content - Pagination
--------------------------------------------------------------*/
.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.page-numbers {
    display: inline-block;
    background: white;
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
    margin: 0 3px;
}

.page-numbers.current {
    background: var(--preneurs-primary);
    color: white;
    border-color: var(--preneurs-primary);
}

.page-numbers:hover:not(.current) {
    background: rgba(var(--preneurs-primary-rgb), 0.1);
}

/*--------------------------------------------------------------
# Content - Testimonials
--------------------------------------------------------------*/
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 4px;
    scrollbar-width: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 32px 28px;
    min-width: calc(33.333% - 22px);
    flex-shrink: 0;
    border: 1px solid var(--border-light);
}

.testimonial-card i.fa-quote-left {
    color: var(--preneurs-primary);
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    background: var(--preneurs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.client-name {
    font-weight: 700;
    color: var(--text-dark);
}

.client-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-arrows {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.slider-arrows .slider-arrow {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-round);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    color: var(--preneurs-primary);
    position: static;
}

.slider-arrows .slider-arrow:hover {
    background: var(--preneurs-primary);
    color: white;
    border-color: var(--preneurs-primary);
}

/*--------------------------------------------------------------
# Content - Clients Carousel
--------------------------------------------------------------*/
.clients-section {
    overflow: hidden;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-white);
    padding: 40px 0;
}

.clients-track-wrapper {
    overflow: hidden;
    white-space: nowrap;
}

.clients-track {
    display: inline-flex;
    animation: scrollClients 30s linear infinite;
    gap: 64px;
}

.client-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    text-align: center;
}

.client-item a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.client-logo {
    max-width: 120px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.client-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/*--------------------------------------------------------------
# Content - Action Bar
--------------------------------------------------------------*/
.action-bar {
    background: var(--preneurs-primary);
    padding: 32px 0;
    color: white;
}

.action-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.action-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.action-text p {
    opacity: 0.9;
    font-size: 0.95rem;
    color: white;
}

.action-btn {
    background: white;
    color: var(--preneurs-primary);
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.action-btn:hover {
    background: rgba(var(--preneurs-primary-rgb), 0.1);
    color: var(--preneurs-primary);
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Content - About Section
--------------------------------------------------------------*/
.about-section {
    padding: 90px 0;
    border-bottom: 1px solid var(--border-light);
}

.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-content .btn-primary {
    display: inline-block;
    margin-top: 25px;
}

.about-media {
    flex: 1;
    text-align: center;
}

.about-media img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 0 auto;
}

/*--------------------------------------------------------------
# Content - Cards Section (About Cards)
--------------------------------------------------------------*/
.cards-section {
    padding: 90px 0;
}

.cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.about-card {
    flex: 1;
    min-width: 250px;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.2);
}

.card-icon {
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 52px;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.comment-author {
    font-weight: 600;
    margin-bottom: 10px;
}

.comment-metadata {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.comment-content {
    color: var(--text-dark);
    line-height: 1.6;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
    margin-bottom: 40px;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--preneurs-primary);
    color: var(--text-dark);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
    flex: 0 0 300px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
    background: #FCFDFE;
    border-top: 1px solid var(--border-light);
    padding: 56px 0 32px;
    color: var(--text-muted);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    max-width: 250px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--preneurs-primary);
}

.footer-col .fas,
.footer-col .far {
    color: var(--preneurs-primary);
    width: 25px;
}

.social-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.social-links a {
    font-size: 1.3rem;
    color: var(--text-muted);
}

.social-links a:hover i {
    color: var(--preneurs-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 28px;
    text-align: center;
    font-size: 0.75rem;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: var(--bg-light);
    margin-bottom: 30px;
}

.breadcrumbs .container {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--preneurs-primary);
}

.breadcrumbs .separator {
    margin: 0 8px;
}

/*--------------------------------------------------------------
# Post Meta
--------------------------------------------------------------*/
.post-meta {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.post-meta span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.entry-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.entry-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Social Sharing
--------------------------------------------------------------*/
.social-share {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.social-share h4 {
    margin-bottom: 15px;
}

.share-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-links a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.share-links a:hover {
    background: rgba(var(--preneurs-primary-rgb), 0.1);
    color: var(--preneurs-primary);
}

/*--------------------------------------------------------------
# Related Posts
--------------------------------------------------------------*/
.related-posts {
    margin-top: 40px;
}

.related-posts h3 {
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.related-post h4 {
    font-size: 1rem;
    margin: 10px 0 5px;
}

.related-post .post-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/*--------------------------------------------------------------
# FAQ Styles
--------------------------------------------------------------*/
.faqs-section {
    padding: 90px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--preneurs-primary);
}

.faq-question {
    padding: 18px 25px;
    background: var(--bg-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(var(--preneurs-primary-rgb), 0.05);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-white);
}

.faq-answer > div {
    padding: 20px 0;
    color: var(--text-muted);
    line-height: 1.6;
}

/*--------------------------------------------------------------
# Contact Info Icons
--------------------------------------------------------------*/
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--preneurs-primary-rgb), 0.1);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.info-icon i {
    color: var(--preneurs-primary);
    font-size: 1.2rem;
}

.info-item:hover .info-icon {
    transform: scale(1.1);
}

/* Contact Form */
.contact-main-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 300px;
}

.preneurs-contact-form input:focus,
.preneurs-contact-form textarea:focus {
    outline: none;
    border-color: var(--preneurs-primary);
}

/*--------------------------------------------------------------
# Blog Post Item (Blog Page Template)
--------------------------------------------------------------*/
.blog-post-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
}

.blog-post-image {
    flex: 0 0 250px;
}

.blog-post-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.blog-post-content {
    flex: 1;
}

.blog-post-content h3 {
    margin-bottom: 12px;
}

.blog-post-content h3 a {
    color: var(--text-dark);
}

.blog-post-content h3 a:hover {
    color: var(--preneurs-primary);
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

.p-20 { padding: 20px; }
.p-40 { padding: 40px; }

/* Loading animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    background: var(--preneurs-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 1000;
    font-size: 20px;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background: var(--preneurs-primary-dark);
    transform: translateY(-3px);
}

/* No results */
.no-results {
    text-align: center;
    padding: 60px 0;
}

/* 404 Page */
.error404 .content-area {
    text-align: center;
    padding: 80px 0;
}

.error404 h1 {
    font-size: 120px;
    margin-bottom: 20px;
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

/* Alert messages */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    section {
        padding: 64px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        min-width: calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation ul {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
    }
    
    .main-navigation ul.show {
        display: flex;
    }
    
    .hero-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-slide {
        padding: 40px 0 30px;
    }
    
    .btn-group {
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        justify-content: center;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .action-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-col p {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .clients-track {
        gap: 32px;
    }
    
    .client-logo {
        max-width: 60px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .about-card {
        min-width: 100%;
    }
    
    .contact-layout {
        flex-direction: column;
    }
    
    .comment {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        min-width: 100%;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        width: 100%;
    }
    
    .blog-post-image {
        flex: 0 0 100%;
    }
}