:root {
            --primary-color: #0db981;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #ffffff;
            --bg-off-white: #f9f9f9;
            --border-color: #e0e0e0;
            --left-width: 600px;
            --left-top-height: 140px;
            --left-bottom-height: 340px;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
  scrollbar-width: none;
  scroll-behavior: smooth;
}

body{
    background-color: #c4c4c4;
}
.hero {
  position: relative;
  height: 70vh;
  background-image: url("{% static 'images/herobanner.png' %}");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-start;
  flex-direction: column-reverse;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(45, 43, 43, 0.305); /* overlay */
}

.hero .container {
  position: absolute;
  z-index: 1;
  max-width: 700px;
  color: #fff;
  bottom: 80px; 
  left: 80px;
  font-weight: 700;
}

.hero-overlay {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 160px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

/* Left empty space */
.nav-spacer {
  width: 180px; /* same visual width as nav-actions */
}

/* Center menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.nav-menu a,
.nav-menu a:visited,
.nav-menu a:active {
    text-decoration-line: none;
    color: inherit;
}

.nav-menu a:hover { 
    text-decoration-line: none;
    color: inherit;
    cursor: pointer;
    opacity: 0.7;
}


/* Right actions */
.nav-actions {
  width: 180px; /* MATCH THIS WITH .nav-spacer */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.search-input {
  height: 36px;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 6px 0px 0px 6px;
  outline: none;
  font-size: 14px;
}

.search-input:focus {
  border-color: #000;
}

/* Button */
.download-btn {
  height: 36px;
  padding: 10px 18px;
  border-radius: 6px 6px 6px 6px;
  border: none;
  background: #0db981;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.download-btn:hover {
  background: #0aa06f;
}

/* Search icon */
.search-icon {
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}


/* discover our services */
.discover-wrapper {
  padding: 40px;
  margin-top: 60px;
  background-color: #c4c4c4;
}

/* OUTER CARD */
.discovercontainer {
  display: grid;
  grid-template-columns: var(--left-width) 1fr;
  grid-template-rows: auto auto;
  gap: 32px;
  padding: 64px 64px 32px 64px;
  border-radius: 32px;
  background: #c4c4c4;
  box-shadow:
  /* outer elevation */
  0 25px 60px rgba(0, 0, 0, 0.35),

  /* inset highlights – all sides */
  inset 0 2px 0 rgba(255, 255, 255, 0.35),     /* top */
  inset 0 -2px 0 rgba(0, 0, 0, 0.25),          /* bottom */
  inset 2px 0 0 rgba(255, 255, 255, 0.18),     /* left */
  inset -2px 0 0 rgba(0, 0, 0, 0.18);           /* right */
}

/* LEFT COLUMN — MUST SPAN BOTH ROWS */
.leftalignservices {
  grid-column: 1 / 2;
  grid-row: 1 / 3;

  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

/* vertical separator */
.leftalignservices::after {
  content: "";
  position: absolute;

  top: 50%;
  transform: translateY(-50%); /* centers vertically */

  right: -30px;
  width: 1px;
  height: 300px; /* control visible length */

  background: rgba(0,0,0,0.12);
}


/* LEFT TOP TEXT */
.leftcontenttop {
  width: var(--left-width);
  height: var(--left-top-height);
}

.leftcontenttop h1 {
  font-size: 36px;
  margin-bottom: 12px;
  /* EMBOSS EFFECT */
  color: #1f2937; /* base text */
  text-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.6),  /* top-left light */
   -1px -1px 0 rgba(0, 0, 0, 0.35);      /* bottom-right shadow */
}

.leftcontenttop p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.75;
}

/* Infinity scroll */
.left-bottom {
  width: var(--left-width);
  height: var(--left-bottom-height);
  overflow-y: auto;
  overflow-x: hidden;

  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;

  position: relative;
}

.left-bottom::-webkit-scrollbar {
  display: none;
}

.automation-scroll {
  align-self: flex-end;
}

.scroll-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.scroll-item {
  padding: 14px 0;
  margin-bottom: 20px;
  color: #777;
  transition: color 0.2s ease;
}

.scroll-item.active {
  color: #000;
}

/* 2nd section right content*/
/* RIGHT IMAGE — ONLY SECOND ROW */
.rightcontentservices {
  grid-column: 2 / 3;
  height: 504px;
  width: 100%;

  border-radius: 24px;
  overflow: hidden;
  background-color: #c4c4c4;
  padding: 0px 0px 0px 60px;
}

/* INNER PADDING WRAPPER */
.rightcontent-inner {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* IMAGE FILLS INNER WRAPPER */
.rightcontent-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px; /* optional: softer inner curve */
}

/* MOBILE */
@media (max-width: 768px) {
  :root {
    --left-width: 100%;
    --left-top-height: auto;
    --left-bottom-height: 260px;
  }

  .discovercontainer {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .leftalignservices {
    grid-row: auto;
  }

  .rightcontentservices {
    grid-column: 1;
    grid-row: auto;
    height: var(--left-bottom-height);
  }
}

/* where we operate */
.operatetext{
  margin-top: 60px;
}

.operatetext h1{
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-align: center;
  margin: 0px;

  /* EMBOSS EFFECT */
  color: #1f2937; /* base text */
  text-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.6),  /* top-left light */
   -1px -1px 0 rgba(0, 0, 0, 0.35);      /* bottom-right shadow */
}

.operatetext p{
   text-align: center;
   color: #0db981; 
   margin: 10px 0px 0px 0px;
   font-size: larger;
}


/* Stats Section */
.stats {
  background-color: var(--primary-color);
  color: white;
  padding: 40px;
}

/* Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  align-items: center;
}

/* Stat item */
.stat-item {
  position: relative; /* REQUIRED for divider */
}

/* Text */
.stat-item h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

/* SLANTING DIVIDER */
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;

  width: 2px;
  height: 80%;

  background-color: rgba(255, 255, 255, 0.6);
  transform: skewX(-20deg);
}


/* Download CTA */
.downloadcontainer{
            max-width: 1200px;
            margin: 39px auto;
            padding: 0 20px;
}

.download-cta {
    background: #c4c4c4;
    text-align: center;
    position: relative;
    margin-top: 100px;
}

.download-cta p {
    margin-bottom: 30px;
}

/* Contact Form */
.contactcontainer {
  max-width: 1200px;
  margin: 39px auto;
  padding: 0 20px;
  position: relative;
}

.contact {
  background-color: #c4c4c4;
  padding: 20px 0 100px 0;
  position: relative;
}

/* Intro */
.contact-intro {
  text-align: center;
  margin-bottom: 40px;
}

.contact-intro p,
.downloadcontainer p{
  padding-top: 10px;
}

.contact-intro h2,
.downloadcontainer h2{
    color: #1f2937; /* base text */

  /* EMBOSS EFFECT */
  text-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.6),  /* top-left light */
   -1px -1px 0 rgba(0, 0, 0, 0.35);      /* bottom-right shadow */
}

/* Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;          /* center form */
  justify-items: center;
}

/* Form wrapper */
.form-grid form {
  width: 100%;
  max-width: 420px;                    /* FIXED WIDTH */
}

/* Form group */
.form-group {
  margin-bottom: 20px;
}

/* Labels */
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

/* Inputs & textarea */
.form-control {
  width: 100%;
  max-width: 420px;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--bg-off-white);
  box-sizing: border-box;
}

/* Message box behavior */
textarea.form-control {
  resize: vertical;        /* only vertical resize */
  min-height: 120px;
  max-height: 260px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #0aa06f;
}

/* Popup */
/* Modal overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

/* Active state */
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal box */
.modal-box {
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Close button */
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* footer */
/* divider */
.element {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 61px;
}

.element::before {
  content: "";
  width: 1064px;
  height: 1px;
  background-color: #0db981;
}

.element::after {
  content: "";
  width: 1064px;
  height: 1px;
  background-color: #0db981;
}

/* TOP SECTION */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 0fr 1fr;
  gap: 40px;
  background-color: #c4c4c4;
  position: relative;
  width: 100vw;
  padding: 60px 80px;
}

.footer-col:nth-child(1) {
  justify-self: left;     /* FIRST → RIGHT END */
}


.footer-col:nth-child(2) {
  justify-self: center;  /* SECOND → CENTER */
}

.footer-col:nth-child(3) {
  justify-self: right;   /* THIRD → LEFT START */
}


.footer-col h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
}

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

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

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
}

.footer-col ul li a:hover {
  color: #18b16a;
}

/* SUBSCRIBE */
.subscribe-box {
  display: flex;
  width: 100%;
  max-width: 360px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.subscribe-box input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  outline: none;
  background: #111;
  color: #fff;
}

.subscribe-box button {
  background: #18b16a;
  border: none;
  padding: 0 20px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

/* BOTTOM BAR */
.footer-bottom {
  background: #18b16a;
  color: #000;
  display: flex;
  justify-content: space-between;
  padding: 35px 80px;
  align-items: flex-end;
}

.brand h2 {
  font-size: 26px;
  font-weight: 800;
}

.brand p {
  font-size: 13px;
  margin-top: 6px;
}

.copyright p {
  font-size: 13px;
  text-align: right;
  margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;   /* stack columns */
    text-align: center;
  }

  .footer-col {
    justify-self: center !important;
  }

  .subscribe-box {
    margin: 20px auto;
    justify-content: center;
  }
}

/* SECTION */
.testimonial-section {
  padding: 80px;
}

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

.subtitle {
  font-size: 14px;
  color: #777;
}

.testimonial-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.testimonial-header h2 span {
  color: #18b16a;
}

.view-btn {
  padding: 10px 20px;
  border: 1px solid #18b16a;
  background: transparent;
  color: #000;
  border-radius: 8px;
  cursor: pointer;
}

/* CARD */
.review-card {
  display: flex;
  background: #0c0c0c;
  border-radius: 16px;
  padding: 30px;
  gap: 30px;
  border: 2px solid #18b16a;
}

/* IMAGE */
.review-image img {
  width: 540px;
  height: 70%;
  object-fit: cover;
  border-radius: 12px;
}

/* CONTENT */
.review-content {
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stars {
  color: #18b16a;
  font-size: 22px;
  margin-bottom: 15px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: #ddd;
}

.divider {
  height: 2px;
  width: 120px;
  background: #18b16a;
  margin: 20px 0;
}

/* AUTHOR */
.author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author h4 {
  color: #18b16a;
  font-size: 18px;
}

.author span {
  font-size: 13px;
  color: #aaa;
}

.reviewbrand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}

.reviewbrand .dot {
  width: 14px;
  height: 14px;
  background: orange;
  border-radius: 50%;
}

/* ARROWS */
.arrows {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.arrows button {
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid #18b16a;
  color: #18b16a;
  border-radius: 6px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonial-section {
    padding: 40px 20px;
  }

  .review-card {
    flex-direction: column;
  }

  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 1200px) {
  .element::before,
  .element::after {
    width: 90%;
  }
}

