/* ===================================
   OGINTECH INTEGRATED SERVICES LTD
   Complete Stylesheet
   Version: 1.0.0
   =================================== */

/* ===================================
   TABLE OF CONTENTS
   1. CSS Variables
   2. Reset & Base Styles
   3. Preloader
   4. Scroll to Top Button
   5. Header & Navigation
   6. Hero Slider
   7. Buttons
   8. Section Styles
   9. Features Section
   10. About Section
   11. Services Section
   12. Stats Section
   13. CTA Section
   14. Footer
   15. Page Header
   16. About Page Styles
   17. Services Page Styles
   18. Contact Page Styles
   19. Projects Page Styles
   20. Testimonials Page Styles
   21. Quote Page Styles
   22. Blog Section Styles
   23. Partners Section Styles
   24. 404 Page Styles
   25. Responsive Design
   26. Utility Classes
   27. Animations
   =================================== */

/* ===================================
   1. CSS VARIABLES
   =================================== */
:root {
    --primary-color: #E31E24;
    --primary-dark: #c01419;
    --secondary-color: #2C2C2C;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #F5F5F5;
    --white: #FFFFFF;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 30px rgba(227, 30, 36, 0.2);
    --transition: all 0.3s ease;
}

/* ===================================
   2. RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    max-width: 100%;
    padding: 0 2rem;
}

/* ===================================
   3. PRELOADER
   =================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--bg-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===================================
   4. SCROLL TO TOP BUTTON
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    font-size: 1.2rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

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

/* ===================================
   5. HEADER & NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

/* Top Bar */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--text-light);
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.btn-quote {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
}

.btn-quote:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   6. HERO SLIDER
   =================================== */
.hero-slider {
    position: relative;
    height: 85vh;
    margin-top: 120px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.85), rgba(44, 44, 44, 0.85));
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--white);
}

.slide-text {
    max-width: 800px;
}

.slide-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* ===================================
   7. BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

/* ===================================
   8. SECTION STYLES
   =================================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header h2 span {
    color: var(--primary-color);
}

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

.section-header .underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto;
}

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

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-content h2 span {
    color: var(--primary-color);
}

.intro-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===================================
   9. FEATURES SECTION
   =================================== */
.features-section {
    background: var(--white);
    padding: 3rem 0;
    margin-top: -4rem;
    position: relative;
    z-index: 100;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-box p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   10. ABOUT SECTION
   =================================== */
.about-preview {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text h2 span {
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

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

/* ===================================
   11. SERVICES SECTION
   =================================== */
.services-preview {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

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

.service-body {
    padding: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -3.5rem 0 1.5rem 0;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.service-body h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
}

/* ===================================
   12. STATS SECTION
   =================================== */
.stats-section {
    background: linear-gradient(135deg, var(--secondary-color), #1a1a1a);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===================================
   13. CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   14. FOOTER
   =================================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: start;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-info span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ===================================
   15. PAGE HEADER
   =================================== */
.page-header {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.9), rgba(44, 44, 44, 0.9)),
                url('https://images.unsplash.com/photo-1615840287214-7ff58936c4cf?w=1920');
    background-size: cover;
    background-position: center;
    padding: 10rem 0 5rem;
    margin-top: 120px;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   16. ABOUT PAGE STYLES
   =================================== */

/* Company Overview */
.company-overview {
    padding: 5rem 0;
    background: var(--bg-light);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.image-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.image-badge h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.image-badge p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.overview-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.overview-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.highlight-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.highlight-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Mission Vision Values */
.mvv-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.mvv-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

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

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.values-list {
    text-align: left;
    margin-top: 1rem;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.values-list i {
    color: var(--primary-color);
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

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

.why-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.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-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 30, 36, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-overlay .social-links {
    display: flex;
    gap: 1rem;
}

.team-overlay .social-links a {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-overlay .social-links a:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cert-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.cert-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cert-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   17. SERVICES PAGE STYLES
   =================================== */

.services-intro {
    padding: 3rem 0;
    background: var(--white);
    text-align: center;
}

.service-category {
    padding: 4rem 0;
    background: var(--bg-light);
}

.service-category.alt-bg {
    background: var(--white);
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.category-header h2 i {
    color: var(--primary-color);
}

.category-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-detailed-grid {
    display: grid;
    gap: 3rem;
}

.service-detailed-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 400px 1fr;
    transition: var(--transition);
}

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

.service-detailed-image {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

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

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

.service-detailed-content {
    padding: 2.5rem;
    position: relative;
}

.service-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detailed-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-detailed-content h3 i {
    color: var(--primary-color);
}

.service-detailed-content > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 2rem 0;
}

.service-features h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-features ul li i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 1rem;
}

.service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ===================================
   18. CONTACT PAGE STYLES
   =================================== */

.contact-info-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-info-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* Contact Main Section */
.contact-main-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid transparent;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.sidebar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sidebar-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.quick-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.quick-contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.quick-contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.quick-contact-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.quick-contact-item a {
    color: var(--text-light);
    text-decoration: none;
}

.quick-contact-item a:hover {
    color: var(--primary-color);
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: var(--white);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.social-links-large a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.social-links-large a i {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

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

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.cta-card h3,
.cta-card p {
    color: var(--white);
}

.cta-card .btn {
    background: var(--white);
    color: var(--primary-color);
}

.cta-card .btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.map-wrapper iframe {
    display: block;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.map-info-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.map-info-item p {
    color: var(--text-light);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.accordion-header h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.accordion-header i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .accordion-body {
    max-height: 500px;
}

.accordion-body p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   19. PROJECTS PAGE STYLES
   =================================== */

.projects-intro {
    padding: 3rem 0;
    background: var(--white);
    text-align: center;
}

.projects-filter-section {
    padding: 2rem 0;
    background: var(--bg-light);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.projects-gallery {
    padding: 4rem 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.project-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    height: 300px;
    overflow: hidden;
}

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

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    background: linear-gradient(to top, rgba(227, 30, 36, 0.95), rgba(227, 30, 36, 0.7));
}

.project-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.project-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.3);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
}

/* ===================================
   20. TESTIMONIALS PAGE STYLES
   =================================== */

.testimonials-intro {
    padding: 3rem 0;
    background: var(--white);
    text-align: center;
}

.featured-testimonial {
    padding: 4rem 0;
    background: var(--bg-light);
}

.featured-testimonial-card {
    background: var(--white);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    opacity: 0.2;
}

.featured-content {
    margin-left: 3rem;
}

.featured-text {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.featured-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.author-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--text-light);
    margin: 0;
}

.testimonials-grid-section {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.rating {
    margin-bottom: 1rem;
}

.rating i {
    color: #FFD700;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

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

.company {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Client Logos */
.client-logos-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.client-logo-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.logo-placeholder {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

/* Share Experience */
.share-experience-section {
    padding: 5rem 0;
    background: var(--white);
}

.share-experience-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.share-experience-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.share-experience-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===================================
   21. QUOTE PAGE STYLES
   =================================== */

.quote-intro {
    padding: 3rem 0;
    background: var(--white);
    text-align: center;
}

.quote-form-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.quote-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.quote-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Form Steps */
.form-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60%;
    width: 100%;
    height: 2px;
    background: var(--bg-light);
    z-index: -1;
}

.step:last-child::after {
    display: none;
}

.step.active::after {
    background: var(--primary-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--primary-color);
    color: var(--white);
}

.step span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.step.active span {
    color: var(--primary-color);
}

/* Form Steps Content */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

.form-step h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-label:hover {
    background: var(--primary-color);
    color: var(--white);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked + span {
    font-weight: 600;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    align-items: start;
}

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

.process-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.process-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Why Choose Quote Section */
.why-choose-quote {
    padding: 4rem 0;
    background: var(--white);
}

.why-grid-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem 1rem;
}

.why-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.why-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   22. BLOG SECTION STYLES
   =================================== */

.blog-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.blog-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.blog-section .section-header h2 span {
    color: var(--primary-color);
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

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

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

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

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

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

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

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

.blog-card .blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Badge */
.blog-card::before {
    content: 'New';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

/* Blog Date */
.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(227, 30, 36, 0.9);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.blog-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===================================
   23. PARTNERS SECTION STYLES
   =================================== */

.partners-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.partners-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.partners-section .section-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.partners-section .section-header h2 span {
    color: var(--primary-color);
}

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

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo {
    flex: 0 1 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Partner logo tooltip */
.partner-logo::after {
    content: attr(data-partner);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.partner-logo:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

/* Partners Carousel */
.partners-carousel {
    position: relative;
    overflow: hidden;
}

.partners-track {
    display: flex;
    animation: scroll-partners 30s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

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

/* ===================================
   24. 404 PAGE STYLES
   =================================== */

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.error-container {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.error-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #2ecc71, #e74c3c, #f39c12);
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: bounce 2s infinite alternate;
}

.error-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.error-message {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.error-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.error-btn.outline {
    background: transparent;
    color: var(--primary-color);
}

.error-btn.outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.error-btn i {
    margin-right: 8px;
}

/* 404 Page Animation */
@keyframes bounce {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Search box for 404 page */
.error-search {
    max-width: 400px;
    margin: 30px auto;
    position: relative;
}

.error-search input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.error-search input:focus {
    border-color: var(--primary-color);
}

.error-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

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

/* ===================================
   25. RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    .features-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .quote-main-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        gap: 30px;
    }
    
    .partner-logo {
        flex: 0 1 160px;
    }
}

@media (max-width: 968px) {
    .hero-slider {
        margin-top: 100px;
        height: 70vh;
    }

    .slide-text h1 {
        font-size: 2.5rem;
    }

    .slide-text p {
        font-size: 1.1rem;
    }

    .top-bar-content {
        justify-content: center;
        text-align: center;
        gap: 1rem;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        width: 100%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 120px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image img {
        height: 400px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .check-list {
        grid-template-columns: 1fr;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .overview-image img {
        height: 400px;
    }
    
    .mvv-grid,
    .why-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detailed-card {
        grid-template-columns: 1fr;
    }
    
    .service-detailed-image {
        min-height: 250px;
    }
    
    .category-header h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-testimonial-card {
        padding: 2.5rem;
    }
    
    .featured-content {
        margin-left: 0;
    }
    
    .featured-text {
        font-size: 1.2rem;
    }
    
    .client-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }
    
    .step::after {
        display: none;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-form-wrapper {
        padding: 2rem;
    }
    
    /* Blog Section Responsive */
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-section .section-header h2 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-card .blog-image {
        height: 200px;
    }
    
    /* Partners Section Responsive */
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .partners-grid {
        gap: 20px;
    }
    
    .partner-logo {
        flex: 0 1 140px;
        height: 80px;
        padding: 15px;
    }
    
    .partner-logo img {
        max-height: 50px;
    }
    
    /* 404 Page Responsive */
    .error-container {
        padding: 40px 20px;
        margin: 20px;
    }
    
    .error-code {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-message {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slide-text h1 {
        font-size: 2rem;
    }

    .slide-text p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .slider-arrows {
        padding: 0 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-slider {
        margin-top: 120px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .service-detailed-content h3 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: start;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .service-actions .btn {
        width: 100%;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 250px;
    }
    
    .quote-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .featured-author {
        flex-direction: column;
        text-align: center;
    }
    
    .form-steps {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .form-navigation .btn {
        width: 100%;
    }
    
    .why-grid-simple {
        grid-template-columns: 1fr;
    }
    
    .blog-card .blog-content {
        padding: 20px;
    }
    
    .blog-card .blog-content h3 {
        font-size: 1.1rem;
    }
    
    .partner-logo {
        flex: 0 1 120px;
        height: 70px;
        padding: 10px;
    }
    
    .error-code {
        font-size: 4rem;
    }
}

/* ===================================
   26. UTILITY CLASSES
   =================================== */

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* ===================================
   27. ANIMATIONS
   =================================== */

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

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 1s ease;
}

.animate-fade-up.delay-1 {
    animation-delay: 0.2s;
    animation-fill-mode: backwards;
}

.animate-fade-up.delay-2 {
    animation-delay: 0.4s;
    animation-fill-mode: backwards;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Filter Item Animation */
.filter-item {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s, transform 0.3s;
}

/* Loading Animation for Blog */
.blog-card .blog-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .blog-section {
        background: #1a1a1a;
    }
    
    .blog-card {
        background: #2d2d2d;
    }
    
    .blog-card .blog-content h3 a {
        color: var(--white);
    }
    
    .blog-card .blog-content p {
        color: #ccc;
    }
    
    .partners-section {
        background: #1a1a1a;
        border-color: #333;
    }
    
    .partner-logo {
        background: #2d2d2d;
    }
}

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

/* Blog Intro */
.blog-intro {
    padding: 4rem 0;
    background: var(--white);
}

.blog-intro .intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-intro .intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.blog-intro .intro-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Blog Main Section */
.blog-main-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.blog-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

/* Featured Article */
.featured-article {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    transition: var(--transition);
}

.featured-article:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

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

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-badge i {
    margin-right: 5px;
}

.featured-content {
    padding: 2.5rem;
}

.featured-content .blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.featured-content .blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.featured-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.featured-content h2 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.featured-content h2 a:hover {
    color: var(--primary-color);
}

.featured-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Blog Filter */
.blog-filter-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.filter-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

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

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 1;
    transform: scale(1);
}

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

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

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

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

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(227, 30, 36, 0.9);
    color: var(--white);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.2;
}

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

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

.blog-card .blog-content {
    padding: 1.5rem;
}

.blog-card .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-category {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-read-time {
    color: var(--text-light);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

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

.blog-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid #e9ecef;
}

.page-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-weight: 600;
}

.page-nav:hover:not(.disabled) {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.page-nav.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-weight: 600;
}

.page-number:hover,
.page-number.active {
    background: var(--primary-color);
    color: var(--white);
}

.page-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--bg-light);
    color: var(--text-dark);
}

/* Search Widget */
.search-widget {
    position: relative;
}

.search-widget input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-widget input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-widget button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Categories Widget */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--bg-light);
    transition: var(--transition);
}

.categories-list li:last-child a {
    border-bottom: none;
}

.categories-list li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.category-count {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Popular Posts Widget */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.popular-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.popular-post:hover .popular-image img {
    transform: scale(1.1);
}

.popular-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.popular-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.popular-content h4 a:hover {
    color: var(--primary-color);
}

.popular-date {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.newsletter-widget h3,
.newsletter-widget p {
    color: var(--white);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.9rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

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

.newsletter-form .btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Responsive Design for Blog Page */
@media (max-width: 968px) {
    .blog-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .featured-content {
        padding: 2rem;
    }
    
    .featured-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .blog-pagination {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .page-numbers {
        order: -1;
    }
}

@media (max-width: 768px) {
    .blog-intro .intro-content h2 {
        font-size: 2rem;
    }
    
    .featured-content .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .featured-image {
        height: 250px;
    }
    
    .featured-content {
        padding: 1.5rem;
    }
    
    .blog-filter-section {
        padding: 1rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
    
    .popular-post {
        flex-direction: column;
        text-align: center;
    }
    
    .popular-image {
        width: 100%;
        height: 120px;
    }
    /* Enhanced Pagination Styles */
.blog-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid #e9ecef;
    position: relative;
}

.page-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-weight: 600;
    min-width: 120px;
    justify-content: center;
}

.page-nav:hover:not(.disabled) {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.page-nav.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: var(--shadow) !important;
}

.page-nav.disabled:hover {
    background: var(--white) !important;
    color: var(--text-dark) !important;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
}

.page-number:hover,
.page-number.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.page-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    padding: 0 0.5rem;
}

/* Page Info Styling */
.page-info {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 0.9rem;
    background: var(--bg-light);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* Loading Animation for Page Transitions */
.blog-grid {
    position: relative;
    min-height: 500px; /* Ensure space for loading */
}

.blog-card {
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .blog-pagination {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .page-numbers {
        order: -1;
    }
    
    .page-nav {
        min-width: 140px;
        width: 100%;
        max-width: 200px;
    }
    
    .page-info {
        position: static;
        transform: none;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .page-numbers {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-ellipsis {
        display: none;
    }
    
    .page-nav {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}
}

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

/* Blog Post Hero */
.blog-post-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.05), rgba(44, 44, 44, 0.05));
    margin-top: 120px;
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.blog-post-title {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.blog-post-excerpt {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.blog-post-featured-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-post-featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-featured-image:hover img {
    transform: scale(1.02);
}

/* Blog Post Content */
.blog-post-content {
    padding: 4rem 0;
    background: var(--white);
}

.blog-post-body {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-body h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--text-dark);
    line-height: 1.4;
    position: relative;
    padding-bottom: 0.5rem;
}

.blog-post-body h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.blog-post-body h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.blog-post-body h4 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.blog-post-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.blog-post-body ul, .blog-post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-body li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-dark);
    position: relative;
}

.blog-post-body ul li::before {
    content: '';
    position: absolute;
    left: -1.2rem;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.blog-post-body ol {
    counter-reset: list-counter;
}

.blog-post-body ol li {
    counter-increment: list-counter;
}

.blog-post-body ol li::before {
    content: counter(list-counter) '.';
    position: absolute;
    left: -1.2rem;
    top: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.blog-post-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: var(--bg-light);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    position: relative;
}

.blog-post-body blockquote::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.blog-post-body blockquote p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
    position: relative;
    z-index: 1;
}

.blog-post-image {
    margin: 2.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-post-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.8rem;
    font-style: italic;
    padding: 0 1rem;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--bg-light);
    border-bottom: 1px solid var(--bg-light);
}

.blog-post-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

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

.blog-post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--bg-light);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social-share {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-share h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 0.8rem;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.share-button.facebook { background: #3b5998; }
.share-button.twitter { background: #1da1f2; }
.share-button.linkedin { background: #0077b5; }
.share-button.whatsapp { background: #25d366; }

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.print-button .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-bio {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: var(--transition);
}

.author-bio:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 0.5rem;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.related-posts {
    padding: 4rem 0;
    background: var(--bg-light);
}

.related-posts h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.related-posts h3 span {
    color: var(--primary-color);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    gap: 1.5rem;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    max-width: 300px;
    flex: 1;
}

.nav-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.nav-button.prev {
    text-align: left;
}

.nav-button.next {
    text-align: right;
    flex-direction: row-reverse;
}

.nav-button i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.nav-button-content h4 {
    font-size: 0.9rem;
    margin: 0 0 0.3rem;
    color: inherit;
    opacity: 0.8;
    font-weight: 500;
}

.nav-button-content h3 {
    font-size: 1.1rem;
    margin: 0;
    color: inherit;
    line-height: 1.3;
    font-weight: 600;
}

.comments-section {
    padding: 3rem 0;
    border-top: 1px solid var(--bg-light);
}

.comments-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.comments-section > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.comment-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.comment-form h4 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid transparent;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Table Styles for Blog Posts */
.blog-post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.blog-post-body th {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.blog-post-body td {
    padding: 1rem;
    border-bottom: 1px solid var(--bg-light);
    background: var(--white);
}

.blog-post-body tr:nth-child(even) td {
    background: var(--bg-light);
}

.blog-post-body tr:hover td {
    background: rgba(227, 30, 36, 0.05);
}

/* Code Block Styles */
.blog-post-body pre {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.blog-post-body code {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.highlight-box h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

/* Statistics Box */
.stats-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Print Styles */
@media print {
    .header,
    .blog-post-actions,
    .related-posts,
    .cta-section,
    .footer {
        display: none !important;
    }
    
    .blog-post-hero {
        margin-top: 0;
        padding-top: 2rem;
    }
    
    .blog-post-title {
        font-size: 2rem;
        color: #000 !important;
    }
    
    .blog-post-body {
        color: #000 !important;
    }
    
    .blog-post-body h2,
    .blog-post-body h3 {
        color: #000 !important;
    }
    
    a {
        color: #000 !important;
        text-decoration: underline;
    }
}

/* Responsive Design for Blog Post */
@media (max-width: 968px) {
    .blog-post-title {
        font-size: 2.2rem;
    }
    
    .blog-post-featured-image img {
        height: 400px;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .navigation-buttons {
        flex-direction: column;
    }
    
    .nav-button {
        max-width: 100%;
    }
    
    .blog-post-body h2 {
        font-size: 1.8rem;
    }
    
    .blog-post-body h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .blog-post-hero {
        margin-top: 100px;
        padding: 3rem 0 1rem;
    }
    
    .blog-post-title {
        font-size: 1.8rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-post-excerpt {
        font-size: 1.1rem;
    }
    
    .blog-post-featured-image img {
        height: 300px;
    }
    
    .blog-post-body h2 {
        font-size: 1.6rem;
    }
    
    .blog-post-body h3 {
        font-size: 1.3rem;
    }
    
    .blog-post-body p {
        font-size: 1rem;
    }
    
    .blog-post-actions {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .social-share {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .blog-post-container {
        padding: 0 1.5rem;
    }
    
    .comment-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-post-title {
        font-size: 1.6rem;
    }
    
    .blog-post-excerpt {
        font-size: 1rem;
    }
    
    .blog-post-featured-image img {
        height: 250px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-body h2 {
        font-size: 1.4rem;
    }
    
    .blog-post-body h3 {
        font-size: 1.2rem;
    }
    
    .blog-post-tags {
        justify-content: center;
    }
    
    .author-bio {
        padding: 1.5rem;
    }
    
    .stats-box {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .blog-post-hero {
        background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(44, 44, 44, 0.2));
    }
    
    .blog-post-body blockquote {
        background: #2d2d2d;
    }
    
    .blog-post-body table td {
        background: #2d2d2d;
        color: #fff;
    }
    
    .blog-post-body tr:nth-child(even) td {
        background: #3d3d3d;
    }
    
    .comment-form {
        background: #2d2d2d;
    }
    
    .form-group input,
    .form-group textarea {
        background: #3d3d3d;
        color: #fff;
        border-color: #555;
    }
}

/* Animation for Blog Post Elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-post-header,
.blog-post-body h2,
.blog-post-body h3,
.blog-post-body p,
.blog-post-image,
.blog-post-body blockquote {
    animation: fadeInUp 0.6s ease-out;
}

.blog-post-body h2 { animation-delay: 0.1s; }
.blog-post-body h3 { animation-delay: 0.2s; }
.blog-post-body p { animation-delay: 0.3s; }
.blog-post-image { animation-delay: 0.4s; }
.blog-post-body blockquote { animation-delay: 0.5s; }

/* Progress Bar for Reading */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--bg-light);
    z-index: 1000;
}

.reading-progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.3s ease;
}

/* Back to Top Button for Long Articles */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}
/* ===================================
   END OF STYLESHEET
   =================================== */