/*==========================================
   Theme: Local2Global Group
   Colors: Orange (#ff6b35) | Black (#1a1a1a) | White
   Author: Your Dev Team
   Version: 3.0 (Premium)
==========================================*/

/* CSS Variables */
:root {
    /* Orange Theme */
    --orange-500: #ff6b35;
    --orange-600: #f25c19;
    --orange-400: #ff8c5a;
    --orange-300: #ffad82;
    --orange-100: #fff1ea;
    
    /* Black/Gray Scale */
    --black-900: #1a1a1a;
    --black-800: #2d2d2d;
    --black-700: #404040;
    --gray-600: #666666;
    --gray-500: #808080;
    --gray-400: #999999;
    --gray-300: #cccccc;
    --gray-200: #e6e6e6;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    
    /* Functional Colors */
    --primary: var(--orange-500);
    --primary-dark: var(--orange-600);
    --primary-light: var(--orange-400);
    --text-dark: var(--black-900);
    --text-body: var(--black-800);
    --text-light: var(--gray-600);
    --bg-light: var(--gray-100);
    --border-color: var(--gray-200);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --shadow-orange: 0 10px 30px rgba(255,107,53,0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Section Styles */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.section-subtitle::before {
    left: -40px;
}

.section-subtitle::after {
    right: -40px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255,107,53,0.2);
    z-index: -1;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255,107,53,0.3);
}

.btn-primary i {
    transition: transform var(--transition-fast);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: var(--transition-base);
}

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

.card:hover::before {
    height: 100%;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--orange-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-base);
}

.card:hover .card-icon {
    background: var(--primary);
    color: var(--white);
}

.card-icon i {
    font-size: 30px;
    color: var(--primary);
    transition: var(--transition-base);
}

.card:hover .card-icon i {
    color: var(--white);
}

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

.card-text {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-base);
}

.card-link i {
    transition: transform var(--transition-fast);
}

.card-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Utility Classes */
.text-primary { color: var(--primary) !important; }
.text-dark { color: var(--text-dark) !important; }
.text-light { color: var(--text-light) !important; }
.text-white { color: var(--white) !important; }

.bg-primary { background: var(--primary) !important; }
.bg-light { background: var(--bg-light) !important; }
.bg-dark { background: var(--black-900) !important; }
.bg-white { background: var(--white) !important; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }







/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, var(--orange-100) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,107,53,0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.trust-badge i {
    color: #ffc107;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-proof {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.trusted-label {
    color: var(--gray-600);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.trusted-logos {
    color: var(--gray-700);
    font-weight: 500;
}

.dot {
    margin: 0 15px;
    color: var(--primary);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.hero-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.floating-card strong {
    font-size: 1.2rem;
    color: var(--text-dark);
    display: block;
}

.floating-card span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.card-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: 0;
    animation-delay: 1s;
}

.card-3 {
    top: 40%;
    right: -20px;
    animation-delay: 2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator a {
    text-decoration: none;
    color: var(--gray-600);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.scroll-indicator a:hover {
    color: var(--primary);
    transform: translateY(5px);
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    padding: 50px 0;
    background: var(--white);
}

.stats-wrapper {
    background: linear-gradient(135deg, var(--orange-100), var(--white));
    border-radius: 50px;
    padding: 50px;
    box-shadow: var(--shadow-md);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--gray-700);
    font-weight: 500;
}

/* ==================== SERVICE CARDS ==================== */
.premium-card {
    background: var(--white);
    border-radius: 25px;
    padding: 35px 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.premium-card:hover::before {
    transform: scaleX(1);
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--orange-100);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.premium-card:hover .card-icon-wrapper {
    background: var(--primary);
}

.card-icon-wrapper i {
    font-size: 30px;
    color: var(--primary);
    transition: all 0.3s;
}

.premium-card:hover .card-icon-wrapper i {
    color: var(--white);
}

.premium-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--primary);
    font-size: 0.9rem;
}

.area-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--orange-100);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    margin: 0 5px 10px 0;
}

/* ==================== ABOUT SECTION ==================== */
.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.grid-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.grid-image.main {
    grid-column: span 2;
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.grid-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 25px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
    position: relative;
}

.process-wrapper {
    position: relative;
    padding: 40px 0;
}

.process-line {
    position: absolute;
    top: 120px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--orange-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.process-step:hover .step-icon {
    background: var(--primary);
}

.step-icon i {
    font-size: 30px;
    color: var(--primary);
    transition: all 0.3s;
}

.process-step:hover .step-icon i {
    color: var(--white);
}

/* ==================== CASE STUDIES ==================== */
.case-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.case-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.case-content {
    padding: 25px;
}

.case-stats {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.case-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.case-link:hover {
    gap: 10px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

/* ==================== BLOG CARDS ==================== */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    height: 200px;
}

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

.blog-date {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.2;
    box-shadow: var(--shadow-md);
}

.blog-date .day {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
}

.blog-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px 20px 20px;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-excerpt {
    color: var(--gray-600);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 80px 0;
}

.cta-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px;
    border-radius: 40px;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
    color: var(--white);
}

.cta-wrapper .btn-primary {
    background: var(--white);
    color: var(--primary);
    border: none;
}

.cta-wrapper .btn-primary:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-features .feature i {
    font-size: 1.2rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .floating-card {
        display: none;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-wrapper {
        padding: 40px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-wrapper {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 15px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .cta-wrapper {
        padding: 30px;
        text-align: center;
    }
    
    .cta-features {
        align-items: center;
    }
}



/* ==================== BLOG PAGE STYLES ==================== */

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid var(--border-color);
}

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

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

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--primary);
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

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

.blog-excerpt {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.blog-read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.blog-read-more:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

/* Categories List */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 10px;
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    background: var(--gray-100);
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.categories-list li a:hover,
.categories-list li.active a {
    background: var(--primary);
    color: var(--white);
}

.categories-list li a span {
    background: var(--white);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.categories-list li a:hover span,
.categories-list li.active a span {
    background: var(--white);
    color: var(--primary);
}

/* Recent Posts List */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts-list a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s;
}

.recent-posts-list a:hover {
    color: var(--primary);
}

.recent-post-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.recent-post-date {
    font-size: 0.85rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 5px;
}

.recent-post-date i {
    color: var(--primary);
}

/* Newsletter Widget */
.newsletter-widget p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.newsletter-form .form-control {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s;
}

.newsletter-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
    outline: none;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Pagination */
.pagination {
    gap: 5px;
}

.page-link {
    padding: 10px 18px;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px !important;
    transition: all 0.3s;
}

.page-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-item.disabled .page-link {
    color: var(--gray-400);
    pointer-events: none;
}

/* No Posts */
.no-posts {
    background: var(--white);
    border-radius: 20px;
    padding: 60px 30px;
    box-shadow: var(--shadow-md);
}

.no-posts i {
    color: var(--gray-400);
}

/* Responsive */
@media (max-width: 992px) {
    .blog-sidebar {
        margin-top: 50px;
        position: static;
    }
    
    .blog-card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .blog-card-image {
        height: 180px;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}



/* ==================== PAGE HEADER ==================== */
.page-header-section {
    background: linear-gradient(135deg, var(--orange-100), var(--white));
    padding: 150px 0 80px;
    margin-top: 90px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.breadcrumb {
    justify-content: center;
    background: transparent;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--gray-600);
}

/* ==================== ABOUT MAIN ==================== */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
}

.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    animation: pulse 2s infinite;
    box-shadow: var(--shadow-lg);
}

.video-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,107,53,0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255,107,53,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,107,53,0);
    }
}

.about-content-wrapper {
    padding-left: 30px;
}

.about-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Mission/Vision Cards */
.mv-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    height: 100%;
    text-align: center;
    border: 1px solid var(--border-color);
}

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

.mv-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.mv-card:hover .mv-icon {
    background: var(--primary);
}

.mv-icon i {
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s;
}

.mv-card:hover .mv-icon i {
    color: var(--white);
}

.mv-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.mv-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

/* Stats Section */
.stats-section .stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--orange-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 30px;
    color: var(--primary);
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--orange-100);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
}

.feature-icon-wrapper i {
    font-size: 30px;
    color: var(--primary);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon-wrapper i {
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
}

.feature-list i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.3s;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social .social-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.team-social .social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px 20px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-bio {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .team-image {
        height: 250px;
    }
}