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

}

body{
  background:#f5f7fb;
  color:#222;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:#fff;
  box-shadow:0 2px 20px rgba(0,0,0,.08);
  z-index:1000;
}

/* nav{
  height:80px;
  display:flex;
  justify-content:space-between;
  align-items:center;
} */

.logo{
  font-size:28px;
  font-weight:800;
  color:#006e1c;
}

/* nav ul{
  display:flex;
  gap:30px;
  list-style:none;
}

nav ul a{
  text-decoration:none;
  color:#333;
  font-weight:600;
  transition:.3s;
}

nav ul a:hover{
  color:#006e1c;
} */

/* --- HERO SECTION UPDATED --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    linear-gradient(rgba(5,25,70,.75), rgba(5,25,70,.75)),
    url("images/hero.jpeg"); 
  background-size: cover;       
  background-position: center; 
  background-repeat: no-repeat; 
  color: #fff;
  overflow: hidden;
}

/* Overlay tint */
.hero::before {
  content:"";
  position:absolute;
  bottom:0;
  right:-80px;
  width:250px;
  height:100%;
  background:#0a1f44;
  transform:skewX(-20deg);
  z-index:0;
}

.hero::after {
  content:"";
  position:absolute;
  top:0;
  left:-80px;
  width:200px;
  height:100%;
  background:#00a86b;
  transform:skewX(-20deg);
  z-index:0;
}

.hero .circle-shape {
  position:absolute;
  top:20%;
  right:10%;
  width:150px;
  height:150px;
  background:#006e1c;
  border-radius:50%;
  opacity:0.4;
  z-index:0;
} 

.hero .triangle-shape {
  position:absolute;
  bottom:15%;
  left:10%;
  width:0;
  height:0;
  border-left:120px solid transparent;
  border-right:120px solid transparent;
  border-bottom:200px solid #0a1f44;
  opacity:0.5;
  z-index:0;
} 

.hero-content{
  position:relative;
  z-index:2;
  max-width:650px;
}

.hero h1{
  font-size:58px;
  font-weight:800;
  margin-bottom:20px;
  line-height:1.1;
}

.hero p{
  font-size:18px;
  margin-bottom:30px;
}

.buttons{
  display:flex;
  gap:15px;
}

.btn{
  display:inline-block;
  padding:15px 35px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
  margin-top:10px;
}

.primary{
  background:#006e1c;
  color:#fff;
}

.primary:hover{
  background:#006e1c;
}

.secondary{
  border:2px solid #fff;
  color:#fff;
}

.secondary:hover{
  background:#fff;
  color:#111;
}

/* --- OTHER SECTIONS --- */
section{
  padding:100px 0;
}

section {
  position: relative;
  overflow: hidden;
}

.section-title{
  font-size:40px;
  text-align:center;
  margin-bottom:15px;
}

.section-title::after,
.about-section .section-title::after {
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:820px;
  height:60px;
  background:#00a86b;
  border-radius:50%;
  opacity:0.2;
  z-index:1;
}
.section-title,
.about-section .section-title {
  position: relative;
}


.section-subtitle{
  text-align:center;
  margin-bottom:60px;
  color:#666;
}

section::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#f5f7fb;
  clip-path:polygon(0 0, 100% 0, 100% 90%, 0 100%);
  z-index:-1;
}

section {
  position:relative;
}


.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.card-content {
  display: flex;
  gap: 20px;          /* space between left and right */
  align-items: flex-start;
}

.card-content .left,
.card-content .right {
  flex: 1;            /* each column takes equal width */
}


.card{
  background:#fff;
  padding:35px;
  border-radius:15px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.3s;
}
.card:hover{
  transform:translateY(-8px);
}

.card h3{
  margin:20px 0 10px;
  color:#006e1c;
}

.card::before {
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:0;
  height:0;
  border-left:80px solid transparent;
  border-bottom:80px solid #006e1c;
  opacity:0.1;
}
.card {
  position:relative;
}


.icon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:#006e1c;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#fff;
}

.about-section{
  background:#fff;
}

.about{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
  gap:50px;
  align-items:center;
}

.about img{
  width:100%;
  border-radius:15px;
}

.about h2{
  font-size:42px;
  margin-bottom:20px;
}

.stat {
  position:relative;
}

.stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  margin-top:40px;
}

.stat{
  background:#006e1c;
  padding:30px;
  text-align:center;
  border-radius:12px;
  color:#fff;
}

.stat h3{
  font-size:42px;
}

.stat::after {
  content:"";
  position:absolute;
  bottom:-10px;
  right:-10px;
  width:40px;
  height:40px;
  background:#fff;
  border-radius:50%;
  opacity:0.2;
}

.cta{
  background:#006e1c;
  color:#fff;
  text-align:center;
}

.cta h2{
  font-size:42px;
  margin-bottom:20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

footer{
  background:#0d162d;
  color:#ddd;
  padding:60px 0;
}

footer a{
  display:block;
  margin:8px 0;
  color:#ddd;
  text-decoration:none;
}

footer a:hover{
  color:#fff;
}

.copyright{
  margin-top:40px;
  padding-top:20px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.1);
}

/* @media(max-width:768px){
  nav{
    flex-direction:column;
    height:auto;
    padding:20px 0;
  }

  nav ul{
    flex-wrap:wrap;
    justify-content:center;
    margin-top:20px;
  }

  .hero{
    text-align:center;
  }

  .hero h1{
    font-size:40px;
  }

  .buttons{
    justify-content:center;
    flex-wrap:wrap;
  }

  .about{
    grid-template-columns:1fr;
  }
} */

.about {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.about .left {
  flex: 1;
  display: grid; /* creates collage */
  grid-template-columns: 1fr 1fr; /* 2 columns */
  gap: 10px;
}

.about .left img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover; /* keeps images tidy */
}

.about .right {
  flex: 2;
}

/* --- TABLE STYLING --- */
.table-wrapper {
  margin: 50px auto;
  max-width: 1000px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

thead {
  background: #006e1c;
  color: #fff;
}

th, td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

tbody tr:hover {
  background: #f5f7fb;
}

th:first-child, td:first-child {
  text-align: center;
  width: 60px;
}

.status-active {
  color: #00a86b;
  font-weight: 600;
}

.licence-section table {
  margin-bottom: 40px;
}

footer::before {
  content:"";
  position:absolute;
  top:-50px;
  left:0;
  width:100%;
  height:50px;
  background:#1c8d39;
  clip-path:polygon(0 0, 100% 100%, 0 100%);
}
footer {
  position:relative;
}

