.contact-box{
  background:#fff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  max-width:500px;
  margin:40px auto;
}

.contact-box h3{
  margin-bottom:20px;
  color:#0B4C8C;
}

.contact-item{
  display:flex;
  flex-direction:column;
  margin-bottom:15px;
}

.contact-item span{
  font-size:13px;
  color:#6b7280;
}

.contact-item a{
  text-decoration:none;
  color:#2BB673;
  font-weight:600;
  transition:.3s;
}

.contact-item a:hover{
  color:#0B4C8C;
}/* ================= RESET ================= */

*{
box-sizing:border-box;
margin:0;
padding:0;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial, sans-serif;
background:#F7FBFF;
overflow-x:hidden;
color:#222;
padding-bottom:120px;
}

/* ================= NAV ================= */

.topnav{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 20px;
background:#fff;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.nav-left{
display:flex;
align-items:center;
gap:12px;
}
html {
  scroll-behavior: smooth;
}

.menu{
font-size:24px;
cursor:pointer;
color:#0B4C8C;
}

.nav-logo{
height:42px;
}

.nav-right a{
margin:0 12px;
text-decoration:none;
color:#0B4C8C;
font-weight:bold;
}

.hero{
  height:100vh;
  display:flex;
  align-items:center;
  padding:0 80px;
  color:#fff;

  background:
  linear-gradient(rgba(10,40,70,.85), rgba(10,40,70,.9)),
  url("images/hero.jpg") center/cover no-repeat;
}
.products-hero {
  padding: 40px 20px;   /* reduce from large value */
  text-align: center;
  background: #d9ebe6;  /* your light green */
  border-radius: 15px;
  margin: 20px;
}
/* CONTENT */
.hero-content{
  max-width:650px;
}

/* BADGE */
.badge{
  display:inline-block;
  background:rgba(43,182,115,.15);
  color:#2BB673;
  padding:8px 16px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:20px;
}

/* TITLE */
.hero h1{
  font-size:56px;
  line-height:1.1;
  font-weight:800;
  margin-bottom:15px;
}

/* GRADIENT TEXT */
.hero h1 span{
  background:linear-gradient(90deg,#2BB673,#00E0FF);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* TEXT */
.hero p{
  font-size:18px;
  opacity:.9;
  margin-bottom:30px;
  line-height:1.6;
}

/* BUTTONS */
.hero-buttons{
  display:flex;
  gap:15px;
  margin-bottom:30px;
}

.btn{
  padding:14px 26px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}

.primary{
  background:#2BB673;
  color:#fff;
}

.secondary{
  background:#fff;
  color:#0B4C8C;
}

/* STATS */
.hero-stats{
  display:flex;
  gap:40px;
}

.hero-stats div{
  font-size:14px;
}

.hero-stats strong{
  display:block;
  font-size:18px;
}

/* MOBILE */
@media(max-width:768px){
  .hero{
    padding:100px 20px;
    height:auto;
  }

  .hero h1{
    font-size:34px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-stats{
    flex-direction:column;
    gap:15px;
  }
}
/* ================= SIDEBAR ================= */

#sidebar{
position:fixed;
top:0;
left:0;
width:0;
height:100vh;
background:#fff;
overflow:hidden;
transition:.3s;
z-index:2000;
padding-top:70px;
text-align:center;
}

#sidebar a{
display:block;
padding:18px;
border-bottom:1px solid #eee;
color:#0B4C8C;
font-weight:bold;
text-decoration:none;
}

.search{
width:85%;
margin:20px auto;
padding:12px;
border-radius:10px;
border:1px solid #ddd;
}

/* ================= HERO ================= */

header{
display:flex;
flex-direction:column;
align-items:flex-start;
justify-content:center;
text-align:left;
padding:120px 60px;
min-height:80vh;

background:
linear-gradient(rgba(10,40,70,.75), rgba(10,40,70,.75)),
url("images/hero.jpg") center/cover no-repeat;

color:#fff;
}
.hero-logo{
width:180px;
margin-bottom:25px;
filter:drop-shadow(0 6px 12px rgba(0,0,0,.35));
}

header h1{
font-size:34px;
margin-bottom:15px;
}
header h1,
header p,
.hero-buttons{
max-width:600px;
}
header p{
max-width:700px;
margin-bottom:35px;
opacity:.95;
}

/* ================= HERO BUTTONS ================= */

.hero-buttons{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.btn, button{
padding:14px 28px;
border:none;
border-radius:50px;
background:#2BB673;
color:#fff;
font-weight:bold;
cursor:pointer;
text-decoration:none;
box-shadow:0 6px 14px rgba(0,0,0,.18);
transition:.25s ease;
}

.btn:hover, button:hover{
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,.25);
}

/* ================= SECTIONS ================= */

.section{
padding:70px 20px;
text-align:center;
}

.section h2{
font-size:28px;
margin-bottom:40px;
color:#0B4C8C;
}

/* ================= PRODUCTS ================= */

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.product{
background:#fff;
padding:25px;
border-radius:16px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.product img{
width:100%;
height:200px;
object-fit:cover;
border-radius:12px;
}

/* ================= ABOUT ================= */

.light{
background:#E8F6F0;
}

.about-text{
max-width:800px;
margin:0 auto 40px;
line-height:1.7;
}

.about-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.about-box{
background:#fff;
padding:25px;
border-radius:14px;
box-shadow:0 6px 18px rgba(0,0,0,.08);
text-align:left;
}

/* ================= SOLUTIONS ================= */

.solutions{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.solution{
background:#fff;
padding:25px;
border-radius:16px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
text-align:left;
}

/* ================= CERTIFICATIONS ================= */

.certs{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
}

.certs img{
height:70px;
}

/* ================= FORM ================= */

form{
max-width:500px;
margin:auto;
}

.form{
width:100%;
padding:14px;
margin:12px 0;
border-radius:10px;
border:1px solid #ddd;
}

/* ================= FOOTER ================= */

footer{
background:#0B4C8C;
color:#fff;
padding:40px 20px;
text-align:center;
}

/* ================= FLOATING BUTTONS ================= */

.floating{
position:fixed;
bottom:80px;
right:20px;
display:flex;
flex-direction:column;
gap:14px;
z-index:9999;
}

.float{
width:58px;
height:58px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:#fff;
text-decoration:none;
background:rgba(255,255,255,.25);
backdrop-filter:blur(14px);
box-shadow:0 8px 25px rgba(0,0,0,.25);
}

.call{
background:rgba(11,76,140,.75);
animation:callPulse 2s infinite;
}

.whatsapp{
background:rgba(37,211,102,.75);
animation:waPulse 2s infinite;
}

@keyframes callPulse{
0%{box-shadow:0 0 0 0 rgba(11,76,140,.6)}
70%{box-shadow:0 0 0 18px rgba(11,76,140,0)}
100%{box-shadow:0 0 0 0 rgba(11,76,140,0)}
}

@keyframes waPulse{
0%{box-shadow:0 0 0 0 rgba(37,211,102,.6)}
70%{box-shadow:0 0 0 18px rgba(37,211,102,0)}
100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

.nav-right{
display:none;
}

header h1{
font-size:26px;
}

.hero-buttons{
flex-direction:column;
}

.btn{
width:90%;
max-width:320px;
}
}

@media(min-width:992px){

header{
padding:110px 20px;
}

header h1{
font-size:40px;
}

header p{
font-size:20px;
}
}

/* ================= TABLET FIX (FINAL OVERRIDE) ================= */

/* Tablet + Fold devices */
@media (min-width:641px) and (max-width:1024px){

/* Hero buttons side by side */
.hero-buttons{
display:flex !important;
flex-direction:row !important;
justify-content:center !important;
gap:20px !important;
}

.hero-buttons .btn{
width:auto !important;
min-width:200px !important;
max-width:240px !important;
}

/* Products 2 columns */
.products{
grid-template-columns:repeat(2,1fr) !important;
}

/* About + Solutions 2 columns */
.about-grid,
.solutions{
grid-template-columns:repeat(2,1fr) !important;
}

/* Header spacing */
header{
padding:80px 30px !important;
}

/* Logo slightly larger */
.hero-logo{
width:200px !important;
}

/* Text sizing */
header h1{
font-size:34px !important;
}

header p{
font-size:18px !important;
}

}

#reviewList div{
box-shadow:0 6px 15px rgba(0,0,0,.1);
}

/* GOOGLE BUSINESS RATING */

.google-rating{
text-align:center;
font-size:22px;
font-weight:bold;
color:#F4B400;
margin-bottom:25px;
}

.google-rating span{
display:block;
font-size:14px;
color:#555;
margin-top:4px;
}

/* ===== REVIEW CARDS ===== */

.reviews{
max-width:800px;
margin:auto;
display:grid;
gap:20px;
}

.review-card{
background:white;
padding:18px;
border-radius:12px;
box-shadow:0 6px 16px rgba(0,0,0,.08);
}

.review-head{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:8px;
}

.review-name{
font-weight:bold;
color:#0B4C8C;
}

.review-stars{
color:#f4b400;
font-size:18px;
}

.review-card p{
margin:0;
line-height:1.6;
color:#333;
}

/* Tablet */

@media(min-width:600px){
.reviews{
grid-template-columns:repeat(2,1fr);
}
}

/* Desktop */

@media(min-width:992px){
.reviews{
grid-template-columns:repeat(2,1fr);
}
}

/* ===== WHY CHOOSE SECTION FIX ===== */

#about ul{
list-style:none;
padding:0;
margin:25px auto;
max-width:700px;
}

#about ul li{
background:white;
margin:12px 0;
padding:14px 20px;
border-radius:12px;
box-shadow:0 6px 15px rgba(0,0,0,.08);
font-weight:600;
display:flex;
align-items:center;
gap:10px;
}

/* remove ugly bullets */
#about ul li::marker{
display:none;
}

/* Center heading */
#about h3{
text-align:center;
}

/* Mobile spacing */
@media(max-width:600px){
#about ul li{
font-size:15px;
}
}

/* WHY CHOOSE GRID */

.why-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:14px;
max-width:700px;
margin:25px auto;
}

.why-grid div{
background:white;
padding:14px 18px;
border-radius:10px;
font-weight:600;
box-shadow:0 4px 12px rgba(0,0,0,.08);
}

/* Mobile */

@media(max-width:600px){
.why-grid{
grid-template-columns:1fr;
}
}

#contact .btn{
margin-bottom: 30px;
}

/* Core solutions spacing fix */

.solutions {
display:grid;
grid-template-columns:1fr;
gap:20px;
}

.solution,
.about-box {
margin-bottom:15px;
}

/* Prevent floating buttons from covering content */

.section {
padding-bottom:80px;
}

/* Review cards spacing */

.review-card {
margin-bottom:15px;
}

/* Floating buttons higher z-index but away from cards */

.floating {
bottom:20px;
right:15px;
z-index:999;
}

/* Better mobile spacing */

@media(max-width:768px){
.about-box,
.solution,
.review-card{
margin:12px;
}
}

.product{
display:flex;
flex-direction:column;
justify-content:space-between;
}

.product img{
background:#f5f5f5;
}

/* Button always bottom */
.product button{
margin-top:auto;
}

/* Smooth entrance */
.product{
opacity:0;
transform:translateY(15px);
animation:fadeUp .6s ease forwards;
}

@keyframes fadeUp{
to{
opacity:1;
transform:none;
}
}
.reveal{
opacity:0;
transform:translateY(40px);
transition:all .7s ease;
}

.reveal.active{
opacity:1;
transform:none;
}

.product,.solution,.review-card{
transition:.3s ease;
}

.product:hover,.solution:hover,.review-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.btn{
animation:pulse 2s infinite;
}

@keyframes pulse{
0%{box-shadow:0 0 0 0 rgba(43,182,115,.4);}
70%{box-shadow:0 0 0 12px rgba(43,182,115,0);}
100%{box-shadow:0 0 0 0 rgba(43,182,115,0);}
}
.reveal{
opacity:0;
transform:translateY(40px);
transition:all .7s ease;
}

.reveal.active{
opacity:1;
transform:none;
}

.product,.solution,.review-card{
transition:.3s ease;
}

.product:hover,.solution:hover,.review-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.btn{
animation:pulse 2s infinite;
}

@keyframes pulse{
0%{box-shadow:0 0 0 0 rgba(43,182,115,.4);}
70%{box-shadow:0 0 0 12px rgba(43,182,115,0);}
100%{box-shadow:0 0 0 0 rgba(43,182,115,0);}
}
.floating{
position:fixed;
right:15px;
bottom:20px;
z-index:999;
display:flex;
flex-direction:column;
gap:12px;
}

.float{
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
color:#fff;
text-decoration:none;
box-shadow:0 6px 15px rgba(0,0,0,.3);
}

.call{
background:#0B4C8C;
}

.whatsapp{
background:#25D366;
}

.footer-links{
margin-top:20px;
font-size:14px;
}

.footer-links a{
color:#fff;
text-decoration:none;
margin:0 6px;
}

.footer-links a:hover{
text-decoration:underline;
}

/* ===== LEGAL PAGES LAYOUT FIX ===== */

.section{
max-width:900px;
margin:40px auto;
padding:30px 20px;
text-align:left;
line-height:1.8;
}

.section h2{
text-align:center;
margin-bottom:30px;
}

.section h3{
margin-top:30px;
margin-bottom:12px;
color:#0B4C8C;
}

.section p{
margin-bottom:15px;
font-size:16px;
}

.section ul{
margin:15px 0 25px 25px;
}

.section li{
margin-bottom:8px;
}

/* Mobile breathing room */
@media(max-width:768px){
.section{
padding:25px 18px;
}
}

/* Footer spacing fix on legal pages */
footer{
margin-top:60px;
}

/* Center contact on legal pages */
.section .contact-block{
text-align:center;
margin-top:35px;
font-weight:600;
}

.footer-band{
background:#fff;
height:42px;
width:100%;
margin:0;
padding:0;
display:flex;
justify-content:center;
align-items:center;
overflow:hidden;
}

.footer-band img{
height:26px;
display:block;
}

.footer-band img{
height:40px;
}

.footer-links{
margin-bottom:10px;
}

footer{
padding-top:10px !important;
}

/* ===== HOMEPAGE FIX ===== */

header{
margin-top:0 !important;
padding-top:80px !important;
}

.section:first-of-type{
margin-top:0 !important;
}

body{
overflow-x:hidden;
}

/* Prevent footer band from pushing content */

.footer-band{
position:relative;
margin-top:50px;
}

.footer-band{
background:#fff;
height:50px;                 /* hard lock height */
margin:0;
padding:0;
display:flex;
justify-content:center;
align-items:center;
}
.footer-band img{
height:32px;
}
footer{
padding-top:15px !important;
}

footer *{
margin-top:0;
}
.footer-band img{
height:70px;
}
[data-animate] {
opacity: 0;
transform: translateY(15px);
transition: all .7s ease;
}
[data-animate].visible {
opacity: 1;
transform: translateY(0);
}

[data-animate] {
opacity: 0;
transform: translateY(15px);
transition: all .7s ease;
}
[data-animate].visible {
opacity: 1;
transform: translateY(0);
}

.btn {
border-radius: 30px;
padding: 14px 28px;
transition: background .3s, transform .2s;
}

.btn:hover {
background:#2BB673;
transform: translateY(-3px);
}
.section{
padding:80px 16px;
}

/* SCROLL REVEAL BASE */
.reveal{
opacity:0;
transform:translateY(40px);
transition:all .8s cubic-bezier(.22,.61,.36,1);
}

/* ACTIVE STATE */
.reveal.active{
opacity:1;
transform:translateY(0);
}

/* Slight stagger option /
.reveal.delay-1{ transition-delay:.1s; }
.reveal.delay-2{ transition-delay:.2s; }
.reveal.delay-3{ transition-delay:.3s; }
.reveal.delay-4{ transition-delay:.4s; }
.reveal.delay-5{ transition-delay:.5s; }
/ Center mission heading */
.mission-title{
text-align:center;
font-size:22px;
font-weight:700;
margin-bottom:12px;
}
.site-footer{
background:#0e2a47;
color:#fff;
padding:50px 20px 20px;
font-family:system-ui;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.site-footer h3{
margin-bottom:10px;
color:#2bb673;
}

.site-footer h4{
margin-bottom:10px;
}

.site-footer a{
display:block;
color:#ddd;
margin:6px 0;
text-decoration:none;
}

.site-footer a:hover{
color:#2bb673;
}

.footer-bottom{
text-align:center;
border-top:1px solid rgba(255,255,255,.1);
margin-top:30px;
padding-top:15px;
font-size:13px;
color:#aaa;
}#contactForm{
text-align:center;
}

#contactForm .btn{
display:inline-block;
margin:20px auto 0;
}#reviewForm .btn{
max-width:260px;
width:100%;
padding:14px 20px;
border-radius:10px;
}
.footer-brand{
display:flex;
align-items:center;
gap:10px;
margin-bottom:10px;
}

.footer-mini-logo{
height:32px;
width:auto;
}
.footer-brand h3{
margin:0;
font-size:18px;
}
footer{
background:#0c2b4a;
color:#fff;
padding:60px 20px 30px;
}

.footer-grid{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns: repeat(3,1fr);
gap:40px;
}

.footer-col a{
display:block;
color:#fff;
margin:6px 0;
text-decoration:none;
}

.footer-col h4{
margin-bottom:10px;
}

.footer-brand{
display:flex;
align-items:center;
gap:10px;
}

.footer-mini-logo{
height:34px;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.2);
margin-top:40px;
padding-top:20px;
text-align:centert;
font-size:13px;
opacity:.8;
}
/* ===== ENTERPRISE FOOTER FINAL ===== */

.enterprise-footer{
background:#0b2a4a;
color:#fff;
padding:50px 20px 20px;
}

.footer-inner{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.footer-col{
text-align:left;
}

.footer-logo{
height:42px;
margin-bottom:12px;
}

.footer-col h4{
color:#2BB673;
margin-bottom:12px;
}

.footer-col a{
display:block;
color:#ddd;
margin:6px 0;
text-decoration:none;
}

.footer-col a:hover{
color:#2BB673;
}

/* Social icons */

.social-icons{
display:flex;
gap:14px;
margin-top:12px;
}

.social-icons img{
height:26px;
width:auto;
}

/* Bottom copyright */

.footer-copy{
border-top:1px solid rgba(255,255,255,.2);

padding-top:15px;
font-size:13px;
text-align:center;
opacity:.75;
}

/* Mobile */

@media(max-width:768px){

.footer-inner{
grid-template-columns:1fr;
text-align:center;
}

.footer-col{
text-align:center;
}

.social-icons{
justify-content:center;
}

}

/* SOCIAL FIX */

.social-icons{
display:flex !important;
gap:15px;
margin-top:15px;
}

.social-icons img{
height:28px !important;
width:auto !important;
background:none !important;
padding:0 !important;
border-radius:0 !important;
}

/* COPYRIGHT */

.footer-copy{
margin-top:40px;
padding-top:15px;
border-top:1px solid rgba(255,255,255,.2);
text-align:center;
font-size:13px;
opacity:.7;
}

/* MOBILE STACK */

@media(max-width:768px){
.footer@media(max-width:768px){
header{
padding:80px 20px;
align-items:center;
text-align:center;
}

header h1,
header p{
max-width:100%;
}
}.enterprise-footer{
background:#0b2a4a;
color:#fff;
padding:50px 20px 25px;
}

.footer-inner{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
align-items:flex-start;
}

.footer-logo{
height:45px;
margin-bottom:10px;
}

.footer-col h4{
color:#2bb673;
margin-bottom:12px;
}

.footer-col a{
display:block;
color:white;
margin:6px 0;
text-decoration:none;
}

.footer-col a:hover{
color:#2bb673;
}

.social-icons{
display:flex;
gap:14px;
margin-top:12px;
}

.social-icons img{
height:26px;
width:auto;
background:none;
padding:0;
border-radius:0;
}

.footer-copy{
margin-top:30px;
padding-top:15px;
border-top:1px solid rgba(255,255,255,.2);
font-size:13px;
display:flex;
justify-content:space-between;
opacity:.7;
}

/* MOBILE */

@media(max-width:768px){
.footer-inner{
grid-template-columns:1fr;
text-align:center;
}

.social-icons{
justify-content:center;
}

.footer-copy{
flex-direction:column;
gap:6px;
text-align:center;
}
}
/* ===== CLEAN ENTERPRISE FOOTER ===== */


.footer-col h4{
color:#2BB673;
margin-bottom:15px;
}

.footer-col a{
display:block;
color:#fff;
margin-bottom:8px;
text-decoration:none;
opacity:.9;
}

.footer-col a:hover{
color:#2BB673;
}

.footer-logo{
height:45px;
margin-bottom:12px;
}

.footer-company{
margin:5px 0 12px;
font-size:18px;
}

.social-icons{
display:flex;
gap:18px;
margin-top:15px;
}

.social-icons img{
height:26px;
filter:brightness(0) invert(1);
transition:.3s ease;
}

.social-icons img:hover{
transform:translateY(-4px);
}

.footer-copy{
border-top:1px solid rgba(255,255,255,.2);
margin-top:40px;
padding-top:20px;
text-align:center;
font-size:13px;
opacity:.7;
}

/* Mobile */
@media(max-width:768px){
.footer-inner{
grid-template-columns:1fr;
text-align:center;
}

.social-icons{
justify-content:center;
}

/* Mobile stays centered */

@media(max-width:768px){
.footer-copy{
flex-direction:column;
gap:6px;
text-align:center;
}
}
.why-list{
list-style:none;
max-width:800px;
margin:20px auto;
text-align:left;
line-height:1.8;
padding:0;
}

.why-list li{
margin:10px 0;
}
/* HERO TEXT SPACING FIX */

.hero h1{
margin-bottom: 20px;
}

.hero p{
margin-bottom: 35px;
}

.hero .hero-buttons{
margin-top: 10px;
display:flex;
gap:20px;
flex-wrap:wrap;
}

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:.3s ease;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.card ul{
margin-top:10px;
padding-left:18px;
}

.workflow{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
max-width:1000px;
margin:auto;
}

.flow-step{
background:white;
padding:20px;
border-radius:12px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

[data-animate]{
opacity:0;
transform:translateY(40px);
transition:all .8s ease;
}

[data-animate].visible{
opacity:1;
transform:none;
}

.about-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
gap:20px;
margin-top:30px;
}

[data-animate]{
opacity:0;
transform:translateY(50px) scale(.98);
transition:all .8s cubic-bezier(.22,.61,.36,1);
}

[data-animate].visible{
opacity:1;
transform:none;
}

.card{
background:#fff;
padding:22px;
border-radius:16px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:all .35s ease;
position:relative;
overflow:hidden;
}

/* GLOW EFFECT */
.card::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(120deg, transparent, rgba(43,182,115,.2), transparent);
opacity:0;
transition:.4s;
}

.card:hover::before{
opacity:1;
}

/* LIFT EFFECT */
.card:hover{
transform:translateY(-8px) scale(1.02);
box-shadow:0 18px 40px rgba(0,0,0,.18);.product-container{
display:flex;
gap:40px;
padding:40px;
max-width:1100px;
margin:auto;
}

/* LEFT */
.product-left{
flex:1;
}

.main-img{
width:100%;
height:300px;
object-fit:contain;
background:#fff;
border-radius:10px;
}

/* THUMBNAILS */
.thumbs{
display:flex;
gap:10px;
margin-top:10px;
}

.thumbs img{
width:60px;
height:60px;
border-radius:8px;
cursor:pointer;
}

/* RIGHT */
.product-right{
flex:1;
}

.product-right h1{
color:#0b2a4a;
}

.desc{
margin:15px 0;
color:#555;
}

/* BUTTON */
.btn{
display:inline-block;
margin-top:20px;
padding:12px 20px;
background:#2BB673;
color:#fff;
border-radius:8px;
text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){
.product-container{
flex-direction:column;
}
}
}

.product-container{
display:flex;
gap:40px;
padding:40px;
max-width:1100px;
margin:auto;
}

/* LEFT */
.product-left{
flex:1;
}

.main-img{
width:100%;
height:300px;
object-fit:contain;
background:#fff;
border-radius:10px;
}

/* THUMBNAILS */
.thumbs{
display:flex;
gap:10px;
margin-top:10px;
}

.thumbs img{
width:60px;
height:60px;
border-radius:8px;
cursor:pointer;
}

/* RIGHT */
.product-right{
flex:1;
}

.product-right h1{
color:#0b2a4a;
}

.desc{
margin:15px 0;
color:#555;
}

/* BUTTON */
.btn{
display:inline-block;
margin-top:20px;
padding:12px 20px;
background:#2BB673;
color:#fff;
border-radius:8px;
text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){
.product-container{
flex-direction:column;
}
}

.fiber-hero{
background:url('images/fiber-endoscopy.jpg') center/cover no-repeat;
height:90vh;
display:flex;
align-items:center;
padding:40px;
position:relative;
}

.fiber-hero::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.4); /* overlay */
}

.hero-content{
position:relative;
color:#fff;
max-width:600px;
}

.hero-content h1{
font-size:42px;
margin-bottom:10px;
}

.hero-content p{
font-size:18px;
margin-bottom:20px;
}

.btn{
background:#2BB673;
padding:12px 25px;
border-radius:30px;
color:#fff;
text-decoration:none;
}

.applications{
margin-top:10px;
}

.applications span{
display:inline-block;
background:#f1f7ff;
color:#0b4c8c;
padding:5px 12px;
border-radius:20px;
font-size:12px;
margin:4px;
transition:0.3s;
}

.applications span:hover{
background:#0b4c8c;
color:#fff;
} .highlight{
font-size:13px;
color:#2e7d32;
font-weight:500;
}
.tag{
display:inline-block;
background:#eef6ff;
color:#0b4c8c;
padding:4px 10px;
border-radius:20px;
font-size:12px;
margin:3px;
}

.product:hover .product-desc{
color:#222;
}

.product-desc{
font-size:14px;
color:#555;
margin:10px 0 15px;
line-height:1.5;
}

.container{
max-width:1200px;
margin:0 auto;
padding:20px;
}
.products{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
gap:20px;
}

.products{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
  padding:40px;
}


My full css
/* CARD ENTRY */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* IMAGE ZOOM */
.zoom-img{
  overflow:hidden;
  border-radius:12px;
}

.zoom-img img{
  width:100%;
  transition:transform 1.2s ease;
  transform:scale(1.1);
}

.reveal.active .zoom-img img{
  transform:scale(1);
}

/* HOVER (VERY LIGHT — KEEP CLEAN UI) */
.product:hover{
  transform:translateY(-5px);
  transition:.3s;
}
.product:nth-child(1){ transition-delay:.1s }
.product:nth-child(2){ transition-delay:.2s }
.product:nth-child(3){ transition-delay:.3s }
.product:nth-child(4){ transition-delay:.4s }
.product:nth-child(5){ transition-delay:.5s }
.product:nth-child(6){ transition-delay:.6s }
.product{
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.product:hover{
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}
.products{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
  gap:20px;
  margin-top:30px;
}

.about-box{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #1e3a5f;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
}

.policy-links {
  margin-bottom: 8px;
}

.policy-links a {
  margin: 0 10px;
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
}

.policy-links a:hover {
  color: #2BB673;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}
.enterprise-footer{
  width:100%;
  background:#0B2F4A;
  color:#fff;
  padding:60px 20px 20px;
}



/* TEXT */
.footer-col p{
  font-size:14px;
  color:#cbd5e1;
}

/* SOCIAL */
.social-icons{
  display:flex;
  gap:15px;
  margin-top:15px;
}
.social-icons img{
  height:26px;
  filter:brightness(0) invert(1);
}

/* COPYRIGHT */
.footer-copy{
  border-top:1px solid rgba(255,255,255,.2);
  margin-top:40px;
  padding-top:15px;
  text-align:center;
  font-size:13px;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

.hero{
  padding:100px 20px;
  height:auto;
}

.footer-inner{
  grid-template-columns:1fr;
  text-align:center;
}

.footer-col{
  text-align:center;
}

.social-icons{
  justify-content:center;
}

}

.contact-box{
  background:#fff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  max-width:500px;
  margin:40px auto;
}

.contact-box h3{
  margin-bottom:20px;
  color:#0B4C8C;
}

.contact-item{
  display:flex;
  flex-direction:column;
  margin-bottom:15px;
}

.contact-item span{
  font-size:13px;
  color:#6b7280;
}

.contact-item a{
  text-decoration:none;
  color:#2BB673;
  font-weight:600;
  transition:.3s;
}

.contact-item a:hover{
  color:#0B4C8C;
}

.partners-section {
    padding: 60px 10%;
    text-align: center;
    background: #fff;
}

.partners-section h2 {
    color: #0B5ED7;
    margin-bottom: 40px;
}

/* GRID */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* CARD */
.partner-card {
    background: #f9fbfd;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.partner-card img {
    max-width: 140px;
    filter: grayscale(100%);
}

/* HOVER */
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.partner-card:hover img {
    filter: none;
}

.logo-slider-section {
    padding: 80px 10%;
    background: #fff;
    text-align: center;
}

.logo-slider-section h2 {
    color: #0B5ED7;
    margin-bottom: 40px;
}

/* SLIDER */
.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll 25s linear infinite;
}

.logo-track img:hover {
    filter: none;
}

/* ANIMATION */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
animation: scroll 25s linear infinite;

.logo-slider {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll 25s linear infinite;
}



@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.logo-track img:nth-child(-n+3) {
    height: 85px;
}

.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    top: 0;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #f4f9fc, transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #f4f9fc, transparent);
}

/* ===================== */
/* LOGO SLIDER MAIN */
/* ===================== */

.logo-slider {
    overflow: hidden;
    width: 100%;
    margin-top: 50px;
}

/* TRACK (VERTICAL SCROLL) */
.logo-track {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: scrollY 25s linear infinite;
}

/* EACH ROW (50-50 FEEL) */
.logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LOGOS */
.logo-box img {
    max-width: 120px;
    transition: 0.3s;
}

.logo-box:hover img {
    transform: scale(1.08);
}

/* HOVER EFFECT */
.logo-row img:hover {
    filter: grayscale(0%);
    transform: scale(1.08);
}

/* ANIMATION */
@keyframes scrollY {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* ===================== */
/* MOBILE RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

    .logo-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .logo-row img {
        max-width: 80px;
        margin: 5px;
    }

}

/* ===================== */
/* OPTIONAL PREMIUM TOUCH */
/* ===================== */

/* Pause on hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* Smooth feel */
.logo-track {
    will-change: transform;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}



.logo-box img {
    max-width: 200px;
    opacity: 0.7;
    transition: 0.3s;
}

.logo-box:hover img {
    opacity: 1;
    transform: scale(1.1);
}



.logo-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s;
}

.logo-box:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}







.partners-section {
  padding: 100px 10%;
  background: #f8fbff;
  text-align: center;
}

.section-title {
  font-size: 34px;
  color: #0B5ED7;
  margin-bottom: 60px;
  font-weight: 600;
}

/* GRID */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  align-items: center;
}

/* CARD */
.partner {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  transition: 0.4s;
}

/* BIG LOGOS */
.partner.big {
  grid-column: span 2;
}

/* IMAGE */
.partner img {
  max-width: 200px;
  opacity: 0.8;
  transition: 0.4s;
}

/* HOVER */
.partner:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.partner:hover img {
  opacity: 1;
  transform: scale(1.1);
}


.partner-title {
    text-align:center;
    color:#0B5ED7;
    font-size:32px;
    margin-bottom:50px;
}

/* GRID */
.partners-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    align-items:center;
}

/* CARD */
.partner {
    background:#fff;
    padding:20px;
    border-radius:14px;
    text-align:center;
    transition:0.4s;
}

/* IMAGE */
.partner img {
    transition:200px;
    transition:0.4s;
}

/* BIG (TOP BRANDS) */
.partner.big {
    grid-column: span 2;
}

.partner.big img {
    max-width:150px;
}

/* HOVER */
.partner:hover {
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.partner:hover img {
    transform:scale(1.1);
}
/* SECTION */
.reviews-section {
    padding: 100px 10%;
    background: #f4f9fc;
}

/* HEADER */
.review-header {
    text-align: center;
    margin-bottom: 60px;
}

.review-header .tag {
    background: #e0ecff;
    color: #0B5ED7;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

.review-header h2 {
    margin-top: 10px;
    font-size: 32px;
    color: #0B2A4A;
}

/* GRID */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* CARD */
.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: 0.4s;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}

/* STARS */
.stars {
    color: #16a34a;
    margin-bottom: 10px;
}

/* TEXT */
.review-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* USER */
.review-user {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 12px;
}

/* AVATAR */
.avatar {
    width: 40px;
    height: 40px;
    background: #eaf4ff;
    color: #0B5ED7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: bold;
}

/* USER TEXT */
.review-user span {
    font-size: 12px;
    color: #777;
}

/* MOBILE */
@media(max-width:768px){
    .review-header h2 {
        font-size: 24px;
    }
}


/* SLIDER WRAPPER */
.review-slider {
    overflow: hidden;
    position: relative;
}

/* TRACK */
.review-track {
    display: flex;
    gap: 25px;
    animation: scrollX 25s linear infinite;
}

/* CARD SIZE */
.review-card {
    min-width: 300px;
    max-width: 320px;
}

/* ANIMATION */
@keyframes scrollX {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* PAUSE ON HOVER */
.review-slider:hover .review-track {
    animation-play-state: paused;
}

/* MOBILE */
@media (max-width:768px){
    .review-card {
        min-width: 250px;
    }
}
/* SLIDER WRAPPER */
.review-slider {
    overflow: hidden;
    position: relative;
}

/* TRACK */
.review-track {
    display: flex;
    gap: 25px;
    animation: scrollX 25s linear infinite;
}

/* CARD SIZE */
.review-card {
    min-width: 300px;
    max-width: 320px;
}

/* ANIMATION */
@keyframes scrollX {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* PAUSE ON HOVER */
.review-slider:hover .review-track {
    animation-play-state: paused;
}

/* MOBILE */
@media (max-width:768px){
    .review-card {
        min-width: 250px;
    }
}
