:root{
  --primary-red:#E53935;
  --primary-blue:#7A42D6;
  --dark-navy:#0F172A;
  --text:#0B1220;
  --muted:#475569;
  --bg:#FFFFFF;
  --bg-soft:#F3F4F6;
  --border:rgba(15,23,42,0.10);

  --shadow:0 20px 60px rgba(15,23,42,0.12);
  --shadow-lg:0 28px 80px rgba(15,23,42,0.18);
  --r-lg:26px;
  --r-md:18px;
  --card-bg:#FFFFFF;
  --card-bg-strong:#FFFFFF;
  --card-border:rgba(15,23,42,0.08);

}

html{
  scroll-behavior: smooth;
}

html, body{
  overflow-x: hidden;
}

body{
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: #071226;
}

/* =========================
   NAVBAR
========================= */

.navglass{
  position: fixed;
  top: 0;
  left: 0;
  
  width: 100%;
  z-index: 2000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease,border-color 0.3s ease,box-shadow 0.3s ease;
  }
.navglass.scrolled{
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.navbar{
  padding: 14px 0;
  z-index: 1000;
  
}

.navbar .container-fluid{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.navbar-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex:1;
  /* text-decoration: none;
  margin-left: 0 !important; */
}

.brand-logo{
  width: 120px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.20);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.brand-name{

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width:none;
  color:#ffffff;
  line-height: 1.1;
}

.navbar-collapse{
  justify-content: flex-end !important;
}

.navbar-nav{
  margin-left: auto;
}
.nav-right{
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-toggler{
  margin-left: 0;
  /* border:none; */
}
.navbar-toggler-icon{
  filter:invert(1);
}
.navbar .nav-link{
  color: #fff !important;
  font-weight: 700;
  padding: 10px 16px !important;
  border-radius: 999px;
  /* background: rgba(255,255,255,0.12); */
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 26px rgba(0,0,0,0.14);
  transition: transform .12s ease, box-shadow .12s ease;
}

.navbar .nav-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.28);
}

.btn-cta{
  border: 0;
  color: #fff !important;
  font-weight: 900;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 16px;
   background: linear-gradient(135deg,#2563eb,#1d4ed8);
  box-shadow: 0 18px 40px rgba(229,57,53,0.28);
  transition: transform .12s ease, box-shadow .12s ease;
}

.btn-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(229,57,53,0.34);
}

.brand-blue{
color:#5B57D6;
font-weight:900;
}
/* =========================
HERO
========================= */


.hero{
min-height:100vh;
position:relative;
overflow:hidden;

background:
radial-gradient(circle at center,
rgba(0,90,255,.22),
transparent 42%),

linear-gradient(
135deg,
#020617 0%,
#071a33 45%,
#000000 100%
);

display:flex;
justify-content:center;
align-items:center;
}

/* animated grid */

.hero-grid{
position:absolute;
inset:0;

background-image:
linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

background-size:60px 60px;
animation:gridMove 18s linear infinite;
}

.hero-grid,
.particles {
  z-index: 1;
}



@keyframes gridMove{
to{
transform:translateY(60px);
}
}

/* particles */

.particles{
position:absolute;
inset:0;

background:
radial-gradient(circle,#3b82f6 2px,transparent 2px),
radial-gradient(circle,#60a5fa 1px,transparent 1px);

background-size:200px 200px;
opacity:.28;

animation:drift 30s linear infinite;
}

@keyframes drift{
to{
transform:translateY(-300px);
}
}

/* =========================
LAYOUT
========================= */
/* =========================
   HERO LAYOUT FIX
   Replace the HERO LAYOUT + TEXT + CONNECTORS sections
========================= */

.hero-content {
  width: 100%;
  max-width: 1700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 90px;
  text-align: center;
}

.hero-orbit {
  position: relative;
  width: 1500px;
  height: 1100px;
  margin: 0 auto;
  order: 1;
  z-index: 10;
}

.hero-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  order: 2;
  padding-bottom: 60px;
}

/* =========================
   HERO TEXT
========================= */
.hero-left h1 {
  font-size: 62px;
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
  margin: 0 0 20px;
  color: #fff;
}
.hero-left h1 span { color: #3b82f6; }
.hero-left p {
  font-size: 24px;
  white-space: nowrap;
  margin: 0 auto 30px;
  color: #cbd5e1;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 10px;
  margin-bottom: 0;
}
.btn-primary, .btn-outline {
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
}
.btn-primary { background: #2563eb; color: #fff; box-shadow: 0 0 35px rgba(37,99,235,.45); }
.btn-outline  { border: 2px solid rgba(255,255,255,.3); color: #fff; }

/* =========================
   CENTER LOGO
========================= */
.center-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 460px; height: 220px;
  background: #fff;
  border-radius: 34px;
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  border: 2px solid #8ed8ff;
  box-shadow:
    0 0 15px #55c8ff,
    0 0 40px rgba(85,200,255,.5);
}
.center-core img { width: 84%; }

/* =========================
   ORBIT CARDS
========================= */
.orbit-card {
  position: absolute;
  width: 400px;
  height: 280px;
  border-radius: 30px;
  overflow: hidden;
  z-index: 20;

  border: 2px solid rgba(138,190,255,.95);
  box-shadow:
    0 0 10px rgba(120,180,255,.4),
    0 0 25px rgba(59,130,246,.25);
}

.orbit-card img { width: 100%; height: 100%; object-fit: cover; }
/* ===== TOP ROW ===== */
.card1 { top: 40px; left: 0; }
.card2 { top: 40px; left: 50%; transform: translateX(-50%); }
.card3 { top: 40px; right: 0; }

/* ===== MIDDLE ROW ===== */
.card4 { top: 380px; left: 0; }
.card8 { top: 380px; right: 0; }

/* ===== BOTTOM ROW ===== */
.card5 { bottom: 40px; left: 0; }
.card6 { bottom: 40px; left: 50%; transform: translateX(-50%); }
.card7 { bottom: 40px; right: 0; }






#connectorCanvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:30;
}




/* =========================
   TABLET
========================= */
@media(max-width:992px){
  .hero-orbit { transform: scale(.72); transform-origin: top center; height: 760px; }
  .hero-left h1 { font-size: 52px; }
  .hero-left p  { font-size: 18px; }
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){
  .hero { padding-top: 90px; padding-bottom: 40px; }
  .hero-orbit {
    width: 1240px; height: 980px; left: 50%;
    transform: translateX(-50%) scale(.33);
    margin-top: -100px; margin-bottom: -220px;
  }
  .hero-left h1 { font-size: 34px; white-space: normal; max-width: 320px; }
  .hero-left p  { font-size: 15px; white-space: normal; max-width: 300px; }
  .hero-buttons { flex-wrap: wrap; gap: 12px; }
  .btn-primary, .btn-outline { padding: 12px 18px; font-size: 14px; }
}
/* =========================
   PAGE BACKGROUND + COMMON SECTIONS
========================= */


.page-glow{
  position:relative;
  background:var(--bg);
  color:var(--text);

}
.page-glow::before, .page-glow::after{
  display: none;
}


/* BLUE SECTIONS */
#about,
#contact,
#turnover {
  background: #eef6ff;
}

/* WHITE SECTIONS */
#services,

#gallery {
  background: #ffffff;
}

#project {
  background: #f8fafc;
}

/* SOFT LIGHT SECTIONS */
#why {
  background: #f8fafc;
}

#clients {
  background: #ffffff;
}
.section-pad{
  padding: 110px 0;
}

.section-head{
  margin-bottom: 22px;
}

.section-title{
  font-weight: 950;
  letter-spacing: -0.5px;
  font-size: clamp(28px, 3.2vw, 46px);
  margin-bottom: 16px;
  color: var(--text);
}

/* =========================
   COMMON CARD STYLES
========================= */

.glass-panel,
.glass-card,
.mini-glass,
.logo-card,
.project-card,
.contact-glass{
  backdrop-filter: blur(12px);
}

.glass-card,
.mini-glass,
.logo-card{
  background-image: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.86));
}

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

#about{
background:linear-gradient(
180deg,
#eef6ff 0%,
#dbeafe 100%
);
}

.glass-panel{
  max-width: 1120px;
  padding: 70px 70px;
 background:#ffffff;
border:1px solid rgba(37,99,235,.08);
box-shadow:0 20px 60px rgba(37,99,235,.10);
  color: var(--text);
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease, border-color .25s ease;
  margin:auto;
  border-radius: 20px;
}

#about .lead{
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 700;
  color: var(--text);
}

/* =========================
   SERVICES
========================= */

#services .row{
  margin-top: 30px;
}

#services .service-item{
  max-width: 520px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease;
}

#services .service-image{
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  transition: box-shadow .25s ease, transform .25s ease;
}

#services .service-image img{
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform .45s ease;
}

.glass-card{
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  color: var(--text);
  transition: transform .18s ease, box-shadow .18s ease;
}

.glass-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.card-topbar{
  height: 6px;
  background: linear-gradient(90deg,var(--primary-blue),var(--primary-red));
}

.glass-card-body{
  display: flex;
  gap: 14px;
  padding: 16px 18px 16px;
  align-items: flex-start;
}

.service-icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(30,78,216,0.10);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.service-icon i{
  font-size: 30px;     /* bigger icon */
  color: #000;         /* default black */
  transition: all 0.3s ease;
}

/* #services .service-item:hover .service-icon i{
  color: #b71c1c;   
  transform: scale(1.2);
} */

.card-title{
  font-weight: 950;
  margin: 2px 0 6px;
  transition: color 0.3s ease;
}

/* #services .service-item:hover .card-title{
  color: #b71c1c;   
} */


#services .service-item:hover .service-icon i{
  color:#60A5FA;
  transform:scale(1.2);
}

#services .service-item:hover .card-title{
  color:#60A5FA;
}
.card-text{
  margin: 0;
  color:var(--muted);
  line-height: 1.55;
  font-size: 15px;
  
}

#services .service-item:hover{
  transform: translateY(-8px);
}

#services .service-item:hover .service-image{
  box-shadow: 0 26px 75px rgba(0,0,0,0.35);
}

#services .service-item:hover .service-image img{
  transform: scale(1.12);
}

#services .service-item:hover .glass-card{
  box-shadow: var(--shadow);
}

/* =========================
   WHY CHOOSE US
========================= */

#why{
  padding-top: 60px;
  padding-bottom: 60px;
}
.why-row{
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.mini-glass{
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  transition: transform .25s ease, box-shadow .25s ease;
}

.mini-glass:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.mini-ico{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(30,78,216,0.10);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.mini-ico img{
  width: 30px;
  height: 30px;
  object-fit: contain;
  
}

.mini-ico i{
  color: #000;  /* black */
    font-size: 26px;
  transition: color 0.3s ease;
}

.mini-glass:hover .mini-ico i{
  color: #60A5FA;  /* dark red on hover */
}

.mini-title{
  font-weight: 900;
  margin: 2px 0 4px;
    transition: color 0.3s ease;
    font-size: 19px; 
  
}

.mini-text{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   CLIENTS
========================= */

.logo-card{
  min-height: 160px;
  background: var(--card-bg-strong);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--card-shadow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--text);
  transition: transform .18s ease, box-shadow .18s ease;
}

.logo-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.logo-card img{
  width: 100%;
  max-width: 170px;
  height: 60px;
  object-fit: contain;
  display: block;
  transition: transform .35s ease;
}

.logo-card img:hover{
  transform: scale(1.75);
}

.logo-name{
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  line-height: 1.2;
}

.logo-city{
  font-size: 12px;
  color: var(--muted);
  line-height: 1.1;
}

/* Client-specific logo text colors */
.client-pratastren .logo-name { color: #1f4fa3; }
.client-secutech .logo-name { color: #0b2a5b; }
.client-technogreen .logo-name { color: #62b11b; }
.client-vestian .logo-name { color: #0b2a5b; }
.client-azbil .logo-name { color: #7d0303; }
.client-emerson .logo-name { color: #013460; }
.client-honeywell .logo-name { color: #e31e24; }
.client-abtech .logo-name { color: #111111; }
.client-anj .logo-name { color: #1b6fbf; }
.client-klota .logo-name { color: #d50000; }
.client-jpmc .logo-name { color: #6b4b2a; }
.client-mitsubishi .logo-name { color: #111111; }
.client-westin .logo-name { color: #111111; }
.client-adn .logo-name { color: #d10000; }
.client-atos .logo-name { color: #1F6FBF; }
.client-siemens .logo-name { color: #009999; }

.logo-name.dual .c1{ color: #E11D2E; }
.logo-name.dual .c2{ color: #1E40AF; }
.logo-name.tripple .a1{ color: #111111; }
.logo-name.tripple .a2{ color: #d10000; }
.logo-name.tripple .a3{ color: #111111; }
.logo-name.four .l1{ color: #111111; }
.logo-name.four .l2{ color: #ff8c00; }
.logo-name.four .l3{ color: #111111; }
.logo-name.four .l4{ color: #111111; }
.logo-name.dual .p1{ color: #0b2a5b; }
.logo-name.dual .p2{ color: #111111; }
.logo-name.dual .t1{ color: #62b11b; }
.logo-name.dual .t2{ color: #434242; }

.client-azbil img{
  transform: rotate(90deg) scale(0.4);
  transform-origin: center center;
}
.client-azbil:hover img{
transform: rotate(90deg) scale(0.65);
}
.client-azbil{
  overflow: hidden;
}

/* ======
===================
   PROJECTS
========================= */

.project-wrap{
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  transition: transform .18s ease;
}

.project-image{
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  transition: box-shadow .25s ease;
}

.project-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .18s ease, transform .35s ease;
}
.project-image,
.project-card{
  height: 520px;
}
.project-card{
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 26px;
  padding: 26px 24px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
  transition: box-shadow .25s ease, border-color .25s ease;

  max-height: 520px;     
  overflow-y: auto; 
}

.project-subtitle{
  font-weight: 900;
  letter-spacing: -0.2px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 18px;
}

.project-list{
  margin: 0;
  padding-left: 22px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
  color: var(--text);
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
}

.project-list.is-visible{
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.project-list li{
  margin-bottom: 12px;
}

.project-list li::marker{
  font-weight: 800;
  color: var(--text);
}

.project-switch{
  --pad: 6px;
  --gap: 6px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(520px, 92%);
  margin-inline: auto;
  align-items: center;
  gap: var(--gap);
  padding: var(--pad);
  border-radius: 999px;
  background: #E5E7EB;
  border: 1px solid rgba(15,23,42,0.08);
  overflow: hidden;
}

.project-switch-btn{
  position: relative;
  z-index: 2;
  border: 0;
  background: transparent;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 900;
  color: var(--muted);
  cursor: pointer;
  transition: transform .15s ease, color .2s ease;
  white-space: nowrap;
}

.project-switch-btn:hover{
  transform: translateY(-1px);
}

.project-switch-btn.is-active{
  color: var(--primary-red);
}

.project-switch-indicator{
  position: absolute;
  z-index: 1;
  top: var(--pad);
  bottom: var(--pad);
  left: var(--pad);
  width: calc((100% - (2 * var(--pad)) - var(--gap)) / 2);
  border-radius: 999px;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(15,23,42,0.12);
  transition: transform .25s ease;
}

.project-switch.is-panel .project-switch-indicator{
  transform: translateX(calc(100% + var(--gap)));
}

/* =========================
   CONTACT
========================= */

.contact-glass{
  max-width: 1100px;
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  color: var(--text);
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.contact-line{
  color: var(--text);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
}

.contact-details{

  align-items: flex-start;
  gap:20px;
  text-align: left;
  padding: 6px 6px 0;
}
.contact-logo img{
  width:90px;
  height:90px;
  object-fit: contain;
  border-radius: 12px;
}
.contact-text p{
  margin:6px 0;
}
.map-frame{
  height: 240px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
}

.map-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

.map-frame.map-frame-lg{
  height: 420px;
}

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

.footer{
  background:#0F172A;
  color: rgba(255,255,255,0.86);
  margin-top: 0;
}

.footer-top{
  padding: 42px 0 28px;
}

.footer-brand{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-logo{
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.95);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

.footer-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.footer-title{
  margin: 0 0 6px;
  font-weight: 900;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.95);
}

.footer-head{
  margin: 8px 0 12px;
  font-weight: 900;
  color: rgba(255,255,255,0.92);
}

.footer-text{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  font-weight: 500;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer a{
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  font-weight: 650;
}

.footer-links a:hover,
.footer a:hover{
  color: #fff;
  text-decoration: underline;
}

.footer-bottom{
  padding: 16px 0;
  background: #0F172A;
}



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

@media (max-width: 991.98px){
  .hero{
    min-height: 110vh;
  }
  .navglass{
    backdrop-filter: blur;
  }
  .navbar-collapse{

    position: absolute;
    top:80px;
    right:16px;
    width:280px;
    isolation: isolate;

    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    z-index: 9999;
  }
  .navbar-collapse .nav-link{
    color:#111 !important;
  }
  .navbar-nav{
    gap: 10px !important;
  }

  .navbar-nav .nav-item{
    width: 100%;
  }

  .navbar-nav .nav-link{
    width: 100%;
    text-align: center;
  }

  .project-wrap{
    grid-template-columns: 1fr;
  }

  .project-image img{
    min-height: 240px;
  }
  .navbar-collapse .nav-link,
  .navbar-collapse .btn-cta {
    width: 100%;
    text-align: center;
  }

  .navbar-collapse .btn-cta {
    display: block;
  }
  
}

@media (max-width: 768px){

  .section-pad{
    padding: 64px 0;
  }

  #about{
    padding: 95px 0;
  }

  .glass-panel{
    padding: 34px 22px;
  }

  #about .lead{
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 700;
  }

  .project-subtitle{
    font-size: 20px;
  }

  .project-list{
    font-size: 15px;
    padding-left: 18px;
  }
/* 
  #services .service-image{
    height: 190px;
  } */

  .map-frame.map-frame-lg{
    height: 320px;
  }

  .footer-top{
    padding: 34px 16px 20px;
  }
}
.footer-brand-content{
  display: flex;
  flex-direction: column;
}

.footer-social{
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.social-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-icon img{
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.social-icon:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.24);
}
@media (max-width: 576px){
  .navbar .container-fluid{
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .brand-logo{
    width: 92px;
    height: 44px;
    border-radius: 12px;
  }

  .brand-name{
    white-space: normal;
    font-size: 12px;
    line-height: 1.1;
    max-width: 140px;
    font-size: 12px;
      color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  }

  .hero-inner{
    padding: 92px 14px 70px;
  }

  .hero-title{
    font-size: 30px;
    line-height: 1.05;
  }
 
  .hero-subtitle{
    font-size: 14px;
  }
}

@media (max-width: 420px){
  .navbar .nav-link{
    padding: 9px 12px !important;
  }


}

#why .mini-glass:hover .mini-title{
  color: #60A5FA;
  transition: color 0.3s ease;
}


#turnover .glass-panel {
  border-radius: 24px;
   padding: 20px !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.chart-container{
  width: 100%;
  height: auto;
  min-height: 260px;
}

/* Title refinement */
#turnover .section-title {
  letter-spacing: -0.5px;
}

#turnover .text-muted {
  font-size: 14px;
  color: #9ca3af !important;
}



#gallery {
  background: #ffffff !important;
}
.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-btn {
  font-size: 40px;
  color: #fff;
}

.modal-dialog {
  max-width: 90vw;
}

.modal-content {
  height: 90vh;
}

.modal-body {
  overflow: hidden; 
}
/* REMOVE ALL CONTAINER BACKGROUNDS */
#galleryModal .modal-content {
  background: transparent !important;
  border: none;
  box-shadow: none;
}

#galleryModal .modal-body {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* IMPORTANT: remove any fixed height */
#galleryModal .modal-dialog {
  max-width: 700px;
  margin: auto;
}

/* IMAGE */
#galleryModal img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 12px;
}

/* VIDEO */
#galleryModal video {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  #galleryModal .modal-dialog {
    max-width: 95%;
    margin: 10px auto;
  }

  #galleryModal img,
  #galleryModal video {
    border-radius: 8px;
  }
}

@media (max-width: 768px){

  #turnover .glass-panel{
    padding:16px !important;
    border-radius:18px;
  }

  #turnover .section-title{
    font-size:20px;
    text-align:center;
  }

  #turnover .text-muted{
    font-size:12px;
    text-align:center;
  }

  .chart-container{
    min-height:220px;
  }

}

/* =========================
   SERVICES SECTION - REDUCED BOTTOM PADDING
========================= */
#services.section-pad {
  padding-bottom: 30px !important;
}

/* =========================
   SAFETY PRODUCTS SECTION
========================= */

#safety-products {
  background: #ffffff;
  padding-top: 50px !important;
  padding-bottom: 80px !important;
}

#safety-products .section-head {
  margin-bottom: 5px;
}

.safety-subtitle {
  font-size: 18px;
  color: #64748b;
  font-weight: 500;
  margin-top: -5px;
}

#safety-products .row {
  margin-top: 25px !important;
}

/* 3 columns on desktop */
#safety-products .row-cols-md-3 {
  --bs-gutter-y: 1.5rem;
}

.safety-item {
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease;
  height: 100%;
}

/* IMAGE - Consistent size */
.safety-image {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.safety-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.45s ease;
}
.fire-speaker-img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transform:scale(1.2);
    transition:transform .4s ease;
}

.safety-item:hover .fire-speaker-img{
    transform:scale(1.3);
}

/* CARD - Consistent height */
.safety-glass-card {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  color: var(--text);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 220px;
}

.safety-glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.safety-card-topbar {
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
  flex-shrink: 0;
}

.safety-glass-card-body {
  display: flex;
  gap: 14px;
  padding: 16px 18px 20px;
  align-items: flex-start;
  flex: 1;
}

/* Icon styles */
.safety-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: all 0.3s ease;
}

.safety-service-icon i {
  font-size: 30px;
  transition: all 0.3s ease;
}

/* Static icon colors */
.red-box-icon {
  background: rgba(229, 57, 53, 0.12);
}
.red-box-icon i {
  color: #E53935;
}

.fire-speaker-icon {
  background: rgba(255, 152, 0, 0.12);
}
.fire-speaker-icon i {
  color: #FF6F00;
}

.access-panel-icon {
  background: rgba(37, 99, 235, 0.12);
}
.access-panel-icon i {
  color: #2563EB;
}

/* HOVER EFFECTS */
.safety-item:hover .safety-service-icon i {
  color: #60A5FA;
  transform: scale(1.2);
}

.safety-item:hover .safety-card-title {
  color: #60A5FA;
}

.safety-item:hover {
  transform: translateY(-8px);
}

.safety-item:hover .safety-image {
  box-shadow: 0 26px 75px rgba(0, 0, 0, 0.35);
}

.safety-item:hover .safety-image img {
  transform: scale(1.12);
}

.safety-item:hover .safety-glass-card {
  box-shadow: var(--shadow);
}

.safety-card-title {
  font-weight: 950;
  margin: 2px 0 6px;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.safety-card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

/* Responsive - 2 columns on tablet, 1 on mobile */
@media (max-width: 991.98px) {
  #safety-products .row-cols-md-3 {
    --bs-gutter-y: 1.5rem;
  }
  
  #safety-products .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (max-width: 768px) {
  #safety-products {
    padding-top: 5px !important;
    padding-bottom: 60px !important;
  }
  
  .safety-subtitle {
    font-size: 15px;
    margin-top: -3px;
  }
  
  #safety-products .row {
    margin-top: 10px !important;
  }
  
  #safety-products .row-cols-md-3 > * {
    width: 100%;
  }
  
  .safety-glass-card {
    min-height: 180px;
  }
  
  .safety-glass-card-body {
    padding: 14px 16px 18px;
  }
  
  .safety-card-title {
    font-size: 1.1rem;
  }
  
  .safety-card-text {
    font-size: 14px;
  }
  
  .safety-service-icon {
    width: 42px;
    height: 42px;
  }
  
  .safety-service-icon i {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .safety-image {
    border-radius: 18px;
    aspect-ratio: 16/11;
  }
  
  .safety-glass-card {
    min-height: 160px;
  }
}

/* our clients */
.client-card {
  background: var(--card-bg-strong);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--card-shadow);
  padding: 20px 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  text-align: center;
  color: var(--text);
  backdrop-filter: blur(12px);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.86));
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Gradient border effect on hover */
.client-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

/* Background glow effect */
.client-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(52, 152, 219, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0.8);
  pointer-events: none;
}

.client-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.client-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 8px 20px rgba(52, 152, 219, 0.15);
  border-color: rgba(52, 152, 219, 0.3);
}

/* Company name */
.client-name {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.client-card:hover .client-name {
  color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Location / city */
.client-location {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.client-card:hover .client-location {
  color: var(--primary-red);
  transform: translateY(2px);
}

/* Accent line - improved */
.client-card .accent-line {
  width: 30px;
  height: 3px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.client-card:hover .accent-line {
  width: 60px;
  height: 3px;
  box-shadow: 0 0 20px rgba(52, 152, 219, 0.3);
}

/* Subtle icon indicator on hover */
.client-card .hover-indicator {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 0.7rem;
  color: var(--primary-blue);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 1;
}

.client-card:hover .hover-indicator {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .client-card {
    min-height: 120px;
    padding: 16px 12px;
  }
  .client-name {
    font-size: 0.9rem;
  }
  .client-location {
    font-size: 0.75rem;
  }
  .client-card:hover {
    transform: translateY(-5px) scale(1.01);
  }
}

@media (max-width: 576px) {
  .client-card {
    min-height: 100px;
    padding: 14px 10px;
  }
  .client-name {
    font-size: 0.8rem;
  }
  .client-location {
    font-size: 0.7rem;
  }
  .client-card:hover {
    transform: translateY(-3px) scale(1.01);
  }
}