/* ========================================
   SIA SOLAR - Main Stylesheet
   Colors: #EE0D08 (Red), White, Black, #101927
   Fonts: Chivo (Headings), Roboto (Body)
   ======================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Chivo:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* ========================================
   CSS Variables / Design Tokens
   ======================================== */
:root {
    /* Primary Colors */
    --primary: #EE0D08;
    --primary-dark: #c40a06;
    --primary-light: #ff3b37;
    
    /* Neutral Colors */
    --dark: #101927;
    --dark-light: #1a2535;
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    
    /* Gradients */
    --gradient-dark: linear-gradient(135deg, #101927 0%, #1a2535 100%);
    --gradient-black: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    
    /* Typography */
    --font-heading: 'Chivo', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Spacing */
    --section-padding: 70px;
    --section-padding-sm: 50px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    font-size: 15px;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

/* ========================================
   Utility Classes
   ======================================== */
.section-padding {
    padding: var(--section-padding) 0;
}

.section-padding-sm {
    padding: var(--section-padding-sm) 0;
}

.bg-dark {
    background: var(--gradient-dark);
}

.bg-light {
    background-color: var(--gray-100);
}

.text-primary {
    color: var(--primary) !important;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.section-header h2 {
    margin-bottom: 15px;
    font-weight: 500;
}

.section-header p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 15px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 15px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* ========================================
   HEADER - Clean White Design
   ======================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1000;
    border: none !important;
    border-bottom: none !important;
}

.header::after {
    display: none !important;
}

.navbar {
    padding: 12px 0;
    border: none !important;
    border-bottom: none !important;
}

.navbar::after {
    display: none !important;
}

.navbar-brand img {
    height: 45px;
    transition: var(--transition-normal);
}

.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    color: var(--dark) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 16px !important;
    text-transform: capitalize;
    transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    min-width: 240px;
    margin-top: 10px;
}

.dropdown-item {
    font-family: var(--font-heading);
    padding: 10px 20px;
    font-weight: 500;
    font-size: 13px;
    color: var(--gray-700);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary);
    padding-left: 25px;
}

.dropdown-item i {
    margin-right: 10px;
    color: var(--primary);
    width: 18px;
}

.header-cta .btn {
    padding: 10px 24px;
    font-size: 13px;
}

.navbar-toggler {
    border: 2px solid var(--gray-300);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(16, 25, 39, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 50px 0;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
}

.hero-content h1 span {
    color: var(--white);
}

.hero-content p {
    color: var(--white);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.hero-stats {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Trust Bar
   ======================================== */
.trust-bar {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.trust-item-text h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--dark);
}

.trust-item-text span {
    color: var(--gray-600);
    font-size: 13px;
}

/* ========================================
   Solution / Service Cards
   ======================================== */
.solution-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.solution-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.solution-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.solution-card:hover .solution-card-img img {
    transform: scale(1.05);
}

.solution-card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.solution-card:hover .solution-card-img-overlay {
    opacity: 1;
}

.solution-card-img-overlay a {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transform: scale(0);
    transition: var(--transition-normal);
}

.solution-card:hover .solution-card-img-overlay a {
    transform: scale(1);
}

.solution-card-body {
    padding: 25px;
}

.solution-card-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: -50px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.solution-card-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.solution-card-body h4 {
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 1.1rem;
}

.solution-card-body p {
    margin-bottom: 15px;
    font-size: 14px;
}

.solution-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--primary);
}

.solution-card-link i {
    transition: var(--transition-normal);
}

.solution-card-link:hover i {
    transform: translateX(5px);
}

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
}

.service-card:hover .service-card-icon {
    background: var(--primary);
}

.service-card-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.service-card:hover .service-card-icon i {
    color: var(--white);
}

.service-card h4 {
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 1.05rem;
}

.service-card p {
    margin-bottom: 0;
    font-size: 14px;
}

/* ========================================
   Process Section
   ======================================== */
/* Process Section - Red Icons */
.process-section {
    background: var(--gray-100);
    padding: var(--section-padding-sm) 0;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.process-step-icon {
    width: 70px;
    height: 70px;
    background: #EE0D08;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step-icon i {
    font-size: 1.6rem;
    font-weight: 300;
    color: #ffffff;
}

.process-step h4 {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 1rem;
}

.process-step p {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 300;
}

/* ========================================
   Stats Section
   ======================================== */
/* Stats Section - Solar Image Background */
.stats-section {
    background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 50px 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 23, 41, 0.5);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 25px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: 'Chivo', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Calculator Card
   ======================================== */
.calculator-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
}

.calculator-card:hover {
    box-shadow: var(--shadow-md);
}

.calculator-card h4 {
    font-weight: 500;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-section {
    background: var(--gray-100);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    height: 100%;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color: var(--gray-200);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--primary);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    margin-bottom: 3px;
    font-size: 1rem;
    font-weight: 500;
}

.testimonial-author-info span {
    color: var(--gray-600);
    font-size: 13px;
}

/* ========================================
   FAQ Accordion
   ======================================== */
.faq-section {
    background: var(--white);
}

.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    padding: 18px 22px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    background: var(--white);
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--dark);
    color: var(--white);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23101927'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px 22px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: var(--primary);
    padding: var(--section-padding-sm) 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 500;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.cta-section .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}


/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    background: var(--gray-100);
}

.contact-info-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    color: var(--white);
    height: 100%;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-item h5 {
    color: var(--white);
    margin-bottom: 3px;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-info-item p, .contact-info-item a {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 14px;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-social {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social h5 {
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 8px;
    transition: var(--transition-normal);
}

.contact-social a:hover {
    background: var(--primary);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    margin-bottom: 25px;
    font-weight: 500;
}

.form-label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-control, .form-select {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-normal);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(238, 13, 8, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #101729;
    color: var(--gray-400);
    padding: 60px 0 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-about p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    margin-right: 8px;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-500);
    font-size: 14px;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.footer-contact span {
    color: var(--gray-500);
}

.footer-contact a {
    color: #adb5bd;
    font-size: 14px;
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-vertical {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
}

.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ========================================
   Page Header / Breadcrumb
   ======================================== */
.page-header {
    background: var(--gradient-dark);
    padding: 100px 0 60px;
    position: relative;
}

.page-header-content {
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 500;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Projects Gallery
   ======================================== */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.project-filter-btn {
    padding: 10px 25px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 13px;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition-normal);
}

.project-filter-btn:hover,
.project-filter-btn.active {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.project-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.project-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.project-card:hover .project-card-img img {
    transform: scale(1.05);
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card-overlay a {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: var(--transition-normal);
}

.project-card:hover .project-card-overlay a {
    transform: scale(1);
}

.project-card-body {
    padding: 20px;
    background: var(--white);
}

.project-card-category {
    display: inline-block;
    background: var(--gray-100);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 10px;
}

.project-card-body h4 {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.project-card-meta {
    display: flex;
    gap: 15px;
    color: var(--gray-600);
    font-size: 13px;
}

.project-card-meta i {
    color: var(--primary);
    margin-right: 5px;
}

/* ========================================
   Pricing Cards
   ======================================== */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 35px;
    font-size: 11px;
    font-weight: 500;
    transform: rotate(45deg);
}

.pricing-card-header h4 {
    margin-bottom: 10px;
    font-weight: 500;
}

.pricing-features {
    text-align: left;
    margin: 25px 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary);
}

.pricing-features li.disabled {
    color: var(--gray-500);
}

.pricing-features li.disabled i {
    color: var(--gray-400);
}

/* ========================================
   Floating Buttons
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1199px) {
    :root {
        --section-padding: 60px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 12px !important;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 15px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--gray-200);
    }
    
    .navbar-nav {
        gap: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .header-cta {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--gray-200);
    }
    
    .header-cta .btn {
        width: 100%;
    }
    
    .stat-item::after {
        display: none;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 50px;
        --section-padding-sm: 40px;
    }
    
    .hero {
        min-height: auto;
        padding: 70px 0;
    }
    
    .hero-content {
        padding: 30px 0;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 25px;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .trust-item {
        margin-bottom: 20px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .contact-info-card {
        margin-bottom: 25px;
    }
    
    .footer {
        text-align: center;
        padding: 50px 0 30px;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
        display: flex;
        gap: 8px;
    }
    
    .footer-contact {
        display: inline-block;
        text-align: left;
    }
    
    .page-header {
        padding: 80px 0 50px;
    }
}

@media (max-width: 575px) {
    .btn {
        padding: 10px 20px;
    }
    
    .btn-lg {
        padding: 12px 25px;
    }
    
    .calculator-card {
        padding: 25px 20px;
    }
    
    .contact-form-card {
        padding: 25px 20px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
}

/* ========================================
   Animation Classes
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* about us code */

/* ========================================
   ADDITIONAL CSS FOR ABOUT PAGE UPDATES
   Add this to your main style.css file
   ======================================== */

/* Mission & Vision Cards - Modern Design */
.mission-vision-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transition: var(--transition-normal);
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-vision-card:hover::before {
    width: 8px;
}

.mission-vision-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

.mission-vision-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(238, 13, 8, 0.3);
}

.mission-vision-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.mission-vision-header h3 {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--dark);
}

.mission-vision-card .lead {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 25px;
    line-height: 1.7;
}

.mission-vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-vision-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}

.mission-vision-list li:last-child {
    margin-bottom: 0;
}

.mission-vision-list li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Optional: Different styling for Vision card */
.vision-card .mission-vision-icon {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    box-shadow: 0 4px 15px rgba(16, 25, 39, 0.3);
}

.vision-card .mission-vision-list li i {
    color: #FFC107;
}

/* Why Choose Us - Numbered Items (No Icons) */
.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-number {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(238, 13, 8, 0.25);
}

.why-content {
    flex: 1;
}

.why-content h5 {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--dark);
}

.why-content p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
}

/* Page Header with Background Image */
.page-header {
    position: relative;
}

/* Stat Icon Styling (if not already in main CSS) */
.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .mission-vision-card {
        padding: 35px 30px;
        margin-bottom: 25px;
    }
    
    .mission-vision-header {
        flex-direction: row;
    }
    
    .mission-vision-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-vision-icon i {
        font-size: 1.4rem;
    }
    
    .why-item {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .mission-vision-card {
        padding: 30px 25px;
    }
    
    .mission-vision-header {
        gap: 15px;
    }
    
    .mission-vision-header h3 {
        font-size: 1.3rem;
    }
    
    .why-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .why-content h5 {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .mission-vision-card {
        padding: 25px 20px;
    }
    
    .mission-vision-icon {
        width: 50px;
        height: 50px;
    }
    
    .mission-vision-icon i {
        font-size: 1.2rem;
    }
    
    .why-item {
        gap: 15px;
    }
}

/* services page */

/* ========================================
   SERVICES PAGE - ADDITIONAL CSS
   Add this to your main style.css file
   ======================================== */

/* Modern Process Cards - How We Work */
.modern-process-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.modern-process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.modern-process-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--gray-100);
    line-height: 1;
    z-index: 1;
}

.modern-process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(238, 13, 8, 0.3);
    transition: var(--transition-normal);
}

.modern-process-card:hover .modern-process-icon {
    transform: scale(1.1) rotate(-5deg);
}

.modern-process-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.modern-process-card h4 {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.modern-process-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* What's Included Cards */
.included-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.included-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.included-card:hover .included-icon {
    background: var(--primary);
}

.included-icon i {
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.included-card:hover .included-icon i {
    color: var(--white);
}

.included-card h5 {
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.included-card p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Service Advantage List */
.service-advantage-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-advantage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-advantage-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(238, 13, 8, 0.25);
}

.service-advantage-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.service-advantage-item h5 {
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.service-advantage-item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Service Location Cards */
.service-location-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.service-location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.service-location-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.service-location-card span {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
}

/* Old Process Section - Keep for backward compatibility */
.process-step {
    position: relative;
    text-align: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.process-step-number span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.process-step h5 {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    margin-bottom: 0;
    color: var(--gray-600);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .modern-process-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .modern-process-number {
        font-size: 4rem;
        top: -5px;
        right: 15px;
    }
    
    .modern-process-icon {
        width: 65px;
        height: 65px;
    }
    
    .modern-process-icon i {
        font-size: 1.4rem;
    }
    
    .service-advantage-list {
        gap: 20px;
    }
    
    .service-advantage-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-advantage-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .modern-process-card {
        padding: 25px 20px;
    }
    
    .modern-process-number {
        font-size: 3.5rem;
        top: 0;
        right: 10px;
    }
    
    .modern-process-icon {
        width: 60px;
        height: 60px;
    }
    
    .modern-process-icon i {
        font-size: 1.3rem;
    }
    
    .modern-process-card h4 {
        font-size: 1.1rem;
    }
    
    .included-card {
        padding: 20px;
    }
    
    .included-icon {
        width: 55px;
        height: 55px;
    }
    
    .included-icon i {
        font-size: 1.2rem;
    }
    
    .service-advantage-item {
        gap: 15px;
    }
    
    .service-location-card {
        padding: 15px 10px;
    }
    
    .service-location-card i {
        font-size: 1.3rem;
    }
    
    .service-location-card span {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .modern-process-number {
        font-size: 3rem;
    }
    
    .modern-process-card h4 {
        font-size: 1rem;
    }
    
    .modern-process-card p {
        font-size: 13px;
    }
    
    .included-card .row {
        flex-direction: column;
        text-align: center;
    }
    
    .included-icon {
        margin: 0 auto 15px;
    }
    
    .service-advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-advantage-icon {
        margin: 0 auto;
    }
}



/* project css */

/* ========================================
   PROJECTS PAGE - COMPLETE MODERN CSS
   Add this to your main style.css file
   ======================================== */

/* Modern Project Filters */
.modern-project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.modern-filter-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-filter-btn i {
    font-size: 14px;
}

.modern-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.modern-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(238, 13, 8, 0.3);
}

/* Modern Project Cards */
.modern-project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.modern-project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.modern-project-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.modern-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-project-card:hover .modern-project-img img {
    transform: scale(1.1);
}

.modern-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.modern-project-card:hover .modern-project-overlay {
    opacity: 1;
}

.modern-project-view {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: scale(0);
    transition: var(--transition-normal);
}

.modern-project-card:hover .modern-project-view {
    transform: scale(1);
}

.modern-project-view:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.1);
}

.modern-project-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.modern-project-badge.society {
    background: #2196F3;
}

.modern-project-badge.commercial {
    background: #FF9800;
}

.modern-project-body {
    padding: 25px;
}

.modern-project-body h4 {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.modern-project-location {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-project-location i {
    color: var(--primary);
}

.modern-project-details {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 15px;
}

.modern-project-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-700);
}

.modern-project-detail-item i {
    color: var(--primary);
}

.modern-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-normal);
}

.modern-project-btn:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.modern-project-btn i {
    transition: var(--transition-normal);
}

/* Project Highlights Cards */
.highlight-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(238, 13, 8, 0.3);
}

.highlight-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.highlight-card h4 {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.highlight-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Improved Before/After Cards */
.improved-before-after-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    margin-bottom: 30px;
}

.improved-before-after-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.improved-ba-img-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.improved-ba-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.improved-before-after-card:hover .improved-ba-img {
    transform: scale(1.05);
}

.improved-ba-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    z-index: 2;
}

.improved-ba-label.after {
    background: var(--primary);
}

.improved-ba-content {
    padding: 35px;
}

.improved-ba-content h3 {
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.improved-ba-desc {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 25px;
}

.improved-ba-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--gray-200);
}

.improved-ba-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.improved-ba-stat-item i {
    width: 45px;
    height: 45px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.improved-ba-stat-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.improved-ba-stat-item strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    display: block;
}

.improved-ba-stat-item span {
    font-size: 12px;
    color: var(--gray-600);
    display: block;
}

/* Before/After Cards - Old Style (Keep for backward compatibility) */
.before-after-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.before-after-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.before-after-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.before-after-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.before-after-card:hover .before-after-img img {
    transform: scale(1.05);
}

.before-after-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.before-after-label.after-label {
    background: var(--primary);
}

.before-after-details {
    padding: 25px;
}

.before-after-details h4 {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

.before-after-details p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Client Logos Section */
.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.client-logo-item {
    flex: 0 0 auto;
}

.client-logo-box {
    width: 180px;
    height: 120px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
    padding: 20px;
}

.client-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.client-logo-box i {
    color: var(--primary);
    transition: var(--transition-normal);
}

.client-logo-box:hover i {
    transform: scale(1.1);
}

.client-logo-box p {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .modern-project-filters {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .modern-filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .modern-project-img {
        height: 220px;
    }
    
    .modern-project-body {
        padding: 20px;
    }
    
    .highlight-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .improved-ba-img-wrapper {
        height: 300px;
    }
    
    .improved-ba-content {
        padding: 30px 25px;
    }
    
    .improved-ba-stats {
        gap: 20px;
    }
    
    .improved-ba-stat-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .improved-ba-img-wrapper {
        height: 250px;
    }
    
    .improved-ba-content {
        padding: 20px 18px;
    }
    
    .improved-ba-content h3 {
        font-size: 1.2rem;
    }
    
    .improved-ba-desc {
        font-size: 14px;
    }
    
    .improved-ba-stat-item {
        gap: 12px;
    }
    
    .improved-ba-stat-item i {
        width: 38px;
        height: 38px;
    }
    
    .improved-ba-stat-item strong {
        font-size: 0.95rem;
    }
    
    .improved-ba-stat-item span {
        font-size: 11px;
    }
    
    .before-after-img {
        height: 240px;
    }
    
    .client-logo-box {
        width: 150px;
        height: 100px;
    }
}

@media (max-width: 767px) {
    .modern-project-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .modern-filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .modern-project-img {
        height: 200px;
    }
    
    .modern-project-body h4 {
        font-size: 1.1rem;
    }
    
    .modern-project-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
    }
    
    .highlight-icon i {
        font-size: 1.4rem;
    }
    
    .highlight-card h4 {
        font-size: 1.5rem;
    }
    
    .improved-ba-img-wrapper {
        height: 280px;
    }
    
    .improved-ba-content {
        padding: 25px 20px;
    }
    
    .improved-ba-content h3 {
        font-size: 1.3rem;
    }
    
    .improved-ba-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .improved-ba-label {
        top: 15px;
        left: 15px;
        padding: 6px 16px;
        font-size: 12px;
    }
    
    .before-after-images {
        grid-template-columns: 1fr;
    }
    
    .before-after-img {
        height: 220px;
    }
    
    .client-logos {
        gap: 20px;
    }
    
    .client-logo-box {
        width: 140px;
        height: 90px;
    }
    
    .client-logo-box i {
        font-size: 1.5rem;
    }
    
    .client-logo-box p {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .modern-project-img {
        height: 180px;
    }
    
    .modern-project-body {
        padding: 18px;
    }
    
    .modern-project-badge {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .highlight-card {
        padding: 25px 18px;
    }
    
    .before-after-img {
        height: 200px;
    }
    
    .before-after-details {
        padding: 20px;
    }
    
    .client-logo-box {
        width: 130px;
        height: 80px;
    }
}

/* solar calculator */

/* ========================================
   MODERN SOLAR CALCULATOR CSS
   Add this to your main style.css file
   ======================================== */

/* Modern Calculator Card */
.modern-calculator-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.modern-calc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--gray-200);
}

.modern-calc-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(238, 13, 8, 0.3);
}

.modern-calc-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.modern-calc-header h3 {
    margin: 0;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--dark);
}

/* Modern Form Styles */
.modern-form-group {
    margin-bottom: 25px;
}

.modern-form-label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 10px;
    display: block;
}

.modern-form-label i {
    color: var(--primary);
}

.modern-form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition-normal);
    background: var(--white);
}

.modern-form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(238, 13, 8, 0.1);
}

.modern-form-control::placeholder {
    color: var(--gray-500);
}

.form-help {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--gray-600);
}

/* Property Type Grid */
.property-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.property-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 10px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
}

.property-type-btn i {
    font-size: 1.8rem;
    color: var(--gray-600);
    transition: var(--transition-normal);
}

.property-type-btn span {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 13px;
    color: var(--gray-700);
    transition: var(--transition-normal);
}

.property-type-btn:hover {
    border-color: var(--primary);
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-check:checked + .property-type-btn {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(238, 13, 8, 0.3);
}

.btn-check:checked + .property-type-btn i,
.btn-check:checked + .property-type-btn span {
    color: var(--white);
}

/* Calculate Button */
.modern-calc-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(238, 13, 8, 0.3);
    margin-top: 10px;
}

.modern-calc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(238, 13, 8, 0.4);
}

.modern-calc-btn i {
    font-size: 1.1rem;
}

/* Modern Info Alert */
.modern-info-alert {
    margin-top: 25px;
    padding: 15px 20px;
    background: var(--gray-100);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.modern-info-alert i {
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.modern-info-alert strong {
    color: var(--dark);
    font-family: var(--font-heading);
}

.modern-info-alert div {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray-700);
}

/* Modern Results Card */
.modern-results-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.modern-results-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.modern-results-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(238, 13, 8, 0.5);
}

.modern-results-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.modern-results-header h3 {
    margin: 0;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--white);
}

/* Results Grid */
.modern-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.modern-result-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-normal);
}

.modern-result-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.modern-result-item.featured {
    background: rgba(238, 13, 8, 0.1);
    border-color: var(--primary);
}

.modern-result-item.eco {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
}

.result-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.modern-result-item.featured .result-icon {
    background: var(--primary);
}

.modern-result-item.eco .result-icon {
    background: #4CAF50;
}

.result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.result-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

/* Results CTA */
.modern-results-cta {
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.modern-results-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 15px;
}

.results-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Modern Placeholder Card */
.modern-placeholder-card {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    box-shadow: var(--shadow-md);
    border: 2px dashed var(--gray-300);
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-sm);
}

.placeholder-icon i {
    font-size: 3rem;
    color: var(--primary);
}

.placeholder-content h4 {
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.placeholder-content p {
    color: var(--gray-600);
    font-size: 15px;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.placeholder-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.placeholder-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.placeholder-feature i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.placeholder-feature span {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    color: var(--gray-700);
}

/* Benefits Card */
.benefit-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
}

.benefit-icon i {
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.benefit-card:hover .benefit-icon i {
    color: var(--white);
}

.benefit-card h4 {
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .modern-calculator-card,
    .modern-results-card,
    .modern-placeholder-card {
        padding: 30px 25px;
    }
    
    .property-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modern-results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .modern-calc-header,
    .modern-results-header {
        flex-direction: column;
        text-align: center;
    }
    
    .modern-calculator-card,
    .modern-results-card,
    .modern-placeholder-card {
        padding: 25px 20px;
    }
    
    .property-type-btn {
        padding: 15px 8px;
    }
    
    .property-type-btn i {
        font-size: 1.5rem;
    }
    
    .property-type-btn span {
        font-size: 12px;
    }
    
    .modern-calc-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .result-value {
        font-size: 1.1rem;
    }
    
    .results-cta-buttons {
        flex-direction: column;
    }
    
    .results-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .placeholder-icon {
        width: 80px;
        height: 80px;
    }
    
    .placeholder-icon i {
        font-size: 2.5rem;
    }
    
    .placeholder-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 575px) {
    .property-type-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-form-control {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.4rem;
    }
}

/* knowledge hub */

/* ========================================
   KNOWLEDGE HUB - MODERN CSS
   Add this to your main style.css file
   ======================================== */

/* Search & Filter Section */
.knowledge-search-wrapper {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.knowledge-search-box {
    position: relative;
    width: 100%;
}

.knowledge-search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    font-size: 1.1rem;
}

.knowledge-search-input {
    width: 100%;
    padding: 15px 20px 15px 55px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition-normal);
}

.knowledge-search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(238, 13, 8, 0.1);
}

.knowledge-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.filter-tab {
    padding: 10px 18px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-tab i {
    font-size: 13px;
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(238, 13, 8, 0.3);
}

/* Featured Article */
.featured-article {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.featured-article-img {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.featured-article:hover .featured-article-img img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(238, 13, 8, 0.4);
}

.featured-article-content {
    padding: 50px 40px;
}

.featured-category {
    display: inline-block;
    background: var(--gray-100);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.featured-article-content h2 {
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.3;
}

.featured-article-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.featured-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

.featured-meta i {
    color: var(--primary);
}

/* Knowledge Category Cards */
.knowledge-category-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
    height: 100%;
    cursor: pointer;
}

.knowledge-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
}

.category-icon.basics {
    background: rgba(255, 193, 7, 0.1);
}

.category-icon.costs {
    background: rgba(76, 175, 80, 0.1);
}

.category-icon.installation {
    background: rgba(33, 150, 243, 0.1);
}

.category-icon.maintenance {
    background: rgba(156, 39, 176, 0.1);
}

.knowledge-category-card:hover .category-icon {
    transform: scale(1.1) rotate(-5deg);
}

.category-icon i {
    font-size: 1.6rem;
}

.category-icon.basics i {
    color: #FFC107;
}

.category-icon.costs i {
    color: #4CAF50;
}

.category-icon.installation i {
    color: #2196F3;
}

.category-icon.maintenance i {
    color: #9C27B0;
}

.knowledge-category-card h4 {
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.knowledge-category-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 15px;
    line-height: 1.6;
}

.category-count {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
}

/* Modern Article Cards */
.modern-article-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.modern-article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.article-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.modern-article-card:hover .article-img img {
    transform: scale(1.1);
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    z-index: 2;
}

.article-category.basics {
    background: #FFC107;
}

.article-category.costs {
    background: #4CAF50;
}

.article-category.installation {
    background: #2196F3;
}

.article-category.maintenance {
    background: #9C27B0;
}

.article-content {
    padding: 25px;
}

.article-content h4 {
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.4;
}

.article-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
    margin-bottom: 15px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-600);
}

.article-meta i {
    color: var(--primary);
    font-size: 11px;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition-normal);
}

.article-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.article-link i {
    transition: var(--transition-normal);
}

/* Newsletter Box */
.newsletter-box {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.newsletter-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.newsletter-box h3 {
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--white);
}

.newsletter-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 0;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 15px;
    transition: var(--transition-normal);
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input-group .btn {
    padding: 14px 30px;
    flex-shrink: 0;
}

.newsletter-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .knowledge-filter-tabs {
        justify-content: flex-start;
    }
    
    .featured-article-img {
        min-height: 300px;
    }
    
    .featured-article-content {
        padding: 35px 30px;
    }
    
    .featured-article-content h2 {
        font-size: 1.6rem;
    }
    
    .newsletter-box {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .knowledge-search-wrapper {
        padding: 20px;
    }
    
    .knowledge-filter-tabs {
        gap: 6px;
    }
    
    .filter-tab {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .featured-article-img {
        min-height: 250px;
    }
    
    .featured-article-content {
        padding: 30px 25px;
    }
    
    .featured-article-content h2 {
        font-size: 1.4rem;
    }
    
    .featured-article-content p {
        font-size: 15px;
    }
    
    .article-img {
        height: 200px;
    }
    
    .newsletter-box {
        padding: 35px 25px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input-group .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .knowledge-search-input {
        padding: 12px 18px 12px 50px;
        font-size: 14px;
    }
    
    .filter-tab {
        flex: 1 1 calc(50% - 6px);
        justify-content: center;
    }
    
    .featured-article-content {
        padding: 25px 20px;
    }
    
    .featured-article-content h2 {
        font-size: 1.3rem;
    }
    
    .featured-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-content h4 {
        font-size: 1.05rem;
    }
    
    .newsletter-box {
        padding: 30px 20px;
        text-align: center;
    }
    
    .newsletter-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

/* faqs */

/* ========================================
   MODERN FAQ PAGE CSS
   Add this to your main style.css file
   ======================================== */

/* FAQ Search Box */
.faq-search-box {
    position: relative;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
}

.faq-search-box i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    font-size: 1.2rem;
}

.faq-search-input {
    width: 100%;
    padding: 18px 25px 18px 65px;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-family: var(--font-body);
    transition: var(--transition-normal);
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(238, 13, 8, 0.1);
}

/* FAQ Category Cards */
.faq-category-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    height: 100%;
}

.faq-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.faq-cat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
}

.faq-cat-icon.general {
    background: rgba(255, 193, 7, 0.1);
}

.faq-cat-icon.cost {
    background: rgba(76, 175, 80, 0.1);
}

.faq-cat-icon.subsidy {
    background: rgba(33, 150, 243, 0.1);
}

.faq-cat-icon.installation {
    background: rgba(238, 13, 8, 0.1);
}

.faq-category-card:hover .faq-cat-icon {
    transform: scale(1.1) rotate(-5deg);
}

.faq-cat-icon i {
    font-size: 1.6rem;
}

.faq-cat-icon.general i {
    color: #FFC107;
}

.faq-cat-icon.cost i {
    color: #4CAF50;
}

.faq-cat-icon.subsidy i {
    color: #2196F3;
}

.faq-cat-icon.installation i {
    color: var(--primary);
}

.faq-category-card h5 {
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.faq-category-card p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 15px;
}

.faq-count {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
}

/* Modern FAQ Section */
.modern-faq-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.faq-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

.faq-section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(238, 13, 8, 0.3);
    flex-shrink: 0;
}

.faq-section-icon.cost {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.faq-section-icon.subsidy {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.faq-section-icon.installation {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.faq-section-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.faq-section-header h3 {
    margin: 0;
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--dark);
}

/* Modern FAQ Accordion */
.modern-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modern-faq-item {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.modern-faq-item.active {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.modern-faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.modern-faq-question:hover {
    background: rgba(238, 13, 8, 0.05);
}

.modern-faq-question h4 {
    margin: 0;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--dark);
    flex: 1;
    padding-right: 20px;
}

.modern-faq-question i {
    font-size: 1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.modern-faq-item.active .modern-faq-question i {
    transform: rotate(180deg);
}

.modern-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.modern-faq-item.active .modern-faq-answer {
    max-height: 500px;
    padding: 0 25px 25px 25px;
}

.modern-faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* FAQ CTA Box */
.faq-cta-box {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

.faq-cta-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.faq-cta-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.faq-cta-box h3 {
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--white);
}

.faq-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 0;
}

.faq-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-cta-buttons .btn {
    white-space: nowrap;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .modern-faq-section {
        padding: 30px 25px;
    }
    
    .faq-section-header {
        gap: 15px;
    }
    
    .faq-section-icon {
        width: 55px;
        height: 55px;
    }
    
    .faq-section-icon i {
        font-size: 1.3rem;
    }
    
    .faq-section-header h3 {
        font-size: 1.4rem;
    }
    
    .faq-cta-box {
        padding: 40px 30px;
    }
    
    .faq-cta-buttons {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .faq-search-input {
        padding: 15px 20px 15px 55px;
        font-size: 15px;
    }
    
    .faq-category-card {
        padding: 25px 20px;
    }
    
    .faq-cat-icon {
        width: 60px;
        height: 60px;
    }
    
    .faq-cat-icon i {
        font-size: 1.4rem;
    }
    
    .modern-faq-section {
        padding: 25px 20px;
    }
    
    .faq-section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-section-header h3 {
        font-size: 1.3rem;
    }
    
    .modern-faq-question {
        padding: 18px 20px;
    }
    
    .modern-faq-question h4 {
        font-size: 1rem;
    }
    
    .modern-faq-answer {
        padding: 0 20px;
    }
    
    .modern-faq-item.active .modern-faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-cta-box {
        padding: 35px 25px;
        text-align: center;
    }
    
    .faq-cta-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .faq-cta-buttons {
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .faq-search-input {
        padding: 14px 18px 14px 50px;
        font-size: 14px;
    }
    
    .faq-search-box i {
        left: 20px;
    }
    
    .modern-faq-question {
        padding: 16px 18px;
    }
    
    .modern-faq-question h4 {
        font-size: 0.95rem;
    }
    
    .modern-faq-answer p {
        font-size: 14px;
    }
    
    .faq-cta-box h3 {
        font-size: 1.5rem;
    }
    
    .faq-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
/* ========================================
   ADDITIONAL CSS FOR NEW PAGES
   Add this to your existing style.css file
   ======================================== */

/* Modern Component Cards (for Premium Quality section) */
.modern-component-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-component-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.modern-component-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(238, 13, 8, 0.25);
    transition: var(--transition-normal);
}

.modern-component-card:hover .modern-component-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(238, 13, 8, 0.35);
}

.modern-component-icon i {
    font-size: 2rem;
    color: var(--white);
}

.modern-component-card h5 {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.modern-component-card > p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 20px;
    flex-grow: 0;
}

.modern-component-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.modern-component-list li {
    font-size: 14px;
    color: var(--gray-700);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    padding-left: 0;
}

.modern-component-list li:last-child {
    border-bottom: none;
}

.modern-component-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
}

/* Investment Model Cards */
.investment-model-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.investment-model-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.investment-model-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, #fff 0%, rgba(238, 13, 8, 0.02) 100%);
}

.investment-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gray-700);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-heading);
}

.investment-badge.recommended {
    background: var(--primary);
}

.investment-model-card h3 {
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.investment-model-card .lead {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 25px;
}

.investment-features h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.investment-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.investment-features ul li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.investment-features ul li i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 16px;
}

.investment-pricing {
    background: var(--gray-100);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.investment-pricing h4,
.investment-pricing h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.price-range {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.price-note {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

.investment-benefits h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.investment-benefits p {
    font-size: 14px;
    color: var(--gray-700);
    margin: 0;
}

/* Industry Cards */
.industry-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    text-align: center;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(238, 13, 8, 0.1) 0%, rgba(238, 13, 8, 0.05) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.industry-card:hover .industry-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.industry-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.industry-card:hover .industry-icon i {
    color: var(--white);
}

.industry-card h5 {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.industry-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* Icon Cards (for Housing Societies) */
.icon-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    text-align: center;
    height: 100%;
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.icon-card-icon {
    width: 75px;
    height: 75px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(238, 13, 8, 0.25);
    transition: var(--transition-normal);
}

.icon-card:hover .icon-card-icon {
    transform: scale(1.1) rotate(-10deg);
}

.icon-card-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.icon-card h5 {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.icon-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

.comparison-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table thead {
    background: var(--dark);
}

.comparison-table thead th {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 18px 20px;
    text-align: left;
    border: none;
    font-family: var(--font-heading);
}

.comparison-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 14px;
    vertical-align: middle;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--dark);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--gray-100);
}

/* Case Study Card */
.case-study-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.case-study-card h3 {
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.case-study-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.case-study-details h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.case-study-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.case-study-details ul li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.case-study-details ul li i {
    color: var(--primary);
    margin-top: 3px;
}

.case-study-quote {
    background: var(--gray-100);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    margin: 0;
}

.case-study-quote p {
    font-style: italic;
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 15px;
    line-height: 1.7;
}

.case-study-quote footer {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    font-style: normal;
}

/* Capacity Cards */
.capacity-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-200);
    transition: var(--transition-normal);
    text-align: center;
    height: 100%;
}

.capacity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.capacity-card.featured {
    background: linear-gradient(180deg, #fff 0%, rgba(238, 13, 8, 0.03) 100%);
    border-color: var(--primary);
}

.capacity-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.capacity-subtitle {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 20px;
    font-weight: 500;
}

.capacity-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.capacity-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.capacity-card ul li:last-child {
    border-bottom: none;
    font-weight: 600;
    color: var(--dark);
    padding-top: 15px;
}

/* Technical Specification Cards */
.tech-spec-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    height: 100%;
}

.tech-spec-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.tech-spec-card h4 {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.tech-spec-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 14px;
    min-width: 120px;
}

.spec-value {
    text-align: right;
    color: var(--gray-600);
    font-size: 14px;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-component-card {
        padding: 35px 25px;
    }
    
    .modern-component-icon {
        width: 70px;
        height: 70px;
    }
    
    .modern-component-icon i {
        font-size: 1.6rem;
    }
    
    .investment-model-card {
        padding: 35px 30px;
    }
    
    .case-study-stats {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .modern-component-card {
        padding: 30px 20px;
    }
    
    .modern-component-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }
    
    .modern-component-icon i {
        font-size: 1.4rem;
    }
    
    .investment-model-card {
        padding: 30px 25px;
    }
    
    .case-study-card {
        padding: 30px 25px;
    }
    
    .case-study-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .spec-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .spec-label,
    .spec-value {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .modern-component-card {
        padding: 25px 20px;
    }
    
    .investment-badge {
        top: 15px;
        right: 15px;
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .price-range {
        font-size: 1.5rem;
    }
    
    .case-study-quote {
        padding: 20px;
    }
}
/* ========================================
   HOMEPAGE BENEFITS SECTION CSS
   Add this to your style.css file
   ======================================== */

/* Benefits List Styling */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(238, 13, 8, 0.25);
    transition: var(--transition-normal);
}

.benefit-item:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.benefit-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--white);
}

.benefit-content h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.benefit-content p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* CTA Highlight Card */
.cta-highlight-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: var(--radius-lg);
    padding: 45px 40px;
    box-shadow: var(--shadow-lg);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(238, 13, 8, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-highlight-card > * {
    position: relative;
    z-index: 1;
}

.cta-highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(238, 13, 8, 0.4);
}

.cta-highlight-icon i {
    font-size: 2rem;
    color: var(--white);
}

.cta-highlight-card h3 {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-highlight-card > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.cta-features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.cta-features-list li {
    padding: 12px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-features-list li:last-child {
    border-bottom: none;
}

.cta-features-list li i {
    color: var(--primary);
    font-size: 18px;
    background: var(--white);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-buttons .btn {
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .benefits-list {
        gap: 20px;
    }
    
    .benefit-item {
        padding: 18px;
    }
    
    .benefit-icon-wrapper {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }
    
    .benefit-icon-wrapper i {
        font-size: 1.3rem;
    }
    
    .cta-highlight-card {
        padding: 40px 35px;
        margin-top: 30px;
    }
    
    .cta-highlight-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .benefit-item {
        padding: 16px;
        gap: 15px;
    }
    
    .benefit-icon-wrapper {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .benefit-icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .benefit-content h5 {
        font-size: 1rem;
    }
    
    .benefit-content p {
        font-size: 13px;
    }
    
    .cta-highlight-card {
        padding: 35px 25px;
    }
    
    .cta-highlight-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .cta-highlight-icon i {
        font-size: 1.6rem;
    }
    
    .cta-highlight-card h3 {
        font-size: 1.4rem;
    }
    
    .cta-features-list li {
        font-size: 14px;
        padding: 10px 0;
    }
}

@media (max-width: 575px) {
    .benefit-item:hover {
        transform: translateX(5px);
    }
    
    .cta-buttons .btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* agrivoltaic */

/* ========================================
   AGRIVOLTAIC PAGE - EXACT SCREENSHOT STYLES
   Add this to your main style.css file
   ======================================== */

/* Hero Section - Centered Text */
.hero-content.text-center {
    text-align: center;
}

.hero-content.text-center h1,
.hero-content.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* Introduction Text */
.intro-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Use Case Cards - Simple Checkmark Design */
.use-case-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.use-case-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.use-case-icon {
    flex-shrink: 0;
}

.use-case-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.use-case-card h5 {
    font-size: 15px;
    font-weight: 400;
    color: var(--dark);
    margin: 0;
    line-height: 1.5;
}

/* Technical Consideration Cards */
.tech-consideration-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    height: 100%;
}

.tech-consideration-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.tech-consideration-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.tech-consideration-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* Benefit Card Simple - Just Icon and Text */
.benefit-card-simple {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 20px;
}

.benefit-card-simple:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.benefit-icon-simple {
    flex-shrink: 0;
}

.benefit-icon-simple i {
    font-size: 1.5rem;
    color: var(--primary);
}

.benefit-card-simple h5 {
    font-size: 15px;
    font-weight: 400;
    color: var(--dark);
    margin: 0;
    line-height: 1.5;
}

/* Agrivoltaic FAQ List - Simple Design */
.agrivoltaic-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.agrivoltaic-faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition-normal);
}

.agrivoltaic-faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.agrivoltaic-faq-item.highlighted {
    border-color: var(--primary);
    border-width: 2px;
}

.faq-question-agri {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question-agri:hover {
    background: var(--gray-100);
}

.faq-question-agri h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.agrivoltaic-faq-item.highlighted .faq-question-agri h5 {
    color: var(--primary);
}

.faq-question-agri i {
    font-size: 14px;
    color: var(--gray-600);
    flex-shrink: 0;
}

/* CTA Section - Red Background */
.cta-section-agrivoltaic {
    background: var(--primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-agrivoltaic::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-section-agrivoltaic .container {
    position: relative;
    z-index: 1;
}

.cta-section-agrivoltaic .cta-content {
    text-align: center;
}

.cta-section-agrivoltaic h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-section-agrivoltaic p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section-agrivoltaic .cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section-agrivoltaic .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.cta-section-agrivoltaic .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.cta-section-agrivoltaic .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    border-width: 2px;
}

.cta-section-agrivoltaic .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Section Headers */
.section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .use-case-card,
    .benefit-card-simple,
    .tech-consideration-card {
        margin-bottom: 15px;
    }
    
    .cta-section-agrivoltaic h2 {
        font-size: 2rem;
    }
    
    .cta-section-agrivoltaic p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 14px;
    }
    
    .use-case-card,
    .benefit-card-simple {
        padding: 20px 25px;
    }
    
    .use-case-card h5,
    .benefit-card-simple h5 {
        font-size: 14px;
    }
    
    .use-case-icon i,
    .benefit-icon-simple i {
        font-size: 1.3rem;
    }
    
    .tech-consideration-card {
        padding: 25px 20px;
    }
    
    .tech-consideration-card h4 {
        font-size: 1rem;
    }
    
    .tech-consideration-card p {
        font-size: 13px;
    }
    
    .faq-question-agri {
        padding: 18px 20px;
    }
    
    .faq-question-agri h5 {
        font-size: 14px;
    }
    
    .cta-section-agrivoltaic {
        padding: 60px 0;
    }
    
    .cta-section-agrivoltaic h2 {
        font-size: 1.6rem;
    }
    
    .cta-section-agrivoltaic p {
        font-size: 0.95rem;
    }
    
    .cta-section-agrivoltaic .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-section-agrivoltaic .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .use-case-card,
    .benefit-card-simple {
        flex-direction: row;
        gap: 15px;
        padding: 18px 20px;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
}

    /* blog css */

    /* ========================================
    BLOG PAGES - ADDITIONAL CSS
    Add this to the end of your existing style.css file
    ======================================== */

    /* Blog Listing Page - Blog Cards */
    .blog-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: var(--transition-normal);
        height: 100%;
        border: 1px solid var(--gray-200);
    }

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary);
    }

    .blog-card-img {
        position: relative;
        height: 220px;
        overflow: hidden;
    }

    .blog-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition-normal);
    }

    .blog-card:hover .blog-card-img img {
        transform: scale(1.1);
    }

    .blog-card-category {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 2;
    }

    .blog-card-category span {
        background: var(--primary);
        color: var(--white);
        padding: 6px 16px;
        border-radius: var(--radius-full);
        font-family: var(--font-heading);
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .blog-card-body {
        padding: 25px;
    }

    .blog-card-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .blog-card-meta span {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: var(--gray-600);
    }

    .blog-card-meta i {
        color: var(--primary);
        font-size: 12px;
    }

    .blog-card-body h3 {
        font-size: 1.2rem;
        font-weight: 500;
        margin-bottom: 12px;
        color: var(--dark);
        line-height: 1.4;
    }

    .blog-card-body h3:hover {
        color: var(--primary);
    }

    .blog-card-body p {
        font-size: 14px;
        color: var(--gray-600);
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .blog-card-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-heading);
        font-weight: 500;
        font-size: 14px;
        color: var(--primary);
        transition: var(--transition-normal);
    }

    .blog-card-link:hover {
        color: var(--primary-dark);
        gap: 12px;
    }

    .blog-card-link i {
        transition: var(--transition-normal);
    }

    /* Pagination */
    .pagination-wrapper {
        margin-top: 50px;
    }

    .pagination {
        gap: 8px;
    }

    .pagination .page-link {
        border: 2px solid var(--gray-300);
        color: var(--gray-700);
        font-weight: 500;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        transition: var(--transition-normal);
    }

    .pagination .page-link:hover {
        border-color: var(--primary);
        background: var(--primary);
        color: var(--white);
    }

    .pagination .page-item.active .page-link {
        border-color: var(--primary);
        background: var(--primary);
        color: var(--white);
    }

    .pagination .page-item.disabled .page-link {
        border-color: var(--gray-200);
        background: var(--gray-100);
        color: var(--gray-500);
    }

    /* Newsletter Form (Blog Page) */
    .newsletter-form {
        max-width: 600px;
        margin: 0 auto;
    }

    /* ========================================
    SINGLE BLOG PAGE
    ======================================== */

    /* Blog Hero */
    .blog-hero {
        position: relative;
        min-height: 400px;
        display: flex;
        align-items: center;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .blog-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .blog-hero .container {
        position: relative;
        z-index: 2;
    }

    .blog-hero-content {
        text-align: center;
        padding: 50px 0;
    }

    .blog-breadcrumb {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        margin-bottom: 20px;
    }

    .blog-breadcrumb a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: var(--transition-normal);
    }

    .blog-breadcrumb a:hover {
        color: var(--primary);
    }

    .blog-hero-content h1 {
        color: var(--white);
        font-size: 2.5rem;
        font-weight: 600;
        margin: 0;
        line-height: 1.3;
    }

    /* Blog Content Section */
    .blog-content-section {
        background: var(--gray-100);
    }

    .blog-post {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: var(--shadow-md);
    }

    /* Featured Image */
    .blog-featured-image {
        margin-bottom: 30px;
    }

    .blog-featured-image img {
        width: 100%;
        border-radius: var(--radius-md);
    }

    /* Blog Post Meta */
    .blog-post-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 25px;
        margin-bottom: 25px;
        border-bottom: 2px solid var(--gray-200);
        flex-wrap: wrap;
        gap: 15px;
    }

    .meta-left,
    .meta-right {
        display: flex;
        gap: 20px;
        align-items: center;
        flex-wrap: wrap;
    }

    .blog-post-meta span {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: var(--gray-600);
        font-weight: 500;
    }

    .blog-post-meta i {
        color: var(--primary);
    }

    /* Blog Post Content */
    .blog-post-content {
        font-size: 15px;
        line-height: 1.8;
        color: var(--gray-700);
    }

    .blog-post-content .lead {
        font-size: 1.1rem;
        color: var(--gray-700);
        font-weight: 400;
        margin-bottom: 30px;
        line-height: 1.7;
    }

    .blog-post-content h2 {
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--dark);
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .blog-post-content h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--dark);
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .blog-post-content h4 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--dark);
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .blog-post-content p {
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .blog-post-content ul,
    .blog-post-content ol {
        margin-bottom: 25px;
        padding-left: 25px;
    }

    .blog-post-content ul li,
    .blog-post-content ol li {
        margin-bottom: 12px;
        line-height: 1.7;
    }

    .blog-post-content ul li {
        list-style: none;
        position: relative;
        padding-left: 25px;
    }

    .blog-post-content ul li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        width: 6px;
        height: 6px;
        background: var(--primary);
        border-radius: 50%;
    }

    .blog-post-content ol {
        counter-reset: item;
    }

    .blog-post-content ol li {
        counter-increment: item;
    }

    .blog-post-content strong {
        color: var(--dark);
        font-weight: 600;
    }

    /* Highlight Box */
    .blog-highlight-box {
        background: linear-gradient(135deg, rgba(238, 13, 8, 0.05) 0%, rgba(238, 13, 8, 0.02) 100%);
        border-left: 4px solid var(--primary);
        border-radius: var(--radius-md);
        padding: 30px;
        margin: 35px 0;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .highlight-icon {
        width: 50px;
        height: 50px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .highlight-icon i {
        font-size: 1.3rem;
        color: var(--white);
    }

    .highlight-content h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 10px;
    }

    .highlight-content p {
        margin: 0;
        color: var(--gray-700);
    }

    /* Share Section */
    .blog-share-section {
        margin-top: 40px;
        padding-top: 30px;
        border-top: 2px solid var(--gray-200);
    }

    .blog-share-section h5 {
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--dark);
    }

    .share-buttons {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .share-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        transition: var(--transition-normal);
    }

    .share-btn:hover {
        transform: translateY(-3px);
        color: var(--white);
    }

    .share-btn.facebook {
        background: #1877F2;
    }

    .share-btn.twitter {
        background: #1DA1F2;
    }

    .share-btn.linkedin {
        background: #0A66C2;
    }

    .share-btn.whatsapp {
        background: #25D366;
    }

    .share-btn.email {
        background: var(--gray-700);
    }

    /* Author Box */
    .author-box {
        margin-top: 40px;
        padding: 30px;
        background: var(--gray-100);
        border-radius: var(--radius-md);
        display: flex;
        gap: 25px;
        align-items: flex-start;
    }

    .author-avatar img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
    }

    .author-info h5 {
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: var(--dark);
    }

    .author-info p {
        font-size: 14px;
        color: var(--gray-600);
        margin-bottom: 15px;
    }

    .author-social {
        display: flex;
        gap: 10px;
    }

    .author-social a {
        width: 35px;
        height: 35px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-700);
        transition: var(--transition-normal);
    }

    .author-social a:hover {
        background: var(--primary);
        color: var(--white);
    }

    /* Related Posts */
    .related-posts {
        margin-top: 50px;
    }

    .related-posts h3 {
        font-weight: 600;
        font-size: 1.5rem;
        margin-bottom: 25px;
        color: var(--dark);
    }

    .related-post-card {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-md);
        overflow: hidden;
        transition: var(--transition-normal);
    }

    .related-post-card:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--primary);
    }

    .related-post-img {
        height: 180px;
        overflow: hidden;
    }

    .related-post-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition-normal);
    }

    .related-post-card:hover .related-post-img img {
        transform: scale(1.1);
    }

    .related-post-content {
        padding: 20px;
    }

    .related-post-content h5 {
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .related-post-content h5 a {
        color: var(--dark);
        text-decoration: none;
        transition: var(--transition-normal);
    }

    .related-post-content h5 a:hover {
        color: var(--primary);
    }

    .related-post-date {
        font-size: 13px;
        color: var(--gray-600);
    }

    /* ========================================
    BLOG SIDEBAR
    ======================================== */

    .blog-sidebar {
        position: sticky;
        top: 100px;
    }

    .sidebar-widget {
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--gray-200);
    }

    .widget-title {
        font-weight: 600;
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--gray-200);
        color: var(--dark);
    }

    /* Search Form */
    .search-form .input-group {
        border: 2px solid var(--gray-300);
        border-radius: var(--radius-full);
        overflow: hidden;
    }

    .search-form .form-control {
        border: none;
        padding: 12px 20px;
    }

    .search-form .form-control:focus {
        box-shadow: none;
    }

    .search-form .btn {
        border: none;
        border-radius: 0;
        padding: 12px 20px;
    }

    /* Recent Posts List */
    .recent-posts-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .recent-posts-list li {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--gray-200);
    }

    .recent-posts-list li:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .recent-post-item {
        display: flex;
        gap: 15px;
        text-decoration: none;
        transition: var(--transition-normal);
    }

    .recent-post-item:hover .recent-post-info h6 {
        color: var(--primary);
    }

    .recent-post-thumb {
        width: 80px;
        height: 80px;
        border-radius: var(--radius-sm);
        overflow: hidden;
        flex-shrink: 0;
    }

    .recent-post-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .recent-post-info h6 {
        font-size: 14px;
        font-weight: 500;
        color: var(--dark);
        margin-bottom: 6px;
        line-height: 1.4;
        transition: var(--transition-normal);
    }

    .recent-post-date {
        font-size: 12px;
        color: var(--gray-600);
    }

    /* Categories List */
    .categories-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .categories-list li {
        margin-bottom: 12px;
    }

    .categories-list li:last-child {
        margin-bottom: 0;
    }

    .categories-list a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        color: var(--gray-700);
        text-decoration: none;
        font-size: 14px;
        transition: var(--transition-normal);
    }

    .categories-list a:hover {
        color: var(--primary);
        padding-left: 5px;
    }

    .category-count {
        background: var(--gray-200);
        color: var(--gray-700);
        padding: 3px 10px;
        border-radius: var(--radius-full);
        font-size: 12px;
        font-weight: 500;
    }

    /* CTA Widget */
    .cta-widget {
        background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
        text-align: center;
        color: var(--white);
    }

    .cta-widget .widget-title {
        color: var(--white);
        border-bottom-color: rgba(255, 255, 255, 0.2);
    }

    .cta-widget-icon {
        width: 60px;
        height: 60px;
        background: var(--primary);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .cta-widget-icon i {
        font-size: 1.5rem;
        color: var(--white);
    }

    .cta-widget h4 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 12px;
    }

    .cta-widget p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Tags Cloud */
    .tags-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .tag-item {
        display: inline-block;
        padding: 8px 16px;
        background: var(--gray-100);
        color: var(--gray-700);
        border-radius: var(--radius-full);
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        transition: var(--transition-normal);
    }

    .tag-item:hover {
        background: var(--primary);
        color: var(--white);
    }

    /* ========================================
    RESPONSIVE STYLES
    ======================================== */

    @media (max-width: 991px) {
        .blog-post {
            padding: 30px 25px;
        }
        
        .blog-sidebar {
            position: static;
            margin-top: 40px;
        }
        
        .blog-hero-content h1 {
            font-size: 2rem;
        }
        
        .author-box {
            flex-direction: column;
            text-align: center;
        }
        
        .author-avatar {
            margin: 0 auto;
        }
        
        .author-social {
            justify-content: center;
        }
    }

    @media (max-width: 767px) {
        .blog-card-img {
            height: 200px;
        }
        
        .blog-card-body {
            padding: 20px;
        }
        
        .blog-card-body h3 {
            font-size: 1.1rem;
        }
        
        .blog-hero {
            min-height: 300px;
        }
        
        .blog-hero-content h1 {
            font-size: 1.6rem;
        }
        
        .blog-post {
            padding: 25px 20px;
        }
        
        .blog-post-meta {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .meta-left,
        .meta-right {
            width: 100%;
        }
        
        .blog-post-content h2 {
            font-size: 1.5rem;
        }
        
        .blog-post-content h3 {
            font-size: 1.2rem;
        }
        
        .blog-highlight-box {
            flex-direction: column;
            padding: 25px 20px;
        }
        
        .sidebar-widget {
            padding: 25px 20px;
        }
    }

    @media (max-width: 575px) {
        .blog-card-body {
            padding: 18px;
        }
        
        .pagination-wrapper {
            margin-top: 35px;
        }
        
        .pagination .page-link {
            padding: 8px 12px;
            font-size: 14px;
        }
        
        .share-buttons {
            justify-content: center;
        }
        
        .recent-post-thumb {
            width: 70px;
            height: 70px;
        }
        
        .recent-post-info h6 {
            font-size: 13px;
        }
    }