 /* Additional custom styles to match original exactly */
 .iframe-container iframe {
     width: 100%;
     height: 100%;
     border: none;
 }

 .iframe-title {
     text-align: center;
     font-weight: bold;
     padding: 5px 0;
     background: #f7f7f7;
     position: absolute;
     top: 0;
     width: 100%;
     z-index: 2;
     font-size: 16px;
 }

 .iframe-container iframe {
     margin-top: 32px;
     height: calc(100% - 32px);
 }

 /* Banner styling exactly as original */
 .banner {
     position: relative;
     overflow: hidden;
     padding: 80px 0;

     background-image:
         linear-gradient(rgba(0, 0, 0, 0.10),
             rgba(0, 0, 0, 0.10)),
         url('../../images/portfolio/single/gb/Vibox2.04P.png');

     background-size: 125%;
     /* Increase image size */
     background-position: center center;
     background-repeat: no-repeat;
 }

 /* DARK OVERLAY */
 .banner::after {
     content: "";
     position: absolute;
     inset: 0;

     background: rgba(0, 0, 0, 0.75);

     z-index: 2;
 }

 /* CONTENT ABOVE BACKGROUND */
 .banner-inner {
     position: relative;
     z-index: 5;
 }

 .banner-inner {
     max-width: 1140px;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 30px;
     flex-wrap: wrap;
 }

 .banner-content {
     flex: 1 1 50%;
     min-width: 300px;
     animation: slideInLeft 1.2s ease-out;
 }

 .banner-content h2 {
     font-size: 16px;
     font-weight: 500;
     background: #00ac78ee;
     color: #ffffff;
     padding: 6px 12px;
     border-radius: 20px;
     display: inline-block;
     margin-bottom: 18px;
 }

 .banner-content h1 {
     font-size: 36px;
     font-weight: 600;
     margin: 0 0 15px;
     color: #00ac78ee;
 }

 .vibox-heading {
     font-size: 36px;
     font-weight: 600;
 }

 .vibox-sub-heading {
     font-size: 60%;
 }

 .banner-content p {
     font-size: 16px;
     color: #ccc;
     margin: 0 0 20px;
     line-height: 1.6;
 }

 .banner-tags span {
     display: inline-block;
     margin: 6px 8px 0 0;
     padding: 6px 14px;
     border-radius: 20px;
     font-size: 13px;
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.15);
     color: #eee;
 }

 .cta-btn {
     display: inline-block;
     margin-top: 25px;
     background: #00ac78ee;
     color: #ffffff;
     font-size: 16px;
     font-weight: 600;
     padding: 12px 28px;
     border-radius: 8px;
     border: none;
     cursor: pointer;
     transition: 0.3s;
 }

 .cta-btn:hover {
     background: #00c78bee;
     transform: scale(1.02);
 }

 .banner-image {
     flex: 1 1 40%;
     min-width: 280px;
     text-align: right;
     animation: slideInRight 1.2s ease-out;
 }

 .banner-image img {
     max-height: 400px;
     width: auto;
     max-width: 100%;
     filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
 }

 @keyframes slideInLeft {
     from {
         transform: translateX(-60px);
         opacity: 0;
     }

     to {
         transform: translateX(0);
         opacity: 1;
     }
 }

 @keyframes slideInRight {
     from {
         transform: translateX(60px);
         opacity: 0;
     }

     to {
         transform: translateX(0);
         opacity: 1;
     }
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: scale(0.95);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 @media (max-width: 768px) {
     .banner {
         height: auto;
         padding: 40px 0;
     }

     .banner-inner {
         flex-direction: column;
         text-align: center;
     }

     .banner-content {
         margin-bottom: 20px;
     }

     .banner-image {
         text-align: center;
     }

     .banner-image img {
         margin: auto;
         max-width: 80%;
     }

     .banner-content h1 {
         font-size: 28px;
     }
 }

 /* Features styling */
 .features ul {
     list-style: none;
     padding-left: 0;
 }

 .features li {
     padding: 10px 14px;
     margin: 0 0 12px;
     border-left: 3px solid #00e083;
     background: rgba(255, 255, 255, 0.03);
     border-radius: 10px;
     line-height: 1.45;
     font-weight: 400;
 }

 .features li strong {
     color: #000000;
     font-weight: 600;
 }

 .specs {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 20px;
     padding: 30px;
 }

 /* TITLE */
 .specs dt {
     color: #000;
     font-size: 18px;
     font-weight: 600;

     margin-top: 20px;
     margin-bottom: 8px;
 }

 /* VALUE */
 .specs dd {
     margin: 0;
     padding-left: 0;

     font-size: 15px;
     line-height: 1.7;
     color: #555;
 }

 /* FIRST ITEM REMOVE EXTRA SPACE */
 .specs dt:first-child {
     margin-top: 0;
 }

 /* YouTube wrapper */
 .iframe-wrapper1 {
     position: relative;
     width: 100%;
     padding-top: 56.25%;
     overflow: hidden;
     border-radius: 20px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, .4);
     margin: 20px 0;
 }

 .iframe-wrapper1 iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border: none;
     border-radius: 16px;
 }





 .banding-album-section {
     padding: 80px 0;
 }

 .album-slider {
     position: relative;
     overflow: hidden;
     border-radius: 0px;
 }

 .album-slide {
     display: none;
     animation: fadeEffect .7s ease;
 }

 .album-slide.active {
     display: block;
 }

 .album-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .album-item {
     position: relative;
     overflow: hidden;
     border-radius: px;
     background: #111;
     /* box-shadow:0 10px 35px rgba(0,0,0,.4); */
 }

 .album-item img {
     width: 100%;
     height: 540px;
     transition: 0.5s;
 }

 .album-item:hover img {
     transform: scale(1.04);
 }

 .album-label {
     position: absolute;
     bottom: 20px;
     left: 20px;
     background: rgba(0, 0, 0, .65);
     color: #fff;
     padding: 10px 18px;
     border-radius: 0px;
     font-weight: 600;
     letter-spacing: 1px;
     font-size: 15px;
 }

 .album-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 55px;
     height: 55px;
     border: none;
     border-radius: 50%;
     background: rgba(255, 255, 255, .15);
     backdrop-filter: blur(10px);
     color: #fff;
     font-size: 24px;
     cursor: pointer;
     z-index: 10;
     transition: .3s;
 }

 .album-btn:hover {
     background: #0091ff;
     color: #000;
 }

 .album-btn.prev {
     left: 20px;
 }

 .album-btn.next {
     right: 20px;
 }

 .album-dots {
     text-align: center;
     margin-top: 25px;
 }

 .album-dots span {
     height: 12px;
     width: 12px;
     margin: 0 5px;
     background: #666;
     /* border-radius:50%; */
     display: inline-block;
     cursor: pointer;
     transition: .3s;
 }

 .album-dots span.active {
     background: #00ff48;
     width: 30px;
     border-radius: 20px;
 }

 @keyframes fadeEffect {
     from {
         opacity: 0;
         transform: scale(.98);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 @media(max-width:768px) {

     .album-grid {
         grid-template-columns: 1fr;
     }

     .album-item img {
         height: 300px;
     }

 }



 
 /* === AUTO GLUING VIDEO SECTION === */

 .ai-video-section {
     padding: 60px 0;
     background: #fff;
     overflow: hidden;
 }

 .ai-video-section .container-fluid {
     width: 100%;
     max-width: 53%;
     margin: 0 auto;
     padding: 0 30px;
 }

 /* SLIDER WRAPPER */
 .ai-video-slider {
     position: relative;
     width: 100%;
     height: 880px;
     border-radius: 10px;
     overflow: hidden;
     background: #111;
 }

 /* EACH SLIDE */
 .ai-slide {
     display: none;
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
 }

 .ai-slide.active {
     display: block;
 }

 .ai-slide video {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .dark-layer {
     position: absolute;
     inset: 0;

 }

 .slide-content {
     position: absolute;
     bottom: 44px;
     left: 44px;
     right: 100px;
     z-index: 5;
 }

 .slide-tag {
     display: inline-block;
     background: #00ac78;
     color: #fff;
     font-size: 11px;
     font-weight: 700;
     padding: 5px 14px;
     border-radius: 20px;
     letter-spacing: 0.8px;
     text-transform: uppercase;
     margin-bottom: 12px;
 }

 .slide-content h1 {
     font-size: 28px;
     font-weight: 700;
     color: #fff;
     margin: 0 0 10px;
     line-height: 1.25;
 }

 .slide-content p {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.82);
     line-height: 1.65;
     max-width: 500px;
     margin: 0;
 }

 .ai-nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 44px;
     height: 44px;
     border: none;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.15);
     color: #fff;
     font-size: 18px;
     cursor: pointer;
     z-index: 10;
     transition: background 0.25s;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .ai-nav:hover {
     background: #0091ff;
 }

 .ai-prev {
     left: 16px;
 }

 .ai-next {
     right: 16px;
 }

 .slider-progress {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 3px;
     background: rgba(255, 255, 255, 0.15);
     z-index: 10;
 }

 .slider-progress-bar {
     height: 100%;
     /* background: #00ac78; */
     width: 33.33%;
     transition: width 0.4s ease;
 }

 .slide-counter {
     position: absolute;
     bottom: 16px;
     right: 20px;
     color: rgba(255, 255, 255, 0.75);
     font-size: 12px;
     font-weight: 600;
     z-index: 10;
     display: flex;
     align-items: center;
     gap: 7px;
     letter-spacing: 1px;
 }

 .slide-counter .line {
     width: 24px;
     height: 1px;
     background: rgba(255, 255, 255, 0.4);
     display: inline-block;
 }

 /* /* ========================= */
 /* PERFECT RESPONSIVE FIX */
 /* ========================= */

 @media (max-width:1200px) {

     .ai-video-section .container-fluid {
         width: 100%;
         max-width: 100%;
         padding: 0 20px;
     }

     .ai-video-slider {
         width: 100%;
         height: 700px;
     }

 }


 @media (max-width:991px) {

     .ai-video-section {
         padding: 50px 0;
     }

     .ai-video-section .container-fluid {
         padding: 0 15px;
     }

     .ai-video-slider {
         width: 100%;
         height: 500px;
     }

     .slide-content {
         bottom: 30px;
         left: 25px;
         right: 25px;
     }

     .slide-content h1 {
         font-size: 28px;
         line-height: 1.3;
     }

     .slide-content p {
         font-size: 14px;
         max-width: 100%;
     }

 }


 @media (max-width:767px) {

     .ai-video-section {
         padding: 40px 0;
     }

     .ai-video-section .container-fluid {
         width: 100%;
         padding: 0 10px;
     }

     .ai-video-slider {
         width: 100%;
         height: 320px;
         border-radius: 6px;
     }

     .slide-content {
         bottom: 18px;
         left: 18px;
         right: 18px;
     }

     .slide-tag {
         font-size: 9px;
         padding: 4px 10px;
         margin-bottom: 8px;
     }

     .slide-content h1 {
         font-size: 18px;
         margin-bottom: 6px;
         line-height: 1.3;
     }

     .slide-content p {
         font-size: 12px;
         line-height: 1.5;
     }

     .ai-nav {
         width: 34px;
         height: 34px;
         font-size: 14px;
     }

     .ai-prev {
         left: 8px;
     }

     .ai-next {
         right: 8px;
     }

     .slide-counter {
         display: none;
     }

 }


 @media (max-width:480px) {

     .ai-video-slider {
         height: 260px;
     }

     .slide-content {
         bottom: 14px;
         left: 14px;
         right: 14px;
     }

     .slide-content h1 {
         font-size: 15px;
     }

     .slide-content p {
         font-size: 11px;
     }

 }

 /* ========================= */
 /* MOBILE TEXT SIZE FIX */
 /* ========================= */

 @media (max-width:767px) {

     .slide-content {
         bottom: 14px;
         left: 14px;
         right: 14px;
     }

     .slide-tag {
         font-size: 8px;
         padding: 3px 8px;
         margin-bottom: 5px;
         letter-spacing: .5px;
     }

     .slide-content h1 {
         font-size: 14px;
         line-height: 1.2;
         margin-bottom: 4px;
     }

     .slide-content p {
         font-size: 10px;
         line-height: 1.4;
         max-width: 100%;
     }

 }


 @media (max-width:480px) {

     .slide-tag {
         font-size: 7px;
         padding: 2px 7px;
     }

     .slide-content h1 {
         font-size: 12px;
     }

     .slide-content p {
         font-size: 9px;
         line-height: 1.3;
     }

 }

 /* ========================= */
 /* 360° VIDEO DEMOS SECTION */
 /* ========================= */

 .grid-3 {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 22px;
 }

 .card {
     background: linear-gradient(180deg, #121215, #0e0e11);
     border: 1px solid rgba(255, 255, 255, 0.06);
     border-radius: 18px;
     overflow: hidden;
     transition: 0.35s ease;
     position: relative;
 }

 .card:hover {
     transform: translateY(-6px);
     box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
 }

 .card h3 {
     margin: 0;
     padding: 16px 18px;
     font-size: 1.15rem;
     font-weight: 600;
     color: #fff;
     border-bottom: 1px solid rgba(255, 255, 255, 0.08);
     background: rgba(255, 255, 255, 0.02);
 }

 .card .body {
     padding: 10px;
 }

 .ratio {
     position: relative;
     width: 100%;
     aspect-ratio: 16/18;
     overflow: hidden;
     border-radius: 14px;
     background: #000;
 }

 .ratio iframe {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     border: none;
 }

 /* SECTION TITLE */
 .title {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 1.6rem;
     font-weight: 600;
     margin-bottom: 18px;
     color: #111;
 }

 .title .bar {
     width: 8px;
     height: 24px;
     border-radius: 20px;
     background: #00ac78;
 }

 /* RESPONSIVE */
 @media (max-width: 1100px) {
     .grid-3 {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {
     .grid-3 {
         grid-template-columns: 1fr;
     }

     .card h3 {
         font-size: 1rem;
         padding: 14px 16px;
     }

     .ratio {
         aspect-ratio: 16/17;
     }
 }


 /* ===== COMPARISON SECTION STYLES ===== */
 .fc-section {
     padding: 80px 0;
     background: #f8f9fa;
     overflow-x: hidden;
 }

 .fc-container {
     max-width: 1180px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Section title reuses your existing .title class — add this if needed */
 .fc-title {
     font-size: 13px;
     font-weight: 700;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: #00ac78;
     margin-bottom: 8px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .fc-title .bar {
     display: inline-block;
     width: 30px;
     height: 3px;
     background: #00ac78;
     border-radius: 2px;
     flex-shrink: 0;
 }

 .fc-headline {
     font-size: 32px;
     font-weight: 700;
     color: #111;
     margin: 0 0 6px;
     line-height: 1.2;
 }

 .fc-subtitle {
     font-size: 15px;
     color: #666;
     margin: 0 0 48px;
 }

 /* ===== CARD GRID ===== */
 .fc-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-bottom: 48px;
 }

 .fc-card {
     background: #fff;
     border-radius: 16px;
     border: 1.5px solid #e5e7eb;
     overflow: hidden;
     transition: transform 0.25s, box-shadow 0.25s;
     position: relative;
 }

 .fc-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
 }

 .fc-card.fc-highlight {
     border-color: #00ac78;
     box-shadow: 0 0 0 3px rgba(0, 172, 120, 0.12);
 }

 .fc-card-badge {
     position: absolute;
     top: 16px;
     right: 16px;
     background: #00ac78;
     color: #fff;
     font-size: 10px;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
     padding: 4px 10px;
     border-radius: 20px;
 }

 .fc-card-header {
     padding: 24px 24px 16px;
     border-bottom: 1px solid #f0f0f0;
 }

 .fc-card-icon {
     width: 44px;
     height: 44px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 14px;
     font-size: 22px;
 }

 .fc-card-icon.generic {
     background: #f3f4f6;
 }

 .fc-card-icon.mesm {
     background: #eff6ff;
 }

 .fc-card-icon.slim {
     background: #ecfdf5;
 }

 .fc-card-title {
     font-size: 17px;
     font-weight: 700;
     color: #111;
     margin: 0 0 4px;
 }

 .fc-card-sub {
     font-size: 12px;
     color: #888;
     margin: 0;
 }

 .fc-card-body {
     padding: 16px 24px 24px;
 }

 /* ===== FEATURE ROWS ===== */
 .fc-row {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     padding: 10px 0;
     border-bottom: 1px solid #f5f5f5;
 }

 .fc-row:last-child {
     border-bottom: none;
 }

 .fc-dot {
     flex-shrink: 0;
     width: 20px;
     height: 20px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-top: 1px;
     font-size: 11px;
 }

 .fc-dot.yes {
     background: #ecfdf5;
     color: #00ac78;
 }

 .fc-dot.no {
     background: #fef2f2;
     color: #e74c3c;
 }

 .fc-dot.partial {
     background: #fffbeb;
     color: #d97706;
 }

 .fc-row-text {
     flex: 1;
 }

 .fc-row-label {
     font-size: 13px;
     font-weight: 600;
     color: #222;
     line-height: 1.3;
     margin-bottom: 2px;
 }

 .fc-row-value {
     font-size: 12px;
     color: #666;
     line-height: 1.4;
 }

 /* ===== FINAL NOTE CARDS ===== */
 .fc-notes {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: 8px;
 }

 .fc-note {
     border-radius: 12px;
     padding: 18px 20px;
     font-size: 13px;
     line-height: 1.6;
     font-weight: 500;
     position: relative;
     overflow: hidden;
 }

 .fc-note::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 4px;
     border-radius: 4px 0 0 4px;
 }

 .fc-note.note-red {
     background: #fff5f5;
     color: #7f1d1d;
 }

 .fc-note.note-amber {
     background: #fffbeb;
     color: #78350f;
 }

 .fc-note.note-green {
     background: #ecfdf5;
     color: #064e3b;
 }

 .fc-note.note-red::before {
     background: #e74c3c;
 }

 .fc-note.note-amber::before {
     background: #d97706;
 }

 .fc-note.note-green::before {
     background: #00ac78;
 }

 .fc-note-label {
     font-size: 10px;
     font-weight: 700;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     opacity: 0.6;
     margin-bottom: 6px;
 }

 /* ===== BOTTOM STATS BAR ===== */
 .fc-stats {
     margin-top: 48px;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1px;
     background: #e5e7eb;
     border-radius: 16px;
     overflow: hidden;
 }

 .fc-stat {
     background: #fff;
     padding: 24px 20px;
     text-align: center;
 }

 .fc-stat:first-child {
     border-radius: 16px 0 0 16px;
 }

 .fc-stat:last-child {
     border-radius: 0 16px 16px 0;
 }

 .fc-stat-value {
     font-size: 28px;
     font-weight: 800;
     color: #00ac78;
     line-height: 1;
     margin-bottom: 6px;
 }

 .fc-stat-label {
     font-size: 12px;
     color: #777;
     line-height: 1.4;
 }

 /* ===== RESPONSIVE ===== */
 @media (max-width: 900px) {
     .fc-grid, .fc-notes, .fc-stats {
         grid-template-columns: 1fr;
         gap: 16px;
     }

     .fc-stats {
         background: transparent;
         border-radius: 0;
     }

     .fc-stat {
         border: 1px solid #e5e7eb;
         border-radius: 12px !important;
     }

     .fc-headline {
         font-size: 24px;
     }
 }




/* ========================= */
/* BLOCKING & FACETING SECTION */
/* ========================= */

.bf-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.bf-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bf-heading {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin: 0 0 16px;
    line-height: 1.3;
}

.bf-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 28px;
}

.bf-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bf-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #333;
    line-height: 1.55;
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
}

.bf-points li:last-child {
    border-bottom: none;
}

.bf-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ac78;
    margin-top: 6px;
}


/* =========================
   PORTRAIT VIDEO FRAME
   ========================= */

.bf-video-wrap {
    position: relative;

    width: 420px;
    aspect-ratio: 9 / 16;

    border-radius: 28px;
    overflow: hidden;

    margin: 0 auto;
    background: #000;
}

.bf-video {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

/* Badge */
.bf-video-badge {
    position: absolute;
    top: 16px;
    left: 16px;

    background: #00ac78;
    color: #fff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.8px;
    text-transform: uppercase;

    padding: 6px 14px;
    border-radius: 20px;

    z-index: 2;
}

/* =========================
   TABLET RESPONSIVE
   ========================= */

@media (max-width: 900px) {

    .bf-section {
        padding: 70px 0;
    }

    .bf-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }

    /* Video first on tablet */
    .bf-video-wrap {
        order: -1;

        width: 380px;
        height: 680px;

        max-width: 100%;

        margin: 0 auto;

        border-radius: 24px;
    }

    .bf-heading {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 18px;
        text-align: center;
    }

    .bf-desc {
        font-size: 15px;
        line-height: 1.8;
        text-align: center;
        margin-bottom: 26px;
    }

    .bf-points li {
        font-size: 14px;
        line-height: 1.6;
        padding: 12px 0;
    }
}


/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 480px) {

    .bf-section {
        padding: 55px 0;
    }

    .bf-layout {
        gap: 32px;
    }

    /* Perfect mobile portrait frame */
    .bf-video-wrap {

        width: 94%;
        max-width: 340px;

        height: 600px;

        margin: 0 auto;

        border-radius: 22px;
    }

    .bf-video {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .bf-heading {
        font-size: 22px;
        line-height: 1.35;
        text-align: center;
        margin-bottom: 14px;
    }

    .bf-desc {
        font-size: 14px;
        line-height: 1.7;
        text-align: center;
        margin-bottom: 24px;
    }

    .bf-points li {
        font-size: 13px;
        line-height: 1.6;
        gap: 10px;
        padding: 11px 0;
    }

    .bf-dot {
        width: 7px;
        height: 7px;
        margin-top: 7px;
    }

    .bf-video-badge {
        top: 14px;
        left: 14px;

        font-size: 10px;
        padding: 5px 12px;
    }
}

/* =========================================
   UNIFIED SHOWCASE
========================================= */
.unified-showcase {
  padding: 100px 0;

  font-family: 'Segoe UI', system-ui, sans-serif;
  overflow: hidden;
}

.unified-showcase .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}

/* =========================================
   HEADER
========================================= */
.unified-header {
  margin-bottom: 50px;
}

.unified-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 14px;
  margin-bottom: 30px;
  letter-spacing: -1px;
  line-height: 1.1;
}

/* =========================================
   TABS
========================================= */
.unified-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid #dbe3ec;
  margin-bottom: 40px;
}

.unified-tab {
  position: relative;
  padding: 14px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 3px solid transparent;
  transition: all .3s ease;
}

.unified-tab:hover {
  color: #378ADD;
}

.unified-tab.active {
  color: #378ADD;
  border-color: #378ADD;
}

.unified-tab svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

/* =========================================
   PANELS
========================================= */
.unified-panel {
  display: none;
}

.unified-panel.active {
  display: block;
}

/* =========================================
   VIDEO SLIDER
========================================= */
.video-slider-wrap {
  position: relative;
  width: 100%;
  height: 820px;
  border-radius: 28px;
  overflow: hidden;
}

/* VIDEO SLIDES */
.vid-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}

.vid-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* VIDEO */
.vid-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
}

/* DARK OVERLAY */
.vid-dark {
  position: absolute;
  inset: 0;
}

/* CONTENT */
.vid-content {
  position: absolute;

  /* LEFT + BOTTOM POSITION */
  left: 35px;
  bottom: 35px;

  /* SMALLER WIDTH */
  max-width: 480px;

  z-index: 5;
}

/* BADGE */
.vid-badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(55,138,221,.35);
  border-radius: 30px;
  color: #93c5fd;

  /* SMALLER TEXT */
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;

  margin-bottom: 12px;
}

/* TITLE */
.vid-content h3 {
  font-size: 36px;   /* SMALLER */
  line-height: 1.1;
  font-weight: 700;
  color: #fff;

  margin-bottom: 12px;
  letter-spacing: -1px;
}

/* DESCRIPTION */
.vid-content p {
  font-size: 14px;   /* SMALLER */
  line-height: 1.6;
  color: rgba(255,255,255,.82);

  max-width: 420px;
}

/* =========================================
   CONTROLS
========================================= */

.vid-controls,
.album-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.ctrl-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  transition: all .25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.ctrl-btn:hover {
  transform: translateY(-2px);
  background: #378ADD;
  color: #fff;
}

.vid-progress {
  flex: 1;
  height: 5px;
  background: #dbe3ec;
  border-radius: 20px;
  overflow: hidden;
}

.vid-progress-bar {
  height: 100%;
  background: #378ADD;
  border-radius: 20px;
  transition: width .5s ease;
}

.vid-counter {
  min-width: 65px;
  text-align: right;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.vid-counter b {
  color: #0f172a;
}

/* =========================================
   ALBUM SECTION
========================================= */

.album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* CARD */
.album-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 10px 40px rgba(0,0,0,.08);
  transition: all .4s ease;
}

.album-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(55,138,221,.16);
}

/* IMAGE */
.album-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.album-card:hover img {
  transform: scale(1.05);
}

/* LABEL */
.album-card-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 18px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0f172a;
}

/* =========================================
   DOTS
========================================= */

.album-dots {
  display: flex;
  gap: 8px;
  margin: 0 auto;
}

.adot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #cbd5e1;
  transition: all .3s ease;
}

.adot.active {
  background: #378ADD;
  transform: scale(1.3);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1200px) {
  .video-slider-wrap {
    height: 620px;
  }
  .vid-content h3 {
    font-size: 20px;
  }
  .album-card img {
    height: 420px;
  }
}

@media (max-width: 992px) {
  .video-slider-wrap {
    height: 520px;
  }
  .vid-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.45) 60%, transparent 100%);
    padding: 40px 24px 18px;
  }
  .vid-content h3 {
    font-size: 16px;
  }
  .vid-content p {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .album-grid {
    grid-template-columns: 1fr;
  }
  .album-card img {
    height: 500px;
  }
}

@media (max-width: 640px) {
  .unified-showcase {
    padding: 70px 0;
  }
  .unified-header h2 {
    font-size: 32px;
  }
  .video-slider-wrap {
    height: 420px;
    border-radius: 20px;
  }
  .vid-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    padding: 35px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
  }
  .vid-content h3 {
    font-size: 13px;
    margin-bottom: 4px;
    line-height: 1.3;
  }
  .vid-content p {
    font-size: 11px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .album-card img {
    height: 320px;
  }
  .ctrl-btn {
    width: 42px;
    height: 42px;
  }
}
/* HIDE BLUE PRODUCTION TITLE ON MOBILE/TABLET */

@media (max-width: 992px) {

  .vid-badge,
  .production-badge,
  .vid-content .badge,
  .vid-content span {
    display: none !important;
  }

}


/* Salient Features Section - Background Color #f8f9fa */
#SalientFeatures {
    background-color: #f8f9fa;
    padding: 60px 0; /* Adds comfortable spacing top and bottom */
}

/* Optional: Keep container styling consistent */
#SalientFeatures .container.features {
    background-color: transparent; /* Ensures container doesn't override the section background */
}

/* Optional: Style adjustments for better readability on new background */
#SalientFeatures .title {
    /* Your existing title styles can stay, but ensure text contrast is good */
    color: #333; /* Dark text for readability on light background */
}

#SalientFeatures ul li {
    color: #444; /* Slightly softer than pure black for readability */
}


/* Product Specification Section - Background Color #f8f9fa */
#Specification {
    background-color: #f8f9fa;
    padding: 60px 0; /* Matches the spacing from Salient Features section */
}

/* Ensure container doesn't add extra background */
#Specification .container {
    background-color: transparent;
}

/* Optional: Maintain good text contrast on light background */
#Specification .title span {
    color: #333;
}

#Specification .specs dt {
    color: #333;
    font-weight: 600;
}

#Specification .specs dd {
    color: #555;
}




