

/* Hero Section */
.hero-sec {
    position: relative;
    width: 100%;
    height: 100vh; /* full screen height */
    overflow: hidden;
}

/* Video as background */
.hero-sec video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Gradient Overlay */
.hero-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(70 32 76), rgb(158 146 158 / 0%));
    z-index: -1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    /* text-align: center; */
    color: var(--violet);
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
}
.hero-content p{
    margin-top: 20px;
    font-size: 24px;
}

/* generator */
.generation{
    padding: 90px 0px;
}
.generation .generatelevels .head{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--violet);
}
.generation .generatelevels .left .head{
    margin-bottom: 15px;
}
.generation .generatelevels .right .head{
    margin-bottom: 5px;
}
.generation .generatelevels .head h2{
    font-size: 54px;
    margin: 0;
}
.generation .generatelevels .right .head img{
    width: 150px;
}
.generation .generatelevels{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
}
.generation .generatelevels  .left .part img{
  border-radius: 12px;

}
.generation .generatelevels  .right  .part img{
    width: 300px;
    border-radius: 12px;
}
.generation .generatelevels .generating{
    display: flex;
    box-shadow: -1px 0px 10px 0px var(--violet);
    padding: 26px 10px;
    border-radius: 12px;
}
.generation .generatelevels i{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    color: var(--violet);
    font-weight: bold;
}
.generation .generatelevels .part{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.generation .generatelevels .part h3{
    margin-top: 24px;
    font-size: 24px;
    text-align: center;
    color: var(--eggplant)
}

/* composition */
.composition{
    padding: 120px 0px 180px 0px;
    position: relative;
}
.composition .maintext {
 display: flex;
 justify-content: center;
 align-items: center;
}
.composition .maintext .content{
    max-width: 520px;
    text-align: center;
}
.composition .maintext .content h2{
    font-size: 50px;
    color: var(--violet);
}
.composition .maintext .content p{
    font-size: 24px;
    margin-top: 30px;
}
.composition img{
    width: 100px;
    position: absolute; 
}
.composition .h2o2{
  top: 10%;
  left: 12%;
}
.composition .no{
    left: 25%;
    top: 30%;
}
.composition .no3{
    bottom: 10%;
    left: 15%;
}
.composition .o2{
    right: 10%;
    top: 10%;
}
.composition .o3{
    right: 25%;
    top: 30%;
}
.composition .oh{
    bottom: 10%;
    right: 10%;
}
.composition .onoo{
    left: 45%;
    bottom: 1%;
}

.cleangrow{
    padding-top: 60px;
}
.cleangrow .ecoclean, .cleangrow .ecogrow{
    padding: 35px 0px;
}
.cleangrow .eco-img{
    border-radius: 12px;
}
.cleangrow .content h2{
    font-size: 44px;
    color: var(--violet);
    line-height: 58px;
}
.cleangrow .content p{
    font-size: 24px;
}
.cleangrow .content ul li{
    font-size: 22px;
}
.cleangrow .content ul li::marker{
    color: var(--violet);
}
.cleangrow .btn-part a{
  font-size: 22px;
    padding: 10px 15px;
    text-decoration: none;
    background:  linear-gradient(135deg, var(--violet), #cd5aff);
    color: white;
    border-radius: 6px;
}

/*  sectors */
.sectors{
    padding: 60px 0px;
     background: #9c45ef17;
}
.sectors .sector {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.sectors .sector img{
    height: 400px;
    transform: rotate(18deg);
}
.sectors .sector .content{
    text-align: center;
}
.sectors .sector .content h3{
    color: var(--violet);
    font-weight: 700;
    font-size: 44px;
}
.sectors .sector .content p{
    color: var(--deep-purple);
    font-size: 18px;
}

/*  */
.services-sec {
  padding: 60px 0px;
}
.services-sec .allservices{
    display: grid;
    grid-template-columns: 2fr 2fr;
}
.services-sec .allservices .right{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.services-sec .part {
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

.services-sec img {
  width: 100%;
  display: block;
  height: 100%;
}

.services-sec .part .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgb(0 0 0 / 0%) 100%);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.services-sec .part .onlyheading{
    color:#fff;
    position: absolute;
    bottom: 25px;
    left: 20px;
    
}
.services-sec .right .part .onlyheading{
    font-size: 24px;
}
.services-sec .part .content h3 {
  margin: 0;
  font-size: 32px;
  font-weight: bold;
}
.services-sec .right .part .content  h3 {
    font-size: 22px;
}
.services-sec .part .content p {
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-size: 22px;
}

/* On hover: slide content up smoothly */
.services-sec .part:hover .content {
  transform: translateY(0%);
}
.services-sec .part:hover .onlyheading{
    display: none;
}
.services-sec .part:hover .content p {
  opacity: 1;
}


/* recognised */
.recognised-sec{
    padding: 30px 0px;
   
}
.recognised-sec h2{
    font-size: 44px;
    color: var(--violet);
    text-align: center;
    margin-bottom: 30px;
}
.recognised  .recogniseby img{
    width: 150px;
    margin-bottom: 10px;
}

.recognised{
    display: flex;
    justify-content: space-evenly;
}
.recognised .recogniseby{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* ====================== */
/* 📱 MOBILE RESPONSIVE CSS */
/* ====================== */
@media (max-width: 768px) {

  /* ---------- HERO SECTION ---------- */
  .hero-sec {
  height: auto;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end; /* 👈 Pushes content to bottom */
  justify-content: center; /* 👈 Centers horizontally */
  padding-bottom: 60px; /* 👈 Adds breathing space from bottom */
}

.hero-content {
  position: absolute;
  bottom: 60px; /* 👈 Locks the content near bottom */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
  padding: 0 15px;
}

.hero-content h1 {
  font-size: 30px;
  line-height: 1.3;
  word-wrap: break-word;
  hyphens: auto;
  margin-top: -121px;
}

.hero-content p {
  font-size: 18px;
  margin-top: 15px;
  word-wrap: break-word;
}

  /* ---------- GENERATION SECTION ---------- */
  .generation {
    padding: 50px 0;
  }

  .generation .generatelevels {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .generation .generatelevels .head h2 {
    font-size: 36px;
  }

  .generation .generatelevels .generating {
    flex-direction: column;
    text-align: center;
  }

  .generation .generatelevels i {
    transform: rotate(90deg);
    margin: 20px 0;
  }

  .generation .generatelevels .part h3 {
    font-size: 20px;
  }

  .generation .generatelevels .right .part img,
  .generation .generatelevels .left .part img {
    width: 250px;
  }

  /* ---------- COMPOSITION SECTION ---------- */
  .composition {
    padding: 20px 0 35px;
  }

  .composition img {
    display: none;
  }

  .composition .maintext .content h2 {
    font-size: 32px;
  }


  .composition .maintext .content p {
    font-size: 18px;
  }

  /* ---------- ECO CLEAN & ECO GROW ---------- */
  .cleangrow {
    padding-top: 0px;
  }

  .cleangrow .content h2 {
    font-size: 32px;
  }

  .cleangrow .content p,
  .cleangrow .content ul li {
    font-size: 18px;
  }

  .cleangrow .btn-part a {
    font-size: 18px;
    padding: 8px 12px;
  }

  .cleangrow .eco-img {
    width: 100%;
    border-radius: 10px;
  }

  .cleangrow .ecoclean, .cleangrow .ecogrow{
    padding: 35px 0px;
}
  /* 🧼 ECO CLEAN - IMAGE FIRST ON MOBILE */
  .ecoclean .row {
    display: flex;
    flex-direction: column;
  }

  .ecoclean .row > .col-12:nth-child(1) {
    order: 1; /* ✅ Image first */
  }

  .ecoclean .row > .col-12:nth-child(2) {
    order: 2; /* Text second */
    margin-top: 20px;
  }

  /* 🌱 ECO GROW - IMAGE FIRST ON MOBILE */
  .ecogrow .row {
    display: flex;
    flex-direction: column;
  }

  .ecogrow .row > .col-12:nth-child(1) {
    order: 2; /* Text second */
    margin-top: 20px;
  }

  .ecogrow .row > .col-12:nth-child(2) {
    order: 1; /* ✅ Image first */
    margin-bottom: 20px;
  }

  /* ---------- SECTORS SECTION ---------- */
  .sectors {
    padding: 40px 0;
  }

  .sectors .sector {
    margin-bottom: 20px;
  }

  .sectors .sector img {
    height: 220px;
    transform: rotate(0deg);
  }

  .sectors .sector .content h3 {
    font-size: 28px;
  }

  .sectors .sector .content p {
    font-size: 16px;
  }

  /* ---------- SERVICES SECTION ---------- */
  .services-sec {
    padding: 40px 0;
  }

  .services-sec .allservices,
  .services-sec .allservices .right {
    grid-template-columns: 1fr;
  }

  .services-sec .part .onlyheading {
    font-size: 20px;
    left: 10px;
    bottom: 15px;
  }

  .services-sec .part .content h3 {
    font-size: 24px;
  }

  .services-sec .part .content p {
    font-size: 16px;
  }

  /* ---------- RECOGNISED SECTION ---------- */
  .recognised-sec h2 {
    font-size: 32px;
  }

  .recognised {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .recognised .recogniseby img {
    width: 100px;
  }
}
