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

body {
background-color: #f85e01;
color: #fff;
text-align: center;
min-height: 100vh;
display: flex;
flex-direction: column;
}


header {
background: #3d3a37;
padding: 20px 50px;
display: flex;
justify-content: space-between;
align-items: center;
color: #fff;
}


.logo img {
height: 200px; /* reduced to a more reasonable size; adjust as needed */
display: block;
}


.nav-links {
list-style: none;
display: flex;
}


.nav-links li {
margin: 0 15px;
}

.nav-links a {
color: #fff;
text-decoration: none;
font-weight: 600;
}

a{
  color: #f85e01;
}


#hero {
background: linear-gradient(to right, #f85e01, #c44b00);
color: white;
padding: 50px 20px;
}


.cta-button {
background: #3d3a37;
color: white;
padding: 15px 30px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: 0.3s;
}

.cta-button:hover {
background: #c44b00
}


section {
padding: 50px 20px;
}


.service-box {
background: #3d3a37;
color: white;
padding: 20px;
margin: 15px;
border-radius: 10px;
display: inline-block;
width: 200px;
}


form {
display: flex;
flex-direction: column;
max-width: 400px;
margin: auto;
}


input, textarea, button {
margin: 10px 0;
padding: 15px;
border: none;
border-radius: 5px;
}


button {
background: #3d3a37;
color: white;
font-weight: bold;
cursor: pointer;
transition: 0.3s;
}


button:hover {
background: #c44b00;
}


footer {
background: #222;
color: white;
padding: 20px;
margin-top: auto;
}


@media (max-width: 640px) {
header { padding: 12px 18px; }
#hero { padding: 60px 16px; }
.logo img { height: 56px; }
.service-box { width: calc(100% - 40px); display: block; }
}

.thankyou {
  text-align: center;
  padding: 100px 20px;
}

.thankyou-box {
  background: #3d3a37;
  padding: 40px;
  border-radius: 12px;
  display: inline-block;
  max-width: 500px;
  color: #fff;
}

/* CSS */
:root{
  --bg: #14161a;           /* page background - deep charcoal */
  --panel: #1f2328;        /* slightly lighter panel bg (if used) */
  --muted: #bfc4c9;
  --white: #ffffff;
  --brand: #f85e01;        /* orange */
  --brand-dark: #d04b00;
  --card-radius: 12px;
  --card-min: 240px;
  --gap: 20px;
  --max-width: 1200px;
}

html,body{height:100%;}
body{
  margin:0;
  background: var(--bg);
  color: var(--white);
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

/* container to center content */
.container{
  width: 94%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 0;
}

/* services section sits visually on the dark background */
.services-section{
  padding: 28px;
}

/* heading on dark background */
.services-section h2{
  margin: 0 0 6px 0;
  font-size: 1.7rem;
  color: var(--white);
}
.services-section .lead{
  margin: 0 0 22px 0;
  color: var(--muted);
  font-size: 1rem;
}

/* responsive grid */
.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--card-min), 1fr));
  gap: var(--gap);
  align-items: stretch;
}

/* orange cards with white text */
.service-card{
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color: var(--white);
  border-radius: var(--card-radius);
  padding: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  display:flex;
  flex-direction:column;
  gap:12px;
  transition: transform .15s ease, box-shadow .15s ease;
  min-height: 180px;
  border: 1px solid rgba(0,0,0,0.15);
}

/* hover/focus */
.service-card:hover,
.service-card:focus{
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(0,0,0,0.55);
  outline: none;
}

/* icon styling: subtle circular chip */
.service-card .icon{
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background: rgba(255,255,255,0.08);
  font-size:20px;
  flex: 0 0 auto;
}

/* title + text */
.service-card h3{
  margin:0;
  font-size:1.05rem;
  line-height:1.2;
  font-weight:600;
}
.service-card p{
  margin:0;
  color: rgba(255,255,255,0.92);
  font-size:0.95rem;
  line-height:1.45;
  flex:1 0 auto;
}

/* CTA styled to contrast on orange card */
.card-cta{
  display:inline-block;
  margin-top:8px;
  padding:8px 12px;
  border-radius:8px;
  text-decoration:none;
  background: rgba(255,255,255,0.95);
  color: var(--brand-dark);
  font-weight:700;
  font-size:0.9rem;
  align-self:flex-start;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform .12s ease, box-shadow .12s ease;
}
.card-cta:hover,
.card-cta:focus{
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.32);
  text-decoration: none;
}

/* mobile tweaks */
@media (max-width:640px){
  .container{ padding: 12px 0; }
  .services-section{ padding: 12px; }
  .service-card{ padding: 14px; min-height:150px; }
  .service-card .icon{ width:40px; height:40px; font-size:18px; }
}

.reveal-btn{
  background:#3d3a37;
  color:#fff;
  border:none;
  padding:10px 14px;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
}
.contact-phone{
  color:#fff;
  background:transparent;
  text-decoration:underline;
  font-weight:700;
}
.contact-wa{
  display:inline-block;
  margin-left:8px;
  background:#25D366; /* whatsapp green */
  color:#fff;
  padding:8px 10px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
}

/* menu */
.nav-links li
{
  padding: 15px;
  border-radius: 5px;
}

.nav-links .menu-icon
{
  font-size: 30px;
}

.nav-links.main-menu li
{
  margin: 0;
  cursor: pointer;
}

.nav-links.main-menu li:hover, .nav-links.main-menu li:hover a
{
  background-color: white;
  color: #3a3734;
}

.nav-links .active
{
  font-weight: 700;
  background-color: #f85e01;
}