:root{
  --primary:#176D3D;
  --primary-dark:#0f4327;
  --gold:#E1B656;
  --dark:#17211c;
  --text:#26362d;
  --muted:#6b7a70;
  --light:#f6f8f4;
  --white:#ffffff;
  --shadow:0 18px 50px rgba(0,0,0,.10);
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Cairo', sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.8;
}

a{
  text-decoration:none;
}

.section-padding{
  padding:100px 0;
}

.navbar{
  padding:18px 0;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.navbar-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  color:var(--primary)!important;
  font-size:1.45rem;
}

.brand-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  background:var(--primary);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
}

.nav-link{
  color:var(--dark)!important;
  font-weight:700;
  margin:0 6px;
  transition:.3s;
}

.nav-link:hover{
  color:var(--primary)!important;
}

.btn-gold{
  background:var(--gold);
  color:var(--primary-dark);
  border:none;
  border-radius:999px;
  font-weight:800;
  padding:11px 26px;
  box-shadow:0 12px 30px rgba(225,182,86,.35);
  transition:.3s;
}

.btn-gold:hover{
  transform:translateY(-3px);
  background:#d7aa41;
  color:var(--primary-dark);
}

.btn-dark-green{
  background:var(--primary-dark);
  color:white;
  border-radius:999px;
  padding:12px 30px;
  font-weight:800;
}

.btn-dark-green:hover{
  background:var(--primary);
  color:white;
}

/* Hero */
.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    linear-gradient(rgba(23,109,61,.88), rgba(10,45,25,.94)),
    url('https://images.unsplash.com/photo-1581093588401-fbb62a02f120?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.hero::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  border-radius:50%;
  background:rgba(225,182,86,.18);
  top:12%;
  left:-160px;
  filter:blur(5px);
}

.hero-content{
  position:relative;
  z-index:2;
  padding-top:90px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 18px;
  border:1px solid rgba(225,182,86,.55);
  background:rgba(255,255,255,.10);
  color:var(--gold);
  border-radius:999px;
  font-weight:800;
  margin-bottom:22px;
}

.hero h1{
  color:white;
  font-size:clamp(2.5rem, 6vw, 5rem);
  font-weight:900;
  line-height:1.25;
  margin-bottom:22px;
}

.hero p{
  color:rgba(255,255,255,.86);
  font-size:1.18rem;
  max-width:720px;
}

.hero-panel{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(18px);
  border-radius:34px;
  padding:38px;
  color:white;
  box-shadow:var(--shadow);
}

.panel-icon{
  width:76px;
  height:76px;
  border-radius:24px;
  background:var(--gold);
  color:var(--primary-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  margin-bottom:22px;
}

.hero-panel h3{
  font-weight:900;
  margin-bottom:14px;
}

.panel-list{
  display:grid;
  gap:12px;
  margin-top:25px;
}

.panel-list span{
  background:rgba(255,255,255,.12);
  border-radius:16px;
  padding:12px 14px;
  font-weight:700;
}

.panel-list i{
  color:var(--gold);
  margin-left:8px;
}

/* Stats */
.stats-section{
  margin-top:-60px;
  position:relative;
  z-index:5;
}

.stats-box{
  background:white;
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow);
}

.stat-item h3{
  color:var(--primary);
  font-size:2.2rem;
  font-weight:900;
}

.stat-item p{
  margin:0;
  color:var(--muted);
  font-weight:700;
}

/* Common */
.section-label{
  display:inline-block;
  color:var(--primary);
  background:rgba(23,109,61,.09);
  padding:8px 18px;
  border-radius:999px;
  font-weight:900;
  margin-bottom:14px;
}

.section-label.light{
  background:rgba(255,255,255,.12);
  color:var(--gold);
}

.section-title{
  color:var(--dark);
  font-weight:900;
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1.35;
  margin-bottom:18px;
}

.section-desc{
  color:var(--muted);
  font-size:1.05rem;
  max-width:760px;
}

.image-stack{
  position:relative;
}

.main-img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:34px;
  box-shadow:var(--shadow);
}

.experience-card{
  position:absolute;
  right:28px;
  bottom:28px;
  background:var(--gold);
  color:var(--primary-dark);
  padding:22px 26px;
  border-radius:22px;
  box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.experience-card strong{
  display:block;
  font-weight:900;
  font-size:1.3rem;
}

.experience-card span{
  font-weight:700;
}

.mini-card,
.solution-card,
.contact-card,
.sector-card{
  background:white;
  border:1px solid rgba(23,109,61,.08);
  box-shadow:0 14px 40px rgba(0,0,0,.06);
  border-radius:26px;
  transition:.3s;
}

.mini-card{
  padding:26px;
  height:100%;
}

.mini-card:hover,
.solution-card:hover,
.contact-card:hover,
.sector-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow);
}

.mini-card i,
.solution-card i,
.contact-card i,
.sector-card i{
  color:var(--gold);
  background:var(--primary);
  width:58px;
  height:58px;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1.35rem;
  margin-bottom:18px;
}

.mini-card h5,
.solution-card h5{
  color:var(--dark);
  font-weight:900;
}

.mini-card p,
.solution-card p{
  color:var(--muted);
  margin-bottom:0;
}

/* Solutions */
.solutions,
.sectors{
  background:var(--light);
}

.solution-card{
  padding:34px 26px;
  height:100%;
}

/* Why */
.why-section{
  background:
    radial-gradient(circle at 20% 20%, rgba(225,182,86,.2), transparent 30%),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.why-item{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  color:white;
  padding:20px;
  border-radius:20px;
  font-weight:800;
  backdrop-filter:blur(10px);
}

.why-item i{
  color:var(--gold);
  margin-left:8px;
}

/* Timeline */
.timeline{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.timeline-item{
  position:relative;
  background:white;
  border-radius:26px;
  padding:32px 24px;
  box-shadow:0 14px 40px rgba(0,0,0,.06);
  border-top:5px solid var(--gold);
}

.timeline-item span{
  display:inline-flex;
  width:52px;
  height:52px;
  border-radius:16px;
  align-items:center;
  justify-content:center;
  background:var(--primary);
  color:var(--gold);
  font-weight:900;
  margin-bottom:18px;
}

.timeline-item h5{
  font-weight:900;
  color:var(--dark);
}

.timeline-item p{
  color:var(--muted);
  margin:0;
}

/* Sectors */
.sector-card{
  padding:28px;
  display:flex;
  align-items:center;
  gap:18px;
  height:100%;
}

.sector-card i{
  margin-bottom:0;
  flex:none;
}

.sector-card span{
  font-weight:900;
  color:var(--dark);
}

/* CTA */
.cta-section{
  padding:70px 0;
  background:white;
}

.cta-box{
  background:
    linear-gradient(135deg, rgba(225,182,86,.98), rgba(241,204,120,.98));
  border-radius:34px;
  padding:55px 25px;
  text-align:center;
  color:var(--primary-dark);
  box-shadow:var(--shadow);
}

.cta-box h2{
  font-weight:900;
  font-size:clamp(1.8rem,4vw,3rem);
}

.cta-box p{
  font-weight:700;
  margin:12px 0 25px;
}

/* Contact */
.contact-card{
  text-align:center;
  padding:34px 22px;
  height:100%;
}

.contact-card h5{
  font-weight:900;
  color:var(--dark);
}

.contact-card p{
  color:var(--muted);
  margin-bottom:0;
  direction:ltr;
}

/* Footer */
footer{
  background:var(--primary-dark);
  color:white;
  padding:45px 0 20px;
}

.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
  flex-wrap:wrap;
  padding-bottom:25px;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.footer-content h4{
  font-weight:900;
}

.footer-content p{
  color:rgba(255,255,255,.65);
  margin:0;
}

.social{
  display:flex;
  gap:12px;
}

.social a{
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.10);
  color:var(--gold);
  transition:.3s;
}

.social a:hover{
  background:var(--gold);
  color:var(--primary-dark);
}

.copyright{
  text-align:center;
  color:rgba(255,255,255,.58);
  padding-top:20px;
  font-size:.95rem;
}

/* Animation */
.reveal{
  opacity:0;
  transform:translateY(25px);
  transition:.7s ease;
}

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

/* Responsive */
@media(max-width:991px){
  .hero{
    min-height:auto;
    padding:135px 0 90px;
  }

  .timeline{
    grid-template-columns:repeat(2,1fr);
  }

  .main-img{
    height:390px;
  }
}

@media(max-width:575px){
  .section-padding{
    padding:70px 0;
  }

  .hero h1{
    font-size:2.3rem;
  }

  .hero-panel{
    padding:26px;
  }

  .stats-box{
    padding:24px 14px;
  }

  .timeline{
    grid-template-columns:1fr;
  }

  .footer-content{
    text-align:center;
    justify-content:center;
  }
}
