 /* Reset */
 .lhs-testimonials-wrap * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 /* Variables */
 :root {
     --lhs-bg: #000000;
     --lhs-card: #111111cc;
     --lhs-glass: rgba(255, 255, 255, 0.06);
     --lhs-accent: #ffffff;
     /* white accent */
     --lhs-muted: #cccccc;
     --lhs-glass-border: rgba(255, 255, 255, 0.08);
     --lhs-glass-blur: 12px;
     --lhs-max-width: 1100px;
 }

 /* Section container */
 .lhs-testimonials-wrap {
     width: 100%;
     max-width: var(--lhs-max-width);
     margin-inline: auto;
     padding: 26px;
     border-radius: 18px;
     backdrop-filter: blur(var(--lhs-glass-blur));
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
     border: 1px solid var(--lhs-glass-border);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
     position: relative;
     overflow: hidden;
     color: #ffffff;
     font-family: 'Fredoka', sans-serif;
 }

 /* Decorative gradient blobs */
 .lhs-blob {
     position: absolute;
     border-radius: 50%;
     filter: blur(40px);
     opacity: 0.5;
     transform: translateZ(0);
 }

 .lhs-badge {
     letter-spacing: 0.05rem;
     text-transform: capitalize;
 }

 .lhs-blob.one {
     width: 260px;
     height: 260px;
     right: -80px;
     top: -80px;
     background: linear-gradient(135deg, #ffffff, #333333);
 }

 .lhs-blob.two {
     width: 200px;
     height: 200px;
     left: -60px;
     bottom: -60px;
     background: linear-gradient(135deg, #444444, #999999);
     opacity: 0.18;
 }

 /* Header */
 .lhs-head {
     display: flex;
     align-items: center;
     gap: 18px;
     margin-bottom: 18px;
     flex-wrap: wrap;
 }

 .lhs-head .lhs-title {
     font-size: clamp(22px, 3vw, 28px);
     font-weight: 700;
     letter-spacing: 0.2px;
 }

 .lhs-head .lhs-subtitle {
     color: var(--lhs-muted);
     font-size: clamp(14px, 2vw, 16px);
 }

 /* Carousel area */
 .lhs-carousel {
     display: grid;
     grid-template-columns: 1fr 420px;
     gap: 20px;
     align-items: center;
 }

 /* Testimonials list (carousel track) */
 .lhs-track-wrap {
     position: relative;
     overflow: hidden;
     padding: 10px;
 }

 .lhs-track {
     display: flex;
     gap: 18px;
     transition: transform 0.6s cubic-bezier(.22, .9, .3, 1);
     will-change: transform;
 }

 .lhs-testimonial-card {
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
     border: 1px solid var(--lhs-glass-border);
     padding: 18px;
     border-radius: 14px;
     min-width: 300px;
     flex: 0 0 300px;
     position: relative;
     backdrop-filter: blur(8px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55);
     transform-origin: center;
     transition: transform 0.35s ease, box-shadow 0.35s ease;
 }

 .lhs-testimonial-card:hover {
     transform: translateY(-8px) scale(1.02);
     box-shadow: 0 14px 34px rgba(0, 0, 0, 0.7);
 }

 .lhs-testimonial-top {
     display: flex;
     gap: 12px;
     align-items: center;
 }

 .lhs-avatar {
     width: 56px;
     height: 56px;
     border-radius: 12px;
     flex-shrink: 0;
     overflow: hidden;
     border: 1px solid rgba(255, 255, 255, 0.06);
 }

 .lhs-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .lhs-who {
     display: flex;
     flex-direction: column;
 }

 .lhs-who .lhs-name {
     font-weight: 600;
 }

 .lhs-who .lhs-role {
     font-size: 13px;
     color: var(--lhs-muted);
 }

 .lhs-stars {
     margin-top: 10px;
     display: flex;
     gap: 4px;
 }

 .lhs-stars svg {
     width: 16px;
     height: 16px;
 }

 .lhs-quote {
     margin-top: 12px;
     color: #eeeeee;
     line-height: 1.45;
     font-size: 15px;
 }

 .lhs-quote::before {
     content: '“';
     font-size: 34px;
     color: #ffffff;
     position: relative;
     top: -8px;
     margin-right: 6px;
 }

 /* Right panel with big highlighted testimonial */
 .lhs-highlight {
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
     padding: 18px;
     border-radius: 14px;
     border: 1px solid var(--lhs-glass-border);
     backdrop-filter: blur(10px);
     display: flex;
     flex-direction: column;
     gap: 14px;
     min-height: 260px;
     align-items: flex-start;
     justify-content: center;
 }

 .lhs-highlight .lhs-big-quote {
     font-size: clamp(16px, 2.5vw, 18px);
     line-height: 1.5;
     font-weight: 500;
 }

 .lhs-highlight .lhs-meta {
     display: flex;
     gap: 12px;
     align-items: center;
     margin-top: 6px;
     flex-wrap: wrap;
 }

 .lhs-highlight .lhs-meta .lhs-badge {
     background: transparent;
     color: #ffffff;
     border: 1px solid var(--lhs-glass-border);
     padding: 6px 10px;
     border-radius: 999px;
     font-weight: 700;
     font-size: 12px;
     transition: all 0.3s ease-in-out;
 }

 .lhs-highlight .lhs-meta .lhs-badge:hover {
     background: #ffffff;
     color: #000000;
 }

 /* Controls */
 .lhs-controls {
     display: flex;
     gap: 12px;
     align-items: center;
     margin-top: 12px;
 }

 .lhs-btn {
     background: transparent;
     border: 1px solid var(--lhs-glass-border);
     padding: 8px 12px;
     border-radius: 10px;
     color: inherit;
     cursor: pointer;
     font-weight: 600;
     transition: background 0.3s ease, color 0.3s ease;
 }

 .lhs-btn.primary {
     background: transparent;
     border: 1px solid var(--lhs-glass-border);
     color: #ffffff;
     box-shadow: none;
     transition: all 0.3s ease-in-out;
 }

 .lhs-btn.primary:hover {
     background: #ffffff;
     color: #000000;
     border-color: #ffffff;
     box-shadow: 0 8px 20px rgba(255, 255, 255, 0.12);
 }

 .lhs-btn.icon {
     display: inline-grid;
     place-items: center;
     width: 44px;
     height: 44px;
     padding: 0;
     font-size: 20px;
     line-height: 1;
 }

 /* Pagination dots */
 .lhs-dots {
     display: flex;
     gap: 8px;
 }

 .lhs-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.06);
     cursor: pointer;
     border: 1px solid rgba(255, 255, 255, 0.02);
 }

 .lhs-dot.active {
     background: #ffffff;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
 }

 /* Responsive */
 @media (max-width:980px) {
     .lhs-carousel {
         grid-template-columns: 1fr;
     }

     .lhs-track {
         padding-bottom: 18px;
     }

     .lhs-highlight {
         order: 2;
     }
 }

 @media (max-width:520px) {
     .lhs-testimonial-card {
         min-width: 260px;
         flex: 0 0 260px;
     }

     .lhs-avatar {
         width: 48px;
         height: 48px;
     }
 }

 .lhs-testimonials-wrap[data-loaded="false"] {
     opacity: 0;
     transform: translateY(14px);
 }

 .lhs-fade-in {
     animation: lhsWrapIn 700ms cubic-bezier(.2, .9, .3, 1) forwards;
 }

 @keyframes lhsWrapIn {
     to {
         opacity: 1;
         transform: none;
     }
 }

 .lhs-btn:focus,
 .lhs-dot:focus {
     outline: 3px solid rgba(255, 255, 255, 0.4);
     outline-offset: 3px;
 }

 /*FOOTER*/
 /* Footer Container */
 .footer-container {
     width: 100%;
     background-color: #000;
     color: #fff;
     padding: 10px;
     box-sizing: border-box;
     text-align: center;
 }

 /* Top Bar - Flexbox for Left, Center, Right layout */
 .footer-top-bar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-bottom: 5px;
 }

 .footer-logo img {
     height: 60px;
     max-width: 100%;
     transition: transform 0.3s ease;
     cursor: pointer;
 }

 .footer-logo img:hover {
     transform: scale(1.1);
 }

 .footer-links a {
     color: #fff;
     font-size: 15px;
     text-decoration: none;
     margin-left: 15px;
     opacity: 0.8;
     transition: opacity 0.3s ease;
 }

 .footer-links a:hover {
     opacity: 1;
 }

 /* Basic Styles for Icons */
 .social-icons {
     display: flex;
     justify-content: center;
     gap: 60px;
     list-style: none;
     padding: 0;
     margin: 0;
 }


 /* Base style for the icon links */
 .social-icons a {
     color: #fff;
     font-size: 28px;
     transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
 }

 /* Hover effect with lift + glow */
 .social-icons a:hover {
     transform: translateY(-6px) scale(1.1);
     color: #ffffff;
     /* keep it white or brand color */
     text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
 }




 /* Thin horizontal line */
 .divider-line {
     border: 0;
     height: 1px;
     background: #444;
     margin: 20px 0;
 }

 /* Buttons Section */
 .footer-buttons-section {
     display: flex;
     justify-content: center;
     gap: 20px;
     padding: 20px 0;
     flex-wrap: wrap;
     /* Buttons wrap on smaller screens */
 }

 .hollow-btn {
     color: #fff;
     border: 1px solid #fff;
     background-color: transparent;
     padding: 12px 30px;
     text-decoration: none;
     transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
     font-size: 14px;
     min-width: 150px;
     text-align: center;
     box-sizing: border-box;
     flex-grow: 1;
     /* Allows buttons to grow on small screens */
     max-width: 250px;
 }

 .hollow-btn:hover {
     background-color: #fff;
     color: #000;
 }

 /* Bottom Section */
 .footer-bottom-section p {
     font-size: 14px;
     color: #888;
     margin-top: 20px;
     font-weight: bold;
 }

 /* Responsive CSS for smaller screens */
 @media (max-width: 768px) {
     .footer-top-bar {
         flex-direction: column;
         text-align: center;
     }

     .footer-logo {
         margin-bottom: 15px;
     }

     .footer-links a {
         display: block;
         margin: 5px 0;
     }
 }