 :root {
     --gold: #C8960C;
     --gold-light: #F5C842;
     --gold-dark: #8B6508;
     --steel: #8A9BB0;
     --steel-light: #C8D4E0;
     --steel-dark: #3A4A5C;
     --bg: #F2F3F5;
     --bg2: #E8EAED;
     --text: #1A1E26;
     --text-muted: #5A6478;
     --border: #D6DAE0;
     --shine-gold: linear-gradient(135deg, #8B6508 0%, #C8960C 30%, #F5C842 50%, #C8960C 70%, #8B6508 100%);
     --shine-steel: linear-gradient(135deg, #3A4A5C 0%, #8A9BB0 30%, #D4DCE8 50%, #8A9BB0 70%, #3A4A5C 100%);
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Lato', sans-serif;
     background: var(--bg);
     color: var(--text);
     overflow-x: hidden;
 }

 /* ===================== NAV ===================== */
 nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 900;
     background: rgba(255, 255, 255, 0.96);
     backdrop-filter: blur(14px);
     border-bottom: 3px solid transparent;
     border-image: var(--shine-gold) 1;
     box-shadow: 0 2px 24px rgba(0, 0, 0, 0.10);
 }

 .nav-inner {
     max-width: 1300px;
     margin: auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 8px 24px;
 }

 .nav-logo img {
     height: 62px;
     width: auto;
     display: block;
 }

 /* Desktop links */
 .nav-links {
     display: flex;
     gap: 28px;
     list-style: none;
 }

 .nav-links a {
     font-family: 'Barlow Condensed', sans-serif;
     font-weight: 700;
     font-size: 15px;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     text-decoration: none;
     color: var(--steel-dark);
     position: relative;
     padding-bottom: 4px;
     transition: color 0.2s;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 100%;
     height: 2px;
     background: var(--gold);
     transition: right 0.3s ease;
 }

 .nav-links a:hover {
     color: var(--gold);
 }

 .nav-links a:hover::after {
     right: 0;
 }

 .nav-cta {
     background: var(--gold) !important;
     color: #fff !important;
     padding: 8px 22px !important;
     border-radius: 3px !important;
 }

 .nav-cta::after {
     display: none !important;
 }

 .nav-cta:hover {
     opacity: 0.85;
 }

 /* Hamburger button */
 .hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     padding: 6px;
     background: none;
     border: none;
     z-index: 1200;
 }

 .hamburger span {
     display: block;
     width: 26px;
     height: 2.5px;
     background: var(--steel-dark);
     border-radius: 2px;
     transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
     transform-origin: center;
 }

 .hamburger.active span:nth-child(1) {
     transform: translateY(7.5px) rotate(45deg);
 }

 .hamburger.active span:nth-child(2) {
     opacity: 0;
     transform: scaleX(0);
 }

 .hamburger.active span:nth-child(3) {
     transform: translateY(-7.5px) rotate(-45deg);
 }

 /* ===================== OFF-CANVAS ===================== */
 /* Backdrop */
 .oc-backdrop {
     position: fixed;
     inset: 0;
     z-index: 1050;
     background: rgba(10, 14, 20, 0.62);
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.35s ease;
 }

 .oc-backdrop.show {
     opacity: 1;
     pointer-events: all;
 }

 /* Drawer */
 .offcanvas {
     position: fixed;
     top: 0;
     right: 0;
     bottom: 0;
     z-index: 1100;
     width: 290px;
     max-width: 85vw;
     background: linear-gradient(175deg, #1A1E26 0%, #0D1117 100%);
     display: flex;
     flex-direction: column;
     transform: translateX(100%);
     transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
     overflow-y: auto;
 }

 .offcanvas.show {
     transform: translateX(0);
 }

 .oc-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 16px 20px 14px;
     border-bottom: 1px solid rgba(200, 150, 12, 0.2);
 }

 .oc-header img {
     height: 50px;
 }

 .oc-close {
     background: none;
     border: none;
     cursor: pointer;
     width: 36px;
     height: 36px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.07);
     transition: background 0.2s;
 }

 .oc-close:hover {
     background: rgba(200, 150, 12, 0.18);
 }

 .oc-close svg {
     width: 18px;
     height: 18px;
     fill: #fff;
 }

 .oc-nav {
     flex: 1;
     padding: 28px 24px;
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 6px;
 }

 .oc-nav li a {
     display: flex;
     align-items: center;
     gap: 12px;
     font-family: 'Barlow Condensed', sans-serif;
     font-weight: 700;
     font-size: 18px;
     letter-spacing: 2px;
     text-transform: uppercase;
     text-decoration: none;
     color: var(--steel-light);
     padding: 12px 14px;
     border-radius: 6px;
     transition: background 0.2s, color 0.2s;
     border-left: 3px solid transparent;
 }

 .oc-nav li a:hover {
     background: rgba(200, 150, 12, 0.1);
     color: var(--gold-light);
     border-left-color: var(--gold);
 }

 .oc-nav li a svg {
     width: 18px;
     height: 18px;
     fill: currentColor;
     flex-shrink: 0;
     opacity: 0.7;
 }

 .oc-cta-wrap {
     padding: 20px 24px 32px;
 }

 .oc-cta {
     display: block;
     text-align: center;
     font-family: 'Barlow Condensed', sans-serif;
     font-weight: 800;
     font-size: 16px;
     letter-spacing: 2.5px;
     text-transform: uppercase;
     text-decoration: none;
     padding: 14px 20px;
     border-radius: 5px;
     background: var(--shine-gold);
     color: #fff;
     box-shadow: 0 4px 18px rgba(200, 150, 12, 0.35);
     transition: opacity 0.2s, transform 0.2s;
 }

 .oc-cta:hover {
     opacity: 0.88;
     transform: translateY(-1px);
 }

 .oc-footer {
     padding: 16px 24px 24px;
     border-top: 1px solid rgba(255, 255, 255, 0.06);
 }

 .oc-footer p {
     font-family: 'Rajdhani', sans-serif;
     font-size: 13px;
     font-weight: 600;
     letter-spacing: 1px;
     background: var(--shine-steel);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 /* ===================== HERO SLIDESHOW ===================== */
 .hero {
     position: relative;
     min-height: 100vh;
     display: flex;
     align-items: center;
     overflow: hidden;
     padding: 120px 24px 80px;
 }

 /* Slide stack */
 .hero-slides {
     position: absolute;
     inset: 0;
     z-index: 0;
 }

 .hero-slide {
     position: absolute;
     inset: 0;
     opacity: 0;
     transition: opacity 1.2s ease;
 }

 .hero-slide.active {
     opacity: 1;
 }

 .hero-slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     /* Ken Burns per-slide handled via JS-assigned keyframes */
     animation-duration: 6s;
     animation-timing-function: ease-in-out;
     animation-fill-mode: both;
 }

 /* Ken Burns base keyframes – direction alternates per slide via class */
 @keyframes kb-zoom-in-tl {
     from {
         transform: scale(1.0) translate(0%, 0%);
     }

     to {
         transform: scale(1.18) translate(-3%, -2%);
     }
 }

 @keyframes kb-zoom-in-br {
     from {
         transform: scale(1.0) translate(0%, 0%);
     }

     to {
         transform: scale(1.18) translate(3%, 2%);
     }
 }

 @keyframes kb-zoom-in-tr {
     from {
         transform: scale(1.0) translate(0%, 0%);
     }

     to {
         transform: scale(1.15) translate(2%, -2%);
     }
 }

 @keyframes kb-zoom-in-bl {
     from {
         transform: scale(1.0) translate(0%, 0%);
     }

     to {
         transform: scale(1.15) translate(-2%, 2%);
     }
 }

 @keyframes kb-zoom-in-c {
     from {
         transform: scale(1.0);
     }

     to {
         transform: scale(1.14);
     }
 }

 .kb-0 {
     animation-name: kb-zoom-in-tl;
 }

 .kb-1 {
     animation-name: kb-zoom-in-br;
 }

 .kb-2 {
     animation-name: kb-zoom-in-tr;
 }

 .kb-3 {
     animation-name: kb-zoom-in-bl;
 }

 .kb-4 {
     animation-name: kb-zoom-in-c;
 }

 /* Gradient overlay on slides */
 .hero-slide-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(105deg,
             rgba(10, 14, 20, 0.80) 0%,
             rgba(10, 14, 20, 0.55) 55%,
             rgba(10, 14, 20, 0.30) 100%);
 }

 /* Grid overlay pattern */
 .hero-grid-pattern {
     position: absolute;
     inset: 0;
     z-index: 1;
     pointer-events: none;
     background:
         repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(200, 150, 12, 0.035) 48px, rgba(200, 150, 12, 0.035) 50px),
         repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(200, 150, 12, 0.035) 48px, rgba(200, 150, 12, 0.035) 50px);
 }

 .hero-glow {
     position: absolute;
     top: -100px;
     right: -100px;
     width: 640px;
     height: 640px;
     background: radial-gradient(circle, rgba(200, 150, 12, 0.16) 0%, transparent 70%);
     pointer-events: none;
     z-index: 1;
 }

 /* Slide dots */
 .hero-dots {
     position: absolute;
     bottom: 32px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 3;
     display: flex;
     gap: 10px;
 }

 .hero-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.35);
     border: none;
     cursor: pointer;
     padding: 0;
     transition: background 0.3s, transform 0.3s;
 }

 .hero-dot.active {
     background: var(--gold-light);
     transform: scale(1.3);
 }

 /* Hero content */
 .hero-inner {
     max-width: 1300px;
     margin: auto;
     width: 100%;
     position: relative;
     z-index: 2;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .hero-tag {
     font-family: 'Barlow Condensed', sans-serif;
     font-size: 13px;
     letter-spacing: 4px;
     text-transform: uppercase;
     color: var(--gold-light);
     margin-bottom: 16px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .hero-tag::before {
     content: '';
     display: block;
     width: 40px;
     height: 2px;
     background: var(--gold-light);
 }

 .hero h1 {
     font-family: 'Barlow Condensed', sans-serif;
     font-weight: 800;
     font-size: clamp(42px, 6vw, 76px);
     line-height: 1.0;
     color: #fff;
     margin-bottom: 20px;
     letter-spacing: -1px;
 }

 .shine-gold {
     background: var(--shine-gold);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .shine-steel {
     background: var(--shine-steel);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero-sub {
     font-size: 16px;
     color: var(--steel-light);
     line-height: 1.7;
     margin-bottom: 36px;
     max-width: 480px;
 }

 .hero-btns {
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
 }

 .btn-primary {
     font-family: 'Barlow Condensed', sans-serif;
     font-weight: 700;
     font-size: 15px;
     letter-spacing: 2px;
     text-transform: uppercase;
     text-decoration: none;
     padding: 14px 36px;
     border-radius: 3px;
     background: var(--shine-gold);
     color: #fff;
     box-shadow: 0 4px 20px rgba(200, 150, 12, 0.35);
     transition: transform 0.2s, box-shadow 0.2s;
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 28px rgba(200, 150, 12, 0.5);
 }

 .btn-outline {
     font-family: 'Barlow Condensed', sans-serif;
     font-weight: 700;
     font-size: 15px;
     letter-spacing: 2px;
     text-transform: uppercase;
     text-decoration: none;
     padding: 14px 36px;
     border-radius: 3px;
     border: 2px solid rgba(200, 208, 224, 0.4);
     color: var(--steel-light);
     transition: border-color 0.2s, color 0.2s;
 }

 .btn-outline:hover {
     border-color: var(--gold-light);
     color: var(--gold-light);
 }

 .hero-visual {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .hero-visual img {
     max-width: 420px;
     width: 100%;
     filter: drop-shadow(0 20px 60px rgba(200, 150, 12, 0.45));
     animation: float 4s ease-in-out infinite;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-12px);
     }
 }

 .hero-stats {
     display: flex;
     gap: 40px;
     margin-top: 48px;
     flex-wrap: wrap;
 }

 .stat-num {
     font-family: 'Barlow Condensed', sans-serif;
     font-size: 36px;
     font-weight: 800;
     background: var(--shine-gold);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     line-height: 1;
 }

 .stat-label {
     font-size: 12px;
     color: var(--steel-light);
     letter-spacing: 1.5px;
     text-transform: uppercase;
     margin-top: 4px;
 }

 /* ===================== SECTIONS ===================== */
 section {
     padding: 90px 24px;
 }

 .section-inner {
     max-width: 1300px;
     margin: auto;
 }

 .section-label {
     font-family: 'Barlow Condensed', sans-serif;
     font-size: 12px;
     letter-spacing: 4px;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .section-label::before {
     content: '';
     width: 30px;
     height: 2px;
     background: var(--gold);
     flex-shrink: 0;
 }

 .section-title {
     font-family: 'Barlow Condensed', sans-serif;
     font-weight: 800;
     font-size: clamp(32px, 4vw, 52px);
     line-height: 1.05;
     margin-bottom: 16px;
     color: var(--text);
 }

 .section-title .g {
     background: var(--shine-gold);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .section-title .s {
     background: var(--shine-steel);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .section-desc {
     font-size: 16px;
     color: var(--text-muted);
     max-width: 580px;
     line-height: 1.7;
     margin-bottom: 56px;
 }

 /* ===================== MARQUEE ===================== */
 .marquee-section {
     background: linear-gradient(135deg, #1A1E26, #0D1117);
     padding: 18px 0;
     overflow: hidden;
     border-top: 2px solid var(--gold);
     border-bottom: 2px solid var(--gold);
 }

 .marquee-track {
     display: flex;
     animation: marquee 25s linear infinite;
     white-space: nowrap;
 }

 @keyframes marquee {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-50%);
     }
 }

 .marquee-item {
     font-family: 'Barlow Condensed', sans-serif;
     font-size: 14px;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: var(--steel-light);
     padding: 0 40px;
     display: inline-flex;
     align-items: center;
     gap: 12px;
 }

 .marquee-dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--gold);
     flex-shrink: 0;
 }

 /* ===================== ABOUT ===================== */
 #about {
     background: #fff;
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 72px;
     align-items: center;
 }

 .about-us-img{
    text-align: center;
 }

 .about-us-img img{
    width: 80%;
 }

 .industry-img-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 10px;
 }

 .industry-img-item {
     position: relative;
     border-radius: 8px;
     overflow: hidden;
     aspect-ratio: 4/3;
 }

 .industry-img-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.45s ease;
 }

 .industry-img-item:hover img {
     transform: scale(1.07);
 }

 .img-label {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 8px 12px;
     background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
     font-family: 'Barlow Condensed', sans-serif;
     font-weight: 700;
     font-size: 12px;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: #fff;
 }

 .industry-img-item.span2 {
     grid-column: 1 / -1;
     aspect-ratio: 16/7;
 }

 .about-tagline {
     font-family: 'Rajdhani', sans-serif;
     font-size: 22px;
     font-weight: 700;
     background: var(--shine-gold);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-top: 14px;
     text-align: center;
 }

 .about-text p {
     color: var(--text-muted);
     line-height: 1.8;
     margin-bottom: 18px;
     font-size: 16px;
 }

 .about-features {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 12px;
     margin-top: 28px;
 }

 .about-features li {
     display: flex;
     align-items: center;
     gap: 14px;
     font-family: 'Barlow Condensed', sans-serif;
     font-size: 17px;
     font-weight: 600;
     color: var(--text);
 }

 .about-features li::before {
     content: '▸';
     background: var(--shine-gold);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     font-size: 20px;
     flex-shrink: 0;
 }

 /* ===================== PRODUCTS ===================== */
 #products {
     background: var(--bg);
 }

 .products-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
     gap: 28px;
 }

 .product-card {
     background: #fff;
     border-radius: 8px;
     overflow: hidden;
     border: 1px solid var(--border);
     box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
     transition: transform 0.25s, box-shadow 0.25s;
     position: relative;
     padding-bottom: 70px;
 }

 .product-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
 }

 .prod-img {
     position: relative;
     height: 210px;
     overflow: hidden;
 }

 .prod-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.4s ease;
 }

 .product-card:hover .prod-img img {
     transform: scale(1.06);
 }

 .prod-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(10, 14, 20, 0.92) 0%, rgba(10, 14, 20, 0.2) 60%, transparent 100%);
 }

 .prod-meta {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 18px 22px;
 }

 .prod-meta h3 {
     font-family: 'Barlow Condensed', sans-serif;
     font-weight: 800;
     font-size: 22px;
     letter-spacing: 1px;
     color: #fff;
 }

 .prod-meta .gtag {
     display: inline-block;
     margin-top: 4px;
     font-family: 'Barlow Condensed', sans-serif;
     font-size: 11px;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--gold-light);
 }

 .product-card-body {
     padding: 22px 24px;
     display: flex;
     flex-direction: column;
     gap: 10px;
     justify-content: space-between;
 }

 .product-cta{
    text-align: center;
    position: absolute;
    bottom: 24px;
    right: 24px;
 }

 .product-cta .btn-primary{
    padding: 10px 20px;
    display: block;
    height: max-content;
    width: max-content;
    font-size: 14px;
 }

 .plabel {
     font-family: 'Barlow Condensed', sans-serif;
     font-size: 11px;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: var(--gold-dark);
     margin-bottom: 8px;
     margin-top: 16px;
 }

 .plabel:first-child {
     margin-top: 0;
 }

 .tags-wrap {
     display: flex;
     flex-wrap: wrap;
     gap: 6px;
 }

 .tag {
     font-family: 'Barlow Condensed', sans-serif;
     font-size: 13px;
     font-weight: 600;
     padding: 4px 10px;
     border-radius: 3px;
     background: var(--bg2);
     color: var(--text-muted);
     border: 1px solid var(--border);
 }

 .tag.g {
     background: rgba(200, 150, 12, 0.08);
     color: var(--gold-dark);
     border-color: rgba(200, 150, 12, 0.25);
 }

 /* ===================== CLIENTS ===================== */
 #clients {
     background: #fff;
 }

 .clients-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
 }

 .client-card {
     background: var(--bg);
     padding: 24px 32px;
     border-radius: 12px;
     border: 1px solid var(--border);
     display: flex;
     align-items: center;
     justify-content: center;
     width: calc(20% - 24px);
     min-width: 160px;
     height: 140px;
     transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
 }

 .client-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
     background: #fff;
 }

 .client-card img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
     filter: grayscale(100%) opacity(0.7);
     transition: filter 0.3s ease;
 }

 .client-card:hover img {
     filter: grayscale(0%) opacity(1);
 }

 @media (max-width: 900px) {
     .client-card {
         width: calc(33.333% - 20px);
     }
 }

 @media (max-width: 500px) {
     .client-card {
         width: calc(50% - 15px);
         height: 110px;
         padding: 16px;
     }
 }

 /* ===================== WHY US ===================== */
 #why {
     background: linear-gradient(165deg, #F5F6F8 0%, #ECEEF2 100%);
     position: relative;
     overflow: hidden;
 }

 #why::before {
     content: '';
     position: absolute;
     top: -120px;
     right: -120px;
     width: 480px;
     height: 480px;
     background: radial-gradient(circle, rgba(200, 150, 12, 0.07) 0%, transparent 70%);
     pointer-events: none;
 }

 #why::after {
     content: '';
     position: absolute;
     bottom: -100px;
     left: -80px;
     width: 360px;
     height: 360px;
     background: radial-gradient(circle, rgba(58, 74, 92, 0.06) 0%, transparent 70%);
     pointer-events: none;
 }

 .why-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 28px;
 }

 .why-card {
     background: #fff;
     border-radius: 16px;
     padding: 36px 28px 32px;
     border: 1px solid rgba(200, 150, 12, 0.12);
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
     position: relative;
     overflow: hidden;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     display: flex;
     flex-direction: column;
     gap: 0;
 }

 .why-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: var(--shine-gold);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.35s ease;
 }

 .why-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
 }

 .why-card:hover::before {
     transform: scaleX(1);
 }

 /* Corner accent */
 .why-card::after {
     content: '';
     position: absolute;
     bottom: -40px;
     right: -40px;
     width: 120px;
     height: 120px;
     border-radius: 50%;
     background: linear-gradient(135deg, rgba(200, 150, 12, 0.06), rgba(200, 150, 12, 0.01));
     transition: transform 0.3s ease;
 }

 .why-card:hover::after {
     transform: scale(1.3);
 }

 /* Custom icon container */
 .why-icon-wrap {
     width: 68px;
     height: 68px;
     border-radius: 14px;
     background: linear-gradient(135deg, #1A1E26, #2E3A4C);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 22px;
     position: relative;
     box-shadow: 0 6px 20px rgba(10, 14, 20, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
     flex-shrink: 0;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .why-card:hover .why-icon-wrap {
     transform: scale(1.08) rotate(-3deg);
     box-shadow: 0 10px 28px rgba(10, 14, 20, 0.25), 0 0 0 3px rgba(200, 150, 12, 0.2);
 }

 .why-icon-wrap svg {
     width: 30px;
     height: 30px;
 }

 /* Gold accent dot on icon */
 .why-icon-wrap::after {
     content: '';
     position: absolute;
     top: -4px;
     right: -4px;
     width: 14px;
     height: 14px;
     border-radius: 50%;
     background: var(--shine-gold);
     box-shadow: 0 2px 6px rgba(200, 150, 12, 0.5);
 }

 .why-card h4 {
     font-family: 'Barlow Condensed', sans-serif;
     font-weight: 800;
     font-size: 22px;
     letter-spacing: 0.3px;
     margin-bottom: 10px;
     color: var(--text);
     line-height: 1.1;
 }

 .why-card p {
     font-size: 14.5px;
     color: var(--text-muted);
     line-height: 1.7;
     flex: 1;
 }

 /* Bottom stat/tag */
 .why-card-tag {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     margin-top: 20px;
     font-family: 'Barlow Condensed', sans-serif;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--gold-dark);
     padding: 5px 12px;
     border-radius: 20px;
     background: rgba(200, 150, 12, 0.08);
     border: 1px solid rgba(200, 150, 12, 0.2);
     width: fit-content;
 }

 .why-card-tag::before {
     content: '';
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--gold);
     flex-shrink: 0;
 }

 /* ===================== CONTACT ===================== */
 #contact {
     background: var(--bg);
 }

 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: start;
 }

 .contact-info p {
     color: var(--text-muted);
     line-height: 1.7;
     margin-bottom: 30px;
 }

 .contact-detail {
     display: flex;
     align-items: center;
     gap: 14px;
     padding: 14px 18px;
     background: #fff;
     border-radius: 6px;
     margin-bottom: 12px;
     border: 1px solid var(--border);
     box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
 }

 .c-icon {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background: var(--shine-gold);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .c-icon svg {
     width: 16px;
     height: 16px;
     fill: #fff;
 }

 .contact-detail span {
     font-family: 'Barlow Condensed', sans-serif;
     font-size: 16px;
     font-weight: 600;
     color: var(--text);
 }

 .contact-detail a {
    text-decoration: none;
    color: var(--text);
 }

 .contact-form {
     background: #fff;
     border-radius: 8px;
     padding: 40px;
     border: 1px solid var(--border);
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
     position: relative;
     overflow: hidden;
 }

 .contact-form::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: var(--shine-gold);
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     font-family: 'Barlow Condensed', sans-serif;
     font-size: 12px;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--gold-dark);
     margin-bottom: 6px;
     font-weight: 700;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 12px 16px;
     border: 1.5px solid var(--border);
     border-radius: 5px;
     font-family: 'Lato', sans-serif;
     font-size: 15px;
     color: var(--text);
     background: var(--bg);
     outline: none;
     transition: border-color 0.2s, box-shadow 0.2s;
     resize: none;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     border-color: var(--gold);
     box-shadow: 0 0 0 3px rgba(200, 150, 12, 0.12);
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
 }

 .form-submit {
     width: 100%;
     padding: 14px;
     font-family: 'Barlow Condensed', sans-serif;
     font-weight: 800;
     font-size: 16px;
     letter-spacing: 3px;
     text-transform: uppercase;
     background: var(--shine-gold);
     color: #fff;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     box-shadow: 0 4px 16px rgba(200, 150, 12, 0.3);
     transition: opacity 0.2s, transform 0.2s;
 }

 .form-submit:hover {
     opacity: 0.85;
     transform: translateY(-1px);
 }

 /* ===================== FOOTER ===================== */
 footer {
     background: linear-gradient(160deg, #1A1E26 0%, #0D1117 100%);
     padding: 60px 24px 30px;
 }

 .footer-inner {
     max-width: 1300px;
     margin: auto;
 }

 .footer-top {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr;
     gap: 60px;
     margin-bottom: 40px;
 }

 .footer-brand img {
     height: 72px;
     margin-bottom: 16px;
 }

 .footer-brand p {
     font-size: 14px;
     line-height: 1.7;
     color: #8A9BB0;
     max-width: 280px;
 }

 .footer-col h5 {
     font-family: 'Barlow Condensed', sans-serif;
     font-size: 13px;
     letter-spacing: 3px;
     text-transform: uppercase;
     background: var(--shine-gold);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 16px;
     font-weight: 700;
 }

 .footer-col ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .footer-col ul a {
     font-size: 14px;
     color: #8A9BB0;
     text-decoration: none;
     transition: color 0.2s;
 }

 .footer-col ul a:hover {
     color: var(--gold-light);
 }

 .footer-divider {
     border: none;
     border-top: 1px solid rgba(255, 255, 255, 0.08);
     margin-bottom: 24px;
 }

 .footer-bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 12px;
 }

 .footer-bottom p {
     font-size: 13px;
     color: #5A6478;
 }

 .footer-tagline {
     font-family: 'Rajdhani', sans-serif;
     font-size: 14px;
     font-weight: 600;
     background: var(--shine-steel);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 /* ===================== REVEAL ===================== */
 .reveal {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.6s ease, transform 0.6s ease;
 }

 .reveal.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* ===================== RESPONSIVE ===================== */
 @media (max-width: 960px) {
     .hero-inner {
         grid-template-columns: 1fr;
         text-align: center;
         gap: 36px;
     }

     .hero h1 {
         font-size: 48px;
     }

     .hero-sub {
         margin: 0 auto 36px;
     }

     .hero-btns {
         justify-content: center;
     }

     .hero-visual {
         display: none;
     }

     .hero-stats {
         justify-content: center;
     }

     .about-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .contact-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .footer-top {
         grid-template-columns: 1fr 1fr;
         gap: 32px;
     }

     .footer-brand {
         grid-column: 1 / -1;
     }

     .nav-links {
         display: none !important;
     }

     .hamburger {
         display: flex;
     }

     /* Why Us: 2 columns at tablet */
     .why-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }
 }

 @media (max-width: 600px) {
     .products-grid {
         grid-template-columns: 1fr;
     }

     .why-grid {
         grid-template-columns: 1fr;
     }

     .why-card {
         padding: 26px 20px 22px;
     }

     .footer-top {
         grid-template-columns: 1fr;
     }

     .form-row {
         grid-template-columns: 1fr;
     }

     section {
         padding: 60px 16px;
     }

     .hero {
         padding: 80px 20px 70px;
         min-height: 100svh;
     }

     .hero-dots {
         bottom: 20px;
     }
 }