*{
  margin:0; padding:0; box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

body{
  line-height:1.7;
  color:#333;
  padding-top:80px; /* FIX for fixed navbar */
}

:root{
  --primary:#ff6b35;
  --dark:#111;
  --light:#f4f4f4;
  --white:#fff;
}

/* NAVBAR */
header{
  position:fixed;
  top:0; width:100%;
  background:#111;
  z-index:1000;
}
.navbar{
  max-width:1200px;
  margin:auto;
  padding:15px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo{
  color:#fff;
  font-size:1.6rem;
  font-weight:700;
}
.logo span{ color:var(--primary); }
/* Mobile Menu - Hide nav on mobile by default */
@media screen and (max-width:768px){
  .nav-links{
    display:none !important;
  }
}

/* Desktop nav links */
.nav-links{
  list-style:none;
  display:flex;
  gap:25px;
}
.nav-links a{
  color:#fff;
  text-decoration:none;
  transition:color 0.3s ease;
}
.nav-links a:hover{
  color:#ff6b35;
}

/* Mobile Menu - Show nav when active */
@media screen and (max-width:768px){
  .nav-links.active{
    display:flex !important;
  }
}

/* HAMBURGER MENU */
.hamburger{
  display:none;
  flex-direction:column;
  background:none;
  border:none;
  cursor:pointer;
  gap:5px;
  z-index:1001;
  padding:10px;
}
.hamburger span{
  width:25px;
  height:3px;
  background:#fff;
  border-radius:2px;
  transition:all 0.3s ease;
}
.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(10px, 10px);
}
.hamburger.active span:nth-child(2){
  opacity:0;
}
.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu - Always apply these rules on small screens */
@media screen and (max-width:768px){
  .hamburger{
    display:flex !important;
    flex-direction:column;
    background:none;
    border:none;
    cursor:pointer;
    padding:10px;
    z-index:1001;
  }
  
  .nav-links{
    position:fixed;
    top:70px;
    left:0;
    right:0;
    width:100%;
    background:#111;
    flex-direction:column;
    gap:0;
    max-height:calc(100vh - 70px);
    list-style:none;
    padding:0;
    margin:0;
    border-top:1px solid rgba(255,107,53,0.2);
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,0.3);
  }
  
  .nav-links li{
    list-style:none;
    margin:0;
    padding:0;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  
  .nav-links li a{
    display:block;
    padding:15px 20px;
    color:#fff;
    text-decoration:none;
    transition:all 0.3s ease;
  }
  
  .nav-links li a:hover{
    background:rgba(255,107,53,0.3);
    color:#ff6b35;
    padding-left:25px;
  }
}

/* SECTION */
.section-light { background:#f8f8f8; }
.section-dark  { background:#111; color:#fff; }
.section-dark .section-title span { color:#ff6b35; }

section{
  padding:80px 20px;
}
.section-title{
  text-align:center;
  font-size:2.4rem;
  margin-bottom:40px;
  font-weight:700;
}
.section-title span{ color:var(--primary); }

/* GRID / CARDS */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  max-width:1200px;
  margin:auto;
}
.card i{
  font-size:2rem;
  color:#ff6b35;
  margin-bottom:15px;
}
.card h3{ margin-bottom:10px; }
/* Center heading for contact info card */
.contact-card h3{ text-align:center; }

/* Centered grid used on contact page to keep cards narrow and centered */
.centered-grid{
  justify-items:center;
  grid-template-columns:repeat(auto-fit,minmax(320px,420px));
}

.contact-card{ text-align:center; }
.contact-quick{ display:flex; gap:12px; justify-content:center; margin-top:14px; }
.hero-btn.small{ padding:8px 12px; font-size:0.95rem; }


/* HERO SECTION */
.hero{
  background:linear-gradient(135deg, rgba(17,17,17,0.8) 0%, rgba(255,107,53,0.2) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23222" width="1200" height="600"/><rect fill="%23333" x="50" y="100" width="80" height="400"/><rect fill="%23444" x="150" y="150" width="100" height="350"/><rect fill="%23333" x="300" y="80" width="120" height="420"/></svg>');
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  color:#fff;
  padding:200px 20px;
  text-align:center;
  min-height:600px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-content h1{
  font-size:3.5rem;
  margin-bottom:15px;
  line-height:1.2;
  animation:slideInDown 0.8s ease-out;
}
.hero-content h1 span{
  color:#ff6b35;
  display:block;
}
.hero-content p{
  font-size:1.3rem;
  margin-bottom:30px;
  color:#ddd;
  animation:slideInUp 0.8s ease-out 0.2s backwards;
}
@keyframes slideInDown {
  from {
    opacity:0;
    transform:translateY(-30px);
  }
}
@keyframes slideInUp {
  from {
    opacity:0;
    transform:translateY(30px);
  }
}

.hero-btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 32px;
  background:#ff6b35;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-weight:600;
  transition:all 0.3s ease;
  animation:slideInUp 0.8s ease-out 0.4s backwards;
}
.hero-btn:hover{
  background:#e55a24;
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(255,107,53,0.3);
}

/* STATS SECTION */
.stat-card{
  text-align:center;
  padding:40px 20px;
  background:#fff;
  border-radius:8px;
  transition:all 0.3s ease;
}
.stat-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
}
.stat-card i{
  font-size:2.5rem;
  color:#ff6b35;
  margin-bottom:15px;
}
.stat-card h3{
  font-size:1.6rem;
  font-weight:700;
  color:#ff6b35;
  margin-bottom:10px;
}
.stat-card p{
  font-size:0.95rem;
  color:#666;
  line-height:1.6;
}
.stat-number{
  font-size:3rem;
  font-weight:700;
  color:#ff6b35;
  margin-bottom:10px;
}
.stat-label{
  font-size:1.1rem;
  color:#333;
  font-weight:600;
}

/* SERVICE CARDS */
.service-card{
  background:rgba(255,255,255,0.1);
  border:2px solid rgba(255,107,53,0.3);
  border-radius:8px;
  padding:30px 20px;
  text-align:center;
  transition:all 0.3s ease;
}
.service-card:hover{
  background:rgba(255,255,255,0.15);
  border-color:#ff6b35;
  transform:translateY(-5px);
}
.service-card i{
  font-size:3rem;
  color:#ff6b35;
  margin-bottom:20px;
}
.service-card h3{
  font-size:1.3rem;
  margin-bottom:15px;
  color:#fff;
}
.service-card p{
  color:#ddd;
  font-size:0.95rem;
}

/* BENEFIT CARDS */
.benefit-card{
  background:#fff;
  border-left:4px solid #ff6b35;
  border-radius:4px;
  padding:30px 25px;
  transition:all 0.3s ease;
}
.benefit-card:hover{
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  transform:translateX(0);
}
.benefit-card i{
  color:#ff6b35;
  font-size:2.5rem;
  margin-bottom:20px;
}
.benefit-card h3{
  font-size:1.2rem;
  color:#111;
  margin-bottom:10px;
}
.benefit-card p{
  color:#666;
  font-size:0.95rem;
}

/* CTA SECTION */
.cta-section{
  background:linear-gradient(135deg, #ff6b35 0%, #e55a24 100%);
  color:#fff;
  text-align:center;
  padding:100px 20px;
}
.cta-section h2{
  font-size:2.5rem;
  margin-bottom:20px;
  line-height:1.3;
}
.cta-section p{
  font-size:1.1rem;
  margin-bottom:30px;
  color:#f0f0f0;
}
.cta-btn{
  background:#fff;
  color:#ff6b35;
  font-weight:700;
}
.cta-btn:hover{
  background:#f0f0f0;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}


/* FOOTER (DARK – MATCH IMAGE) */
.dark-footer{
  background:#111;
  color:#eee;
  padding:50px 20px;
}
.footer-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:30px;
}
.footer-left h3 span{ color:var(--primary); }
.footer-left p{
  margin-bottom:12px;
  color:#ccc;
  display:flex;
  gap:10px;
}
.footer-left i{ color:var(--primary); }
.footer-right{
  text-align:right;
  color:#ccc;
}

/* PAGE HEADER (For about, services, projects pages) */
.page-header{
  background:linear-gradient(135deg, rgba(17,17,17,0.85) 0%, rgba(255,107,53,0.3) 100%);
  color:#fff;
  padding:120px 20px 80px;
  text-align:center;
  margin-top:0;
}
.page-header h1{
  font-size:3rem;
  margin-bottom:15px;
  line-height:1.2;
}
.page-header h1 span{
  color:#ff6b35;
  display:block;
}
.page-header p{
  font-size:1.2rem;
  color:#ddd;
}

/* Reduced header height for contact page to improve placement */
.page-header--contact{
  padding:70px 20px 40px;
}

/* Contact section spacing and centered grid tweaks */
.contact-section{ padding-top:30px; padding-bottom:60px; }
.centered-grid{ grid-template-columns:repeat(auto-fit,minmax(360px,520px)); }

/* ABOUT INTRO SECTION */
.about-intro{
  padding:80px 20px;
}
.about-content{
  max-width:1200px;
  margin:auto;
}
.about-text h2{
  font-size:2.2rem;
  color:#111;
  margin-bottom:20px;
}
.about-text p{
  font-size:1rem;
  color:#555;
  margin-bottom:20px;
  line-height:1.8;
}
.about-highlights{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:30px;
  margin-top:40px;
}
.highlight-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:25px;
  background:#fff;
  border-radius:8px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  text-align:center;
}
.highlight-item i{
  font-size:2.5rem;
  color:#ff6b35;
  margin-bottom:15px;
}
.highlight-item span{
  font-weight:600;
  color:#333;
}

/* VALUE CARDS */
.value-card{
  background:rgba(255,255,255,0.1);
  border:2px solid rgba(255,107,53,0.3);
  border-radius:8px;
  padding:40px 30px;
  text-align:center;
  transition:all 0.3s ease;
}
.value-card:hover{
  background:rgba(255,255,255,0.15);
  border-color:#ff6b35;
  transform:translateY(-5px);
}
.value-card i{
  font-size:3rem;
  color:#ff6b35;
  margin-bottom:20px;
}
.value-card h3{
  font-size:1.4rem;
  color:#fff;
  margin-bottom:15px;
}
.value-card p{
  color:#ddd;
  font-size:0.95rem;
  line-height:1.6;
}

/* EXPERTISE CARDS */
.expertise-card{
  background:#fff;
  border-radius:8px;
  padding:40px 30px;
  text-align:center;
  transition:all 0.3s ease;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}
.expertise-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}
.expertise-icon{
  width:70px;
  height:70px;
  background:#ff6b35;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}
.expertise-icon i{
  font-size:2rem;
  color:#fff;
  margin-bottom:0 !important;
}
.expertise-card h3{
  font-size:1.2rem;
  color:#111;
  margin-bottom:15px;
}
.expertise-card p{
  color:#666;
  font-size:0.95rem;
  line-height:1.6;
}

/* TEAM CARDS */
.team-card{
  background:rgba(255,255,255,0.1);
  border-radius:8px;
  padding:50px 30px;
  text-align:center;
  transition:all 0.3s ease;
  opacity:0;
  transform:translateY(20px);
}
.team-card:hover{
  background:rgba(255,255,255,0.15);
  transform:translateY(-5px);
}
.team-icon{
  width:80px;
  height:80px;
  background:rgba(255,107,53,0.2);
  border:3px solid #ff6b35;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}
.team-icon i{
  font-size:2.5rem;
  color:#ff6b35;
  margin-bottom:0 !important;
}
.team-card h3{
  font-size:2rem;
  color:#ff6b35;
  margin-bottom:10px;
  font-weight:700;
}
.team-card p{
  color:#ddd;
  font-size:1rem;
}

/* SECTION SUBTITLE */
.section-subtitle{
  text-align:center;
  font-size:1.1rem;
  color:#ccc;
  margin-bottom:50px;
}

@media(max-width:768px){
  .nav-links{ display:none; }
  .footer-right{ text-align:left; }
  
  .hero-content h1{
    font-size:2rem;
  }
  .hero-content p{
    font-size:1rem;
  }
  
  .section-title{
    font-size:1.8rem;
  }
  
  .grid{
    grid-template-columns:1fr;
  }

/* SERVICE DETAIL CARDS */
.service-detail-card{
  background:rgba(255,255,255,0.1);
  border:2px solid rgba(255,107,53,0.2);
  border-radius:8px;
  padding:40px 30px;
  text-align:center;
  transition:all 0.3s ease;
  position:relative;
}
.service-detail-card:hover{
  background:rgba(255,255,255,0.15);
  border-color:#ff6b35;
  transform:translateY(-5px);
}
.service-number{
  position:absolute;
  top:-15px;
  left:50%;
  transform:translateX(-50%);
  width:40px;
  height:40px;
  background:#ff6b35;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:1.2rem;
}
.service-detail-card i{
  font-size:2.5rem;
  color:#ff6b35;
  margin-bottom:20px;
}
.service-detail-card h3{
  font-size:1.2rem;
  color:#fff;
  margin-bottom:15px;
}
.service-detail-card p{
  color:#ddd;
  font-size:0.95rem;
  line-height:1.6;
}

/* PROJECT CARDS WITH LOGOS */
.project-card{
  background:#ffffff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:10px;
  padding:28px 22px;
  text-align:center;
  transition:all 0.25s ease;
  position:relative;
  box-shadow:0 6px 18px rgba(16,24,40,0.06);
}
.project-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(16,24,40,0.12);
  border-color:rgba(255,107,53,0.18);
}
.project-logo{
  width:140px;
  height:90px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  background:#ffffff;
  border-radius:8px;
  padding:8px;
  box-shadow:0 6px 14px rgba(16,24,40,0.06);
}
.project-logo img{
  max-height:70px;
  max-width:120px;
  object-fit:contain;
  display:block;
}
.project-card{ display:flex; flex-direction:column; align-items:center; }
.project-card h3{
  font-size:1.15rem;
  color:var(--dark);
  margin-bottom:8px;
  margin-top:6px;
}
.project-card p{
  color:#555;
  font-size:0.95rem;
  line-height:1.5;
  margin-bottom:6px;
}

/* PROCESS GRID */
.process-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:20px;
  align-items:center;
  max-width:1200px;
  margin:auto;
}
.process-arrow{
  display:flex;
  justify-content:center;
  align-items:center;
  color:#ff6b35;
  font-size:2rem;
}
.process-card{
  background:#fff;
  border-radius:8px;
  padding:40px 25px;
  text-align:center;
  transition:all 0.3s ease;
  position:relative;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}
.process-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}
.process-number{
  width:50px;
  height:50px;
  background:#ff6b35;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:1.5rem;
  margin:0 auto 20px;
}
.process-card h3{
  font-size:1.2rem;
  color:#111;
  margin-bottom:15px;
}
.process-card p{
  color:#666;
  font-size:0.95rem;
  line-height:1.6;
  margin-bottom:20px;
}
.process-card i{
  font-size:2.5rem;
  color:#ff6b35;
  margin-bottom:0 !important;
}

/* PORTFOLIO GRID */
.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:30px;
  max-width:1200px;
  margin:auto;
}
.portfolio-item{
  background:rgba(255,255,255,0.05);
  border-radius:8px;
  overflow:hidden;
  transition:all 0.3s ease;
}
.portfolio-item:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.3);
}
.portfolio-image{
  height:250px;
  background:linear-gradient(135deg, rgba(255,107,53,0.3) 0%, rgba(255,107,53,0.1) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  position:relative;
}
.image-placeholder{
  text-align:center;
  color:#ff6b35;
  opacity:0.8;
  transition:all 0.3s ease;
}
.image-placeholder i{
  font-size:3.5rem;
  margin-bottom:10px;
  display:block;
}
.image-placeholder p{
  font-weight:600;
  font-size:1.1rem;
}
.portfolio-item:hover .image-placeholder{
  opacity:1;
  transform:scale(1.05);
}
.portfolio-item h3{
  color:#fff;
  padding:25px 20px 10px;
  font-size:1.2rem;
  margin-bottom:10px;
}
.portfolio-item p{
  color:#ccc;
  padding:0 20px 20px;
  font-size:0.95rem;
  line-height:1.6;
}

/* PORTFOLIO GRID DISPLAY */
.portfolio-grid-display{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:30px;
  max-width:1200px;
  margin:auto;
  padding:20px;
}
.work-card{
  background:rgba(255,255,255,0.05);
  border-radius:12px;
  overflow:hidden;
  transition:all 0.3s ease;
  border:1px solid rgba(255,107,53,0.2);
}
.work-card:hover{
  transform:translateY(-10px);
  border-color:#ff6b35;
  background:rgba(255,255,255,0.08);
  box-shadow:0 20px 50px rgba(255,107,53,0.15);
}
.work-image{
  position:relative;
  overflow:hidden;
  height:280px;
}
.work-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.4s ease;
}
.work-card:hover .work-image img{
  transform:scale(1.08);
}
.work-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(255,107,53,0.8) 0%, rgba(17,17,17,0.8) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:opacity 0.4s ease;
  z-index:5;
}
.work-card:hover .work-overlay{
  opacity:1;
}
.work-hover-content{
  text-align:center;
  color:#fff;
}
.work-hover-content i{
  font-size:2.5rem;
  color:#fff;
  margin-bottom:10px;
  display:block;
}
.work-hover-content p{
  font-size:1.1rem;
  font-weight:600;
}
.work-content{
  padding:30px 25px;
}
.work-category{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,107,53,0.15);
  color:#ff6b35;
  padding:6px 12px;
  border-radius:20px;
  font-size:0.85rem;
  font-weight:600;
  margin-bottom:15px;
}
.work-category i{
  font-size:0.9rem;
}
.work-content h3{
  color:#fff;
  font-size:1.4rem;
  margin:0 0 12px;
  line-height:1.3;
}
.work-content p{
  color:#ccc;
  font-size:0.95rem;
  line-height:1.6;
  margin:0 0 20px;
}
.work-stats{
  display:flex;
  gap:15px;
  padding-top:15px;
  border-top:1px solid rgba(255,255,255,0.1);
}
.work-stats .stat{
  display:flex;
  align-items:center;
  gap:8px;
  color:#ff6b35;
  font-size:0.9rem;
  font-weight:600;
}
.work-stats .stat i{
  font-size:1rem;
}

@media(max-width:768px){
  .portfolio-grid-display{
    grid-template-columns:1fr;
    gap:20px;
  }
  .work-image{
    height:240px;
  }
  .work-content{
    padding:20px;
  }
  .work-content h3{
    font-size:1.2rem;
  }
}

@media(max-width:768px){
  .process-grid{
    gap:0;
  }
  .process-arrow{
    display:none;
  }
}
