
/* ==========================================================================
   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(#0B2E63 0.5px, transparent 0.5px), radial-gradient(#0B2E63 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: #0B2E63;
    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;
}

/* Scroll-synced progress rail */
.lr-rail {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto 60px;
    z-index: 2;
}

.lr-rail-track {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 50%;
    height: 3px;
    background: #E5E7EB;
    border-radius: 3px;
    transform: translateY(-50%);
    overflow: hidden;
}

.lr-rail-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0B2E63, #F4B400);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.lr-rail-node {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #E5E7EB;
    color: #6B7280;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.lr-rail-node:hover {
    border-color: #F4B400;
    color: #0B2E63;
}

.lr-rail-node.is-active {
    background: #0B2E63;
    border-color: #0B2E63;
    color: #fff;
    box-shadow: 0 0 0 6px rgba(11, 46, 99, 0.12);
    transform: scale(1.1);
}

/* 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%;
}

/* Connector chevron between adjacent cards (desktop rows only) */
.lr-item:not(:nth-child(3n))::after {
    content: '\2192';
    position: absolute;
    top: 50%;
    right: -32px;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E5E7EB;
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

/* 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;
}

/* Shine sweep on hover */
.lr-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, rgba(244, 180, 0, 0) 0%, rgba(244, 180, 0, 0.16) 50%, rgba(244, 180, 0, 0) 100%);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 0;
}

.lr-item:hover .lr-content::before {
    left: 130%;
}

.lr-item:hover .lr-content {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(11, 46, 99, 0.18);
    border-color: #0B2E63;
}

/* Step chip badge */
.lr-step-chip {
    align-self: flex-start;
    position: relative;
    z-index: 1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #F4B400;
    background: rgba(244, 180, 0, 0.12);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    transition: all 0.4s ease;
}

.lr-item:hover .lr-step-chip {
    background: #F4B400;
    color: #0B2E63;
}

/* 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: #E7EEF8; /* Light Navy Background */
    border-radius: 50%; /* Circle */
    border: 2px solid #0B2E63; /* Solid Border */
    transition: all 0.4s ease;
}

.lr-item:hover .lr-icon-box {
    background: #0B2E63; /* Fill on hover */
    transform: rotateY(180deg); /* 3D flip effect */
}

/* Icon Itself */
.lr-card-icon {
    font-size: 3.5rem;
    color: #0B2E63;
    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);
    }

    .lr-item:not(:nth-child(3n))::after {
        display: none;
    }

    .lr-item:nth-child(odd):not(:last-child)::after {
        content: '\2192';
        position: absolute;
        top: 50%;
        right: -32px;
        transform: translateY(-50%);
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #E5E7EB;
        color: #F4B400;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
    }

    .lr-rail {
        max-width: 100%;
        padding: 0 10px;
    }
}

@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-item::after,
    .lr-item:nth-child(odd)::after {
        display: none !important;
    }

    .lr-rail-node {
        width: 34px;
        height: 34px;
        font-size: 11px;
    }

    .lr-rail-track {
        left: 17px;
        right: 17px;
    }

    .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: #0B2E63;
  --lc-light-green: #E7EEF8;
  --lc-accent-blue: #1E5AA8;
  --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, #1E5AA8, #0B2E63);
}

.lc-path-container.eco .lc-node-icon {
  border-color: var(--lc-primary-green);
  color: var(--lc-primary-green);
  background: #E7EEF8;
}

.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(11, 46, 99, 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: #F8FAFC; /* Slightly off-white 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(#F4B400 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: #F4B400;
    margin-bottom: 15px;
    background: rgba(244, 180, 0, 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: #F4B400;
    position: relative;
    display: inline-block;
}

.p-app-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(244, 180, 0, 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: full-bleed image tile with a content panel that slides up on hover */
.p-app-card {
    border-radius: 20px;
    overflow: hidden;
}

.p-app-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(11, 46, 99, 0.08);
    transition: box-shadow 0.4s ease;
}

.p-app-card:hover .p-app-media {
    box-shadow: 0 25px 50px rgba(11, 46, 99, 0.22);
}

.p-app-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.p-app-card:hover .p-app-media img,
.p-app-card.is-open .p-app-media img {
    transform: scale(1.08);
}

/* Base darkening so the title stays legible even before hover */
.p-app-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 46, 99, 0) 40%, rgba(8, 27, 51, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Step index chip */
.p-app-index {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    color: #fff;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

/* Badge */
.p-app-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #16281f;
    background: #F4B400;
    padding: 7px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(244, 180, 0, 0.35);
}

/* Sliding info panel */
.p-app-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 24px 22px;
    transform: translateY(calc(100% - 76px));
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-app-card:hover .p-app-info,
.p-app-card.is-open .p-app-info {
    transform: translateY(0);
}

.p-app-info h3 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
}

.p-app-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.p-app-card:hover .p-app-info p,
.p-app-card.is-open .p-app-info p {
    opacity: 1;
    transform: translateY(0);
}

/* 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-media {
        aspect-ratio: 16 / 10;
    }

    .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(244, 180, 0, 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: #F4B400;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    background: rgba(244, 180, 0, 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: #F4B400;
}

.pp-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Category Filter Bar */
.pp-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 45px;
}

.pp-filter {
    background: #fff;
    border: 1px solid #E5E7EB;
    color: #6B7280;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pp-filter:hover {
    border-color: #F4B400;
    color: #0B2E63;
}

.pp-filter.is-active {
    background: #0B2E63;
    border-color: #0B2E63;
    color: #fff;
    box-shadow: 0 10px 25px rgba(11, 46, 99, 0.25);
}

/* 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: opacity 0.35s ease, transform 0.4s ease, box-shadow 0.4s ease, border-color 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(244, 180, 0, 0.15);
    border-color: rgba(244, 180, 0, 0.2);
}

.pp-card.pp-card--out {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.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);
}

.pp-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 46, 99, 0) 45%, rgba(11, 46, 99, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pp-card:hover .pp-image-wrapper::after {
    opacity: 1;
}

/* Quick-view overlay button */
.pp-quickview {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: #0B2E63;
    border-radius: 50%;
    font-size: 20px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.pp-card:hover .pp-quickview {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.pp-quickview:hover {
    background: #F4B400;
    color: #fff;
}

/* Overlay Badge */
.pp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    background: #F4B400;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(244, 180, 0, 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: #F4B400;
}

.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: #0B2E63;
    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: #F4B400;
    color: #fff;
    box-shadow: 0 8px 20px rgba(244, 180, 0, 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: #E7EEF8;
    color: #0B2E63;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pp-title {
        font-size: 28px;
    }
    
    .premium-products-section {
        padding: 50px 0;
    }

    .pp-filters {
        gap: 10px;
    }

    .pp-filter {
        padding: 9px 18px;
        font-size: 13px;
    }

    .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: 110px 0;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Decorative ambient background shapes */
.pa-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.pa-bg-shape--one {
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(244, 180, 0, 0.14) 0%, rgba(244, 180, 0, 0) 70%);
}

.pa-bg-shape--two {
    bottom: -160px;
    left: -140px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(11, 46, 99, 0.07) 0%, rgba(11, 46, 99, 0) 70%);
}

.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: 70px;
}

.pa-content-col {
    flex: 1;
    min-width: 320px;
}

.pa-image-col {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Typography */
.pa-description {
    font-size: 16px;
    line-height: 1.85;
    color: #555555;
    margin-bottom: 10px;
    text-align: left;
}

.pa-description p + p {
    margin-top: 18px;
}

.pa-description strong {
    color: #1a1a1a;
}

/* Stat strip */
.pa-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 34px 0 30px;
}

.pa-stat {
    flex: 1;
    min-width: 130px;
    padding: 20px 18px;
    border-radius: 14px;
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pa-stat:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 180, 0, 0.5);
    box-shadow: 0 16px 32px rgba(11, 46, 99, 0.1);
}

.pa-stat strong {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0B2E63;
    line-height: 1;
    margin-bottom: 8px;
}

.pa-stat strong span:last-child {
    font-size: 20px;
    color: #F4B400;
}

.pa-stat-label {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: #6B7280;
    font-weight: 500;
}

/* Actions */
.pa-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.pa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0B2E63;
    color: #fff;
    padding: 15px 36px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #0B2E63;
}

.pa-btn i {
    transition: transform 0.3s ease;
}

.pa-btn:hover {
    background-color: transparent;
    color: #0B2E63;
    border-color: #0B2E63;
}

.pa-btn:hover i {
    transform: translateX(4px);
}

.pa-btn--ghost {
    background-color: transparent;
    color: #0B2E63;
    border-color: #E5E7EB;
}

.pa-btn--ghost:hover {
    background-color: #0B2E63;
    color: #fff;
    border-color: #0B2E63;
}

/* Image frame: rotating ring + tilt image + floating badge */
.pa-image-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 22px;
}

.pa-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(244, 180, 0, 0.55);
    border-radius: 26px;
    animation: paRingSpin 26s linear infinite;
    pointer-events: none;
}

@keyframes paRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pa-image-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
    will-change: transform;
}

.pa-image-wrapper img {
    display: block;
    border-radius: 20px;
    box-shadow: 0 25px 55px rgba(11, 46, 99, 0.18);
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.pa-image-wrapper:hover img {
    transform: scale(1.02);
}

/* Floating location badge overlapping the image */
.pa-badge-float {
    position: absolute;
    left: -10px;
    bottom: -20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(11, 46, 99, 0.18);
    animation: paBadgeFloat 4s ease-in-out infinite;
}

@keyframes paBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.pa-badge-float i {
    flex: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(244, 180, 0, 0.15);
    color: #F4B400;
    font-size: 20px;
}

.pa-badge-float strong {
    display: block;
    font-size: 15px;
    color: #0B2E63;
}

.pa-badge-float span {
    display: block;
    font-size: 12px;
    color: #6B7280;
    white-space: nowrap;
}

/* 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: 50px;
    }

    .pa-image-col {
        width: 100%;
    }

    .pa-content-col {
        width: 100%;
    }

    .pa-badge-float {
        left: 12px;
        bottom: -18px;
        padding: 12px 18px;
    }
}

@media (max-width: 576px) {
    .premium-about-section {
        padding: 60px 0;
    }

    .pa-stats {
        flex-direction: column;
    }

    .pa-badge-float span {
        display: none;
    }
}

/* ==========================================================================
   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: #F4B400;
    margin-bottom: 15px;
    background: rgba(244, 180, 0, 0.08); /* Golden Accent 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: #F4B400;
    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(244, 180, 0, 0.15); /* Golden Accent 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;
    }
}

/* ==========================================================================
   7. SERVICES SECTION ("What We Offer")
   ========================================================================== */
.sv-section {
    position: relative;
    background: #fff;
}

.sv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sv-card {
    position: relative;
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 42px 30px 34px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

/* Cursor-follow spotlight glow (position set via JS custom properties) */
.sv-card::before {
    content: '';
    position: absolute;
    top: var(--sv-y, 50%);
    left: var(--sv-x, 50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(244, 180, 0, 0.16) 0%, rgba(244, 180, 0, 0) 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.sv-card:hover::before {
    opacity: 1;
}

.sv-card:hover {
    transform: translateY(-10px);
    background: #fff;
    border-color: rgba(244, 180, 0, 0.4);
    box-shadow: 0 25px 50px rgba(11, 46, 99, 0.12);
}

.sv-index {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #E5E7EB;
    transition: color 0.4s ease;
}

.sv-card:hover .sv-index {
    color: #F4B400;
}

.sv-icon-box {
    position: relative;
    z-index: 1;
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E7EEF8;
    border: 2px solid #0B2E63;
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sv-icon-box i {
    font-size: 2.1rem;
    color: #0B2E63;
    transition: color 0.4s ease;
}

.sv-card:hover .sv-icon-box {
    background: #0B2E63;
    transform: rotateY(180deg);
}

.sv-card:hover .sv-icon-box i {
    color: #fff;
    transform: rotateY(-180deg);
}

.sv-title {
    position: relative;
    z-index: 1;
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.sv-desc {
    position: relative;
    z-index: 1;
    font-size: 14.5px;
    color: #6B7280;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991px) {
    .sv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sv-card {
        padding: 36px 24px 28px;
    }
}

/* ==========================================================================
   8. MISSION / VISION / VALUES ("Why Choose Us") — 3D flip cards
   ========================================================================== */
.services-section {
    background: #F8FAFC;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.mv-card {
    perspective: 1600px;
    min-height: 400px;
}

.mv-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.mv-card:hover .mv-card-inner,
.mv-card.is-flipped .mv-card-inner {
    transform: rotateY(180deg);
}

.mv-card-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 22px;
    padding: 46px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mv-card-front {
    background: #fff;
    border: 1px solid #E5E7EB;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(11, 46, 99, 0.06);
}

.mv-index {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #E5E7EB;
}

.mv-icon-box {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E7EEF8;
    border: 2px solid #0B2E63;
    margin-bottom: 24px;
}

.mv-icon-box i {
    font-size: 2.2rem;
    color: #0B2E63;
}

.mv-card-front .mv-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.mv-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    margin: 0;
}

.mv-hint i {
    color: #F4B400;
    font-size: 16px;
    transition: transform 0.5s ease;
}

.mv-card:hover .mv-hint i {
    transform: rotate(180deg);
}

.mv-card-back {
    background: linear-gradient(160deg, #0B2E63 0%, #082247 100%);
    color: #fff;
    transform: rotateY(180deg);
    justify-content: center;
    box-shadow: 0 20px 45px rgba(11, 46, 99, 0.3);
}

.mv-icon-box--back {
    width: 62px;
    height: 62px;
    background: rgba(244, 180, 0, 0.16);
    border: 2px solid #F4B400;
    margin-bottom: 18px;
}

.mv-icon-box--back i {
    font-size: 1.6rem;
    color: #F4B400;
}

.mv-card-back .mv-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.mv-text {
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.mv-text strong {
    color: #F4B400;
}

@media (max-width: 991px) {
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .mv-card,
    .mv-card-inner {
        min-height: 360px;
    }

    .mv-card-face {
        padding: 36px 26px;
    }
}
