 
:root { --brand-clr-bg:#fdf7f6; --blue-main:#27397f; --brand-color:#27397f; --light-gray:#f8f9fa; --border-color:#e9ecef; --text-color:#333; --text-light:#6c757d; --bg-color:#081e2c; --card-color:#051723; --text-color-white:#ffffff; --yellow-clr:rgb(253,231,115); --gold:#e8c96c; }

/* ANIMISTA KEYFRAMES */
@keyframes fade-in-down { 0%{opacity:0;transform:translateY(-30px)}100%{opacity:1;transform:translateY(0)} }
@keyframes fade-in-up { 0%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:translateY(0)} }
@keyframes slide-in-blurred-top { 0%{transform:translateY(-36px) scaleY(0.7);filter:blur(12px);opacity:0}100%{transform:translateY(0) scaleY(1);filter:blur(0);opacity:1} }
@keyframes wire-pulse { 0%,100%{opacity:1}50%{opacity:0.4} }
@keyframes marquee { 0%{transform:translateX(0)}100%{transform:translateX(-50%)} }
@keyframes img-reveal { 0%{clip-path:inset(0 100% 0 0);opacity:0}100%{clip-path:inset(0 0% 0 0);opacity:1} }
@keyframes float-up { 0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)} }

/* GLOBAL */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;color:var(--text-color);background:var(--brand-clr-bg);overflow-x:hidden}
h1,h2,h3,h4{font-family:'Bebas Neue',sans-serif;letter-spacing:0.04em}
.section-eyebrow{font-family:'Inter',sans-serif;font-size:0.72rem;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;color:var(--yellow-clr);display:block;margin-bottom:0.5rem}
.gold-line{width:56px;height:3px;background:linear-gradient(90deg,var(--yellow-clr),var(--gold));border-radius:2px}
img{max-width:100%}

section{overflow: hidden;}
footer{overflow: hidden;}
/* ── UNIFIED CTA PILL ── */
.cta-pill{display:inline-flex;align-items:center;background:var(--bg-color);border:1px solid rgba(232,201,108,0.25);border-radius:50px;overflow:hidden;gap:0;text-decoration:none}
.cta-pill .cta-pill-num{padding:12px 20px;display:flex;flex-direction:column;border-right:1px solid rgba(232,201,108,0.15)}
.cta-pill .cta-pill-num .cta-lbl{font-size:0.6rem;letter-spacing:0.14em;text-transform:uppercase;color:rgba(255,255,255,0.4);line-height:1}
.cta-pill .cta-pill-num .cta-no{font-size:0.9rem;font-weight:700;color:var(--yellow-clr);line-height:1.3;white-space:nowrap}
.cta-pill .cta-pill-btn{padding:18px 22px;background:var(--yellow-clr);color:var(--bg-color);font-family:'Inter',sans-serif;font-size:0.75rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;white-space:nowrap;transition:background 0.25s}
.cta-pill:hover .cta-pill-btn{background:#ffd93d}
.cta-pill-light{border-color:rgba(39,57,127,0.2);background:#fff}
.cta-pill-light .cta-pill-num .cta-lbl{color:var(--text-light)}
.cta-pill-light .cta-pill-num .cta-no{color:var(--blue-main)}
.cta-pill-light .cta-pill-num{border-right-color:rgba(39,57,127,0.12)}
.cta-pill-light .cta-pill-btn{background:var(--blue-main);color:#fff}
.cta-pill-light:hover .cta-pill-btn{background:#1e2e6e}

/* OUTLINE WIRE BUTTON */
.btn-wire{display:inline-flex;align-items:center;gap:8px;padding:10px 26px;border:1.5px solid var(--yellow-clr);color:var(--yellow-clr);background:transparent;font-family:'Inter',sans-serif;font-size:0.8rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;text-decoration:none;border-radius:2px;transition:all 0.3s}
.btn-wire:hover{background:var(--yellow-clr);color:var(--bg-color)}

/* ── HEADER ── */
.site-header{position:fixed;top:0;left:0;width:100%;z-index:100;background:linear-gradient(180deg,rgba(5,23,35,0.92) 0%,transparent 100%);transition:background 0.3s ease}
.site-header.scrolled{background:rgba(5,23,35,0.97)}
.site-header .nav-logo{text-decoration:none;line-height:1;display:inline-block}
.site-header .nav-logo img{width:300px;background-color:#fff;padding:18px 10px;display:block;transition:width 0.3s ease,padding 0.3s ease,background-color 0.3s ease,filter 0.3s ease}
.site-header.scrolled .nav-logo img{width:200px;}
.site-header .header-cta{display:flex;align-items:center;gap:0px}
.site-header .header-cta .cta-pill-num{ padding:4px 12px;transition:background 0.3s ease,border-color 0.3s ease}
.site-header .header-cta .cta-no{color:rgba(255,255,255,0.85);text-decoration:none;font-size:0.85rem;white-space:nowrap;transition:color 0.3s ease}
.site-header.scrolled .header-cta .cta-no{color:#fff}
.site-header .header-cta .cta-no:hover{color:var(--yellow-clr)}
.site-header .header-divider{width:1px;height:28px;background:rgba(255,255,255,0.2);margin:0 18px;flex-shrink:0;transition:background 0.3s ease}
.site-header.scrolled .header-divider{background:rgba(255,255,255,0.15)}
.site-header .social-icons{display:flex;align-items:center}
.site-header .social-icons a{color:rgba(255,255,255,0.55);font-size:0.9rem;margin-left:14px;text-decoration:none;transition:color 0.3s ease}
.site-header.scrolled .social-icons a{color:rgba(255,255,255,0.75)}
.site-header .social-icons a:hover{color:var(--yellow-clr)}


/* ── HERO ── */
.hero-section{position:relative;min-height:100vh;display:flex;align-items:end;overflow:hidden;background:#020d14}
.hero-section .hero-bg-photo{position:absolute;inset:0;background-image:url('../Images/varsha-manufacturing-unit.webp');background-size:cover;background-position:center 40%;opacity:0.22}
.hero-section .hero-bg-overlay{position:absolute;inset:0;background:linear-gradient(100deg,#020d14 0%,#081e2c 42%,rgba(8,30,44,0.72) 68%,rgba(2,13,20,0.55) 100%)}
.hero-section .hero-bg-grid{position:absolute;inset:0;background-image:repeating-linear-gradient(0deg,rgba(39,57,127,0.06) 0px,rgba(39,57,127,0.06) 1px,transparent 1px,transparent 60px),repeating-linear-gradient(90deg,rgba(39,57,127,0.06) 0px,rgba(39,57,127,0.06) 1px,transparent 1px,transparent 60px)}
.hero-section .hero-content{position:relative;z-index:3;padding: 170px 0 50px;}
.hero-section .hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(232,201,108,0.1);border:1px solid rgba(232,201,108,0.3);padding:6px 16px;border-radius:20px;margin-bottom:1.5rem;animation:fade-in-down 0.8s ease both}
.hero-section .hero-badge-dot{width:7px;height:7px;background:var(--yellow-clr);border-radius:50%;animation:wire-pulse 2s infinite}
.hero-section .hero-badge span{color:var(--yellow-clr);font-size:0.72rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase}
.hero-section h1{font-size:clamp(3rem,7vw,5.5rem);color:var(--text-color-white);line-height:0.95;animation:slide-in-blurred-top 1s ease 0.2s both}
.hero-section h1 em{color:var(--yellow-clr);font-style:normal}
.hero-section .hero-sub{color:rgba(255,255,255,0.6);font-size:1rem;max-width:480px;margin-top:1.2rem;line-height:1.7;animation:fade-in-up 0.9s ease 0.5s both}
.hero-section .hero-cta-row{margin-top:2.2rem;display:flex;gap:14px;flex-wrap:wrap;align-items:center;animation:fade-in-up 0.9s ease 0.7s both}
 .hero-section .stat-item .stat-num{font-family:'Bebas Neue',sans-serif;font-size:2.4rem;color:var(--yellow-clr);line-height:1}
.hero-section .stat-item .stat-label{font-size:0.68rem;color:rgba(255,255,255,0.45);letter-spacing:0.12em;text-transform:uppercase;margin-top:2px}

.header-cta{display:flex;align-items:center;gap:8px;padding:12px 18px;flex-wrap:wrap;width:fit-content;}
.header-cta .cta-heading{font-size:15px;font-weight:700;color:var(--yellow-clr);text-transform:uppercase;letter-spacing:.5px;display:flex;align-items:center;gap:6px;margin-right:6px;}
.header-cta .cta-pill-num{padding:0 8px;transition:.3s ease;position:relative;}
.header-cta .cta-pill-num + .cta-pill-num::before{content:"";position:absolute;left:0px;top:50%;transform:translateY(-50%);width:1px;height:18px;background:rgba(255,255,255,.35);}
.header-cta .cta-pill-num:hover .cta-no{color:var(--yellow-clr);}
.header-cta .cta-no{font-size:15px;font-weight:600;color:var(--text-color-white);text-decoration:none;letter-spacing:.3px;transition:.3s ease;display:block;}

/* HERO RIGHT IMAGE PANEL */
.hero-section .hero-img-panel{position:absolute;right:0;top:0;bottom:0;width:100%;z-index:2;overflow:hidden}
.hero-section .hero-img-panel::before{content:'';position:absolute;left:0;top:0;bottom:0;width:100%;background:linear-gradient(to right,#081e2c,transparent);z-index:2}
.hero-section .hero-img-panel::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(2,13,20,0.45) 0%,transparent 30%,transparent 70%,rgba(2,13,20,0.45) 100%);z-index:1}
.hero-section .hero-img-panel img{width:100%;height:100%;object-fit:cover;object-position:center;animation:img-reveal 1.4s ease 0.3s both}
.hero-section .hero-img-badge{position:absolute;bottom:80px;right:20px;background:var(--yellow-clr);padding:16px 20px;border-radius:4px;z-index:4;min-width:160px;animation:float-up 4s ease-in-out infinite}
.hero-section .hero-img-badge .ib-num{font-family:'Bebas Neue',sans-serif;font-size:2.2rem;color:var(--bg-color);line-height:1}
.hero-section .hero-img-badge .ib-lbl{font-size:0.65rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:rgba(8,30,44,0.65);line-height:1.3;margin-top:2px}
 
/* ── ABOUT ── */
.about-section{background:var(--brand-clr-bg);padding:60px 0}
.about-section .about-label-col{padding-right:60px;border-right:1px solid var(--border-color)}
.about-section h2{font-size:50px;color:var(--bg-color);line-height:1}
.about-section h2 .accent{color:var(--blue-main)}
.about-section .about-intro{font-size:1rem;color:var(--text-light);line-height:1.85;margin-top:1.2rem}
.about-section .about-intro strong{color:var(--text-color);font-weight:600}
.about-section .feature-chip{display:inline-flex;align-items:center;gap:8px;padding:8px 16px;border:1px solid var(--border-color);border-radius:2px;font-size:0.78rem;color:var(--text-light);font-weight:500;margin:5px 5px 5px 0;transition:all 0.2s}
.about-section .feature-chip i{color:var(--blue-main)}
.about-section .feature-chip:hover{border-color:var(--blue-main);color:var(--blue-main);background:rgba(39,57,127,0.04)}
.about-section .about-cta-area{margin-top:2.5rem;display:flex;align-items:center;gap:16px;flex-wrap:wrap;}
.about-section .cta-pill{background: var(--bg-color);display:flex;align-items:center;gap:16px;padding:16px 24px; border:1px solid rgba(39,57,127,0.35);border-radius:6px;text-decoration:none;transition:all 0.22s}
.about-section .cta-pill:hover{background:rgba(39,57,127,0.28);border-color:var(--yellow-clr)}
.about-section .cta-pill:hover .cta-pill-num .cta-no {color: var(--bg-color);}
.about-section .cta-pill .cta-pill-icon{width:42px;height:42px;background:var(--blue-main);border-radius:4px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.about-section .cta-pill .cta-pill-icon i{color:var(--yellow-clr);font-size:1rem}
.about-section .cta-pill .cta-pill-num{display:flex;flex-direction:column;gap:2px}
.about-section .cta-pill .cta-lbl{font-size:0.62rem;letter-spacing:0.14em;text-transform:uppercase;color:rgba(255,255,255,0.35);font-weight:600}
.shadow-icon { width: 35%; opacity: 0.5; margin-top: 8px; filter: grayscale(1); display: none;}

/* ── PRODUCTS ── */
.products-section{background:var(--bg-color);padding:60px 0;background-image: url(../Images/wires-background.webp);background-repeat: no-repeat; }
.products-section .section-header h2{font-size:50px; color: var(--text-color-white);}
.products-section .section-header p{color:rgba(255,255,255,0.45);font-size:0.9rem; margin-top:0.5rem}
.products-section .product-card{background:var(--card-color);border:1px solid rgba(232,201,108,0.08);border-radius:6px;height:100%;transition:all 0.35s;position:relative;overflow:hidden}
.products-section .product-card::after{content:'';position:absolute;bottom:0;left:0;right:0;height:2px;background:linear-gradient(90deg,var(--yellow-clr),transparent);transform:scaleX(0);transform-origin:left;transition:transform 0.4s}
.products-section .product-card:hover{border-color:rgba(232,201,108,0.28);transform:translateY(-5px);box-shadow:0 24px 56px rgba(0,0,0,0.5)}
.products-section .product-card:hover::after{transform:scaleX(1)}
.products-section .product-card .prod-img-wrap{position:relative;height:180px;overflow:hidden}
.products-section .product-card .prod-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s}
.products-section .product-card:hover .prod-img-wrap img{transform:scale(1.06)}
.products-section .product-card .prod-img-wrap .prod-num-badge{position:absolute;top:12px;left:12px;background:rgba(8,30,44,0.82);backdrop-filter:blur(4px);color:var(--yellow-clr);font-family:'Bebas Neue',sans-serif;font-size:1.1rem;padding:4px 10px;border-radius:3px;letter-spacing:0.06em}
.products-section .product-card .prod-body{padding:22px 22px 20px}
.products-section .product-card h4{font-size:1.3rem;color:var(--text-color-white);margin-bottom:0.6rem}
.products-section .product-card p{color:rgba(255,255,255,0.45);font-size:0.83rem;line-height:1.7;margin-bottom: 0;}
.products-section .product-card .read-more{display:inline-flex;align-items:center;gap:6px;color:var(--yellow-clr);font-size:0.73rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;text-decoration:none;margin-top:1rem;transition:gap 0.2s}
.products-section .product-card .read-more:hover{gap:10px}



/* ── CERTS ── */
.certs-section{background:var(--brand-clr-bg);padding:60px 0}
.certs-section h2{font-size:50px;color:var(--bg-color)}
.certs-section .cert-card{display:block;text-decoration:none;background:#fff;border:1px solid var(--border-color);border-radius:4px;overflow:hidden;transition:all 0.3s}
.certs-section .cert-card:hover{border-color:var(--blue-main);box-shadow:0 12px 36px rgba(39,57,127,0.12);transform:translateY(-3px)}
.certs-section .cert-card .cert-img-wrap{position:relative;overflow:hidden;aspect-ratio:4/3;background:var(--light-gray)}
.certs-section .cert-card .cert-img-wrap img{width:100%;height:100%;object-fit:cover;padding:16px;transition:transform 0.35s,filter 0.35s}
.certs-section .cert-card:hover .cert-img-wrap img{transform:scale(1.04);filter:blur(2px) brightness(0.6)}
.certs-section .cert-card .cert-overlay{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity 0.3s}
.certs-section .cert-card:hover .cert-overlay{opacity:1}
.certs-section .cert-card .cert-overlay span{font-size:0.78rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:#fff;background:var(--blue-main);padding:8px 16px;border-radius:3px}
.certs-section .cert-card .cert-info{padding:16px 18px;border-top:1px solid var(--border-color);text-align: center;}
.certs-section .cert-card .cert-info h5{font-family:'Bebas Neue',sans-serif;font-size:1.2rem;color:var(--bg-color);letter-spacing:0.05em;margin:0}
.certs-section .cert-card .cert-info p{font-size:0.75rem;color:var(--text-light);margin-top:3px;margin-bottom: 0;}


.certs-section .cert-cta-bar {background:var(--bg-color);border-radius:4px;    padding: 0px 0 0 36px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px;margin-top:2.5rem}
.certs-section .cert-cta-bar .bar-text h3 {font-size:1.5rem;color:var(--text-color-white)}
.certs-section .cert-cta-bar .bar-text p {color:rgba(255,255,255,0.4);font-size:0.8rem;margin-top:2px}
.certs-section .cert-cta-bar .bar-right {display:flex;align-items:center;gap:0px}
.certs-section .cert-cta-bar .cta-pills-col {display:flex;flex-direction:column;gap:25px}
.certs-section .cert-cta-bar .cta-pills-col .cta-pill{border-radius:50px 0 0px 50px ;background-color: var(--text-color-white);}
.certs-section .cta-no{color: var(--card-color) !important; }
.cta-pill .cta-pill-num{border-right: none;}
.certs-section .cert-cta-bar .bar-img-wrap { width: 300px; height: 190px; /* border-radius: 6px; */ overflow: hidden; /* border: 1px solid rgba(201, 168, 76, 0.3); */ flex-shrink: 0; }
.certs-section .cert-cta-bar .bar-img-wrap img {width:100%;height:100%;object-fit:cover;display:block}
 

/* ── WHY ── */
.why-section{ background: linear-gradient( 135deg, var(--brand-clr-bg) 0%, #f0f2f8 100% ); padding: 60px 0; position: relative; overflow: hidden; z-index: 1; } 
.why-section::after{ content: ""; position: absolute; inset: 0; background: url("../Images/wire.webp") no-repeat center center; background-size: cover; /* contain / 100% auto if needed */ opacity: 0.2; /* Adjust transparency */ pointer-events: none; z-index: -1; }
.why-section .why-hero-text h2{font-size:50px;color:var(--bg-color);line-height:1}
.why-section .why-hero-text .why-lead{font-size:1rem;color:var(--text-light);line-height:1.8;margin-top:1rem;}
.why-section .why-card{background:#fff;border:1px solid var(--border-color);border-radius:4px;padding:15px 12px;height:100%;transition:all 0.3s}
.why-section .why-card:hover{border-color:var(--blue-main);box-shadow:0 8px 32px rgba(39,57,127,0.08)}
.why-section .why-card .why-icon{width:44px;height:44px;background:rgba(39,57,127,0.07);border-radius:3px;display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.why-section .why-card .why-icon i{color:var(--blue-main);font-size:1.1rem}
.why-section .why-card h4{font-size:1.25rem;color:var(--bg-color);margin-bottom:0.6rem}
.why-section .why-card p{color:var(--text-light);font-size:0.83rem;line-height:1.7}
.why-section .why-manifesto{background:var(--bg-color);border-radius:4px;padding:30px;margin-top:3rem;position:relative;overflow:hidden}
.why-section .why-manifesto p{font-size: 15px;letter-spacing: unset;}
.why-section .why-manifesto::before{content:'';position:absolute;top:-40px;right:-40px;width:200px;height:200px;border-radius:50%;background:rgba(232,201,108,0.04)}
.why-section .why-manifesto .manifesto-label{font-size:1rem;letter-spacing:0.18em;text-transform:uppercase;color:rgba(255,255,255,0.3);margin-bottom: 10px;}
.why-section .why-manifesto blockquote{font-family:'Playfair Display',serif;font-size:clamp(1.1rem,2.5vw,1.4rem);color:rgba(255,255,255,0.85);line-height:1.75;margin-top:1rem;font-style:italic;border:none;padding:0}
.why-section .why-manifesto blockquote strong{color:var(--yellow-clr);font-style:normal}



/* ── CLIENTS – ALL SEGMENTS GRID ── */
.clients-section{background:var(--bg-color);padding:60px 0}
.clients-section h2{font-size:50px;color:var(--text-color-white)}
.clients-section .clients-sub{color:rgba(255,255,255,0.35);font-size:0.88rem;margin-top:6px}

/* Segments grid */
.clients-section .segments-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(39,57,127,0.22);border:1px solid rgba(39,57,127,0.28);border-radius:6px;overflow:hidden;margin-top:3rem}
.clients-section .segment{background:var(--card-color);padding:28px 25px;transition:background 0.2s}
.clients-section .segment:hover{background:rgba(39,57,127,0.13)}

/* Segment header */
.clients-section .segment .seg-header{display:flex;align-items:center;gap:12px;margin-bottom:16px}
.clients-section .segment .seg-icon{width:36px;height:36px;background:var(--blue-main);border-radius:4px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.clients-section .segment .seg-icon i{color:var(--yellow-clr);font-size:0.9rem}
.clients-section .segment .seg-title{font-size:0.95rem;font-weight:700;color:var(--text-color-white);line-height:1.2}
.clients-section .segment .seg-sub{font-size:0.65rem;color:rgba(255,255,255,0.28);letter-spacing:0.1em;text-transform:uppercase;margin-top:2px}
.clients-section .segment .divider{height:1px;background:rgba(255,255,255,0.05);margin-bottom:16px}

/* Client rows */
.clients-section .segment .client-list{display:flex;flex-direction:column;gap:0}
.clients-section .segment .client-row{display:flex;align-items:center;gap:9px;padding:7px 0;border-bottom:1px solid rgba(255,255,255,0.04)}
.clients-section .segment .client-row:last-child{border-bottom:none}
.clients-section .segment .client-dot{width:4px;height:4px;background:var(--yellow-clr);border-radius:50%;flex-shrink:0;opacity:0.6}
.clients-section .segment .client-name{font-size:0.8rem;color:rgba(255,255,255,0.65);font-weight:500}
.clients-section .segment .more-tag{font-size:0.68rem;color:rgba(255,255,255,0.22);margin-top:8px;font-style:italic;padding-left:13px}

/* Marquee */
.clients-section .marquee-row{overflow:hidden;margin-top:2.4rem;border-top:1px solid rgba(39,57,127,0.2);border-bottom:1px solid rgba(39,57,127,0.2);padding:1rem 0}
.clients-section .marquee-inner{display:flex;gap:44px;animation:marquee 30s linear infinite;width:max-content}
.clients-section .marquee-item{font-family:'Bebas Neue',sans-serif;font-size:0.9rem;color:rgba(255,255,255,0.15);letter-spacing:0.1em;white-space:nowrap}

/* ── FOOTER ── */
.site-footer{background:var(--card-color);border-top:1px solid rgba(232,201,108,0.1)}
.site-footer .footer-top{padding:70px 0 50px}
.site-footer .footer-logo{font-family:'Bebas Neue',sans-serif;font-size:2rem;color:var(--text-color-white);letter-spacing:0.08em;line-height:1}
.site-footer .footer-logo span{color:var(--yellow-clr)}
.site-footer .footer-tagline{font-size:0.72rem;color:rgba(255,255,255,0.35);letter-spacing:0.15em;text-transform:uppercase;margin-top:4px}
.site-footer .footer-desc{color:rgba(255,255,255,0.45);font-size:0.82rem;line-height:1.75;margin-top:1.2rem;}
.site-footer .footer-col-title{font-family:'Bebas Neue',sans-serif;font-size:1.1rem;color:var(--text-color-white);letter-spacing:0.08em;margin-bottom:1rem;padding-bottom:0.6rem;border-bottom:1px solid rgba(255,255,255,0.07)}
.site-footer .footer-contact-item{display:flex;gap:10px;align-items:flex-start;margin-bottom:0.9rem}
.site-footer .footer-contact-item i{color:var(--yellow-clr);font-size:0.85rem;margin-top:3px;min-width:16px}
.site-footer .footer-contact-item span{color:rgba(255,255,255,0.5);font-size:0.82rem;line-height:1.6}
.site-footer .footer-contact-item a{color:var(--yellow-clr);text-decoration:none;font-weight:600}
.site-footer .footer-social-row{display:flex;gap:10px;margin-top:1.5rem}
.site-footer .footer-social-row a{width:36px;height:36px;background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.08);border-radius:3px;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.4);font-size:0.85rem;text-decoration:none;transition:all 0.2s}
.site-footer .footer-social-row a:hover{background:var(--yellow-clr);color:var(--bg-color);border-color:var(--yellow-clr)}
.site-footer .footer-bottom{padding:18px 0;border-top:1px solid rgba(255,255,255,0.05)}
.site-footer .footer-bottom .copyright{color:rgba(255,255,255,0.25);font-size:0.75rem}
.site-footer .footer-bottom .designer{color:rgba(255,255,255,0.25);font-size:0.75rem}
.site-footer .footer-bottom .designer a{color:var(--yellow-clr);text-decoration:none}

/* Scroll reveal */
.reveal{opacity:0;transform:translateY(24px);transition:opacity 0.7s ease,transform 0.7s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-left{opacity:0;transform:translateX(-28px);transition:opacity 0.7s ease,transform 0.7s ease}
.reveal-left.visible{opacity:1;transform:translateX(0)}
.reveal-right{opacity:0;transform:translateX(28px);transition:opacity 0.7s ease,transform 0.7s ease}
.reveal-right.visible{opacity:1;transform:translateX(0)}

.video-wrapper{
    position:relative;
    border-radius:24px;
    overflow:hidden; 
    height:100%;
}

.video-wrapper video{
    width:100%;
    height:100%;
    min-height:550px;
    object-fit:cover;
    display:block;
    border-radius:24px;
    transition:transform .6s ease;
}

.video-wrapper:hover video{
    transform:scale(1.03);
}

@media (max-width:991px){
    .video-wrapper video{
        min-height:350px;
    }
}


.desktop-img{display:block;width:100%}
.mobile-img{display:none;width:100%}

@media(max-width:767px){
.desktop-img{display:none}
.mobile-img{display:block}
}

/* Responsive */
@media(max-width:991px){
  /* .hero-section .hero-img-panel{display:none} */
  .hero-section .hero-content { padding: 20px 12px 40px 12px;}
  .hero-section {position: relative; min-height: auto; display: flex; align-items: end; overflow: hidden; background: #020d14; flex-direction: column; height: auto; }
    .hero-section .hero-img-panel::before{display: none;}
    .hero-section .hero-badge{margin-top: 1.5rem;}
    .hero-section .hero-img-panel{ padding: 120px 0px 0px 0px; position: relative;}
  .about-section .about-label-col{border-right:none;border-bottom:1px solid var(--border-color);padding-right:0;padding-bottom:25px;margin-bottom:0px}
  .clients-section .seg-panel.active{grid-template-columns:1fr}
  .clients-section .seg-panel .panel-left{border-right:none;border-bottom:1px solid rgba(255,255,255,0.06)}
  .why-section{padding: 0;}
}
@media(max-width:767px){ 
  .why-section .why-manifesto{padding:28px; margin-top: 1rem;}
  .site-header .header-divider{display:none}
  .site-header .social-icons{display:none}
  .certs-section .cert-cta-bar{flex-direction:column;align-items:flex-start; padding: 20px;}
  .certs-section .cert-cta-bar .bar-right {  flex-direction: column; }
  .certs-section .cert-cta-bar .cta-pills-col { display: flex; flex-direction: row; gap: 0px; }
  .certs-section .cert-cta-bar .cta-pills-col .cta-pill{border-radius: 0;}
  .certs-section .cert-cta-bar .bar-img-wrap{display: none;}
  .products-section{padding-bottom: 40px;}
  .products-section .row{justify-content: center !important;margin-bottom: 15px !important; text-align: center;}
   .why-section .row{justify-content: center !important;margin-bottom: 15px !important;}
  .why-section .why-hero-text{ text-align: center;}
  .clients-section .row{justify-content: center !important;margin-bottom: 15px !important; text-align: center;}
}
@media(max-width:1100px){.clients-section .segments-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.clients-section .segments-grid{grid-template-columns:1fr; margin-top: 0rem;}.clients-section .segment{padding:20px 24px}}
@media(max-width:767px){
  .site-header{ background: #fff !important;}
  .site-header.scrolled { background: #fff !important;}
  .site-header .header-divider{display:none}
  .site-header .social-icons{display:none}
  .site-header .nav-logo img{width:85% !important;background-color: transparent;padding: 10px 0px !important;}
  .site-header.scrolled .nav-logo img {width:85% !important;padding: 10px 0px !important;} 
  .site-header .nav-logo{display: flex;justify-content: center;}
  .site-header .header-cta{gap:0px;align-items: end; justify-content: end;} 
  .site-header .header-cta .cta-pill-num{padding:3px 8px}
  .site-header .header-cta .cta-no{font-size:0.78rem}
  .header-cta .cta-pill-num + .cta-pill-num::before{display: none;}
  .about-section h2, .products-section .section-header h2, .why-section .why-hero-text h2, .certs-section h2, .clients-section h2{font-size: 25px;}
  .certs-section .cert-card .cert-info {text-align: center;}
  .head-cta-sec{display: none !important;}
  .site-footer img{ display: none; }
  .footer-bottom .container{text-align: center; justify-content: center !important;}
}
@media(max-width:768px){.header-cta{justify-content:center;padding:12px;gap:6px;}.header-cta .cta-heading{width:100%;justify-content:end;margin-right:0;}.header-cta .cta-pill-num{padding:0 6px;}.header-cta .cta-pill-num + .cta-pill-num::before{height:14px;left:-3px;}}

.mobile-call-strip{position:fixed;left:5px;right:5px;bottom:5px;display:none;align-items:center;justify-content:center;gap:6px;padding:10px 12px;background:linear-gradient(135deg,#27397f 0%,#1d2c65 100%);color:#f4d27a;font-size:12px;font-weight:600;border:1px solid rgba(244,210,122,.35);border-radius:12px;box-shadow:0 8px 25px rgba(0,0,0,.25);z-index:9999}
.mobile-call-strip a{color:#f4d27a;text-decoration:none;font-weight:700;white-space:nowrap}
.mobile-call-strip span{color:rgba(244,210,122,.7)}
@media(max-width:767px){.mobile-call-strip{display:flex}body{padding-bottom:60px}}

#backToTop{position:fixed;right:20px;bottom:20px;width:42px;height:42px;border:0;border-radius:50%;background:linear-gradient(135deg,#f4d27a 0%,#d9ac45 100%);color:#27397f;font-size:18px;font-weight:700;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 6px 18px rgba(217,172,69,.35);opacity:0;visibility:hidden;transform:translateY(15px);transition:.3s;z-index:9999}
#backToTop.show{opacity:1;visibility:visible;transform:translateY(0)}
#backToTop:hover{transform:translateY(-3px) scale(1.05);box-shadow:0 8px 22px rgba(217,172,69,.45)}
@media(max-width:768px){#backToTop{width:38px;height:38px;font-size:16px;right:15px;bottom:65px}}
