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

body{
  background:#f5f5f5;
  color:#111;
  line-height:1.6;
  overflow-x:hidden;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* NAV */
nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  background:#fff;
  border-bottom:1px solid #eee;
}

nav h2{
  color:#0b1d4d;
}

nav a{
  margin:0 10px;
  text-decoration:none;
  color:#333;
  font-weight:500;
}

/* SECTION */
section{
  padding:60px 8%;
}

/* HERO (FIXED) */
.hero{
display:flex;
  align-items:center;
  justify-content:center;   
  gap:30px;                 
  padding:80px 8%;
}

.hero-left{
  flex:0.9;   /* slightly smaller */
}

.hero-right{
  flex:1;
  display:flex;
  justify-content:center;  /* center instead of pushing right */
}
/* FULL HERO BANNER */
.hero-banner{
  width:100%;
  height:90vh;
  background:url('hero.png') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
}

/* DARK OVERLAY */
.hero-overlay{
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.45);
  display:flex;
  align-items:center;
  padding:0 8%;
}


.hero-content{
  animation:fadeUp 0.8s ease;
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}

.hero-content h1{
  font-size:38px;
  line-height:1.3;
}


/* TEXT CONTENT */
.hero-content{
  max-width:550px;
  background:rgba(255,255,255,0.95);
  padding:40px;
  border-radius:12px;
  box-shadow:0 20px 60px rgba(0,0,0,0.2);
}

.hero-content h1{
  font-size:34px;
  margin-bottom:15px;
  color:#0b1d4d;
}

.hero-content p{
  margin-bottom:20px;
  color:#555;
}

/* LEFT SIDE */
.hero-left{
  flex:1;
}

/* CARD */
.hero-card{
  background:#fff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  max-width:500px;
}

/* RIGHT SIDE */
.hero-right{
  flex:1;
  display:flex;
  justify-content:flex-end;
}

/* IMAGE */
.hero-right img{
  width:100%;
  max-width:500px;
  border-radius:12px;
}

/* FIX HERO ALIGNMENT */
.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

/* PREVENT IMAGE DROP */
.hero-left, .hero-right{
  flex:1;
}

/* FORCE RIGHT ALIGN */
.hero-right{
  display:flex;
  justify-content:flex-end;
}
.hero-right img{
  max-width:500px;
  border-radius:16px;
  box-shadow:0 30px 80px rgba(0,0,0,0.2);
}


/* PREMIUM CTA BUTTON */
.cta-btn{
  display:inline-block;
  background:linear-gradient(135deg, #ff6b00, #ff8c42);
  color:#fff;
  padding:14px 28px;
  border:none;
  border-radius:30px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.3s ease;
  box-shadow:0 8px 20px rgba(255,107,0,0.3);
}

/* HOVER EFFECT */
.cta-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(255,107,0,0.4);
  background:linear-gradient(135deg, #ff8c42, #ff6b00);
}

/* CLICK EFFECT */
.cta-btn:active{
  transform:scale(0.97);
}


/* ABOUT */
.about{
  display:flex;
  gap:50px;
  flex-wrap:wrap;
  align-items:center;
}

.about-text{
  flex:1;
  min-width:300px;
}

.about img{
  width:250px;
  border-radius:10px;
}

/* SERVICES */
.services{
  background:#0b1d4d;
  color:#fff;
  text-align:center;
}

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

.service-card{
  background:#fff;
  color:#111;
  padding:30px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.service-icon{
  font-size:28px;
  color:#ff6b00;
  margin-bottom:15px;
}

/* NEW SERVICES */
.new-services{
  text-align:center;
}

.services-row{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:30px;
}

.service-box{
  background:#fff;
  padding:30px;
  border-radius:12px;
  width:300px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.3s;
}

.service-box:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.service-box i{
  font-size:30px;
  color:#ff6b00;
  margin-bottom:15px;
}

/* INDUSTRY */
.industry-section{
  text-align:center;
  background:#fafafa;
}

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

.industry-card{
  background:#fff;
  padding:25px;
  border-radius:10px;
  font-weight:500;
  box-shadow:0 3px 10px rgba(0,0,0,0.05);
  transition:0.3s;
}

.industry-card:hover{
  transform:translateY(-5px);
  background:#0b1d4d;
  color:#fff;
}

/* SOLUTIONS */
.solutions-enhanced{
  background:#f9f9f9;
  text-align:center;
}

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

.solution-card{
  background:#fff;
  padding:30px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.3s;
}

.solution-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

.solution-card i{
  font-size:30px;
  color:#ff6b00;
  margin-bottom:15px;
}

/* WHY */
.why-enhanced{
  text-align:center;
  background:#f9f9f9;
}

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

.why-card{
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.3s;
}

.why-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* STATS */
.stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  margin-top:30px;
}

.stats div{
  background:#0b1d4d;
  color:#fff;
  padding:30px;
  border-radius:10px;
  text-align:center;
}

/* CTA */
.cta{
  text-align:center;
}

.cta button{
  margin-top:20px;
  padding:12px 30px;
  background:#ff6b00;
  color:#fff;
  border:none;
  border-radius:25px;
  cursor:pointer;
}

/* FOOTER */
footer{
  background:#0b1d4d;
  color:#fff;
  text-align:center;
  padding:40px 8%;
}

/* RESPONSIVE */
@media(max-width:768px){

  .hero{
    flex-direction:column;
  }

  .about{
    flex-direction:column;
  }

  .hero-card{
    text-align:center;
  }

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

.popup{
  display:none;
  position:fixed;
  top:0;left:0;
  width:100%;height:100%;
  background:rgba(0,0,0,0.5);
  justify-content:center;
  align-items:center;
}

.popup-content{
  background:#fff;
  padding:30px;
  border-radius:10px;
  width:300px;
}

.close{
  float:right;
  cursor:pointer;
}
/* POPUP BACKGROUND */
.popup{
  display:none;
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.6);
  justify-content:center;
  align-items:center;
  z-index:999;
}

/* CARD */
.popup-content{
  background:#fff;
  padding:30px 25px;
  border-radius:12px;
  width:350px;
  box-shadow:0 20px 60px rgba(0,0,0,0.2);
  animation:fadeUp 0.4s ease;
}

/* HEADER */
.popup-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.popup-header h3{
  font-size:20px;
  color:#0b1d4d;
}

.close{
  font-size:20px;
  cursor:pointer;
  color:#999;
}

.close:hover{
  color:#000;
}

/* INPUT GROUP */
.input-group{
  position:relative;
  margin-bottom:20px;
}

.input-group input{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  border-radius:6px;
  outline:none;
  font-size:14px;
}

.input-group label{
  position:absolute;
  top:50%;
  left:12px;
  transform:translateY(-50%);
  color:#999;
  font-size:13px;
  transition:0.3s;
  background:#fff;
  padding:0 5px;
}

/* FLOAT LABEL EFFECT */
.input-group input:focus + label,
.input-group input:valid + label{
  top:-8px;
  font-size:11px;
  color:#ff6b00;
}

/* BUTTON */
.submit-btn{
  width:100%;
  padding:12px;
  background:#ff6b00;
  color:#fff;
  border:none;
  border-radius:25px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.submit-btn:hover{
  background:#0b1d4d;
}

/* ANIMATION */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}


/* GROWCHAIN SECTION */
.growchain-section{
  padding:80px 8%;
  background:#fff;
}

.growchain-container{
  display:flex;
  gap:50px;
  align-items:center;
  flex-wrap:wrap;
}

.growchain-text{
  flex:1;
  min-width:300px;
}

.growchain-text h2{
  color:#0b1d4d;
  margin-bottom:20px;
}

.growchain-text p{
  margin-bottom:15px;
  color:#555;
}

/* FEATURES */
.growchain-features{
  flex:1;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.feature-box{
  background:#f9f9f9;
  padding:20px;
  border-radius:10px;
  text-align:center;
  transition:0.3s;
}

.feature-box:hover{
  background:#0b1d4d;
  color:#fff;
  transform:translateY(-5px);
}

.feature-box i{
  font-size:24px;
  color:#ff6b00;
  margin-bottom:10px;
}

.feature-box:hover i{
  color:#fff;
}

