.hero {
  position: relative;
  width: 100%;
  height: 103vh;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #f4f4f4 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  /* 👇 make hero go under header */
  margin-top: -120px; /* approximate combined height of top-bar + main-nav */
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

body {
  background: #000; /* or a dark tone that matches hero */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* adjust 0.55 to control darkness */
  z-index: 2;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px; /* matches header height */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
  z-index: 2;
}

.hero-bg,
.hero-overlay,
.hero-content {
  opacity: 0;
  transform: translateY(20px);
}

.hero .btn-primary {
  background-color: #e26b07;
  color: #fff;
  padding: 0.75em 1.5em;
  text-decoration: none;
  border-radius: 4px;
  margin-right: 1em;
}

.hero .btn-secondary {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.75em 1.5em;
  border-radius: 4px;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 1400px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5em;
}

.hero h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  text-decoration: none;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 0.5rem;
}

.btn-primary {
  background: #e26b07;
  color: #fff;
  margin-right: 1em;
}

.btn-secondary {
  border: 2px solid #e26b07;
  color: #e26b07;
  background: transparent;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Animate each hero element with delay */
.hero.animate .hero-bg {
  animation: fadeIn 1.5s ease-out forwards;
}

.hero.animate .hero-overlay {
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 0.3s;
}

.hero.animate .hero-content {
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.6s;
}


/* ===== INDUSTRIES BANNER SECTION ===== */
.industries-banner {
  position: relative;
  width: 100%;
  height: 90vh; /* adjust height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  transform: translateY(40px);
  transition: all 1s ease;
}

.industries-banner.visible {
  opacity: 1;
  transform: translateY(0);
}

.industries-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.industries-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55); /* darkens image for text contrast */
  z-index: 2;
}

.industries-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 2em;
}

.industries-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #fff;
}

.industries-content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.5;
  color: #ddd;
}

.btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #e26b07;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #cf5f06;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}
/* HIS Section Styles */
.his-section {
  padding: 80px 0;
  background-color: #f8fafc;
  overflow: hidden;
}

.his-container {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}

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

.his-header h2 {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 15px;
  font-weight: 700;
}

.his-header p {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
}

.his-table {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.his-row {
  display: flex;
  align-items: center;
  gap: 40px;
  gap : 0;
}

.his-row-white {
  background-color: var(--light);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.91);
}

.his-row-red {
  background-color:  #e26b07;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.91);
}

.his-row-red .his-text h3 {
  color: #fff;
}

.his-row-red .his-text p {
  color: #fff;
}

.his-row-red .his-features li:before {
  color: #fff;
}

.his-col {
  flex: 1;
  padding: 20px;
}

.his-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: none;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.his-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.his-text h3 {
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  color: #1a365d;
  margin-bottom: 20px;
  margin-top: 0;
}

.his-btn-primary {
  background-color: #e26b07;
  color: #fff;
  padding: 0.75em 1.5em;
  text-decoration: none;
  border-radius: 4px;
  margin-right: 1em;
}

.his-text p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
  margin-top: 0;
}

.his-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.his-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #2d3748;
}

.his-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3182ce;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .his-row {
    flex-direction: column;
    gap: 30px;
  }
  
  .his-row:nth-child(even) {
    flex-direction: column-reverse;
  }

  .erp-feature-tabs {
    flex: 0 0 220px; /* Smaller on tablet */
  }
}

@media (max-width: 768px) {
  .his-header h2 {
    font-size: 2rem;
  }
  
  .his-text h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .his-section {
    padding: 60px 0;
  }
  
  .his-header {
    margin-bottom: 40px;
  }
}

.reveal-left, .reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.8s ease-out;
}

/* Left variant starts from the left side */
.reveal-left {
  transform: translateX(-80px);
}

/* When visible */
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ===== CONTACT US SECTION ===== */
.contact-us {
  background: #fff;
  padding: 80px 20px;
  color: #1a365d;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a365d;
  margin-bottom: 10px;
}

.contact-subtitle {
  text-align: center;
  color: #4a5568;
  max-width: 650px;
  margin: 0 auto 60px;
}

/* GRID LAYOUT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

/* FORM CONTAINER */
.contact-form-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e26b07;
  outline: none;
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, #e26b07, #f43f5e);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  background: linear-gradient(135deg, #cf5f06, #e11d48);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* CONTACT INFO BOX */
.contact-info-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #cf5f06;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  margin-right: 15px;
}

.info-item h4 {
  font-weight: 700;
  margin: 0;
  color: #1a365d;
}

.info-item p {
  margin: 5px 0 0;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    margin-bottom: 40px;
  }
}


