/* =========================================================
   ZEALBYTES — MAIN STYLESHEET
   ========================================================= */

:root{
  --orange:#f7941d;
  --orange-dark:#f26522;
  --navy:#152a4e;
  --navy-2:#1b3a63;
  --text-gray:#6b7280;
  --stats-bg:#eef0f3;
  --light-bg:#fdfaf6;
  --border:#e3e6ea;
  --radius:8px;
  --max-width:1200px;
}

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

html{scroll-behavior:smooth;}

body{
  font-family:'Segoe UI', Arial, Helvetica, sans-serif;
  color:var(--navy);
  background:#fff;
  line-height:1.5;
}

img{max-width:100%;display:block;}

a{color:inherit;text-decoration:none;}

ul{list-style:none;}

.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 32px;
}

.eyebrow{
  color:var(--orange-dark);
  font-weight:700;
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:12px;
}

.section-title{
  font-size:32px;
  font-weight:800;
  color:var(--navy);
  margin-bottom:14px;
  max-width:640px;
}
.section-title-light{color:#fff;}

.section-sub{
  color:var(--text-gray);
  max-width:520px;
  margin-bottom:40px;
}

section{padding:90px 0;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:15px 30px;
  border-radius:6px;
  font-size:15px;
  font-weight:700;
  border:none;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn:hover{transform:translateY(-2px);}

.btn-primary{
  background:linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 100%);
  color:#fff;
}
.btn-outline{
  background:transparent;
  color:var(--navy);
  border:1.5px solid var(--border);
}
.btn-outline-light{
  color:#fff;
  border-color:rgba(255,255,255,.4);
}
.btn-sm{padding:10px 20px;font-size:13px;}
.arrow{transition:transform .15s ease;}
.btn:hover .arrow{transform:translateX(4px);}

.hero-buttons{display:flex;gap:18px;flex-wrap:wrap;}

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--light-bg);
  border-bottom:1px solid rgba(21,42,78,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:86px;
}
.logo-img{
  height: 90px;
  width:auto;
  /* Swap in your own logo file (logo.png) next to this stylesheet */
}
.main-nav{
  display:flex;
  align-items:center;
  gap:42px;
}
.main-nav a{
  font-size:15px;
  font-weight:600;
  color:var(--navy);
  position:relative;
  padding-bottom:4px;
}
.main-nav a.active{color:var(--orange-dark);}
.main-nav a.active::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-6px;
  height:3px;
  background:var(--orange-dark);
  border-radius:2px;
}
.btn-talk{
  background:var(--navy);
  color:#fff;
  padding:12px 26px;
  border-radius:24px;
  font-size:14px;
  font-weight:600;
}
.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
}
.menu-toggle span{
  width:24px;height:2px;background:var(--navy);
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  background-image:url('images/bg\ image.png');
  background-size:cover;
  background-position:center;
  overflow:hidden;
}
.hero-dots{
  position:absolute;
  top:30px;
  right:60px;
  width:120px;
  height:100px;
  background-image:radial-gradient(var(--navy) 1.6px, transparent 1.6px);
  background-size:14px 14px;
  opacity:.3;
}
.hero-inner{
  padding:100px 32px 80px;
}
.hero-content{max-width:720px;}
.hero h1{
  font-size:42px;
  line-height:1.25;
  font-weight:800;
  margin-bottom:22px;
  display:flex;
  flex-direction:column;
}
.text-orange{color:var(--orange-dark);}
.text-navy{color:var(--navy);}
.hero p{
  font-size:16px;
  color:var(--text-gray);
  max-width:520px;
  margin-bottom:34px;
}

.stats-bar{
  background:var(--stats-bg);
}
.stats-inner{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-around;
  padding:30px 32px;
}
.stat{text-align:center;padding:10px 16px;}
.stat-num{
  font-size:28px;
  font-weight:800;
  color:var(--orange-dark);
}
.stat-label{
  font-size:14px;
  font-weight:600;
  color:var(--navy);
  margin-top:4px;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about{background:var(--navy);color:#fff;}
.about .eyebrow{color:var(--orange);}
.about-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.about h2{
  font-size:34px;
  font-weight:800;
  margin-bottom:18px;
}
.about-desc{
  color:rgba(255,255,255,.75);
  margin-bottom:30px;
  max-width:480px;
}
.about-media img{
  border-radius:var(--radius);
  width:100%;
  height:100%;
  object-fit:cover;
  box-shadow:0 20px 40px rgba(1, 229, 254, 0.979);
}

/* =========================================================
   SERVICES
   ========================================================= */
/* ---------- Services ---------- */
.services{background:#fff;}

.services-list{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:40px;
}
.service-row{
  position:relative;
  display:flex;
  align-items:center;
  gap:22px;
  background:var(--stats-bg);
  border-radius:var(--radius);
  padding:20px 90px 20px 24px;
  transition:box-shadow .2s ease, transform .2s ease;
}
.service-row:hover{
  box-shadow:0 12px 30px rgba(21,42,78,.08);
  transform:translateY(-2px);
}
.service-row .service-num{
  flex:0 0 auto;
  font-size:30px;
  font-weight:800;
  color:var(--orange-dark);
  line-height:1;
}
.service-row .service-icon{
  flex:0 0 auto;
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border-radius:10px;
  color:var(--navy);
}
.service-row .service-icon svg{
  width:28px;
  height:28px;
}
.service-text{
  flex:1 1 auto;
  min-width:0;
}
.service-text h3{
  font-size:15px;
  font-weight:800;
  letter-spacing:.3px;
  text-transform:uppercase;
  margin-bottom:6px;
}
.service-text p{
  color:var(--text-gray);
  font-size:13.5px;
  margin-bottom:8px;
  max-width:560px;
}
.tags-inline{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:6px;
  font-size:12px;
  color:var(--text-gray);
  font-weight:600;
}
.tags-inline span:not(:last-child)::after{
  content:"•";
  margin-left:6px;
  color:var(--orange-dark);
}
.service-media{
  flex:0 0 auto;
  width:150px;
  height:84px;
  border-radius:8px;
  overflow:hidden;
  background:var(--navy);
}
.service-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.card-arrow{
  position:absolute;
  top:50%;
  right:24px;
  transform:translateY(-50%);
  color:var(--orange-dark);
  font-size:20px;
  font-weight:700;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px){
  .service-row{flex-wrap:wrap;padding-right:24px;}
  .card-arrow{position:static;transform:none;margin-left:auto;}
  .service-media{width:120px;height:70px;}
}

@media (max-width: 720px){
  .service-row{
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
  }
  .service-media{width:100%;height:140px;}
  .card-arrow{align-self:flex-end;}
}

/* =========================================================
   INDUSTRIES
   ========================================================= */
/* ---------- Industries ---------- */
.industries{background:var(--navy);}

.industries-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:20px;
}

.industry-card{
  position:relative;
  min-height:235px;
  border-radius:var(--radius);
}

/* Default face: icon + title, dark card, white border */
.industry-face{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  background:#ffffff2d;
  border:1.5px solid var(--light-bg);
  border-radius:var(--radius);
  box-shadow:0 8px 0 rgba(21,42,78,.15);
  transition:opacity .2s ease;
}
.industry-face svg{
  width:56px;
  height:56px;
  color:var(--orange-dark);
}
.industry-face h3{
  font-size:20px;
  font-weight:800;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:var(--border);
}

/* Hover panel: white header + navy list, hidden by default */
.industry-panel{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  border-radius:var(--radius);
  overflow:hidden;
  opacity:0;
  pointer-events:none;
  box-shadow:0 8px 0 rgba(21,42,78,.15);
  transition:opacity .25s ease;
}

.industry-panel-head{
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  padding:20px 22px;
}
.industry-panel-head svg{
  width:34px;
  height:34px;
  color:var(--orange-dark);
  flex-shrink:0;
}
.industry-panel-head h3{
  font-size:20px;
  font-weight:800;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:var(--navy);
}

.industry-panel ul{
  flex:1;
  background:var(--navy-2);
  padding:20px 24px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.industry-panel ul li{
  display:flex;
  align-items:center;
  gap:10px;
  color:#ffffff;
  font-size:15px;
}
.industry-panel ul li .arrow{
  color:var(--orange);
  font-weight:700;
}

/* Hover state: swap face for panel */
.industry-card:hover .industry-face{
  opacity:0;
}
.industry-card:hover .industry-panel{
  opacity:1;
  pointer-events:auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px){
  .industries-grid{grid-template-columns:repeat(2, 1fr);}
}

@media (max-width: 720px){
  .industries-grid{grid-template-columns:1fr;}
  .industry-card{min-height:200px;}
}

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio{background:#fff;}
.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
}
.portfolio-card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  padding-bottom:24px;
}
.portfolio-media{
  aspect-ratio:4/3;
  background:var(--stats-bg);
  overflow:hidden;
}
.portfolio-media img{width:100%;height:100%;object-fit:cover;}
.portfolio-card h3{
  font-size:17px;
  font-weight:700;
  margin:18px 22px 8px;
}
.portfolio-card p{
  color:var(--text-gray);
  font-size:14px;
  margin:0 22px 18px;
}
.portfolio-card .btn{margin-left:22px;}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials{background:var(--navy-2);color:#fff;}
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:20px;
}
.testimonial-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  padding:28px 26px;
}
.stars{
  color:var(--orange);
  letter-spacing:2px;
  margin-bottom:14px;
}
.testimonial-card p{
  font-size:14px;
  color:rgba(255,255,255,.85);
  margin-bottom:20px;
}
.testimonial-author strong{
  display:block;
  font-size:14px;
}
.testimonial-author span{
  display:block;
  font-size:12px;
  color:rgba(255,255,255,.6);
  margin-top:2px;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact{background:#fff;}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-top:20px;
}
.contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.contact-form label{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:13px;
  font-weight:700;
  color:var(--navy);
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  border:1px solid var(--border);
  border-radius:6px;
  padding:12px 14px;
  font-size:14px;
  font-family:inherit;
  color:var(--navy);
  resize:vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline:2px solid var(--orange);
  outline-offset:1px;
}
.full-width{grid-column:1 / -1;}
.contact-form button{justify-content:center;}

.contact-map{
  min-height:340px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
}
.contact-map iframe{
  width:100%;
  height:100%;
  min-height:340px;
  border:0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{background:var(--navy);color:rgba(255,255,255,.8);}
.footer-inner{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:40px;
  padding:70px 32px 40px;
}
.footer-brand .logo{
  display:inline-block;
  background:#ffffff00;
  padding:10px 16px;
  border-radius:6px;
  margin-bottom:16px;
}
.footer-brand .logo-img{
  height: 55px;
  width: 200px;
  margin-bottom:0;
}
.footer-brand p{font-size:13px;line-height:1.7;margin-bottom:14px;}
.footer-hours{font-size:13px;color:var(--orange);}
.footer-col h4{
  font-size:14px;
  font-weight:700;
  color:#fff;
  margin-bottom:18px;
  text-transform:uppercase;
  letter-spacing:.5px;
}
.footer-col ul li{margin-bottom:12px;font-size:14px;}
.footer-col ul li a:hover{color:var(--orange);}

.footer-bottom{border-top:1px solid rgba(255,255,255,.1);}
.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  padding:22px 32px;
  font-size:13px;
}
.footer-links{display:flex;gap:22px;}
.footer-links a:hover{color:var(--orange);}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px){
  .about-inner,
  .contact-grid{grid-template-columns:1fr;}
  .services-grid,
  .industries-grid,
  .portfolio-grid,
  .testimonial-grid{grid-template-columns:repeat(2, 1fr);}
  .footer-inner{grid-template-columns:1fr 1fr;}
}

@media (max-width: 720px){
  .main-nav{display:none;}
  .menu-toggle{display:flex;}
  .services-grid,
  .industries-grid,
  .portfolio-grid,
  .testimonial-grid,
  .contact-form{grid-template-columns:1fr;}
  .hero h1{font-size:30px;}
  .footer-inner{grid-template-columns:1fr;}
}