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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #C8E6C9;
    --secondary-color: #2C3E50;
    --accent-color: #34495E;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #E5E5E5;
    --background-light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --navbar-height: 80px; /* Consistent navbar height */
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 2rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
    height: var(--navbar-height); /* Set fixed height */
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%; /* Ensure wrapper fills navbar height */
}

/* New Logo Container styles */
.logo-container {
    position: relative;
    z-index: 1001; /* Ensure logo is above other content */
}

.logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
    display: block;
}

.logo-img {
    height: 250px; /* Make logo larger than navbar */
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); /* Add a subtle shadow */
}

.logo:hover .logo-img {
    transform: scale(1.03); /* Slight zoom on hover */
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center; /* This is the fix */
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Download button in navbar */
.nav-download-btn {
    padding: 10px 20px; /* Smaller padding for navbar */
    font-size: 0.9rem;
    margin-left: 1rem; /* Space from contact link */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* ============================================
   GATED CONTENT / DOWNLOAD FORM PAGE
   ============================================ */

.gated-content-section {
    padding: calc(var(--navbar-height) + 4rem) 0 4rem;
    background: var(--background-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.download-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.download-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.download-form-header h1 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.download-form-header p {
    font-size: 1.05rem;
    color: var(--text-light);
}

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

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

.download-form input,
.download-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.download-form input:focus,
.download-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
}

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

.btn-submit-download {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    background: #000000;
    color: #ffffff;
    border-radius: 10px;
}

.btn-submit-download:hover {
    background: #333333;
    transform: translateY(-2px);
}
/* ==================== HERO SECTION - MINIMALIST ==================== */

/* ==================== HERO SECTION WITH KEN BURNS EFFECT ==================== */

/* ==================== HERO SECTION - STATIC VERSION ==================== */

.hero {
  position: relative;
  height: 100vh;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.25)),
    url('assets/images/Hero-ima.jpg') center/cover no-repeat;
  overflow: hidden;
}

/* Overlay - Lighter on Desktop */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-overlay {
    background: rgba(0,0,0,0.15);  /* lighter on desktop */
  }
}

/* Text Content - Positioned at Bottom */
.hero-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  margin: 0 0 0.5rem;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
  margin: 0;
  font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 2.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
  cursor: pointer;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 1.8rem; }
  .hero-tagline { font-size: 0.95rem; }
  .scroll-indicator { font-size: 2rem; bottom: 15px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .hero-tagline { font-size: 0.85rem; }
  .scroll-indicator { font-size: 1.8rem; bottom: 10px; }
}

/* ==================== END HERO SECTION ==================== */


/* ==================== END HERO SECTION ==================== */


/* ==================== END HERO SECTION ==================== */


/* Section Styling */
section {
    padding: 3rem 0;
    }

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

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

 .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    }
                                        
/* Features Section */
.features {
    background: var(--background-light);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-top: 4px solid transparent; /* Make border transparent by default */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-top-color: var(--primary-color); /* Add border color on hover */
}

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

/* Animate the feature icon on card hover */
.feature-card:hover .feature-icon {
    animation: bounce-icon 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}



/* Comparison Bottom Message */
.comparison-bottom-message {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
}

.comparison-bottom-message p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

.comparison-bottom-message strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Applications Section */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Default to 3 columns */
  gap: 2rem;
}

@media (max-width: 992px) {
  .applications-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .applications-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}

.app-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-decoration: none; /* Remove underline from card link */
}

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

.app-image {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-dark);
    font-size: 1.5rem;
}

/* Animate the icon on card hover with a bounce effect */
.app-card:hover .app-image i {
    animation: bounce-icon 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Keyframes for the bounce animation */
@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px) scale(1.1);
    }
}

/* Link inside application card */
.app-link {
    display: flex; /* Corrected to flex */
    align-items: center; /* Vertically center text and icon */
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.app-link i {
    transition: transform 0.3s ease;
    font-size: 0.9em; /* Set arrow size relative to the "Read More" text */
    line-height: 1; /* Ensure proper vertical alignment */
}

.app-card:hover .app-link {
    gap: 0.8rem; /* Increase gap on hover like blog link */
}

.app-card:hover .app-link i {
    transform: translateX(4px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Advantages Section */
.advantages {
    background: var(--background-light);
}

.advantages-content {
    display: grid;
    gap: 2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

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

.advantage-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    background: var(--primary-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 50vh; /* Match product page header height */
    padding: 3rem 0;
}

.page-header h1 {
    font-size: 3rem; /* Match product page h1 */
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem; /* Match product page p */
    color: rgba(255, 255, 255, 0.9);
}

/* About Page Styles */
.about-content {
    padding: 3rem 0;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.story-section {
    background: var(--background-light);
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 15px;
}

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

.mission-vision {
    padding: 4rem 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
}

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

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

.core-values {
    background: var(--background-light);
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.why-choose {
    padding: 4rem 0;
}

.choose-content {
    display: grid;
    gap: 2rem;
}

.choose-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

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

.choose-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.commitment-section {
    background: var(--background-light);
    text-align: center;
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Products Page Styles */
.product-overview {
    padding: 3rem 0;
    text-align: center;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
}

.panel-specs {
    background: var(--background-light);
}

.specs-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.specs-table th,
.specs-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.specs-table tbody tr:hover {
    background: var(--background-light);
}

.product-categories {
    padding: 4rem 0;
}

.product-category {
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.category-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.feature-list {
    list-style: none;
    margin-top: 1rem;
}

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

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

.category-features {
    display: grid;
    gap: 1rem;
}

.feature-box {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.feature-box h5 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.9rem;
    margin: 0;
}

.technical-features {
    background: var(--background-light);
}

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

.tech-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

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

.tech-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

/* Blog Page Styles */
.blog-section {
    padding: 4rem 0;
}

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

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

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

.blog-image {
    height: 200px;
    background: var(--background-light);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder {
    font-size: 3rem;
    color: var(--primary-color);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-dark);
    gap: 1rem;
}

.blog-link i {
    font-size: 0.9em; /* Set arrow size relative to "Read More" text */
    line-height: 1; /* Ensure proper vertical alignment */
}

.newsletter-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-text h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 400px;
}

.newsletter-input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

/* Contact Section - Improved */
.contact-section {
    padding: 6rem 0 4rem; /* Reduced top padding to fix gap issue */
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.contact-section .section-header {
    margin-bottom: 3rem; /* Reduced from default */
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 5fr 7fr; /* Better ratio for form prominence */
    gap: 3rem;
    align-items: start;
}

/* Contact Info Side */
.contact-info h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-text p {
    margin: 0.2rem 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

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

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

.contact-hours {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.3rem;
}

/* Response Info */
.response-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--primary-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.response-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.response-item strong {
    display: block;
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

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

/* Contact Form Container */
.contact-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.form-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--background-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

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

.char-count {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.btn-submit i {
    font-size: 1.1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
    display: block;
}

.form-message.error {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 2px solid #e74c3c;
    display: block;
}

/* ============================================================
   CONTACT PAGE - SOCIAL & QUICK CONTACT STYLES
   ============================================================ */

/* Social Connect Section */

/* Overriding footer social links for the contact page context */
.contact-info .social-links a {
    background: transparent;
    color: var(--text-light);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.contact-info .social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

/* Quick Contact Section */
.quick-contact {
    padding: 4rem 0;
    background: var(--background-light);
}

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

.quick-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
}

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

.quick-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.quick-card h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.quick-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.quick-link:hover {
    color: var(--primary-dark);
    gap: 0.8rem;
}

.quick-link i {
    transition: transform 0.3s ease;
}

.quick-link:hover i {
    transform: translateX(4px);
}

/* Footer - Improved */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
}

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

.footer-about p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 18px;
}

/* Social Links (Only in Footer Now) */
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.footer-tagline {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .response-info {
        padding: 1rem;
    }
    
    .btn-submit {
        padding: 12px 20px;
        font-size: 1rem;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    /* Adjust navbar padding and logo size for mobile */
    .nav-wrapper {
        padding: 0.75rem 0;
    }

    .logo h2 {
        font-size: 1.5rem; /* Smaller logo font size */
    }


    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .stats-grid {
        grid-template-columns: 1fr; /* Ensure stats stack into a single column on mobile */
    }

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

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

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

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

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        min-width: auto;
        width: 100%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

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

    .advantage-item {
        flex-direction: column;
        text-align: center;
    }

    .choose-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation for stats */
.stat-number {
    transition: all 2s ease-out;
}

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

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

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

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

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

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}


.about-us {
  padding:6rem 2rem;
  background-color:#f9f9f9;
}
.about-container {
  display:flex;
  align-items:stretch;
  max-width:1200px;
  margin:0 auto;
  gap:2rem;
}
.about-text {
  flex:1;
  color:#333333;
}
.about-text h2 {
  font-size:2.5rem;
  color:var(--text-color);
  margin-bottom:1.5rem;
}
.about-text p {
  font-size:1.1rem;
  line-height:1.6;
  margin-bottom:1rem;
}
.about-image-bg {
  flex:1;
  background-image:url('assets/images/AboutUsPiller.jpg');
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  border-radius:8px;
  box-shadow:0 4px 20px rgba(0,0,0,0.1);
  min-height:400px;
}
@media (max-width:992px) {
  .about-container {
    flex-direction:column-reverse;
    text-align:center;
  }
  .about-image-bg {
    width:100%;
    min-height:300px;
    margin-bottom:2rem;
  }
}

/* Comparison Table Section */
.comparison-home-section {
    padding: 3rem 0;
    background: var(--background-light);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table-home {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table-home th,
.comparison-table-home td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table-home th {
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table-home th:first-child {
    text-align: left;
}

.comparison-table-home td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table-home .highlight-col {
    background: linear-gradient(135deg, rgba(102, 217, 168, 0.1), rgba(77, 192, 139, 0.1));
    font-weight: 600;
}

.comparison-table-home th.highlight-col {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.comparison-table-home .highlight-row {
    background: rgba(102, 217, 168, 0.05);
    font-weight: 600;
}

.comparison-table-home .highlight-row .highlight-col {
    background: linear-gradient(135deg, rgba(102, 217, 168, 0.2), rgba(77, 192, 139, 0.2));
}

.badge-low, .badge-medium, .badge-high {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 0.5rem;
}

.badge-low {
    background: #4CAF50;
    color: white;
}

.badge-medium {
    background: #FF9800;
    color: white;
}

.badge-high {
    background: #F44336;
    color: white;
}

.text-success {
    color: var(--primary-color);
    margin-left: 0.5rem;
}

.comparison-cta {
    margin-top: 3rem;
    text-align: center;
}

.roi-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.roi-highlight h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    .comparison-table-home {
        font-size: 0.85rem;
    }
    
    .comparison-table-home th,
    .comparison-table-home td {
        padding: 1rem 0.5rem;
    }
    
    .roi-highlight h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .comparison-table-home th,
    .comparison-table-home td {
        padding: 0.75rem 0.25rem;
        font-size: 0.75rem;
    }
}

/* ─────────────────────────────────────────────────────────────────────────
   ABOUT US SECTION — INSERT AT BOTTOM OF styles.css
───────────────────────────────────────────────────────────────────────── */
.about-us {
  padding: 6rem 0;
  background-color: #ffffff; /* Changed from grey to white */
}
.about-container {
  display: flex;
  align-items: center; /* Vertically center content */
  gap: 3rem; /* Increased gap for better spacing */
}
.about-image-bg {
  flex: 1; /* Image container takes up 40% of the space */
  min-height: 450px; /* Adjusted height for new ratio */
  background: url('assets/images/9x9 column.png') center/cover no-repeat;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}
.about-text {
  flex: 1.5; /* Text container takes up 60% of the space */
}
.about-text h2 {
  font-size: 2.75rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}
.about-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Responsive breakpoint */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-image-bg {
    width: 100%;
    min-height: 240px;
    margin-bottom: 1.5rem;
  }
}

/* ============================================
   ABOUT US PAGE - FINAL REFINED VERSION
   Add this to the END of your styles.css
   ============================================ */

/* Hero Section (Reduced Height by 20%) */
.about-hero-final {
    position: relative;
    min-height: 55vh; /* Reduced from 70vh */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
     background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.35)), 
                url('assets/images/AboutUsHero.jpg') center/cover no-repeat;

}

.about-hero-bg-final {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    z-index: 0;
}

/* Subtle Construction Texture Overlay */
.hero-texture-overlay {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Crect width="100" height="100" fill="%23ffffff" opacity="0.02"/%3E%3C/svg%3E');
    background-size: 50px 50px;
    z-index: 1;
}

.about-hero-overlay-final {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.about-hero-content-final {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    padding: 0 2rem;
    color: #ffffff;
}

.about-hero-title-final {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.about-hero-subtitle-final {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    opacity: 0.95;
}

/* Our Story Section (Moved Up - After Hero) */
.our-story-final {
    padding: 6rem 0;
    background: var(--white);
}

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

.section-tag-final {
    display: inline-block;
    color: #4CAF50;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-heading-final {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.story-lead-final {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-weight: 600;
}

.story-description-final {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.story-img-final {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Core Strengths Section (After Story) */
.core-strengths-final {
    padding: 6rem 0;
    background: var(--background-light);
}

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

.section-header-center-final h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.section-subheader-final {
    font-size: 1.05rem;
    color: #666;
}

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

.strength-card-final {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: 10px; /* Reduced from 15px for sharper feel */
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06); /* Reduced shadow */
    transition: all 0.3s ease;
}

.strength-card-final:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.strength-icon-final {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
}

.strength-card-final h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.strength-card-final p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mission & Vision Section (REDESIGNED) */
.mission-vision-final {
    padding: 6rem 0;
}

.mv-grid-final {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card-final {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    border-left: 5px solid #4CAF50; /* Green left border */
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.mission-card-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.mv-icon-mission-final {
    width: 60px;
    height: 60px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #4CAF50;
}

.vision-card-final {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.15));
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.vision-card-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.mv-icon-vision-final {
    width: 60px;
    height: 60px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #4CAF50;
}

.mv-heading-final {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.25rem;
}

.mv-text-final {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Core Values Section (Tighter Spacing) */
.core-values-final {
    padding: 6rem 0;
    background: var(--background-light);
}

.values-grid-final {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; /* Reduced from 2.5rem */
}

.value-card-final {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #4CAF50;
}

.value-card-final:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
}

.value-icon-final {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.value-card-final:hover .value-icon-final {
    transform: scale(1.1);
}

.value-card-final h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.value-card-final p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Why Choose Section (Enhanced) */
.why-choose-final {
    padding: 6rem 0;
}

.accordion-wrapper-final {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item-final {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item-final:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.accordion-header-final {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out; /* Smooth animation */
    text-align: left;
}

.accordion-header-final:hover {
    background: var(--background-light);
}

.accordion-item-final.active .accordion-header-final {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: #ffffff;
}

.accordion-icon-final {
    width: 50px;
    height: 50px;
    background: #E8F5E9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4CAF50;
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
}

.accordion-item-final.active .accordion-icon-final {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

.accordion-title-final {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-title-final h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    transition: color 0.3s ease-in-out;
}

.accordion-item-final.active .accordion-title-final h3 {
    color: #ffffff;
}

.accordion-toggle-final {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #E8F5E9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
}

.accordion-item-final.active .accordion-toggle-final {
    background: rgba(255,255,255,0.2);
    transform: rotate(45deg);
}

.accordion-toggle-final i {
    color: #4CAF50;
    font-size: 1rem;
}

.accordion-item-final.active .accordion-toggle-final i {
    color: #ffffff;
}

.accordion-content-final {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out; /* Smooth 0.3s */
    padding: 0 2rem;
}

.accordion-item-final.active .accordion-content-final {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.accordion-content-final p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Quote Section (REDUCED HEIGHT by 40%) */
.quote-final {
    position: relative;
    padding: 5rem 0; /* Reduced from 8rem */
    overflow: hidden;
}

.quote-bg-final {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.quote-bg-final img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-overlay-final {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(76, 175, 80, 0.85));
    z-index: 1;
}

.quote-content-final {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.quote-text-final {
    font-size: 2.5rem; /* Slightly reduced */
    font-weight: 700;
    margin-bottom: 2rem; /* Reduced spacing */
    line-height: 1.3;
}

.btn-quote-final {
    margin-top: 0; /* Remove extra margin */
}

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

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .story-grid-final {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mv-grid-final {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero-title-final {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-final {
        min-height: 50vh;
    }

    .about-hero-title-final {
        font-size: 2rem;
    }

    .about-hero-subtitle-final {
        font-size: 1.1rem;
    }

    .section-heading-final {
        font-size: 2rem;
    }

    .quote-text-final {
        font-size: 1.8rem;
    }

    .strengths-grid-final {
        grid-template-columns: 1fr;
    }

    .values-grid-final {
        grid-template-columns: 1fr;
    }

    .accordion-header-final {
        padding: 1.25rem 1.5rem;
    }

    .accordion-title-final h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title-final {
        font-size: 1.6rem;
    }

    .section-heading-final {
        font-size: 1.6rem;
    }

    .quote-text-final {
        font-size: 1.4rem;
    }

    .quote-final {
        padding: 3.5rem 0;
    }
}

/* ===== Products Dropdown Navigation ===== */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.has-dropdown > a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

/* Dropdown on hover (desktop) */
.dropdown-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-submenu li {
    margin: 0;
}

.dropdown-submenu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.dropdown-submenu a:hover {
    background: #E8F5E9;            /* light green */
    color: #4CAF50;                 /* your brand green */
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .dropdown-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #F8F9FA;
        display: none;
    }
    .has-dropdown.mobile-open .dropdown-submenu {
        display: block;
    }
    .dropdown-submenu a {
        padding-left: 2rem;
    }
}

/* --- Product Detail Page Styles --- */
.breadcrumb {
    background: #f6faf7;
    padding: 1rem 0;
    border-bottom: 1px solid #e4ece9;
}
.breadcrumb .container {
    font-size: 1rem;
    color: #4caf50;
}
.breadcrumb a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
}
.breadcrumb i {
    color: #bdbdbd;
    margin: 0 0.5em;
    font-size: 0.8em;
}
.breadcrumb span {
    color: #757575;
}

.product-detail-section {
    padding: 4rem 0;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}
.product-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.09);
    background: #f8f9fa;
}
.product-detail-content h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1rem;
}
.product-intro {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}
.product-detail-content h3 {
    font-size: 1.3rem;
    color: #4caf50;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #444;
    font-size: 1rem;
    margin-bottom: 0.65rem;
}
.features-list i {
    color: #4caf50;
    margin-top: 0.2em;
    font-size: 1em;
}
.cta-buttons-product {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.cta-buttons-product .btn {
    background: #4caf50;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}
.cta-buttons-product .btn-secondary {
    background: #fff;
    color: #4caf50;
    border: 2px solid #4caf50;
}
.cta-buttons-product .btn:hover,
.cta-buttons-product .btn-secondary:hover {
    background: #388e3c;
    color: #fff;
    border-color: #388e3c;
}

/* --- Technical Specs Table --- */
.specs-section {
    background: #f6faf7;
    padding: 4rem 0;
}
.specs-section h2 {
    text-align: center;
    color: #222;
    margin-bottom: 2em;
    font-size: 2rem;
}
.specs-table-wrapper {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(76,175,80,.07);
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table thead {
    background: linear-gradient(135deg, #4caf50, #43a047 70%);
    color: #fff;
}
.specs-table th,
.specs-table td {
    padding: 1.1rem 1.5rem;
    text-align: left;
}
.specs-table th {
    font-weight: 700;
}
.specs-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}
.specs-table tbody tr:last-child {
    border-bottom: 0;
}
.specs-table tbody tr:hover {
    background: #f1f8e9;
}
.specs-table td:first-child {
    font-weight: 600;
    color: #263238;
}

/* --- Related Products --- */
.related-products-section {
    padding: 3.5rem 0 4rem 0;
}
.related-products-section h2 {
    text-align: center;
    color: #222;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto;
}
.related-product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(76,175,80,.06);
    text-align: center;
    padding-bottom: 1.2rem;
    text-decoration: none;
    color: #222;
    transition: box-shadow .2s,transform .2s;
    display: block;
}
.related-product-card:hover {
    box-shadow: 0 8px 32px rgba(76,175,80,.16);
    transform: translateY(-3px) scale(1.01);
    color: #4caf50;
}
.related-product-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}
.related-product-card h3 {
    font-size: 1.1rem;
    margin: 1rem 0 .5rem 0;
    color: #222;
}
.related-product-card p {
    color: #444;
    font-size: .97rem;
}

/* --- Responsive Fixes --- */
@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cta-buttons-product {
        flex-direction: column;
    }
    .cta-buttons-product .btn {
        width: 100%;
        text-align: center;
    }
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .product-detail-content h1,
    .specs-section h2,
    .related-products-section h2 {
        font-size: 1.2rem;
    }
    .specs-table th,
    .specs-table td {
        padding: 0.7rem 0.5rem;
    }
}

/* Products Landing Page */
.page-hero {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center; /* Keep this */
    justify-content: center; /* Keep this */
    /* Use the same gradient as blog/contact pages */
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(76, 175, 80, 0.1);
}
.page-hero h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
.page-hero p {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.products-section {
    padding: 6rem 0;
    background: #f6faf7;
}
.products-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}
.product-card-simple {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}
.product-card-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.product-image-simple {
    height: 250px;
    overflow: hidden;
    background: #e8f5e9;
}
.product-image-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card-simple:hover .product-image-simple img {
    transform: scale(1.05);
}
.product-content-simple {
    padding: 2rem;
}
.product-content-simple h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.75rem;
}
.product-content-simple p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.learn-more {
    color: #4caf50;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.learn-more i {
    transition: transform 0.3s ease;
}
.product-card-simple:hover .learn-more i {
    transform: translateX(5px);
}

/* ============================================================
   MODERN PRODUCTS DROPDOWN - SMOOTH & PROFESSIONAL
   Add this at the END of your styles.css
   ============================================================ */

/* Products Dropdown Container */
.nav-item-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Dropdown Arrow Animation */
.dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Main Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #ffffff;
    min-width: 260px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    z-index: 2000;
    border-top: 3px solid #4CAF50;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    white-space: nowrap; /* Prevent text from wrapping on hover */
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.dropdown-menu a:hover::before {
    left: 100%;
}

.dropdown-menu a:hover {
    color: var(--primary-color);
    background: var(--primary-light);
    padding-left: 28px;
}

.dropdown-menu li:first-child a {
    border-radius: 7px 7px 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 7px 7px;
}

.dropdown-menu a.active-link {
    color: var(--primary-color);
    background: var(--primary-light);
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
    padding-left: 17px;
}

/* ============================================================
   MOBILE DROPDOWN - SMOOTH COLLAPSE/EXPAND
   ============================================================ */

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: scaleY(0);
        transform-origin: top;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        border: none;
        background: var(--background-light);
        border-top: none;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        margin-top: 0;
        padding: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }


    .nav-item-dropdown.active .dropdown-menu { /* Show on mobile when active (JS toggles 'active' class) */
        opacity: 1;
        visibility: visible;
        transform: scaleY(1);
        max-height: 500px;
        padding: 8px 0;
    }

    .dropdown-menu a {
        padding: 14px 24px 14px 32px;
    }

    .dropdown-menu a:hover {
        background: var(--primary-light);
        padding-left: 40px;
    }

    .dropdown-menu li:first-child a,
    .dropdown-menu li:last-child a {
        border-radius: 0;
    }
    }

/* ============================================================
   ENHANCED NAVBAR FIXES
   ============================================================ */

/* Prevent overflow issues */
.navbar {
    overflow: visible;
}

/* Smooth hover effect on Products link */
.nav-link-dropdown {
    color: var(--text-color);
}

.nav-link-dropdown:hover {
    color: #4CAF50;
}

/* Ensure proper spacing */
/* ============================================================
   ANIMATION KEYFRAMES FOR SMOOTH EFFECTS
   ============================================================ */

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes arrowRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(180deg);
    }
}


/* ============================================================
   ENHANCED PRODUCT PAGE STYLES
   Add this at the END of your styles.css
   ============================================================ */

/* PRODUCT HERO SECTION */
.product-hero {
    position: relative;
    min-height: 50vh; /* This already matches */
    padding-top: var(--navbar-height); /* Account for navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* This overlay was causing the issue. It is now removed. */
}
.product-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(76, 175, 80, 0.08);
}

.product-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
}

.breadcrumb-hero {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.breadcrumb-hero a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb-hero .separator {
    color: rgba(255,255,255,0.5);
}

.breadcrumb-hero .current {
    color: var(--primary-color);
    font-weight: 600;
}

.product-hero-content h1 {
    font-size: 3rem; /* Matches blog page h1 */
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: none; /* Removed shadow for a cleaner look */
    line-height: 1.1;
}

.product-hero-content > p {
    font-size: 1.2rem; /* Matches blog page p */
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: none; /* Removed shadow */
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* PRODUCT MAIN SECTION */
.product-main {
    padding: 5rem 0;
    background: #fff;
}

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

.product-image-container {
    position: relative;
}

.product-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.15);
}



.product-info-container h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* BENEFITS SECTION */
.benefits-section h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.benefit-item:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #666;
}


/* DETAILED SPECS TABLE */
.specs-detailed-section {
    padding: 5rem 0;
    background: #f6faf7;
}

.specs-detailed-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 3rem;
}

.specs-table-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(76,175,80,0.1);
}

.specs-table-advanced {
    width: 100%;
    border-collapse: collapse;
}

.specs-table-advanced thead {
    background: linear-gradient(135deg, #4CAF50, #43a047);
    color: #fff;
}

.specs-table-advanced th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.specs-table-advanced tbody tr {
    border-bottom: 1px solid #e8e8e8;
}

.specs-table-advanced tbody tr:last-child {
    border-bottom: none;
}

.specs-table-advanced td {
    padding: 1.25rem 1.5rem;
}

.specs-table-advanced tbody tr:hover {
    background: #f1f8e9;
}

.spec-row-highlight {
    background: var(--primary-light);
    font-weight: 600;
}

.specs-table-advanced td:first-child {
    color: var(--primary-color);
    font-weight: 600;
}

.specs-table-advanced td:nth-child(2) {
    color: #4CAF50;
    font-weight: 600;
}

.specs-table-advanced td:nth-child(3) {
    color: #666;
}

/* APPLICATIONS SECTION */
.applications-section {
    padding: 5rem 0;
}

.applications-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 3rem;
}

.app-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 3px solid transparent;
}

.app-card:hover {
    border-top-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(76,175,80,0.2);
}

.app-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.app-card h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.app-card p {
    font-size: 0.9rem;
    color: #666;
}

/* RELATED PRODUCTS */
.related-products-enhanced {
    padding: 5rem 0;
    background: #f6faf7;
}

.related-products-enhanced h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 3rem;
}

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

.product-card-mini {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.product-card-mini:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(76,175,80,0.15);
}

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

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

.product-card-mini:hover .card-image img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-card-mini h4 {
    font-size: 1.2rem;
    color: #333;
    padding: 1.5rem 1.5rem 0.5rem;
}

.product-card-mini p {
    color: #666;
    font-size: 0.9rem;
    padding: 0 1.5rem 1rem;
}

.link-arrow {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0 1.5rem 1.5rem;
    transition: all 0.3s;
}

.link-arrow:hover {
    gap: 0.5rem;
}

.link-arrow i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.product-card-mini:hover .link-arrow i {
    transform: translateX(5px);
}

/* CTA FINAL SECTION */
.cta-final-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%) !important;
    color: white;
    text-align: center;
}

.cta-final-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-final-section > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #ffffff;
}

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

.cta-final-section .btn-primary:hover {
    background-color: var(--background-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-final-section .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
 
.cta-final-section .btn-secondary:hover {
    background-color: white;
    color: #4CAF50;
    transform: translateY(-2px);
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .product-overview-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .benefits-grid,
    .specs-quick-grid {
        grid-template-columns: 1fr;
    }
    
    .product-cta-section,
    .cta-buttons {
        flex-direction: column;
    }
    
    .product-cta-section .btn,
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .product-overview-grid {
        gap: 1.5rem;
    }
    
    .breadcrumb-hero {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .breadcrumb-hero .separator {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .related-products-carousel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .specs-table-advanced {
        font-size: 0.9rem;
    }
    
    .specs-table-advanced th,
    .specs-table-advanced td {
        padding: 0.8rem;
    }
}

/* ============================================================
   SIMPLE BLOG POST CSS - Minimal & Clean
   Add to END of your styles.css
   ============================================================ */

/* HERO SECTION - SIMPLE */
.blog-post-hero-simple {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: calc(var(--navbar-height) + 2rem); /* Reduced top padding */
    padding-bottom: 2rem; /* Reduced bottom padding */
    text-align: center;
}

.blog-post-hero-simple h1,
.blog-post-hero-simple p {
    max-width: 800px; /* Constrain text width for better readability */
    margin-left: auto;
    margin-right: auto;
}

.blog-post-tag {
    display: inline-block;
    background: #4CAF50;
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-hero-simple h1 {
    font-size: 2.5rem;
    color: #333;
    margin: 0 auto 1rem auto; /* Apply auto margins horizontally, keep vertical */
    font-weight: 800;
    line-height: 1.2;
}

.blog-post-hero-simple p {
    font-size: 1.15rem;
    color: #666;
    margin: 0 auto 1.5rem auto; /* Apply auto margins horizontally, keep vertical */
}

.blog-meta-simple {
    display: flex;
    gap: 2rem;
    justify-content: center;
    font-size: 0.9rem;
    color: #666;
}

/* CONTENT SECTION - SIMPLE */
.blog-content-simple {
    padding: 4rem 0;
    background: #fff;
}

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

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.article-section h2 i {
    color: #4CAF50;
    font-size: 1.5rem;
}

.article-section p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.15rem !important;
    color: #333 !important;
    font-weight: 500;
    background: #f0f9f0;
    padding: 1.5rem;
    border-left: 4px solid #4CAF50;
    border-radius: 8px;
}

/* IMPACT STATS */
.impact-stats-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-simple {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* COMPARISON */
.comparison-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.compare-col {
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.traditional-col {
    background: #fff5f5;
    border-left: 4px solid #ff6b6b;
}

.modern-col {
    background: #f0f9f0;
    border-left: 4px solid #4CAF50;
}

.compare-col h4 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

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

.compare-col li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.x {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.2rem;
}

.check {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* FULL GREEN SECTION */
.full-green {
    background: linear-gradient(135deg, #4CAF50, #43a047) !important;
    padding: 3rem !important;
    border-radius: 16px;
    margin: 3rem 0 !important;
}

.full-green p {
    color: #fff !important;
}

/* IMPACT METRICS */
.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.metric-card {
    text-align: center;
    color: #fff;
}

.metric-emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.metric-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* CASE STUDY */
.case-study-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.case-traditional,
.case-modern {
    padding: 1.5rem;
    border-radius: 12px;
}

.case-traditional {
    background: #fff5f5;
    border: 2px solid #ffe0e0;
}

.case-modern {
    background: #f0f9f0;
    border: 2px solid #c8e6c9;
}

.case-traditional h4,
.case-modern h4 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.case-traditional ul,
.case-modern ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.case-traditional li,
.case-modern li {
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.95rem;
}

.savings-badge {
    background: #4CAF50;
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

/* CTA BOX */
.cta-box-simple {
    background: linear-gradient(135deg, #4CAF50, #43a047);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    color: #fff;
}

.cta-box-simple h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.cta-box-simple p {
    color: #fff !important;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    opacity: 0.95;
}

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

.cta-buttons-simple .btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.cta-buttons-simple .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-buttons-simple .btn-secondary:hover {
    background: #fff;
    color: #4CAF50;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-post-hero-simple h1 {
        font-size: 2rem;
    }
    
    .comparison-simple,
    .case-study-simple {
        grid-template-columns: 1fr;
    }
    
    .blog-meta-simple {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-simple {
        flex-direction: column;
    }
    
    .cta-buttons-simple .btn {
        width: 100%;
    }
}

/* ============================================================
   ADDITIONAL CSS FOR BLOG 2 - ROI Breakdown
   Add this AFTER the existing blog CSS in styles.css
   ============================================================ */

.formula-content {
    color: #333;
}

.formula-line {
    font-size: 1.2rem;
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.formula-example h4 {
    margin: 0 0 1rem 0;
    color: var(--primary-dark);
}

.formula-example p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.projection-table {
    overflow-x: auto;
    margin: 2rem 0;
}
.projection-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.projection-table thead, .timing-table thead {
    background: linear-gradient(135deg, #4CAF50, #43a047);
    color: #fff;
}

.projection-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.projection-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.projection-table tbody tr:last-child td {
    border-bottom: none;
}

.projection-table tbody tr:hover {
    background: #f8f9fa;
}

/* ============================================================
   ADDITIONAL CSS FOR BLOG 3 - Installation Tips
   Add this AFTER the existing blog CSS in styles.css
   ============================================================ */

/* TIP BOX */
.tip-box {
    background: #f0f9f0;
    border-left: 4px solid #4CAF50;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.tip-box h4 {
    color: #4CAF50;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.tip-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.tip-box li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* SUCCESS STATS */
.stat-success {
    background: linear-gradient(135deg, #4CAF50, #43a047) !important;
}

/* STEP BY STEP */
.step-by-step {
    margin: 2rem 0;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.05rem;
}

.step-content p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

/* MONITORING CHECKLIST */
.monitoring-checklist {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: 0.95rem;
}

.checklist-item i {
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* TIMING GUIDE */
.timing-guide {
    margin: 2rem 0;
}

.timing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.timing-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.timing-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #555;
}

.timing-table tbody tr:hover {
    background: #f8f9fa;
}

/* MISTAKES GRID */
.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.mistake-item {
    background: #fff5f5;
    border-left: 4px solid #ff6b6b;
    padding: 1.5rem;
    border-radius: 8px;
}

.mistake-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.mistake-item h4 {
    color: #d32f2f;
    margin: 0 0 0.5rem 0;
    font-size: 1.05rem;
}

.mistake-item p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .step-item {
        gap: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .timing-table {
        font-size: 0.8rem;
    }
    
    .timing-table th,
    .timing-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .mistakes-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   WALL FORMWORK SYSTEMS - TABBED SECTION
   ============================================ */

.wall-types-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.wall-types-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}
 
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

/* TAB BUTTONS */
.wall-tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.wall-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 24px;
    border: 2px solid #ddd;
    background-color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    min-width: 140px;
}

.wall-tab-btn i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.wall-tab-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.wall-tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
 
.wall-tab-btn.active i {
    color: white;
}

@media (max-width: 768px) {
    .wall-tabs-container {
        gap: 10px;
    }

    .wall-tab-btn {
        min-width: 110px;
        padding: 14px 16px;
        font-size: 0.85rem;
    }

    .wall-tab-btn i {
        font-size: 1.4rem;
    }
}

.wall-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.wall-tab-content.active {
    display: block;
}

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

.wall-type-image {
    text-align: center;
}

.wall-type-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.wall-type-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2rem;
    margin-bottom: 20px;
    border-radius: 12px 12px 0 0;
    margin: -50px -50px 20px -50px; /* Pulls header to edges of parent padding */
    padding-left: 50px; /* Re-aligns text with content below */
}

.wall-type-info > p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.wall-type-info p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.wall-specs-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.spec-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-quick-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.spec-quick-item div {
    flex: 1;
}

.spec-quick-item strong {
    display: block;
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.spec-quick-item div {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.wall-type-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 25px;
    margin-bottom: 15px;
}

.wall-type-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wall-type-list li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
}

.wall-type-list li:before {
    content: "✓";
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 10px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .wall-type-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wall-specs-quick {
        grid-template-columns: 1fr;
    }

    .wall-type-list {
        grid-template-columns: 1fr;
    }

    .wall-tabs-content {
        padding: 30px;
    }

    .wall-type-info h3 {
        font-size: 1.5rem;
    }
}

.comparison-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table th i {
    margin-right: 8px;
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 0.95rem;
}

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

.comparison-table tbody td strong {
    color: #1a1a1a;
    font-weight: 600;
}

.badge-easy {
    display: inline-block;
    padding: 6px 12px;
    background-color: #d4edda;
    color: #155724;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-medium {
    display: inline-block;
    padding: 6px 12px;
    background-color: #fff3cd;
    color: #856404;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-hard {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 12px;
        font-size: 0.85rem;
    }

    .comparison-section h2 {
        font-size: 1.8rem;
    }
}

.specs-detailed-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.specs-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.specs-table-advanced {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    font-size: 0.95rem;
}

.specs-table-advanced thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.specs-table-advanced th {
    padding: 18px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.specs-table-advanced td {
    padding: 16px 18px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.specs-table-advanced tbody tr:hover {
    background-color: #f8f9fa;
}

.spec-row-highlight {
    background-color: var(--primary-light);
}

.spec-row-highlight td {
    font-weight: 600;
    color: var(--primary-dark);
}

.specs-table-advanced td strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 3px;
}

@media (max-width: 768px) {
    .specs-table-advanced th,
    .specs-table-advanced td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .specs-detailed-section h2 {
        font-size: 1.8rem;
    }
}

.features-technical-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
}

.features-technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-tech-card {
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.15);
    background-color: white;
}

.feature-tech-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-tech-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-tech-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 768px) {
    .features-technical-section {
        padding: 50px 0;
    }

    .features-technical-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-tech-card {
        padding: 30px;
    }

    .feature-tech-icon {
        font-size: 2.2rem;
    }
}

.applications-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
}

.app-card {
    padding: 35px;
    background-color: white;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.2);
}

.app-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.app-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.app-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .applications-grid {
        grid-template-columns: 1fr;
    }

    .app-card {
        padding: 25px;
    }

    .app-card i {
        font-size: 2.2rem;
    }

    .app-card h4 {
        font-size: 1.1rem;
    }
}

/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none; /* Stop pulsing on hover */
}

@keyframes pulse-whatsapp {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.related-products-enhanced h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
}

.related-products-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card-mini {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card-mini:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.15);
}

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

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

.product-card-mini:hover .card-image img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-card-mini h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 20px 20px 10px;
}

.product-card-mini p {
    font-size: 0.9rem;
    color: #666;
    padding: 0 20px 15px;
    line-height: 1.6;
}

.link-arrow {
    display: inline-block;
    padding: 12px 20px;
    margin: 0 20px 20px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.link-arrow:hover {
    color: var(--primary-dark);
}

.link-arrow:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .related-products-carousel {
        grid-template-columns: 1fr;
    }

    .product-card-mini h4 {
        font-size: 1.1rem;
    }
}

/* Carousel for Related Products */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 960px; /* Adjust based on 3 cards + gaps */
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-track .product-card-mini {
    flex: 0 0 calc((100% / 3) - (4rem / 3)); /* 3 cards visible */
    min-width: 300px; /* Minimum width for cards */
}

.carousel-btn {
    background: var(--white);
    border: 2px solid var(--border-color);
    color: var(--text-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    z-index: 10;
}

.carousel-btn.prev {
    margin-right: 1rem;
}

.carousel-btn.next {
    margin-left: 1rem;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.wall-tab-btn i {
    font-size: 1.8rem;
    color: #4CAF50;
    transition: color 0.3s ease;
}

.wall-tab-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.wall-tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.wall-tab-btn.active i {
    color: white;
}

@media (max-width: 768px) {
    .wall-tabs-container {
        gap: 10px;
    }

    .wall-tab-btn {
        min-width: 110px;
        padding: 14px 16px;
        font-size: 0.85rem;
    }

    .wall-tab-btn i {
        font-size: 1.4rem;
    }
}

/* TAB CONTENT */
.wall-tabs-content {
    background-color: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.wall-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.wall-tab-content.active {
    display: block;
}

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

/* WALL TYPE GRID */
.wall-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.wall-type-image {
    text-align: center;
}

.wall-type-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.wall-type-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2rem;
    margin-bottom: 20px;
    border-radius: 12px 12px 0 0;
    margin: -50px -50px 20px -50px;
    padding-left: 50px;
}

.wall-type-info > p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.wall-type-info p strong {
    color: #4CAF50;
    font-weight: 600;
}

.wall-specs-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.spec-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-quick-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    flex-shrink: 0;
}

.spec-quick-item div {
    flex: 1;
}

.spec-quick-item strong {
    display: block;
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.spec-quick-item div {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.wall-type-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 25px;
    margin-bottom: 15px;
}

.wall-type-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wall-type-list li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
}

.wall-type-list li:before {
    content: "✓";
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 10px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .wall-type-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wall-specs-quick {
        grid-template-columns: 1fr;
    }

    .wall-type-list {
        grid-template-columns: 1fr;
    }

    .wall-tabs-content {
        padding: 30px;
    }

    .wall-type-info h3 {
        font-size: 1.5rem;
    }
}

/* ============================================================
   ACCESSIBILITY - FOCUS STATES
   ============================================================ */

/* Add a clear focus indicator for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(76, 175, 80, 0.3);
    border-radius: 4px; /* Optional: rounds the outline corners */
}

/* Responsive Design for Merged Page */

@media (max-width: 992px) {
    .product-overview-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .benefits-grid,
    .wall-specs-quick {
        grid-template-columns: 1fr;
    }

    .wall-type-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .product-hero-content h1 {
        font-size: 2.2rem;
    }

    .product-overview-grid {
        gap: 1.5rem;
    }

    .breadcrumb-hero {
        flex-direction: column;
        gap: 0.5rem;
    }

    .breadcrumb-hero .separator {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .related-products-carousel {
        grid-template-columns: 1fr;
    }

    .wall-type-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-hero-content h1 {
        font-size: 1.8rem;
    }

    .specs-table-advanced {
        font-size: 0.9rem;
    }

    .specs-table-advanced th,
    .specs-table-advanced td {
        padding: 0.8rem;
    }

    .wall-tab-btn {
        min-width: 90px;
        padding: 12px 12px;
        font-size: 0.8rem;
    }
}

/* ============================================================
   SCAFFOLDING SYSTEMS PAGE
   ============================================================ */

.product-main {
    padding: 4rem 0;
    background: var(--white);
}

.scaffolding-products-section {
    padding-top: 0;
    padding-bottom: 4rem;
}

.scaffolding-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.scaffolding-product-image-wrapper {
    position: relative;
    height: 250px;
}

.scaffolding-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scaffolding-product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.scaffolding-product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.scaffolding-product-info h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.scaffolding-product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.scaffolding-product-specs {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.scaffolding-spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.scaffolding-spec-item:last-child {
    border-bottom: none;
}

.scaffolding-view-details-btn {
    width: 100%;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.scaffolding-view-details-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Benefits Section */
.scaffolding-benefits-section {
    background: var(--background-light);
}

.scaffolding-application-section {
    background: var(--white);
}

.scaffolding-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.scaffolding-benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.scaffolding-benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.scaffolding-benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Applications Section */
.scaffolding-applications-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.scaffolding-app-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.scaffolding-app-icon {
    font-size: 2rem;
}

/* CTA Section */
.scaffolding-cta-section {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 12px;
}

.scaffolding-cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
}

.scaffolding-cta-button {
    margin-top: 1.5rem;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scaffolding-cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}
/*scaffolding css code*/
/* Main Container & Sections */
.scaffolding-container {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.scaffolding-section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.scaffolding-intro-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.scaffolding-intro-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

/* Products Grid */
.scaffolding-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* ============================================================
   SCAFFOLDING PAGE - MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .scaffolding-container {
        padding: 2rem 1rem;
    }

    .scaffolding-section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .scaffolding-intro-section {
        margin-bottom: 2rem;
    }

    .scaffolding-products-grid {
        grid-template-columns: 1fr;
    }

    .scaffolding-applications-list {
        grid-template-columns: 1fr;
    }
}

/*scaffolding css code*/

/*contact page*/
