



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* BODY */
body {
  background: #020617; /* deep navy */
  color: white;
}

/* NAVBAR */
.navbar {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  color: #00ff88;
  font-size: 22px;
  font-weight: bold;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #bbb;
  font-size: 15px;
  transition: 0.3s;
}

nav a:hover {
  color: #00ff88;
}

/* HERO SECTION */
.hero {
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  background: radial-gradient(circle at 15% 25%, rgba(0,255,136,0.08), transparent 40%),
              radial-gradient(circle at 85% 75%, rgba(0,255,136,0.05), transparent 40%),
              linear-gradient(135deg, #020617, #031a14, #020617);
}

/* GLOW EFFECT */
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,255,136,0.06), transparent);
  top: -200px;
  left: -200px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,255,136,0.05), transparent);
  bottom: -200px;
  right: -200px;
}

/* CONTAINER */
.hero-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */
.hero-left {
  flex: 1;
}

.tag {
  background: rgba(0,255,136,0.12);
  color: #00ff88;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero span {
  color: #00ff88;
}

.hero-desc {
  color: #aaa;
  margin-bottom: 25px;
  max-width: 500px;
  line-height: 1.6;
}

/* FEATURES */
.features {
  display: flex;
  gap: 25px;
  margin-top: 10px;
}

.features span {
  color: #00ff88;
  font-size: 14px;
}

/* RIGHT IMAGE */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-right img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(0,255,136,0.15);
  object-fit: cover;
}


.hero-right img {
  width: 100%;
  max-width: 980px;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
}


/* STATS SECTION */
.stats {
  width: 85%;
  margin: 20px auto 40px; /* FIXED */
  display: flex;
  justify-content: space-between;
  gap: 20px;

  background: rgba(255,255,255,0.04);
  padding: 30px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,255,136,0.15);
}

.stat-box {
  text-align: center;
  flex: 1;
}

.stat-box i {
  font-size: 28px;
  color: #00ff88;
  margin-bottom: 12px;
}

.stat-box h3 {
  color: #00ff88;
  margin-bottom: 5px;
}

.stat-box p {
  color: #aaa;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .features {
    justify-content: center;
  }

  .stats {
    flex-direction: column;
  }
}











.about-section {
  padding: 100px 8%;
  background: radial-gradient(circle at top right, #022c22, #020617 60%);
  color: white;
}

.about-section {
  padding-bottom: 140px; /* increase bottom space */
}

/* GRID */
.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 70px;
}

/* TAG */
.tag {
  display: inline-block;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

/* TEXT */
.about-left h1 {
  font-size: 48px;
  line-height: 1.2;
}

.about-left span {

  color: #22c55e;
}

.subtitle {
  color: #94a3b8;
  margin: 15px 0 25px;
  font-size: 16px;
}

/* VISION BOX */
.vision-box {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.3);
  padding: 10px;
  border-radius: 16px;
  line-height: 1.6;
  backdrop-filter: blur(10px);
}

.vision-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
}

.vision-header i {
  color: #22c55e;
  font-size: 20px;
}

/* IMAGE */
.about-right img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

/* FEATURE GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.feature-card {
  background: rgba(255,255,255,0.04);
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

/* ICON STYLE (MATCH IMAGE) */
.feature-card i {
  font-size: 28px;
  color: #22c55e;
  margin-bottom: 15px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;
  border-radius: 50%;

  background: rgba(34,197,94,0.1);
  box-shadow: 0 0 20px rgba(34,197,94,0.3);
}

/* TEXT */
.feature-card h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.feature-card p {
  font-size: 14px;
  color: #94a3b8;
}

/* HOVER */
.feature-card:hover {
  transform: translateY(-10px);
  border: 1px solid #22c55e;
  box-shadow: 0 15px 30px rgba(34,197,94,0.2);
}

/* MOBILE */
@media (max-width: 900px) {

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-right img {
    height: auto;
    margin-top: 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}






.problem-section {
    background: radial-gradient(circle at top, #022c22, #020617);
    padding: 70px 20px;
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
}

/* HEADER */
.tag {
    color: #22c55e;
    letter-spacing: 3px;
    font-size: 13px;
}

.problem-header h1 {
    font-size: 2.8rem;
    margin:21px 0;
}

.problem-header span {
    color: #22c55e;
}

.subtitle {
    max-width: 700px;
    margin: auto;
    color: #cbd5f5;
    line-height: 1.7;
}

/* GRID */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap:45px;
    margin-top:35px;
}

/* CARD */
.problem-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 20px;
    padding: 20px 20px;
    transition: 0.3s;
    position: relative;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 10px rgba(34,197,94,0.3);
}

/* ICON CIRCLE */
.icon-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1px;
    margin-bottom: 1px;
}

.icon-circle i {
    font-size: 28px;
    color: #22c55e;
}

/* CARD TEXT */
.problem-card h3 {
    margin:11px 0;
}

.problem-card p {
    font-size: 14px;
    color: #cbd5f5;
}

/* BOTTOM BOX */
.bottom-box {
    margin-top:38px;
    display: inline-flex;
    align-items: center;
    gap:15px;
    padding: 5px 5px;
    border-radius: 10px;
    border: 1px solid #22c55e;
    background: rgba(34,197,94,0.1);
}

.bottom-box i {
    color: #22c55e;
}










.contact-section {
  min-height: 100vh;
  padding: 80px 8%;
  background: linear-gradient(135deg, #020617, #062f24);
  color: white;
  display: flex;
  align-items: center;
}

.contact-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  width: 100%;
}

/* LEFT SIDE */
.contact-left h2 {
  font-size: 48px;
  line-height: 1.2;
  margin: 20px 0;
}

.contact-left h2 span {
  color: #00ff9c;
}

.contact-left p {
  color: #cbd5e1;
  font-size: 16px;
  margin-bottom: 20px;
}

.contact-tag {
  background: rgba(0,255,156,0.1);
  color: #00ff9c;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
}

/* RIGHT SIDE */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(0,255,156,0.2);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: #00ff9c;
}

.icon {
  font-size: 30px;
  margin-right: 15px;
}

.card-text {
  flex: 1;
}

.card-text h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #00ff9c;
}

.card-text p {
  font-size: 14px;
  color: #cbd5e1;
}

/* BUTTON */
.btn {
  background: transparent;
  border: 1px solid #00ff9c;
  padding: 10px 18px;
  border-radius: 8px;
  color: #00ff9c;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn:hover {
  background: #00ff9c;
  color: black;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-left h2 {
    font-size: 36px;
  }
}




nav a.active {
  color: #00ff88;
  font-weight: bold;
}




/* Mobile Responsive */

@media(max-width:768px){

    body{
        overflow-x:hidden;
    }

    .container{
        flex-direction:column;
        width:100%;
    }

    .sidebar{
        width:100%;
        height:auto;
    }

    .main-content{
        width:100%;
        padding:10px;
    }

    table{
        display:block;
        overflow-x:auto;
        width:100%;
    }

    img{
        max-width:100%;
        height:auto;
    }

}










/* products*/




/* ===== SECTION BACKGROUND ===== */
.products {
  padding: 100px 70px;
  background: linear-gradient(135deg, #022c22, #064e3b, #02110d);
  text-align: center;
  color: white;
}

/* HEADER TEXT */
.section-tag {
  color: #00ff88;
  font-size: 12px;
  letter-spacing: 2px;
}

.section-title {
  font-size: 46px;
  margin: 10px 0;
}

.section-title span {
  color: #00ff88;
}

.section-subtitle {
  color: #b5c9c2;
  margin-bottom: 60px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.product-card {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(11,47,38,0.95), rgba(7,28,23,0.95));
  border: 1px solid rgba(0,255,136,0.2);
  transition: 0.3s;
}

/* HOVER */
.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 40px rgba(0,255,136,0.25);
}

/* IMAGE */
.product-img {
  height: 200px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.product-content {
  padding: 25px;
  text-align: left;
}

/* TITLE */
.product-content h3 {
  margin-bottom: 5px;
}

.product-sub {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 15px;
}

/* LIST */
.product-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.product-content ul li {
  font-size: 14px;
  color: #aeeed4;
  margin-bottom: 6px;
}

/* BUTTON */
.product-content .btn {
  background: #00ff88;
  color: black;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}

.product-content .btn:hover {
  box-shadow: 0 0 15px #00ff88;
}

/* HIGHLIGHT CARD */
.product-card.highlight {
  border: 1px solid #00ff88;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}



/*products*/



.products {
  padding: 70px 6%;
  background: linear-gradient(135deg, #02150f, #063d2a);
  color: white;
  text-align: center;
}

/* TITLE */
.products h2 {
  font-size: 27px;
  margin-bottom: 10px;
}

.subtitle {
  color: #bbb;
  margin-bottom: 35px;
}

/* MAIN LAYOUT */
.products-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}

/* BIG CARD */
.product-big {
  position: relative;
  height:380px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,255,136,0.3);
  box-shadow: 0 0 25px rgba(0,255,136,0.2);
}

.product-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SMALL GRID */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* SMALL CARD */
.product-card {
  position: relative;
  height: 190px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0,255,136,0.25);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY TEXT */
.product-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  text-align: left;
}

.product-overlay h3 {
  color: #00ff88;
  font-size: 15px;
}

.product-overlay p {
  font-size: 13px;
  color: #ddd;
}

.product-overlay ul {
  margin-top: 6px;
  font-size: 13px;
}

/* ICON SECTION */
.product-features {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 6px;
  border-radius: 15px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.product-features div {
  text-align: center;
}

.product-features i {
  font-size: 26px;
  color: #00ff88;
  display: block;
  margin-bottom: 8px;
}

.product-features span {
  font-size: 14px;
  color: #bbb;
}



/* STATS */
.stats-section {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 40px;
}

.stat h2 {
  color: #00ff88;
  font-size: 2rem;
}

.stat p {
  color: #d0dad1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .stats-section {
    flex-direction: column;
    gap: 20px;
  }
}






.solution-section {
    background: radial-gradient(circle at top, #020617, #022c22);
    padding: 70px 20px;
    text-align: center;
    color: rgb(227, 255, 217);
}

/* HEADER SAME STYLE */
.solution-header h1 {
    font-size: 2.8rem;
    margin: 10px 0;
}

.solution-header span {
    color: #22c55e;
}

/* GRID */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* CARD */
.solution-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 20px;
    padding: 40px 25px;
    transition: 0.3s;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(34,197,94,0.3);
}

/* ICON */
.icon-circle {
    width: 70px;
    height: 70px;
    border: 2px solid #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
}

.icon-circle i {
    font-size: 28px;
    color: #22c55e;
}















/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  background: rgba(0, 0, 0, 0.7);
  margin: -60px auto 0;
  width: 90%;
  border-radius: 20px;
  padding: 30px 20px;
  backdrop-filter: blur(10px);
}

.stat-card {
  text-align: center;
  width: 22%;
}

.stat-card i {
  font-size: 30px;
  color: #00ff88;
  background: rgba(0, 255, 136, 0.15);
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.stat-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* SECTIONS */
.section {
  padding: 70px 50px;
  text-align: center;
}

.section h2 {
  margin-bottom: 15px;
  color: #00ff88;
}






/* impact*/







.impact-final {
  min-height: 100vh;   /* instead of height */
  padding: 120px 6% 50px; /* top padding increased */

  text-align: center;
  color: white;

  background:
    radial-gradient(circle at center, rgba(0,255,136,0.15), transparent 60%),
    linear-gradient(135deg, #020617, #031a14);
}






/* TITLE */
.impact-final h2 {
  font-size: 30px;
}
.impact-final span {
  color: #00ff88;
}
.sub {
  color: #aaa;
  margin-bottom: 30px;
}

/* LAYOUT */
.impact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 160px; /* IMPORTANT */
}

/* CENTER IMAGE */
.center img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00ff88;
  box-shadow:
    0 0 30px #00ff88,
    0 0 80px rgba(0,255,136,0.4);
}

/* SIDE */
.side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* CARD */
.card {
  width: 260px;
  display: flex;
  gap: 12px;
  padding: 18px;

  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  border: 1px solid rgba(0,255,136,0.25);

  position: relative;
  text-align: left;
}

/* ICON */
.card i {
  color: #00ff88;
  font-size: 18px;
  margin-top: 5px;
}

/* TEXT */
.card h3 {
  color: #00ff88;
  font-size: 15px;
}
.card p {
  font-size: 15px;
  color: #bbb;
}

/* 🔥 PERFECT LINE CONNECTION */
.card::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: 180px; /* KEY FIX */
  background: linear-gradient(to right, #00ff88, transparent);
  transform: translateY(-50%);
}

/* LEFT SIDE */
.left .card::after {
  right: -180px;
}

/* RIGHT SIDE */
.right .card::after {
  left: -180px;
  background: linear-gradient(to left, #00ff88, transparent);
}

/* BOTTOM STRIP */
.impact-strip {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;

  padding: 18px;
  border-radius: 12px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,255,136,0.2);
}

.impact-strip span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00ff88;
}





.impact-strip {
  width: 60%;          /* reduce width */
  margin: 20px auto 0; /* center it */
}


#impact {
  scroll-margin-top: 150px;
}










/* IMPORTANT RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.why{
  min-height: 100vh; /* FIXED */
  padding: 60px 6%;
  display:flex;
  flex-direction:column;
  gap:30px;

  background:
    radial-gradient(circle at center, rgba(0,255,136,0.15), transparent 60%),
    linear-gradient(135deg, #020617, #031a14);

  color:white;
  font-family: Arial, sans-serif;
}

/* HEADER */
.why-header{
  text-align:center;
}
.why-header h2{
  font-size:40px;
}
.why-header span{
  color:#00ff88;
}
.why-header p{
  font-size:20px;
  color:#a7f3d0;
  margin-top:10px;
}

/* STATS */
.why-stats{
  display:flex;
  gap:15px;
}
.why-stats div{
  flex:1;
  text-align:center;
  padding:15px;
  border-radius:12px;
  background:rgba(255,255,255,0.05);
}
.why-stats h3{
  color:#00ff88;
  font-size:25px;
}
.why-stats small{
  font-size:17px;
  color:#a7f3d0;
}

/* GRID */
.why-grid{
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap:20px;
}

/* BOX */
.why-box{
  background:rgba(255,255,255,0.05);
  padding:20px;
  border-radius:12px;
  transition:0.3s;
}
.why-box:hover{
  transform:translateY(-5px);
  box-shadow:0 0 20px rgba(0,255,136,0.2);
}

/* BIG BOX */
.big{
  grid-row: span 2;
}

/* TEXT */
.why-box h3{
  color:#00ff88;
  font-size:20px;
  margin-bottom:10px;
}
.why-box p{
  font-size:16px;
  margin-bottom:10px;
}
.why-box ul{
  margin-left:18px;
  font-size:16px;
  color:#a7f3d0;
}

/* TAGS */
.tags span{
  display:inline-block;
  margin:5px;
  padding:6px 12px;
  background:rgba(0,255,136,0.1);
  border-radius:10px;
  font-size:12px;
}

/* FEATURES */
.why-features{
  display:grid;
  grid-template-columns: repeat(5,1fr);
  gap:12px;
}
.why-features div{
  padding:12px;
  border-radius:10px;
  background:rgba(255,255,255,0.05);
  text-align:center;
  font-size:13px;
}



.why{
  padding-top: 100px; /* ADD THIS */
}



