/* ==========================================================================
   Shivish Green - Home Page Styles
   Merged from: lifecycle-redesign.css, lifecycle.css, premium-applications.css, 
   premium-products.css, premium-about.css
   ========================================================================== */

/* ==========================================================================
   1. LIFECYCLE REDESIGN SECTION
   Source: lifecycle-redesign.css
   ========================================================================== */
/* Lifecycle Redesign Section - Compact Grid Layout */
.lifecycle-redesign-section {
    padding: 100px 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Background Texture */
.lr-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#2e7d32 0.5px, transparent 0.5px), radial-gradient(#2e7d32 0.5px, #fdfdfd 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.03;
    z-index: 1;
}

.lr-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.lr-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lr-title span {
    color: #333;
}

.lr-subtitle {
    font-size: 1.5rem; /* Increased */
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Timeline/Grid Container */
.lr-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; /* Increased gap */
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

/* Timeline Item (Grid Cell) */
.lr-item {
    position: relative;
    width: 100%;
}

/* Content Card */
.lr-content {
    background: white;
    padding: 50px 35px; /* More padding */
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.lr-item:hover .lr-content {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(46, 125, 50, 0.18);
    border-color: #2e7d32;
}

/* Watermark Number */
.lr-big-num {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03); /* Lighter and simpler */
    z-index: 0;
    line-height: 1;
    pointer-events: none;
    font-family: 'Arial', sans-serif; /* Cleaner font for number */
}

/* Icon Box - New Design */
.lr-icon-box {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e9; /* Light Green Background */
    border-radius: 50%; /* Circle */
    border: 2px solid #2e7d32; /* Solid Border */
    transition: all 0.4s ease;
}

.lr-item:hover .lr-icon-box {
    background: #2e7d32; /* Fill on hover */
    transform: rotateY(180deg); /* 3D flip effect */
}

/* Icon Itself */
.lr-card-icon {
    font-size: 3.5rem;
    color: #2e7d32;
    transition: all 0.4s ease;
    /* Removed text gradient for solid clearer color */
}

.lr-item:hover .lr-card-icon {
    color: #ffffff; /* Turn white on hover */
    transform: rotateY(-180deg); /* Keep icon facing forward during container flip */
}

/* Typography */
.lr-card-title {
    font-size: 2.2rem; /* Significantly Larger */
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.lr-card-desc {
    font-size: 1.35rem; /* Significantly Larger */
    color: #666;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    font-weight: 500;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .lr-title {
        font-size: 2.5rem;
    }
    
    .lr-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .lifecycle-redesign-section {
        padding: 60px 0;
    }

    .lr-title {
        font-size: 2rem;
    }

    .lr-subtitle {
        font-size: 1.1rem;
    }

    .lr-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lr-content {
        padding: 40px 25px;
    }
    
    .lr-big-num {
        font-size: 6rem;
    }

    .lr-icon-box {
        width: 80px;
        height: 80px;
    }

    .lr-card-icon {
        font-size: 2.5rem;
    }

    .lr-card-title {
        font-size: 1.8rem;
    }

    .lr-card-desc {
        font-size: 1.4rem;
    }
}


/* ==========================================================================
   2. LIFECYCLE SECTION (LEGACY/ALTERNATIVE)
   Source: lifecycle.css
   ========================================================================== */
/* Life Cycle Section Styles */
:root {
  --lc-primary-green: #2e7d32;
  --lc-light-green: #e8f5e9;
  --lc-accent-blue: #0288d1;
  --lc-danger-red: #d32f2f;
  --lc-text-dark: #333333;
  --lc-text-light: #666666;
  --lc-white: #ffffff;
  --lc-transition: all 0.3s ease;
}

.lifecycle-section {
  position: relative;
  background-color: #f9fbf9;
  overflow: hidden;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

/* Section Title */
.lc-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.lc-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lc-primary-green);
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.lc-title::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background: var(--lc-accent-blue);
  bottom: -10px;
  left: 20%;
  border-radius: 2px;
}

.lc-subtitle {
  font-size: 1.1rem;
  color: var(--lc-text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Comparison Styles */
.lc-comparison-wrapper {
  margin-bottom: 60px;
}

.lc-compare-header {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.lc-compare-btn {
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--lc-transition);
  background: #f0f0f0;
  color: #666;
  border: 1px solid #ddd;
}

.lc-compare-btn.active.eco {
  background: var(--lc-primary-green);
  color: white;
  border-color: var(--lc-primary-green);
}

.lc-compare-btn.active.conv {
  background: var(--lc-danger-red);
  color: white;
  border-color: var(--lc-danger-red);
}

.lc-path-container {
  display: none;
  animation: fadeIn 0.5s ease;
}

.lc-path-container.active {
  display: block;
}

.lc-path-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.lc-path-line {
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  height: 4px;
  background: #ddd;
  z-index: 1;
}

.lc-path-node {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 120px;
}

.lc-node-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 2.5rem;
  background: white;
  border: 4px solid #ddd;
  color: #999;
  transition: var(--lc-transition);
}

/* Active State Styles */
.lc-path-container.eco .lc-path-line {
  background: linear-gradient(90deg, #81c784, #2e7d32);
}

.lc-path-container.eco .lc-node-icon {
  border-color: var(--lc-primary-green);
  color: var(--lc-primary-green);
  background: #f1f8e9;
}

.lc-path-container.conv .lc-path-line {
  background: linear-gradient(90deg, #e57373, #d32f2f);
}

.lc-path-container.conv .lc-node-icon {
  border-color: var(--lc-danger-red);
  color: var(--lc-danger-red);
  background: #ffebee;
}

.lc-node-title {
  font-weight: 700;
  color: var(--lc-text-dark);
  margin-bottom: 5px;
}

.lc-node-desc {
  font-size: 0.8rem;
  color: var(--lc-text-light);
}

/* Product Uses Tabs & Grid */
.lc-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
  border-top: 1px solid #eee;
  padding-top: 50px;
}

.lc-tab-btn {
  background: var(--lc-white);
  border: 2px solid var(--lc-light-green);
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lc-text-dark);
  cursor: pointer;
  transition: var(--lc-transition);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.lc-tab-btn:hover, .lc-tab-btn.active {
  background: var(--lc-primary-green);
  color: var(--lc-white);
  border-color: var(--lc-primary-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(46, 125, 50, 0.2);
}

/* Tab Content */
.lc-content-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.lc-content-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Product Uses Grid */
.lc-uses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.lc-use-card {
  background: var(--lc-white);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: var(--lc-transition);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.lc-use-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: var(--lc-light-green);
}

.lc-icon-box {
  width: 70px;
  height: 70px;
  background: var(--lc-light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--lc-primary-green);
  font-size: 1.8rem;
  transition: var(--lc-transition);
}

.lc-use-card:hover .lc-icon-box {
  background: var(--lc-primary-green);
  color: var(--lc-white);
  transform: rotateY(180deg);
}

.lc-use-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--lc-text-dark);
}

.lc-use-desc {
  font-size: 0.9rem;
  color: var(--lc-text-light);
  line-height: 1.6;
}

/* Info Section (Properties) */
.lc-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  align-items: center;
}

.lc-info-text h3 {
  font-size: 1.5rem;
  color: var(--lc-text-dark);
  margin-bottom: 20px;
  border-left: 4px solid var(--lc-accent-blue);
  padding-left: 15px;
}

.lc-info-list {
  list-style: none;
  padding: 0;
}

.lc-info-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: var(--lc-text-light);
}

.lc-info-list li::before {
  content: '\f00c';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  color: var(--lc-primary-green);
}

.lc-timeline-bar {
  margin-top: 20px;
}

.lc-bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--lc-text-dark);
}

.lc-bar-bg {
  height: 10px;
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
}

.lc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lc-primary-green), var(--lc-accent-blue));
  border-radius: 5px;
  width: 0;
  animation: fillBar 1.5s ease-out forwards;
}

@keyframes fillBar {
  to { width: var(--fill-width); }
}

/* Responsive */
@media (max-width: 991px) {
  .lc-timeline, .lc-path-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .lc-path-line {
    width: 2px;
    height: calc(100% - 80px);
    left: 50%;
    top: 40px;
  }
  
  .lc-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lc-title {
    font-size: 1.8rem;
  }
  
  .lc-tab-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


/* ==========================================================================
   3. PREMIUM APPLICATIONS SECTION
   Source: premium-applications.css
   ========================================================================== */
/* Premium Applications Section Styles */
.premium-applications-section {
    padding: 100px 0;
    background-color: #f8fcf9; /* Slightly off-white/greenish tint for freshness */
    font-family: 'DM Sans', 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.premium-applications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#4CAF50 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
    pointer-events: none;
}

.p-app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.p-app-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.p-app-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4CAF50;
    margin-bottom: 15px;
    background: rgba(76, 175, 80, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
}

.p-app-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.p-app-title span {
    color: #4CAF50;
    position: relative;
    display: inline-block;
}

.p-app-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(76, 175, 80, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.p-app-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Grid Layout */
.p-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.p-app-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Important for image zoom */
    height: 100%;
}

.p-app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

/* Image Container */
.p-app-image-wrapper {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    overflow: hidden;
    position: relative;
}

.p-app-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.p-app-card:hover .p-app-image-wrapper img {
    transform: scale(1.1);
}

/* Card Content */
.p-app-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.p-app-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.p-app-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Badge */
.p-app-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.p-app-card:hover .p-app-badge {
    background: #4CAF50;
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .p-app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .premium-applications-section {
        padding: 60px 0;
    }

    .p-app-title {
        font-size: 30px;
    }

    .p-app-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .p-app-card {
        max-width: 450px;
        margin: 0 auto; /* Center single cards on mobile */
    }
}


/* ==========================================================================
   4. PREMIUM PRODUCTS SECTION
   Source: premium-products.css
   ========================================================================== */
/* Premium Products Section Styles */
.premium-products-section {
    padding: 80px 0;
    background-color: #f9fbfd;
    font-family: 'DM Sans', sans-serif; /* Assuming DM Sans or similar usage from other premium sections */
    position: relative;
    overflow: hidden;
}

/* Background Pattern/Decoration */
.premium-products-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.pp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.pp-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pp-subtitle {
    display: inline-block;
    color: #4CAF50;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    background: rgba(76, 175, 80, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
}

.pp-title {
    font-size: 36px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.pp-title span {
    color: #4CAF50;
}

.pp-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Product Grid */
.pp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

/* Product Card */
.pp-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.pp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.2);
}

.pp-image-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.pp-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pp-card:hover .pp-image-wrapper img {
    transform: scale(1.08);
}

/* Overlay Badge */
.pp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.pp-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pp-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.pp-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pp-card-title a:hover {
    color: #4CAF50;
}

.pp-card-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.pp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.pp-tag {
    font-size: 12px;
    background: #f0f7f1;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.pp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.pp-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.pp-btn:hover {
    background: #4CAF50;
    color: #fff;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.pp-btn:hover i {
    transform: translateX(4px);
}

/* SEO Keywords Footer Block */
.pp-seo-footer {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px dashed #ddd; /* Subtle border to separate */
    text-align: center;
}

.pp-seo-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.pp-keyword-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pp-keyword-item {
    font-size: 13px;
    color: #666;
    background: #f5f5f5;
    padding: 6px 14px;
    border-radius: 4px;
    transition: background 0.3s;
}

.pp-keyword-item:hover {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pp-title {
        font-size: 28px;
    }
    
    .pp-products-section {
        padding: 50px 0;
    }
    
    .pp-grid {
        grid-template-columns: 1fr; /* Full width cards on mobile */
    }
    
    .pp-image-wrapper {
        height: 200px;
    }
}


/* ==========================================================================
   5. PREMIUM ABOUT SECTION
   Source: premium-about.css
   ========================================================================== */
/* Premium About Section Styles */
.premium-about-section {
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.pa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.pa-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.pa-content-col {
    flex: 1;
    min-width: 300px;
}

.pa-image-col {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Typography */
.pa-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #a3ad49;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pa-subtitle::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #a3ad49;
}

.pa-title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
    color: #1c4537; /* Brand Dark Green */
    margin-bottom: 30px;
}

.pa-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 25px;
    text-align: justify;
}

.pa-btn {
    display: inline-block;
    background-color: #1c4537;
    color: #fff;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: 2px solid #1c4537;
}

.pa-btn:hover {
    background-color: transparent;
    color: #1c4537;
    border-color: #1c4537;
}

/* Image Styling */
.pa-image-wrapper {
    position: relative;
    z-index: 1;
}

.pa-image-wrapper img {
    border-radius: 20px; /* Modern rounded look, user had 50% radius which is a circle, maybe keep or change? User said "restructure and redesign", circle for main about image is a bit dated if it's not a portrait. I'll use a nice rounded rect. */
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px; /* Limit width */
    height: auto;
    transition: transform 0.5s ease;
}

.pa-image-wrapper:hover img {
    transform: translateY(-10px);
}

/* Leaf Layer Background */
.pa-bg-leaf {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .premium-about-section {
        padding: 80px 0;
    }

    .pa-layout {
        flex-direction: column;
        gap: 40px;
    }

    .pa-image-col {
        order: -1; /* Image on top for mobile visual appeal? Or text? Let's check user intent. "About Title... content... Image". Usually image first is engaging. I'll use a nice rounded rect. */
        width: 100%;
    }

    .pa-content-col {
        width: 100%;
        text-align: center; /* Center text on mobile? usually good. */
    }

    .pa-subtitle {
        justify-content: center;
    }

    .pa-description {
        text-align: center; /* Or left? Center looks cleaner for 'center' layouts. */
        text-align: left; /* Keep readability high */
    }
}

@media (max-width: 576px) {
    .premium-about-section {
        padding: 60px 0;
    }

    .pa-title {
        font-size: 28px;
    }
    
    .pa-subtitle {
        font-size: 12px;
    }
}

/* ==========================================================================
   4. UNIFIED/UNIVERSAL HEADER STYLES
   Requested to make all section titles have the exact same premium design.
   ========================================================================== */

.unified-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

/* Modifiers for alignment */
.unified-header.text-left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.unified-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4CAF50;
    margin-bottom: 15px;
    background: rgba(76, 175, 80, 0.08); /* Light Green Pill */
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'DM Sans', 'Poppins', sans-serif;
}

.unified-header.text-left .unified-subtitle {
    /* Align pill left? Only if needed, display inline-block naturally flows. */
}

/* Remove the line style from old About section if present on this element */
.unified-subtitle::before {
    display: none; 
}

.unified-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'DM Sans', 'Poppins', sans-serif;
}

/* Accent Design for specific words wrapped in <span> */
.unified-title span {
    color: #4CAF50;
    position: relative;
    display: inline-block;
    z-index: 1;
}

/* Underline Highlight Effect */
.unified-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -2px;
    width: calc(100% + 4px);
    height: 8px;
    background: rgba(76, 175, 80, 0.15); /* Light Green Highlight */
    z-index: -1;
    border-radius: 4px;
    pointer-events: none;
}

.unified-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}

.unified-header.text-left .unified-description {
    margin-left: 0;
    text-align: justify; /* Maintain the About section justification */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .unified-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .unified-header {
        margin-bottom: 40px;
    }
    .unified-title {
        font-size: 28px;
    }
    .unified-subtitle {
        font-size: 12px;
        padding: 6px 12px;
    }
}
