/*  --- Section 1 ---  */

.boxES2 {
    background-color: #e7e7e7;
    width: 100%;

}

.boxES23 {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 30px 0;
    gap: 10px;
}

.boxES23 .sde {
    text-align: center;
    width: 100%;
    font-size: 20px;
    color: black;
}

.boxES23 .sde34 {
    width: 100%;
    font-size: 16px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;

}

.boxES23 .sde34 a {
    color: black;
    font-size: 12px;
}


/*  --- Section 2 ---  */
#rc-why {
    padding: 20px 5%;
    background: #fff;
    position: relative;
    overflow: hidden;
}

#rc-why-bg-circle {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(203, 0, 0, 0.05), transparent 70%);
    pointer-events: none;
}

#rc-why-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

#rc-why-left .rc-section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #CB0000;
    margin-bottom: 14px;
    position: relative;
    padding-left: 28px;
}

#rc-why-left .rc-section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 2px;
    background: #CB0000;
}

#rc-why-left h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 800;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 20px;
}

#rc-why-left .psexw {
    font-size: 13.3px;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
    margin-bottom: 32px;
}

#rc-why-img-stack {
    position: relative;
    height: 420px;
}

.rc-why-img-card {
    position: absolute;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.rc-why-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rc-why-img-card.rc-img-main {
    width: 72%;
    height: 320px;
    top: 0;
    right: 0;
}

.rc-why-img-card.rc-img-small {
    width: 48%;
    height: 200px;
    bottom: 0;
    left: 0;
    border: 4px solid #fff;
}

#rc-why-badge {
    position: absolute;
    bottom: 80px;
    right: -10px;
    background: #CB0000;
    color: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(203, 0, 0, 0.4);
    z-index: 2;
}

#rc-why-badge strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

#rc-why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 10px;
}

.rc-feature-pill {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8f8f8;
    border-radius: 14px;
    padding: 16px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.rc-feature-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.rc-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(203, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #CB0000;
}

.rc-feature-text strong {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 3px;
}

/* .rc-feature-text span {
    font-size: 12px !important;
    color: #888;
    line-height: 0.1;
} */

/* scroll reveal */
.rc-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.rc-reveal.rc-visible {
    opacity: 1;
    transform: translateY(0);
}

.rc-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.rc-reveal-left.rc-visible {
    opacity: 1;
    transform: translateX(0);
}

.rc-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.rc-reveal-right.rc-visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 900px) {
    #rc-why-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    #rc-why-img-stack {
        height: 300px;
    }

    .rc-why-img-card.rc-img-main {
        height: 240px;
    }
}


#rc-why-features {

    display: grid;

    gap: 20px;
}


/* CARD */

.rc-feature-pill {

    padding: 25px;

    border-radius: 20px;

    background: white;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

    cursor: pointer;

    transition: 0.4s ease;

    overflow: hidden;
}


.rc-feature-pill:hover {

    transform: translateY(-5px);
}


/* TITLE */

.rc-feature-text strong {

    display: block;

    font-size: 18px;

    line-height: 1.5;

    color: #111;
}


/* HIDDEN TEXT */

.show_mess1265 {

    display: block;

    opacity: 0;

    max-height: 0;

    overflow: hidden;

    transform: translateY(20px);

    transition: 0.4s ease;

    margin-top: 0;

    line-height: 1.7;

    color: #555;
}


/* ACTIVE */

.rc-feature-pill.active .show_mess1265 {

    opacity: 1;

    max-height: 300px;

    transform: translateY(0);

    margin-top: 12px;
}


/*  --- Section 3 ---  */


#mfg-section.mfg-section {
    background: linear-gradient(135deg, #ffffff 0%, #e9d7d7d8 100%);
    padding: 60px 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
    overflow: hidden;
    position: relative;
}

#mfg-section .mfg-container {
    max-width: 1100px;
    margin: 0 auto;
}

#mfg-section .mfg-header {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(-20px);
    animation: mfg-fadeDown 0.8s ease forwards;
}

#mfg-section .mfg-tag {
    display: inline-block;
    background-color: #e6394770;
    color: #ffffff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

#mfg-section .mfg-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin: 10px 0;
}

#mfg-section .mfg-divider {
    width: 70px;
    height: 4px;
    background-color: #e63946;
    margin: 12px auto 0;
    border-radius: 2px;
}

#mfg-section .mfg-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#mfg-section .mfg-text-block {
    background-color: #ffffff;
    border: 1px solid #f5d0d0;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.08);
    opacity: 0;
    transform: translateY(20px);
    animation: mfg-fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

#mfg-section .mfg-para {
    color: #333333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 14px;
}

#mfg-section .mfg-para:last-child {
    margin-bottom: 0;
}

#mfg-section .mfg-para strong {
    color: #b3000c;
}

#mfg-section .mfg-highlight {
    background-color: #fff0f0;
    border-left: 4px solid #e63946;
    padding: 12px 16px;
    border-radius: 6px;
    font-style: italic;
    color: #7a0010;
}

#mfg-section .mfg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

#mfg-section .mfg-card {
    background-color: #ffffff;
    border: 1px solid #f5d0d0;
    border-radius: 12px;
    padding: 24px 18px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: mfg-fadeUp 0.8s ease forwards;
}

#mfg-section .mfg-card:nth-child(1) {
    animation-delay: 0.3s;
}

#mfg-section .mfg-card:nth-child(2) {
    animation-delay: 0.45s;
}

#mfg-section .mfg-card:nth-child(3) {
    animation-delay: 0.6s;
}

#mfg-section .mfg-card:nth-child(4) {
    animation-delay: 0.75s;
}

#mfg-section .mfg-card:hover,
#mfg-section .mfg-card.mfg-active {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.18);
    border-color: #e63946;
}

#mfg-section .mfg-icon {
    font-size: 36px;
    margin-bottom: 12px;
    transition: transform 0.35s ease;
}

#mfg-section .mfg-card:hover .mfg-icon,
#mfg-section .mfg-card.mfg-active .mfg-icon {
    transform: scale(1.15) rotate(-5deg);
}

#mfg-section .mfg-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #b3000c;
    margin-bottom: 8px;
}

#mfg-section .mfg-card-text {
    font-size: 13.5px;
    color: #555555;
    line-height: 1.6;
}

#mfg-section .mfg-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: mfg-fadeUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

#mfg-section .mfg-badge {
    background-color: #b3000c;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#mfg-section .mfg-badge:hover {
    background-color: #e63946;
    transform: scale(1.05);
}

/* Keyframe animations - prefixed names to avoid collisions */
@keyframes mfg-fadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mfg-fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================================
RESPONSIVE - All devices
=================================================== */

@media (max-width: 992px) {
    #mfg-section .mfg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #mfg-section .mfg-title {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    #mfg-section.mfg-section {
        padding: 40px 16px;
    }
    
    #mfg-section .mfg-grid {
        grid-template-columns: 1fr;
    }
    
    #mfg-section .mfg-text-block {
        padding: 20px;
    }
    
    #mfg-section .mfg-title {
        font-size: 26px;
    }
    
    #mfg-section .mfg-tag {
        font-size: 11px;
    }
    
    #mfg-section .mfg-para {
        font-size: 14.5px;
    }
    
    #mfg-section .mfg-badges {
        gap: 8px;
    }
    
    #mfg-section .mfg-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/*  --- Section 4 ---  */



#qlv2-section.qlv2-section {
  background-color: #ffffff;
  padding: 70px 20px;
  font-family: 'Segoe UI', Arial, sans-serif;
  position: relative;
  overflow: hidden;
}
 
#qlv2-section .qlv2-container {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
 
/* LEFT SIDE */
#qlv2-section .qlv2-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: qlv2-slideRight 0.8s ease forwards;
}
 
#qlv2-section .qlv2-tag {
  display: inline-block;
 background-color: #e6394770;
  color: #fff5f5;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
 
#qlv2-section .qlv2-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0 0 16px 0;
}
 
#qlv2-section .qlv2-divider {
  width: 60px;
  height: 5px;
  background-color: #e63946;
  border-radius: 3px;
  margin-bottom: 20px;
}
 
#qlv2-section .qlv2-para {
  color: #444444;
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 14px;
}
 
#qlv2-section .qlv2-para strong {
  color: #b3000c;
}
 
#qlv2-section .qlv2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
 
#qlv2-section .qlv2-pill {
  border: 1.5px solid #e63946;
  color: #b3000c;
  background-color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
 
#qlv2-section .qlv2-pill:hover {
  background-color: #e63946;
  color: #ffffff;
  transform: translateY(-3px);
}
 
/* RIGHT SIDE PANEL */
#qlv2-section .qlv2-right {
  opacity: 0;
  transform: translateX(30px);
  animation: qlv2-slideLeft 0.8s ease forwards;
  animation-delay: 0.15s;
}
 
#qlv2-section .qlv2-panel {
  background: linear-gradient(51deg, #454444bf 0%, #e21731 100%);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 15px 40px rgba(179, 0, 12, 0.3);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
 
#qlv2-section .qlv2-stat {
  opacity: 0;
  transform: translateY(15px);
  animation: qlv2-fadeUp 0.6s ease forwards;
}
 
#qlv2-section .qlv2-stat:nth-child(1) { animation-delay: 0.3s; }
#qlv2-section .qlv2-stat:nth-child(2) { animation-delay: 0.45s; }
#qlv2-section .qlv2-stat:nth-child(3) { animation-delay: 0.6s; }
#qlv2-section .qlv2-stat:nth-child(4) { animation-delay: 0.75s; }
 
#qlv2-section .qlv2-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
 
#qlv2-section .qlv2-stat-icon {
  font-size: 22px;
}
 
#qlv2-section .qlv2-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}
 
#qlv2-section .qlv2-stat-label {
  color: #ffe1e1;
  font-size: 13.5px;
  margin: 0 0 10px 0;
}
 
#qlv2-section .qlv2-bar {
  width: 100%;
  height: 7px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  overflow: hidden;
}
 
#qlv2-section .qlv2-bar-fill {
  height: 100%;
  width: 0%;
  background-color: #ffffff;
  border-radius: 10px;
  transition: width 1.4s ease;
}
 
/* Keyframes - prefixed to avoid collisions */
@keyframes qlv2-slideRight {
  to { opacity: 1; transform: translateX(0); }
}
 
@keyframes qlv2-slideLeft {
  to { opacity: 1; transform: translateX(0); }
}
 
@keyframes qlv2-fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
 
/* ===================================================
   RESPONSIVE - All devices
   =================================================== */
 
@media (max-width: 900px) {
  #qlv2-section .qlv2-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
 
  #qlv2-section .qlv2-title {
    font-size: 28px;
  }
}
 
@media (max-width: 600px) {
  #qlv2-section.qlv2-section {
    padding: 50px 16px;
  }
 
  #qlv2-section .qlv2-panel {
    padding: 26px 20px;
  }
 
  #qlv2-section .qlv2-title {
    font-size: 24px;
  }
 
  #qlv2-section .qlv2-para {
    font-size: 14px;
  }
 
  #qlv2-section .qlv2-stat-num {
    font-size: 19px;
  }
 
  #qlv2-section .qlv2-stat-label {
    font-size: 12.5px;
  }
}