/* FIX OVERFLOW ISSUE EVERYWHERE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

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

section img {
  width: 100%;
  height: auto;
}



.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.box {
  flex: 1 1 300px;
}




/* NAVBAR */

/* NAVBAR BASE */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.75);
  color: white;
  position: relative;
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

/* BUTTON */
.nav-quote-btn {
  background: #22c55e;
  padding: 10px 16px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

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

  .menu-toggle {
    display: block;
    order: 2;
  }

  .logo {
    order: 1;
  }

  .nav-menu {
    order: 3;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgb(244, 243, 243);
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;

    /* hidden by default */
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-btn {
    display: none;
  }
}

.nav-quote-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #10b981;
  /* theme green */
  color: white;
  font-size: 14px;
  font-weight: 500;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}





/* changes code */
.nav-quote-btn:hover {
  background: #0e5f46;
}



.hero {
  margin-top: 80px;
  /* prevents navbar overlap */
}


/* changes code */






/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 120%;
}

.logo-icon {
  background: #10b981;
  color: white;
  font-weight: bold;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 14px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-size: 15px;
  font-weight: 600;
  color: #117a5b;
}

.logo-img {
  height: 50px;
  width: auto;
}



.footer-logo {
  display: flex;
  align-items: center;
  /* vertically centers logo and text */
  gap: 10px;
  /* spacing between logo image and text */
  margin-bottom: 15px;
  /* space below for next line */
}

.footer-logo-img {
  height: 40px;
  /* adjust size */
  width: auto;
  display: block;
  margin: 0;
  /* remove any extra margin */
}

.footer-logo h3 {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
  /* remove default margin */
  font-weight: 600;
  line-height: 1;
  /* align baseline with logo */
}



/* NAV LINKS */

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 15px;
  transition: 0.3s;
}



.nav-menu a:hover {
  color: #10b981;
}

/* ACTIVE NAV LINK */

/* NAV LINKS */

.nav-menu a {
  text-decoration: none;
  color: black;
  font-size: 17px;

  padding: 8px 16px;
  /* SAME padding for all */
  border-radius: 22px;
  /* same shape */

  transition: 0.3s;
}

/* HOVER */

.nav-menu a:hover {
  background: rgba(16, 185, 129, 0.08);
}

/* ACTIVE PAGE */

.nav-menu a.active {

  background: rgba(16, 185, 129, 0.15);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(16, 185, 129, 0.35);

  color: #117a5b;
  font-weight: 500;
}

/* BUTTON */

.nav-btn button {
  background: #10b981;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn button:hover {
  background: #059669;
}



/* Home Page */
/* Home Page */
/* Home Page */
/* Home Page */
/* Home Page */

/* Hero Section */
/* Hero Section */




.hero {
  min-height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("images/home.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  margin-top: 0;
  padding-top: 0;
}

.hero-content {
  max-width: 900px;
}

.hero h4 {
  color: #23ffaf;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 24px;
}

.hero h1 {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

.hero p {
  font-size: 23px;
  margin-bottom: 30px;
  color: #e5e7eb;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-primary {
  background: #10b981;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-size: 15px;
}

.btn-secondary {
  border: 1px solid white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-size: 15px;
}






/* FOOTER SOCIAL ICONS */

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #1f2937;
  border-radius: 8px;

  transition: 0.3s;
}

.footer-social a:hover {
  background: #16a34a;
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: white;
}




/* Privacy policy & Terms Condition Part */


.legal-page {
  max-width: 900px;
  margin: auto;
  padding: 120px 20px;
  line-height: 1.7;
}

.legal-page h1 {
  font-size: 40px;
  margin-bottom: 25px;
  color: #ffffff;
}

.legal-page h2 {
  margin-top: 25px;
  font-size: 22px;
  color: #117a5b;
}

.legal-page p {
  color: #bab6b6;
  margin-top: 10px;
}


/* LEGAL PAGE BUTTONS */

.legal-buttons {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}

.legal-btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

/* Home Button */

.home-btn {
  background: #117a5b;
  color: white;
}

.home-btn:hover {
  background: #0e5f46;
}

/* Back Button */

.back-btn {
  background: #e5e7eb;
  color: #111827;
}

.back-btn:hover {
  background: #d1d5db;
}







/* STATS SECTION */

.stats {
  background: #117a5b;
  padding: 70px 0;
  color: white;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.stat-box h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 14px;
  color: #d1fae5;
}


.view-all-btn {
  display: inline-block;
  background: #10b981;
  /* theme green */
  padding: 12px 25px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.view-all-btn:hover {
  background: #059669;
  transform: scale(1.05);
}


/* PRODUCTS SECTION */

.products {
  padding: 50px 80px;
  background: #f5f7f6;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  color: #000000;

  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.products-header h2 {
  font-size: 40px;
  color: #111827;
}


/* GRID */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 190px;
  gap: 22px;
  max-width: 1100px;
  margin: auto;
}


/* CARD */

.product-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}


/* IMAGE */

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}


/* IMAGE ZOOM */

.product-card:hover img {
  transform: scale(1.07);
}


/* GRID SIZE */

.large {
  grid-column: span 2;
  grid-row: span 2;
}

.wide {
  grid-column: span 2;
}



/* Product Card Overlay */
.product-card {
  position: relative;
  /* needed for overlay positioning */
  overflow: hidden;
}

/* Arrow Button */
.overlay .arrow-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.25);
  /* glass effect */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 50%;
  font-size: 18px;
  color: #000000;
  /* green theme */
  text-decoration: none;
  opacity: 0;
  /* hidden by default */
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Show button on hover */
.product-card:hover .overlay .arrow-btn {
  opacity: 1;
}

/* Hover effect */
.overlay .arrow-btn:hover {
  background: rgba(16, 185, 129, 0.15);
  transform: scale(1.1);
}







/* DARK GRADIENT */

.product-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.consult-btn {
  display: inline-block;
  text-decoration: none;
}

/* TEXT */

.card-text {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: white;
  z-index: 2;
}

.card-text-proucts {
  position: absolute;
  bottom: 50px;
  left: 18px;
  color: white;
  z-index: 2;
}

.card-text h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.card-text p {
  font-size: 14px;
  color: #e5e7eb;
}


/* HOVER BUTTON */

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  z-index: 3;
}

.product-card:hover .overlay {
  opacity: 1;
}


/* ROUND ARROW BUTTON */

.arrow-btn {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #111;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

.arrow-btn:hover {
  background: #16a34a;
  color: white;
  transform: scale(1.1);
}


/* VIEW BUTTON */

.view-btn {
  text-align: center;
  margin-top: 45px;
}

.view-btn button {
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid #d1d5db;
  background: white;
  cursor: pointer;
  transition: 0.3s;
}

.view-btn button:hover {
  background: #16a34a;
  color: white;
}



.product-gallery {
  padding: 20px 120px;
  background: #f5f7fa;
}

.gallery-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #111;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-item {
  width: 100%;
  height: 270px;
  /* for box size  */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: white;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.08);
}










/* SERVICES SECTION */
/* SERVICES SECTION */
/* SERVICES SECTION */
/* SERVICES SECTION */
/* SERVICES SECTION */

.services {
  padding: 40px 80px;
  background: #f8faf9;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  color: #16a34a;
  letter-spacing: 3px;
  font-size: 24px;
  margin-bottom: 10px;
}

.services-header h2 {
  font-size: 38px;
  color: #111827;
}


/* GRID */

.services-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}


/* CARD */

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  width: 350px;
  text-align: left;
  transition: 0.3s;
}

.service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* ICON BOX */

.icon-box {
  width: 40px;
  height: 40px;
  background: #e8f7ef;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.icon-box i {
  color: #34d399;
  font-size: 22px;
  transition: 0.3s;
}


/* ICON HOVER CHANGE */

.service-card:hover .icon-box i {
  color: #16a34a;
}


/* TEXT */

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111827;
}

.service-card p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}


/* BUTTON */

.services-btn {
  text-align: center;
  margin-top: 45px;
}

.services-btn button {
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid #d1d5db;
  background: white;
  cursor: pointer;
  transition: 0.3s;
}

.services-btn button:hover {
  background: #16a34a;
  color: white;
}





/* CONSULTATION SECTION */

.consultation {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;

  background-image:
    linear-gradient(rgba(17, 122, 91, 0.8), rgba(17, 122, 91, 0.8)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.consultation-content {
  max-width: 700px;
}

.consultation h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.consultation p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #e5e7eb;
}

/* BUTTON */

.consult-btn {
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 30px;
  border: none;
  background: white;
  color: #16a34a;
  cursor: pointer;
  transition: 0.9s;
}

.consult-btn:hover {
  background: #111827;
  color: white;
}





/* FOOTER */

.footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 70px 80px 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* LOGO */

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.logo-box {
  background: #16a34a;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: bold;
}

.footer-logo h3 {
  color: white;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-contact {
  list-style: none;
  font-size: 14px;
  line-height: 1.8;
}

/* COLUMN LINKS */

.footer-col h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #16a34a;
}

/* BOTTOM FOOTER */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
}

.footer-links a:hover {
  color: #16a34a;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  position: relative;
  transition: 0.3s;
}

/* arrow icon */

.footer-menu a::after {
  content: "↗";
  font-size: 8px;
  /* smaller size */
  font-weight: 900;
  /* makes it look bold */
  margin-left: 6px;

  opacity: 0;
  transform: translateX(-4px);

  transition: 0.25s ease;
}

/* hover effect */

.footer-menu a:hover {
  color: #16a34a;
}

.footer-menu a:hover::after {
  opacity: 1;
  transform: translateX(0);
}















/* ABOUT */
/* ABOUT */
/* ABOUT */
/* ABOUT */
/* ABOUT */
/* ABOUT */
/* ABOUT */



/* about section style.css*/
/* ABOUT HERO */
.about-tag {
  color: #117a5b;
  /* theme green color */

  font-size: 18px;
  /* slightly bigger */

  font-weight: 600;

  letter-spacing: 1px;

  margin-bottom: 15px;


}


.about-hero {
  height: 450px;
  /* approx 4x navbar height */

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("images/3.avif");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  color: white;
}

.about-hero {
  min-height: 60vh;
  padding: 60px 20px;
}


.hero-content {
  text-align: left;
}






/* our story*/
/* OUR STORY SECTION */

.our-story {
  padding: 100px 80px;
  background: #f8fafc;
}

.story-container {

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;

  max-width: 1200px;
  margin: auto;
}


/* TEXT SIDE */

.story-tag {

  color: #117a5b;

  font-size: 14px;

  letter-spacing: 3px;

  margin-bottom: 15px;

  font-weight: 600;
}

.story-text h2 {

  font-size: 40px;

  color: #1f2937;

  margin-bottom: 20px;

  line-height: 1.2;
}

.story-text p {

  color: #6b7280;

  font-size: 16px;

  line-height: 1.8;

  margin-bottom: 18px;
}


/* IMAGE SIDE */

.story-image {

  position: relative;

}


.story-image img {

  width: 100%;

  border-radius: 16px;

  object-fit: cover;
}


/* SMALL GREEN BOX */

.project-box {

  position: absolute;

  bottom: -25px;

  left: -20px;

  background: #117a5b;

  color: white;

  padding: 20px 28px;


  border-radius: 12px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-box h3 {

  font-size: 28px;

  margin-bottom: 5px;
}

.project-box p {

  font-size: 14px;

  opacity: 0.9;
}








/* CORE VALUES SECTION */

.core-values {

  padding: 110px 80px;

  background: #f1f5f9;
}

/* HEADER */

.values-header {

  text-align: center;

  margin-bottom: 60px;
}

.values-tag {

  color: #117a5b;

  font-size: 13px;

  letter-spacing: 3px;

  margin-bottom: 10px;

  font-weight: 600;
}

.values-header h2 {

  font-size: 40px;

  color: #1f2937;
}


/* GRID */

.values-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 30px;

  max-width: 1100px;

  margin: auto;
}


/* CARD */

.value-card {

  background: white;

  padding: 35px;

  border-radius: 14px;

  transition: 0.3s;

  border: 1px solid #e5e7eb;
}

.value-card:hover {

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

  transform: translateY(-4px);
}




/* SECTION BACKGROUND */

.values-section {
  padding: 20px 10%;
  background: #f5f7fa;
}

/* HEADER */

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-small {
  color: #1f9d74;
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.values-header h2 {
  font-size: 38px;
  color: #1c2434;
}

/* GRID */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */

.value-card {
  background: white;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* ICON BOX */

.value-icon {
  width: 45px;
  height: 45px;
  background: #e8f5ef;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
}

.value-icon i {
  color: #1f9d74;
  font-size: 18px;
}

.value-icon svg {
  color: #1f9d74;
  width: 20px;
  height: 20px;
}

/* TEXT */

.value-card h3 {
  margin-bottom: 10px;
  color: #1c2434;
}

.value-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 15px;
}




/* TEXT */

.value-card h3 {

  font-size: 20px;

  margin-bottom: 10px;

  color: #1f2937;
}

.value-card p {

  color: #6b7280;

  line-height: 1.7;

  font-size: 15px;
}


.company-profile {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

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

.profile-tag {
  color: #117a5b;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.profile-title {
  font-size: 36px;
  margin-bottom: 50px;
  color: #111;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.profile-card {
  background: #f5f7f6;
  padding: 35px 20px;
  border-radius: 12px;
}

.profile-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.profile-card p {
  font-size: 22px;
  font-weight: 600;
  color: #111;
}







/* PRODUCTS HERO SECTION */

.products-hero {

  height: 450px;
  /* approx 4x navbar height */

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("images/5.webp");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  color: white;
}


/* HERO TEXT */

.products-hero-content {
  max-width: 700px;
}


/* GREEN TAG */

.products-tag {
  color: #15ce97;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
}


/* MAIN HEADING */

.products-hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}


.about-hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}


.service-hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}








/* PRODUCTS CTA SECTION */

.products-cta {

  height: 450px;
  /* about 5x navbar */

  background: #117a5b;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  color: white;

  padding: 20px;
}


/* CONTENT */

.cta-content {
  max-width: 700px;
}


/* HEADING */

.products-cta h2 {

  font-size: 36px;
  font-weight: 700;

  margin-bottom: 20px;
}


/* PARAGRAPH */

.products-cta p {

  font-size: 16px;

  line-height: 1.6;

  margin-bottom: 30px;

  opacity: 0.9;
}


/* BUTTON */

.cta-btn {

  display: inline-block;

  background: white;

  color: #117a5b;

  padding: 12px 28px;

  border-radius: 6px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}


/* BUTTON HOVER */

/* BUTTON */

.cta-btn {

  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: white;
  color: #117a5b;

  padding: 12px 28px;

  border-radius: 30px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}


/* ARROW */

.btn-arrow {

  font-size: 14px;
  transition: 0.3s;
}


/* HOVER */

.cta-btn:hover {

  background: #e5e7eb;
}


/* ARROW MOVE EFFECT */

.cta-btn:hover .btn-arrow {

  transform: translateX(4px);
}















/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */
/* SERVICES */




.services-hero {

  height: 450px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('images/Section-hero.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-tag {
  color: #117a5b;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 10px;
}

.services-hero h1 {
  color: white;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}




.process-section {
  background: #f6f8f9;
  text-align: center;
  padding: 20px 20px;
}

.process-tag {
  color: #117a5b;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.process-title {
  font-size: 32px;
  margin-bottom: 60px;
}



.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.process-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.process-card span {
  font-size: 26px;
  color: #9dcab9;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.process-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.process-card p {
  font-size: 14px;
  color: #6b7280;
}



.services-cta {
  background: #117a5b;
  color: white;
  text-align: center;
  padding: 90px 20px;
}

.services-cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.services-cta p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-btn {
  background: white;
  color: #117a5b;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.cta-btn:hover {
  background: #e5e7eb;
}

.arrow {
  transition: 0.3s;
}

.cta-btn:hover .arrow {
  transform: translateX(4px);
}






/* SERVICES SECTION */

.services-section {
  padding: 80px 10%;
  background: #f7f9fc;
}

.services-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #0c1f3f;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-box {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-box h3 {
  padding: 20px;
  font-size: 18px;
  color: #0c1f3f;
}









/*  */
/* 

*/

/* OUR SERVICES SECTION */

.our-services {
  padding: 50px 10%;
  background: #f7f9fc;
}

/* HEADER */

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-tag {
  color: #117a5b;
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-weight: 600;
}

.services-header h2 {
  font-size: 38px;
  color: #1f2937;
}

/* GRID */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */

.service-card {
  background: white;
  padding: 35px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ICON */

.service-icon {
  width: 50px;
  height: 50px;
  background: #e8f5ef;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  color: #117a5b;
}

/* TEXT */

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #117a5b;
}

.service-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}
















/* projects page */
/* projects page */
/* projects page */
/* projects page */
/* projects page */
/* projects page */
/* projects page */
/* projects page */
/* projects page */
/* projects page */



.projects-hero {
  height: 450px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('images/Product 14.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.projects-tag {
  color: #1fc79a;
  letter-spacing: 3px;
  font-size: 24px;
  margin-bottom: 15px;
}

.projects-hero h1 {
  color: white;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}


.featured-projects {
  background: #f5f7f9;
  text-align: center;
  padding: 50px 20px;
}

.featured-projects h2 {
  font-size: 34px;
  color: #1f2937;
  margin-bottom: 15px;
}

.featured-projects p {
  color: #6b7280;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

.project-cta {
  background: #eef1f4;
  text-align: center;
  padding: 77px 20px;
}

.project-cta h2 {
  font-size: 36px;
  color: #1f2937;
  margin-bottom: 15px;
}

.project-cta p {
  color: #6b7280;
  margin-bottom: 30px;
}

.quote-btn {
  background: #117a5b;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #0f6a4f;
}

.arrow {
  transition: 0.3s;
}

.quote-btn:hover .arrow {
  transform: translateX(4px);
}








.blog-hero {

  height: 450px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('images/Product13.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.blog-hero-content {
  max-width: 600px;
}



.blog-tag {
  color: #1ddca4;
  /* theme color */
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-title {
  color: white;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
}









.blog-empty {
  height: 480px;
  /* 2× hero height */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  text-align: center;
}

.blog-empty p {
  font-size: 20px;
  color: #6b7280;
  font-weight: 500;
}





.faq-hero {
  height: 450px;
  background: #020b1e;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.faq-hero-content {
  max-width: 600px;
}

.faq-tag {
  color: #117a5b;
  /* theme green */
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.faq-title {
  color: white;
  /* white text */
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
}





.faq-contact-section {
  height: 480px;
  /* 2 × hero section */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f7fb;
}

.faq-contact-box {
  background: white;
  padding: 60px 80px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 600px;
}

.faq-contact-box h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #111;
}

.faq-contact-box p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #117a5b;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

/* Hover effect */

.contact-btn:hover {
  background: #0e5f46;
  transform: translateY(-2px);
}












.contact-hero {
  height: 450px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('images/Product13.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.contact-small {
  color: #16c784;
  letter-spacing: 4px;
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-hero h1 {
  color: white;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}





.contact-wrapper {
  background: #f3f6f9;
  padding: 80px 120px;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-form h2,
.contact-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-sub {
  color: #6b7280;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.6;
}

.input-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #374151;
}

input,
textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  background: white;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #22c55e;
}

textarea {
  height: 130px;
  resize: none;
  margin-bottom: 25px;
}

.send-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
  transition: 0.3s;
}

.send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
}

.contact-info {
  padding-top: 5px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: #d1fae5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.info-card h4 {
  margin: 0;
  font-size: 15px;
  color: #111827;
}

.info-card p {
  margin: 3px 0 0;
  font-size: 14px;
  color: #6b7280;
}

.map-box {
  margin-top: 30px;
  height: 170px;
  background: #e5e7eb;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}











/* ============================= */
/* RESPONSIVE DESIGN (MOBILE) */
/* ============================= */

@media (max-width: 1024px) {
  .navbar {
    padding: 10px 30px;
  }

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

@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu a {
    display: block;
    width: 100%;
  }

  /* HERO */
  .hero {
    padding: 40px 20px;
    min-height: auto;
  }

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

  .hero p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* GENERAL CONTAINER */
  .container {
    flex-direction: column;
  }

  .box {
    width: 100%;
  }

  /* SECTIONS SPACING */
  section {
    padding: 40px 20px !important;
  }
  
    .profile-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {

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

  .hero h4 {
    font-size: 24px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 18px;
    font-size: 13px;
  }

  .logo-img {
    height: 40px;
  }
  .profile-grid { grid-template-columns: 1fr; }
}







/* changes code */



.container,
.row,
.contact-container {
  display: flex;
  flex-wrap: wrap;
  /* 🔥 THIS FIXES CUT CONTENT */
  gap: 20px;
}




.contact-left,
.contact-right {
  flex: 1;
  min-width: 280px;
  /* 🔥 prevents cutting */
}







.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-box {
  flex: 1;
  min-width: 200px;
}




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




/* changes code */





@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
  }

  .hero {
    margin-top: 0px;
  }

  .container,
  .row,
  .contact-container {
    flex-direction: column;
  }
  .footer-social {
    display: flex;
    /* gap: 12px; */
    margin-top: 18px;
}
}





.social {
  font-size: 24px;
  margin: 10px;
  text-decoration: none;
}

/* Instagram (gradient) */
.instagram i {
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0%, #fdf497 5%,
      #fd5949 45%, #d6249f 60%,
      #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Facebook */
.facebook i {
  color: #1877F2;
}

/* Twitter (X uses black now, but blue for old Twitter) */
.twitter i {
  color: #1DA1F2;
}

/* WhatsApp */
.whatsapp i {
  color: #25D366;
}

.social:hover {
  transform: scale(1.2);
  transition: 0.3s ease;
}

/* GRID LAYOUT */
.solar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* CARD */
.solar-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;

  /* ✨ Smooth modern shadow */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* IMAGE AUTO SIZE */
.solar-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* IMPORTANT */
  transition: transform 0.4s ease;
}

/* OVERLAY */
.solar-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.3),
      transparent);
  transition: 0.3s ease;
}

/* TEXT */
.solar-card .content {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: #fff;
  z-index: 2;
}

.solar-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.solar-card p {
  margin-top: 5px;
  font-size: 14px;
  color: #ddd;
}

/* HOVER EFFECT */
.solar-card:hover img {
  transform: scale(1.08);
}

.solar-card:hover .overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.5),
      transparent);
}










.blog-full {
  padding: 60px 8%;
  background: #f8f9fa;
}

.blog-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.blog-post h4 {
  margin-top: 20px;
  color: #2e7d32;
}

.blog-post p {
  color: #555;
  line-height: 1.7;
}

.blog-post ul {
  padding-left: 20px;
  margin-top: 10px;
}

.blog-post ul li {
  margin-bottom: 8px;
}



.faq-section {
  padding: 60px 8%;
  background: #f9f9f9;
}

.faq-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 18px;
  text-align: left;
  border: none;
  outline: none;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question:hover {
  background: #f1f1f1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 18px;
}

.faq-answer p {
  padding: 15px 0;
  color: #555;
}

/* Section Styling */
.blog-full {
  padding: 60px 20px;
  background: #f8fafc;
}

/* Grid Layout */
.blog-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Blog Card */
.blog-post {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Clickable Card */
.blog-card {
  display: block;
  padding: 25px;
  text-decoration: none;
  color: #111;
}

/* Title */
.blog-card h2 {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Description */
.blog-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* Read More */
.blog-card span {
  font-weight: bold;
  color: #0a8f3c;
  font-size: 14px;
}

/* Hover Effect */
.blog-card:hover h2 {
  color: #0a8f3c;
}

.lightbox {
  display: flex;
  align-items: center;
  justify-content: center;

  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(5px);

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* ACTIVE STATE */
.lightbox.show {
  opacity: 1;
  visibility: visible;
}

/* IMAGE */
.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;

  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s ease;
}

/* IMAGE ANIMATION */
.lightbox.show .lightbox-content {
  transform: scale(1);
  opacity: 1;
}

/* CLOSE BUTTON */
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;

  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.lightbox.show .close {
  opacity: 1;
  transform: translateY(0);
}


/* GRID LAYOUT */
.solar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* CARD */
.solar-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;

  /* ✨ Smooth modern shadow */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* IMAGE AUTO SIZE */
.solar-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* IMPORTANT */
  transition: transform 0.4s ease;
}

/* OVERLAY */
.solar-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.3),
      transparent);
  transition: 0.3s ease;
}

/* TEXT */
.solar-card .content {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: #fff;
  z-index: 2;
}

.solar-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.solar-card p {
  margin-top: 5px;
  font-size: 14px;
  color: #ddd;
}

/* HOVER EFFECT */
.solar-card:hover img {
  transform: scale(1.08);
}

.solar-card:hover .overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.5),
      transparent);
}


#submit-btn {
  position: relative;
  padding: 10px 20px;
  background: #2ecc71;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  margin-left: 10px;
  display: none;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.loading .loader {
  display: inline-block;
}

.loading .btn-text {
  opacity: 0.7;
}
