body {
	margin: unset;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  padding: 20px 0 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
}
nav {
  background: rgba(6, 66, 56, 0.9);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 25px 8px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  height: 52px;
}
.nav-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo {
  width: 24px;
  height: auto;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-center ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}
.nav-center ul li a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
  font-weight: 400;
}
.nav-center ul li a:hover {
  color: #7fff00;
}
.nav-right {
  flex: 0 0 auto;
}
.nav-logo-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.nav-title {
  color: white;
}
.book-demo-btn {
  background: white;
  color: #064238;
  padding: 10px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid white;
  display: inline-block;
}
.book-demo-btn:hover {
  background: #7fff00;
  border-color: #7fff00;
  color: #064238;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
/* Hero Section */
.hero {
  background-image: url(./imagess/homebg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.hero-content {
  text-align: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 160px 20px 50px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: white;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 35px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.btn {
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid transparent;
}
.btn-primary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-primary:hover {
  background: white;
  color: #064238;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.btn-secondary {
  background: #a7e563;
  color: #064035;
}
.btn-secondary:hover {
  background: #6ee600;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(127, 255, 0, 0.3);
}
.phone-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 0 20px 0;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.phone-mockup-image {
  width: 100%;
  max-width: 1262px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
  object-fit: contain;
}
.phone-mockup-desktop {
  display: block;
}
.phone-mockup-mobile {
  display: none;
}
.phone-showcase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

/* Why Section */
.why-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fafff4 50%, #ffffff 50%);
}
.why-header {
  text-align: center;
  margin-bottom: 60px;
}
.why-header h2 {
  color: #064035;
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 500;
}
.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}
.why-illustration img {
  max-width: 100%;
  height: auto;
}
.why-text h3 {
  color: #064238;
  font-size: 34px;
  margin-bottom: 25px;
  font-weight: 500;
  line-height: 40px;
}
.why-list {
  list-style: none;
  padding: 0;
}
.why-list li {
  padding: 3px 0;
  padding-left: 30px;
  position: relative;
  color: #064035;
  font-size: 18px;
  font-weight: 500;
}
.why-list li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("./imagess/points.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 8px;
}
.ideal-for {
  margin-top: 40px;
}
.ideal-for-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ideal-for h3 {
  color: #064238;
  font-size: 34px;
  margin-bottom: 25px;
  font-weight: 500;
  line-height: 40px;
}

/* Solution Section */
.solution-section {
  background: white;
  padding-bottom: 80px;
}
.solution-header {
  text-align: center;
  margin-bottom: 60px;
}
.solution-header h2 {
  color: #064035;
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 500;
}
.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}
.real-time-tracking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.solution-illustration img {
  max-width: 100%;
  height: auto;
}
.solution-text h3 {
  color: #064238;
  font-size: 34px;
  margin-bottom: 25px;
  font-weight: 500;
  line-height: 40px;
}
.solution-text p {
  color: #064035;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
}
.solution-list {
  list-style: none;
  padding: 0;
}
.solution-list li {
  padding: 3px 0;
  padding-left: 30px;
  position: relative;
  color: #064035;
  font-size: 18px;
  font-weight: 500;
}
.solution-list li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("./imagess/points.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 8px;
}
.solution-for-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

/* Training Message Section */
.training-message-section {
  background: url(./imagess/WhatsApp_Training_Message.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin: 80px auto;
  height: 429px;
  max-width: 1120px;
  width: calc(100% - 80px);
  border-radius: 20px;
}
.training-message-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 100px;
  min-height: 429px;
}
.training-message-text {
  max-width: 500px;
}
.training-message-text h2 {
  color: white;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  margin-bottom: 0;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: white;
}
.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}
.benefits-header h2 {
  color: #064035;
  font-size: 40px;
  margin-bottom: 15px;
  font-weight: 500;
}
.benefits-header p {
  color: #064035;
  font-size: 18px;
  font-weight: 500;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.benefits-row-2 {
  grid-column: 1/4;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s;
  width: 300px;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(6, 66, 56, 0.1);
}
.benefit-icon {
  width: 37px;
  height: 37px;
  margin-bottom: 18px;
}
.benefit-card h3 {
  color: #064035;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.3;
}
.benefit-card p {
  color: #064035;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

/* Footer */
.footer-bar {
  background-image: url("./imagess/Footer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0;
  color: white;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-left img {
  width: 20px;
}
.footer-left span {
  font-size: 18px;
  font-weight: 500;
}
.footer-right ul {
  display: flex;
  gap: 40px;
  list-style: none;
}
.footer-right ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}
.footer-right ul li a:hover {
  color: white;
}
/* Tablet Responsive */
@media (max-width: 1024px) {
  nav {
    padding: 8px 20px;
  }
  .nav-center ul {
    gap: 25px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero p {
    font-size: 17px;
  }
  .phone-mockup-image {
    max-width: 900px;
  }
  .why-text h3,
  .solution-text h3,
  .ideal-for h3 {
    font-size: 30px;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .benefits-row-2 {
    grid-column: 1/3;
  }
  .training-message-content {
    padding-left: 60px;
  }
  .training-message-text h2 {
    font-size: 34px;
  }
}
/* Mobile Responsive */
@media (max-width: 768px) {
  header {
    padding: 0;
  }
  .container {
    padding: 0;
  }
  nav {
    padding: 12px 15px;
    border-radius: 0;
    height: auto;
    flex-direction: column;
    gap: 15px;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }
  .nav-left {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .nav-logo-title {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-logo {
    width: 30px;
  }
  .nav-title {
    font-size: 20px;
  }
  .hamburger {
    display: flex;
  }
  .nav-center {
    display: none;
    width: 100%;
  }
  .nav-center.active {
    display: block;
  }
  .nav-center ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .nav-right {
    display: none;
    width: 100%;
  }
  .nav-right.active {
    display: block;
    text-align: center;
  }
  .book-demo-btn {
    display: block;
    width: 100%;
  }
  .hero {
    padding-top: 80px;
  }
  .hero-content {
    padding: 50px 20px 30px;
  }
  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }
  .hero p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .hero-buttons {
    flex-direction: row;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
  }
  .btn {
    width: 100%;
    padding: 10px;
    display: flex;
    text-align: center;
    justify-content: center;
  }
  .phone-showcase {
    padding: 0 10px 30px;
  }
  .phone-mockup-image {
    max-width: 100%;
  }
  .phone-mockup-desktop {
    display: none;
  }
  .phone-mockup-mobile {
    display: block;
  }
  .why-section {
    padding: 50px 0;
    margin: 0 20px;
  }
  .why-header h2,
  .solution-header h2,
  .benefits-header h2 {
    font-size: 32px;
  }
  .why-content,
  .ideal-for-content,
  .solution-content,
  .solution-for-content,
  .real-time-tracking {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-content {
    display: flex;
    flex-direction: column;
  }
  .why-content .why-illustration {
    order: 1;
  }
  .why-content .why-text {
    order: 2;
  }
  .ideal-for-content {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .ideal-for-content .why-text {
    order: 2;
  }
  .ideal-for-content .why-illustration {
    order: 1;
  }
  .solution-content {
    display: flex;
    flex-direction: column;
  }
  .solution-content .solution-illustration {
    order: 1;
  }
  .solution-content .solution-text {
    order: 2;
  }
  .solution-for-content {
    display: flex;
    flex-direction: column;
  }
  .solution-for-content .solution-text {
    order: 2;
  }
  .solution-for-content .solution-illustration {
    order: 1;
  }
  .real-time-tracking {
    display: flex;
    flex-direction: column;
  }
  .real-time-tracking .solution-illustration {
    order: 1;
  }
  .real-time-tracking .solution-text {
    order: 2;
  }
  .why-text h3,
  .solution-text h3,
  .ideal-for h3 {
    font-size: 26px;
    line-height: 32px;
  }
  .why-list,
  .solution-list {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }
  .why-list li {
    font-size: 16px;
    padding-left: 30px;
  }
  .solution-list li {
    font-size: 16px;
    padding-left: 30px;
  }
  .solution-text p {
    font-size: 16px;
    margin-top: 10px;
  }
  .why-illustration img,
  .solution-illustration img {
    max-width: 280px !important;
  }
  .solution-section {
    padding-bottom: 40px;
    margin: 0 20px;
  }
  .training-message-section {
    background-image: url(./imagess/Card_mobile.png);
    background-size: cover;
    background-position: center;
    margin: 40px auto;
    height: 500px;
    width: calc(100% - 40px);
  }
  .training-message-content {
    padding-left: 30px;
    padding-right: 30px;
    min-height: 250px;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 40px;
    text-align: left;
  }
  .training-message-text {
    max-width: 100%;
  }
  .training-message-text h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .benefits-section {
    padding: 50px 0;
    margin: 0 20px;
  }
  .benefits-header p {
    font-size: 16px;
    line-height: 19px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .benefits-row-2 {
    grid-column: 1;
    flex-direction: column;
    gap: 20px;
  }
  .benefit-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .benefit-card h3 {
    font-size: 20px;
  }
  .benefit-card p {
    font-size: 15px;
    line-height: 15px;
  }
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-right ul {
    flex-direction: column;
    gap: 15px;
  }
  .benefit-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
  .hero p {
    font-size: 14px;
    line-height: 20px;
  }
  .why-header h2,
  .solution-header h2,
  .benefits-header h2 {
    font-size: 28px;
  }
  .why-text h3,
  .solution-text h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .training-message-text h2 {
    font-size: 24px;
    line-height: 30px;
    text-align: center;
  }
  .benefit-card {
    padding: 25px 20px;
  }
}
/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.modal-header h2 {
  color: #064238;
  font-size: 28px;
  font-weight: 500;
  margin: 0;
}
.modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #064238;
  cursor: pointer;
  padding: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.modal-close:hover {
  background: #f0f0f0;
  color: #064035;
}
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  color: #064238;
  font-size: 15px;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
  color: #064035;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #064238;
  box-shadow: 0 0 0 3px rgba(6, 66, 56, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit-btn {
  background: #064238;
  color: white;
  padding: 14px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}
.form-submit-btn:hover {
  background: #064035;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6, 66, 56, 0.3);
}
.form-submit-btn:active {
  transform: translateY(0);
}
.form-message {
  padding: 12px 15px;
  border-radius: 8px;
  margin-top: 10px;
  display: none;
}
.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}
.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}
@media (max-width: 768px) {
  .modal-content {
    padding: 30px 20px;
    width: 95%;
  }
  .modal-header h2 {
    font-size: 24px;
  }
}

