:root { --brand-clr-bg:#EFF2F6; --blue-main:#27397f; --brand-color:#27397f; --light-gray:#F6F8FA; --border-color:#DDE3EA; --text-color:#16233A; --text-light:#5C6B80; --bg-color:#0B1A2C; --card-color:#0F2236; --text-color-white:#ffffff; --yellow-clr:rgb(253,231,115); --gold:#A9791F; --display:'Big Shoulders Display',sans-serif; --mono:'IBM Plex Mono',monospace; }

/* 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)} }
@keyframes draw-stroke { 0%{stroke-dashoffset:1}100%{stroke-dashoffset:0} }
@keyframes strand-pop { 0%{opacity:0;transform:scale(0.4)}100%{opacity:1;transform:scale(1)} }

/* GLOBAL */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'IBM Plex Sans',sans-serif;color:var(--text-color);background:#fff;overflow-x:hidden}
h1,h2,h3,h4{font-family:var(--display);font-weight:700;letter-spacing:0.02em}
.section-eyebrow{font-family:var(--mono);font-size:0.72rem;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;color:var(--gold);display:block;margin-bottom:0.5rem}
.gold-line{width:56px;height:3px;background:linear-gradient(90deg,var(--gold),var(--blue-main));border-radius:2px}
img{max-width:100%}
:focus-visible{outline:2px solid var(--gold);outline-offset:3px}

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(169,121,31,0.3);border-radius:50px;overflow:hidden;gap:0;text-decoration:none}
.cta-pill .cta-pill-num{padding:12px 20px;display:flex;flex-direction:column;}
.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;font-family:var(--mono)}
.cta-pill .cta-pill-btn{padding:18px 22px;background:var(--yellow-clr);color:var(--bg-color);font-family:'IBM Plex Sans',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:#ffe98a}
.cta-pill-light{border-color:var(--border-color);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:var(--border-color)}
.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(--gold);color:var(--gold);background:transparent;font-family:'IBM Plex Sans',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(--gold);color:#fff}

/* ── HEADER ── */
.site-header{position:fixed;top:0;left:0;width:100%;z-index:999;backdrop-filter:blur(12px);border-bottom:1px solid transparent;transition:.35s}
.site-header.scrolled{background:#EFF2F6;border-color:var(--border-color);box-shadow:0 10px 30px rgba(22,35,58,.08)}

.site-header .header-wrap{display:flex;align-items:center;justify-content:space-between;min-height:88px}
.site-header .nav-logo img{width:260px;transition:.35s} 

.site-header .header-right{display:flex;align-items:center;gap:20px}
.site-header .header-cta{display:flex;align-items:center;gap:10px;padding:0}
.site-header .header-cta .cta-title{font:700 13px var(--mono);color:var(--gold);text-transform:uppercase;letter-spacing:1px}
.site-header .header-cta .cta-box{padding:11px 18px;background:#fff;border:1px solid var(--border-color);border-radius:50px;color:var(--text-color);text-decoration:none;font:600 14px var(--mono);transition:.3s}
.site-header .header-cta .cta-box:hover{background:var(--blue-main);border-color:var(--blue-main);color:#fff;transform:translateY(-2px)}

.site-header .social-icons{display:flex;align-items:center;gap:8px}
.site-header .social-icons a{width:38px;height:38px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:#fff;border:1px solid var(--border-color);color:var(--blue-main);text-decoration:none;transition:.3s}
.site-header .social-icons a:hover{background:var(--blue-main);border-color:var(--blue-main);color:#fff;transform:translateY(-2px)}

@media(max-width:991px){
.site-header .header-wrap{min-height:75px}  
.site-header .header-right{gap:12px}
.site-header .header-cta .cta-title{display:none}
.site-header .header-cta .cta-box{padding:9px 14px;font-size:12px}
.site-header .social-icons a{width:34px;height:34px;font-size:13px}
}

@media(max-width:767px){
.site-header .nav-logo img{width:85%;transition:.35s} 
.site-header .header-wrap{gap:10px;padding:12px 0}
.site-header .header-right{width:100%;flex-direction:column;display: none !important;}
.site-header .header-cta{width:100%;justify-content:center;flex-direction: column;}
.site-header .header-cta .cta-box{ text-align:center}
.site-header .social-icons{display:none}
.nav-logo{display: flex;justify-content: center;}
}
/* ── HERO ── */
.hero-section{position:relative;padding:150px 0 60px;overflow:hidden}
.hero-section::before{content:"";position:absolute;right:-150px;top:-150px;width:500px;height:500px;border-radius:50%;background:rgba(39,57,127,.04)}
.hero-section .hero-content{max-width:620px}
.hero-section .hero-tag{display:inline-block;padding:10px 18px;border-radius:50px;background:#fff;border:1px solid var(--border-color);font:600 12px var(--mono);color:var(--gold);letter-spacing:2px;margin-bottom:25px}
.hero-section .hero-content h1{font-family:var(--display);font-size: 50px;color:var(--text-color);margin-bottom:25px}
.hero-section .hero-content h1 span{ color:var(--blue-main)}
.hero-section .hero-content p{font-size:1rem;line-height:2;color:var(--text-light);margin-bottom:30px}
 
.hero-section .hero-image-wrap{position:relative;padding-left:60px}
.hero-section .hero-image{position:relative;border-radius:30px;overflow:hidden;box-shadow:0 30px 80px rgba(0,0,0,.12)}
.hero-section .hero-image img{width:100%;height:650px;object-fit:cover}

.hero-section .hero-image::before{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(11,26,44,.45),transparent)}

.hero-section .hero-floating-card{position:absolute;left:0;top:80px;background:#27397f;padding:28px;border-radius:24px;color:#fff;box-shadow:0 20px 50px rgba(39,57,127,.25)}
.hero-section .hero-floating-card h6{font-size:2rem;margin:0;font-family:var(--display)}
.hero-section .hero-floating-card span{font-size:.8rem;letter-spacing:1px;text-transform:uppercase}

.hero-section .hero-logo-card{position:absolute;right:-20px;bottom:40px;background:#fff;padding:20px;border-radius:20px;box-shadow:0 20px 50px rgba(0,0,0,.12);max-width:220px}

@media(max-width:991px){
.hero-section{padding:140px 0 80px}
.hero-section .hero-image-wrap{padding-left:0;margin-top:50px}
.hero-section .hero-image img{height:500px}
.hero-section .hero-floating-card{left:20px;top:20px}
.hero-section .hero-logo-card{right:20px}
}

@media(max-width:767px){
  .hero-section{padding:120px 0 0px}
  .hero-section .row{flex-direction: column-reverse;}
.hero-section .hero-content h1{font-size: 25px;margin-bottom: 10px;}
.hero-section .hero-image-wrap{margin-top:0px; margin-bottom: 30px;}
.hero-section .hero-image img{height:350px}
.hero-section .hero-floating-card{padding:18px}
.hero-section .hero-floating-card h6{font-size:1.5rem}
.hero-section .hero-logo-card{max-width:140px;padding:12px}
.hero-section .hero-tag{margin-bottom: 10px;}
.hero-section .hero-content p{line-height: unset;margin-bottom: 0;}
}
  

/* ── ABOUT ── */
.about-section{padding:60px 0 0px;}
.about-section h2{font-family:var(--display);font-size:50px;color:var(--text-color);margin-top:15px}
.about-section h2 span{display:block;color:var(--blue-main)}
.about-section .about-lead{font-size:1.15rem;line-height:2;color:var(--text-light);max-width:700px}

.about-section .about-panels{overflow:hidden;border-radius:28px;box-shadow:0 20px 60px rgba(0,0,0,.06)}

.about-section .about-highlight{height:100%;overflow:hidden}
.about-section .about-highlight img{width:100%;height:100%;min-height:400px;object-fit:cover;transition:.6s ease}
.about-section .about-highlight:hover img{transform:scale(1.05)}

.about-section .about-content-box{height:100%;background:var(--brand-clr-bg);padding:60px}
.about-section .about-content-box p{font-size:1rem;line-height:2;color:var(--text-light);margin-bottom:22px}
.about-section .about-content-box strong{color:var(--text-color)}

@media(max-width:991px){
  .about-section h2 { font-size: 25px; }
.about-section .about-highlight{padding:0px}
.about-section .about-content-box{padding:20px}
.about-section .about-lead{margin-top:20px}
}

@media(max-width:767px){
  .about-section .row{margin-bottom: 0 !important;}
  .about-section .about-lead{line-height: unset; font-size: 16px;}
  .about-section .about-content-box p{line-height: unset;}
}

.certification-section { padding-bottom: 60px; }
.certification-section a{position:relative;display:flex;flex-direction:column;align-items:center;text-align:center;text-decoration:none;padding: 0px 0 15px;border:1px solid #eee;border-radius:16px;background:var(--brand-color);transition:.3s}
.certification-section a img { width: 100%; height: 160px; object-fit: cover; margin-bottom: 12px; object-position: top; border-radius:16px 16px 0 0;}
.certification-section a p{margin:0;color:var(--text-color-white);font-size:16px;font-family: 'Merriweather', sans-serif;font-size: 12px;}
.certification-section a p strong{font-size: 16px;}
.certification-section a span{position:absolute;left:50%;bottom:15px;transform:translateX(-50%);background:linear-gradient(135deg,#0d6efd,#00bcd4);color:#fff;padding:8px 18px;border-radius:30px;font-size:14px;font-weight:600;opacity:0;visibility:hidden;transition:.3s;white-space:nowrap}
.certification-section a:hover{box-shadow:0 10px 25px rgba(0,0,0,.08);transform:translateY(-4px)}
.certification-section a:hover span{opacity:1;visibility:visible;bottom:20px}
@media(max-width:991.98px){.certification-section a img{max-height:200px}.certification-section a span{position:static;transform:none;display:inline-block;opacity:1;visibility:visible;margin-top:12px}}


/* ── WHY ── */
.why-section{padding:60px 0;background:var(--brand-clr-bg)}
.why-section .why-heading{max-width:700px;margin:0 auto 60px}
.why-section .why-heading h2{font-family:var(--display);font-size:50px; color:var(--text-color);margin:15px 0}
.why-section .why-heading p{color:var(--text-light);margin:0}

.why-section .why-grid{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--border-color);border-bottom:1px solid var(--border-color)}
.why-section .why-item{padding:40px 25px;position:relative}
.why-section .why-item:not(:last-child){border-right:1px solid var(--border-color)}
.why-section .why-item span{display:block;font:700 13px var(--mono);color:var(--gold);margin-bottom:20px}
.why-section .why-item h4{font-size:1rem;color:var(--text-color);margin-bottom:12px}
.why-section .why-item p{font-size:.9rem;line-height:1.8;color:var(--text-light);margin:0}
.why-section .why-item:hover{background:#fff}

.why-section .vision-mission-wrap{display:grid;grid-template-columns:1fr 1fr;gap:30px;margin-top:50px}
.why-section .vm-box{padding:20px;background:#fff;border-radius:20px;border:1px solid var(--border-color)}
.why-section .vm-box small{display:block;font:700 12px var(--mono);letter-spacing:2px;color:var(--gold);margin-bottom:15px}
.why-section .vm-box p{margin:0;line-height:1.9;color:var(--text-light)}

@media(max-width:991px){
.why-section .why-grid{grid-template-columns:1fr 1fr}
.why-section .why-item:nth-child(2){border-right:none}
.why-section .vision-mission-wrap{grid-template-columns:1fr}
}

@media(max-width:767px){
.why-section .why-heading h2{font-size: 25px;}
.why-section{padding:60px 0}
.why-section .why-grid{grid-template-columns:1fr}
.why-section .why-item{border-right:none!important;border-bottom:1px solid var(--border-color)}
.why-section .why-heading{margin-bottom: 20px;}
.why-section .why-item { padding: 25px 25px; position: relative; }
.why-section .vision-mission-wrap{margin-top: 25px;}
}

/* ── FACILITY VIDEO ── */ 
.video-section{padding:0;background:var(--brand-clr-bg)}

.video-section .video-wrapper{position:relative;height:700px;overflow:hidden}

.video-section .video-wrapper video{width:100%;height:100%;object-fit:cover}

.video-section .video-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(11,26,44,.88) 0%,rgba(11,26,44,.55) 45%,rgba(11,26,44,.2) 100%)}

.video-section .video-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:2;width:100%}

.video-section .video-tag{display:inline-block;padding:10px 18px;background:rgba(255,255,255,.12);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.15);border-radius:50px;font:600 12px var(--mono);letter-spacing:2px;text-transform:uppercase;color:var(--yellow-clr);margin-bottom:25px}

.video-section h2{font-family:var(--display);font-size:50px;line-height:.9;color:#fff;margin-bottom:25px}

.video-section p{max-width:650px;font-size:1.05rem;line-height:2;color:rgba(255,255,255,.85);margin:0}

@media(max-width:991px){
.video-section .video-wrapper{height:550px}
.video-section h2{font-size:4rem}
}

@media(max-width:767px){
.video-section .video-wrapper{height:450px}
.video-section h2{font-size:25px}
.video-section p{font-size:.95rem;line-height:1.8}
}

/* ── CERTS ── */
.certs-section{padding:60px 0 0;background:var(--brand-clr-bg)}
.certs-section h2{font-family:var(--display);font-size:50px;line-height:.9;color:var(--text-color)}
.certs-section .cert-card{display:block;height:100%;background:#fff;border:1px solid var(--border-color);border-radius:24px;text-decoration:none;overflow:hidden;transition:.35s}
.certs-section .cert-card:hover{transform:translateY(-8px);box-shadow:0 20px 50px rgba(0,0,0,.08);border-color:var(--blue-main)}

.certs-section .cert-card .cert-img-wrap{position:relative;height:260px;background:#fff;padding:25px}
.certs-section .cert-card .cert-img-wrap img{width:100%;height:100%;object-fit:contain;transition:.5s}
.certs-section .cert-card:hover .cert-img-wrap img{transform:scale(1.05)}

.certs-section .cert-card .cert-overlay{position:absolute;inset:0;background:rgba(39,57,127,.85);display:flex;align-items:center;justify-content:center;opacity:0;transition:.3s}
.certs-section .cert-card:hover .cert-overlay{opacity:1}
.certs-section .cert-card .cert-overlay span{padding:12px 18px;background:#fff;border-radius:50px;font:600 12px var(--mono);color:var(--blue-main)}

.certs-section .cert-card .cert-info{padding:20px;border-top:1px solid var(--border-color)}
.certs-section .cert-card .cert-info h5{font-size:1.2rem;color:var(--text-color);margin-bottom:5px}
.certs-section .cert-card .cert-info p{margin:0;font-size:.8rem;color:var(--text-light)}

.certs-section .cert-cta-bar{margin-top:0px;background:var(--blue-main);border-radius:30px;overflow:hidden;display:grid;grid-template-columns:1fr 320px;align-items:center}
.certs-section .cert-cta-bar .bar-text{padding:60px}
.certs-section .cert-cta-bar .bar-text h3{font-family:var(--display);font-size:3rem;line-height:.9;color:#fff;margin-bottom:15px}
.certs-section .cert-cta-bar .bar-text p{font-size:1rem;color:rgba(255,255,255,.75);margin-bottom:25px}

.certs-section .cert-cta-bar .cta-pills-col{display:flex;flex-wrap:wrap;gap:12px}
.certs-section .cert-cta-bar .cta-pill{display:flex;align-items:center;padding:12px 22px;background:#fff;border-radius:50px;text-decoration:none}
.certs-section .cert-cta-bar .cta-no{font:600 14px var(--mono);color:var(--blue-main)}

.certs-section .cert-cta-bar .bar-img-wrap{height:100%}
.certs-section .cert-cta-bar .bar-img-wrap img{width:100%;height:100%;object-fit:cover}

@media(max-width:991px){
.certs-section h2{font-size: 25px;}
.certs-section .gold-line { margin: 0 auto !important;}
.certs-section .cert-cta-bar{grid-template-columns:1fr}
.certs-section .cert-cta-bar .bar-text{padding:40px}
.certs-section .cert-cta-bar .bar-img-wrap{height:280px}
.certs-section .cert-card .cert-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: .5s;object-position: top;}
.certs-section .cert-card .cert-info { padding: 40px 20px 20px; border-top: 1px solid var(--border-color); }
.certs-section .cert-card .cert-overlay span { padding: 12px 25px; background: var(--blue-main); border-radius: 50px; font: 600 12px var(--mono); color: #ffffff; position: relative;margin: 10px 0px; }
.certs-section .cert-card .cert-overlay { position: relative; inset: unset; opacity: 1; background-color: transparent;}
}

@media(max-width:767px){
  .certs-section{padding:60px 0}
  .certs-section .cert-card .cert-img-wrap{height:180px}
  .certs-section .cert-cta-bar .bar-text{padding:40px 20px}
  .certs-section .cert-cta-bar .bar-text h3{font-size:2rem}
  .certs-section .cert-cta-bar .cta-pills-col { display: flex; justify-content: space-between;gap: unset; }
  .cta-pill .cta-pill-num { padding: 12px 0px !important; }
  .certs-section .cert-cta-bar .cta-pill { padding: 5px 18px; }
}

/* ── CLIENTS ── */
.clients-section{background:var(--brand-clr-bg);padding:60px 0}
.clients-section h2{font-size:50px;color:var(--text-color)}
.clients-section .clients-sub{color:var(--text-light);font-size:0.88rem;margin-top:6px}
.clients-section .segments-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border-color);border:1px solid var(--border-color);border-radius:8px;overflow:hidden;margin-top:3rem}
.clients-section .segment{background:#fff;padding:28px 25px;transition:background 0.2s}
.clients-section .segment:hover{background:var(--light-gray)}
.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(--gold);font-size:0.9rem}
.clients-section .segment .seg-title{font-size:0.95rem;font-weight:700;color:var(--text-color);line-height:1.2}
.clients-section .segment .seg-sub{font-size:0.65rem;color:var(--text-light);letter-spacing:0.1em;text-transform:uppercase;margin-top:2px;font-family:var(--mono)}
.clients-section .segment .divider{height:1px;background:var(--border-color);margin-bottom:16px}
.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 var(--border-color)}
.clients-section .segment .client-row:last-child{border-bottom:none}
.clients-section .segment .client-dot{width:4px;height:4px;background:var(--gold);border-radius:50%;flex-shrink:0}
.clients-section .segment .client-name{font-size:0.8rem;color:var(--text-color);font-weight:500}
.clients-section .segment .more-tag{font-size:0.68rem;color:var(--text-light);margin-top:8px;font-style:italic;padding-left:13px;font-family:var(--mono)}

/* Marquee (unused but kept for future) */
.clients-section .marquee-row{overflow:hidden;margin-top:2.4rem;border-top:1px solid var(--border-color);border-bottom:1px solid var(--border-color);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:var(--display);font-size:0.9rem;color:var(--text-light);letter-spacing:0.1em;white-space:nowrap}

/* ── PRODUCTS ── */
.products-section{padding:60px 0;background:var(--brand-clr-bg)}

.products-section .section-header{max-width:750px;margin:auto}
.products-section .section-header h2{font-family:var(--display);font-size:50px;color:var(--text-color);margin-bottom:15px}
.products-section .section-header p{font-size:1rem;color:var(--text-light);line-height:1.8}

.products-section .product-card{height:100%;background:#fff;border-radius:24px;overflow:hidden;transition:.4s;border:1px solid var(--border-color)}
.products-section .product-card:hover{transform:translateY(-8px);box-shadow:0 25px 60px rgba(0,0,0,.08)}

.products-section .product-card .prod-img-wrap{position:relative;height:280px;overflow:hidden}
.products-section .product-card .prod-img-wrap img{width:100%;height:100%;object-fit:cover;transition:.6s}
.products-section .product-card:hover .prod-img-wrap img{transform:scale(1.08)}

.products-section .product-card .prod-img-wrap::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(11,26,44,.85),rgba(11,26,44,.1))}

.products-section .product-card .prod-img-wrap .prod-num-badge{position:absolute;top:20px;right:20px;width:50px;height:50px;border-radius:50%;background:#fff;color:var(--blue-main);display:flex;align-items:center;justify-content:center;font:700 14px var(--mono);z-index:2}

.products-section .product-card h4 { position: absolute; top: -34px; /* bottom: 20px; */ left: 15px; z-index: 2; color: #ffffff; font-size: 18px; line-height: 1.2; margin: 0; }

.products-section .product-card .prod-body{padding:20px;position: relative;}
.products-section .product-card .prod-body p{font-size:.92rem;line-height:1.9;color:var(--text-light);margin-bottom:20px}

.products-section .product-card .read-more{display:inline-flex;align-items:center;gap:8px;text-decoration:none;color:var(--blue-main);font:700 12px var(--mono);letter-spacing:1px;text-transform:uppercase}
.products-section .product-card .read-more:hover{color:var(--gold);gap:14px}

@media(max-width:991px){
.products-section .section-header h2 { font-size: 25px; }
.products-section .product-card .prod-img-wrap{height:240px}
}

@media(max-width:767px){
  .clients-section{padding-top: 0 !important;}
  .products-section .row{margin-bottom: 10px !important;}
.products-section .product-card .prod-img-wrap{height:220px}
.products-section .product-card h4{font-size:1.3rem}
.products-section .product-card .prod-body{padding:22px}
.products-section .product-card .prod-body p{line-height: unset;}
}

/* ── FOOTER ── */
.site-footer{background:var(--bg-color);position:relative;overflow:hidden}
.site-footer::before{content:"";position:absolute;top:-200px;right:-200px;width:500px;height:500px;border-radius:50%;background:rgba(253,231,115,.03)}

.site-footer .footer-top{padding:90px 0 60px;position:relative;z-index:2}

.site-footer .footer-logo{background:#fff;padding:25px;border-radius:20px;display:inline-block;margin-bottom:25px}
.site-footer .footer-logo img{max-width:260px}

.site-footer .footer-desc{font-size:.95rem;line-height:1.9;color:rgba(255,255,255,.65);max-width:420px;margin-bottom:30px}

.site-footer .footer-col-title{font:700 1.2rem var(--display);color:#fff;margin-bottom:25px;position:relative;padding-bottom:12px}
.site-footer .footer-col-title::after{content:"";position:absolute;left:0;bottom:0;width:50px;height:2px;background:var(--gold)}

.site-footer .footer-contact-item{display:flex;gap:15px;align-items:flex-start;margin-bottom:20px}
.site-footer .footer-contact-item i{color:var(--yellow-clr);font-size:1rem;margin-top:5px}
.site-footer .footer-contact-item span{font-size:.9rem;line-height:1.8;color:rgba(255,255,255,.65)}
.site-footer .footer-contact-item a{color:#fff;text-decoration:none;transition:.3s}
.site-footer .footer-contact-item a:hover{color:var(--yellow-clr)}

.site-footer .footer-social-row{display:flex;gap:12px}
.site-footer .footer-social-row a{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);color:#fff;text-decoration:none;transition:.35s}
.site-footer .footer-social-row a:hover{background:var(--gold);border-color:var(--gold);transform:translateY(-4px)}

.site-footer ul{list-style:none;padding:0;margin:0}
.site-footer ul li{padding:10px 0;border-bottom:1px solid rgba(255,255,255,.06)}
.site-footer ul li:last-child{border-bottom:none}

.site-footer ul li a{color:rgba(255,255,255,.65)!important;font-size:.9rem!important;text-decoration:none!important;transition:.3s!important;display:flex;align-items:center}
.site-footer ul li a:hover{color:var(--yellow-clr)!important;padding-left:8px}
.site-footer ul li i{color:var(--gold)!important}

.site-footer .footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:22px 0}
.site-footer .footer-bottom .copyright,.site-footer .footer-bottom .designer{font-size:.85rem;color:rgba(255,255,255,.45)}
.site-footer .footer-bottom .designer a{color:var(--yellow-clr);text-decoration:none}

@media(max-width:991px){
.site-footer .footer-top{padding:70px 0 40px}
.site-footer .footer-col-title{margin-top:35px}
}

@media(max-width:767px){
  .clients-section h2{font-size:25px;}
  .clients-section .segments-grid { grid-template-columns: repeat(1, 1fr);margin-top: 0; }
.site-footer .footer-logo img{max-width:100%}
.site-footer .footer-bottom .container{text-align:center;justify-content:center!important}
.site-footer .footer-logo{display: none !important;}
}

/* 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)}

.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:#27397f;color:#fff;font-size:12px;font-weight:600;border-radius:12px;box-shadow:0 8px 20px rgba(0,0,0,.18);z-index:9999}
.mobile-call-strip a{color:#fff;text-decoration:none;white-space:nowrap}
.mobile-call-strip span{color:#fff}
@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:var(--blue-main);color:var(--text-color-white);font-size:18px;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 12px rgba(0,0,0,.2);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)}
@media(max-width:768px){#backToTop{width:38px;height:38px;font-size:16px;right:15px;bottom:60px}}

