/* 🔵 HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 360px;
  background: url("./Assests/Innovation/Redefining.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔵 DARK OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 35, 60, 0.65);
  /* dark blue overlay */
}

/* 🔵 CONTENT WRAPPER */
.hero-content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

/* 🔵 WHITE BOX */
.hero-box {
  background: #fff;

  /* ✅ Width control */
  width: 100%;
  max-width: 1030px;
  min-width: 300px;

  /* ✅ Height behavior */
  padding: 32px 12px;

  /* ✅ Layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  /* ✅ Styling */
  border-radius: 8px;
  text-align: center;

  /* Optional (matches design feel) */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* 🔵 HEADING */
.hero-box h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  /* Bold */
  font-size: 42px;
  line-height: 1.1;
  /* 110% */
  letter-spacing: 0;
  text-align: center;

  color: #ff5a1f;
  /* keep your orange */
  margin: 0;
  /* remove default spacing */
}

.hero-box p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  /* Regular */
  font-size: 16px;
  line-height: 1.2;
  /* 120% */
  letter-spacing: -0.03em;
  /* -3% */
  text-align: center;

  color: #444;
  /* adjust if needed */
  margin: 0;
  max-width: 850px;
  /* keeps text nicely wrapped */
}

/* 🔵 RESPONSIVE */
@media (max-width: 992px) {
  .hero {
    height: 300px;
  }

  .hero-box {
    padding: 22px 30px;
  }

  .hero-box h1 {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 260px;
  }

  .hero-box {
    padding: 18px 20px;
  }

  .hero-box h1 {
    font-size: 18px;
  }

  .hero-box p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .hero-box h1 {
    font-size: 28px;
  }

  .hero-box p {
    font-size: 14px;
    letter-spacing: -0.02em;
  }
}

@media (max-width: 480px) {
  .hero-box h1 {
    font-size: 22px;
  }

  .hero-box p {
    font-size: 13px;
  }
}

/* second section */
/* 🔵left SECTION */
.section-two {
  width: 100%;
  max-width: 1440px;
  min-width: 300px;
  margin: 0 auto;
  padding: 55px 60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 🔵 ROW */
.section-two-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* 🔵 LEFT SIDE (IMAGE + BUTTON) */
.section-two-left {
  width: 100%;
  max-width: 550px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-two-left img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* 🔵 BUTTON (EXACT FIGMA) */
.watch-btn {
  width: 180px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  gap: 8px;
  border: none;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(rgba(224, 54, 9, 1), rgba(240, 183, 31, 1));
  align-self: center;
}

/* 🔵 RIGHT SIDE CONTAINER */
.section-two-content {
  width: 100%;
  max-width: 704px;
  min-width: 320px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 🔵 HEADING */
.section-two-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0;
  color: #222;
}

.highlight {
  color: #FF5000;
}

/* 🔵 PARAGRAPH */
.desc {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.21;
  letter-spacing: -0.02em;
  color: #373737;
  margin: 0;
}

/* 🔵 GROUP TITLE */
.feature-group h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  color: #FF5000;
  margin: 10px 0 5px;
}

/* 🔵 FEATURE ITEM */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 27px;
  color: #28170B;
}

/* 🔵 ICON */
.feature-item img {
  width: 16px;
  height: 16px;
  margin-top: 5px;
}

.feature-item span {
  word-break: break-word;
}

/* second section last line design */
.section-two-footer {
  width: 100%;
  max-width: 1320px;
  margin: 20px auto 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  color: rgba(0, 0, 0, 1);
}

/* 🔵 RESPONSIVE */
@media (max-width: 992px) {
  .section-two {
    padding: 40px 30px;
  }

  .section-two-row {
    flex-direction: column;
    text-align: center;
  }

  .section-two-left {
    align-items: center;
  }

  .section-two-content {
    max-width: 100%;
    padding: 10px 0;
    align-items: center;
    text-align: center;
  }

  .section-two-content h2 {
    font-size: 20px;
  }

  .desc {
    font-size: 15px;
  }

  .feature-group h3 {
    font-size: 15px;
  }

  .feature-item {
    justify-content: flex-start;
    text-align: left;
    /* keeps readability */
  }
}

@media (max-width: 500px) {
  .footer-minimal {
    padding: 0 !important;
  }
  .section-two {
    padding: 0px 20px;
  }

  .section-two-content {
    gap: 6px;
  }

  .section-two-content h2 {
    font-size: 18px;
    line-height: 1.2;
  }

  .desc {
    font-size: 14px;
    line-height: 1.4;
  }

  .feature-group h3 {
    font-size: 14px;
    line-height: 22px;
  }

  .feature-item {
    font-size: 14px;
    line-height: 22px;
    gap: 6px;
  }

  .feature-item img {
    width: 14px;
    height: 14px;
    margin-top: 4px;
  }
}

@media (max-width: 400px) {
  .section-two-content h2 {
    font-size: 16px;
  }

  .desc {
    font-size: 13px;
  }

  .feature-item {
    font-size: 13px;
  }
}

/* responsive for second section footer */
@media (max-width: 768px) {
  .section-two-footer {
    font-size: 14px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .section-two-footer {
    font-size: 13px;
  }
}

/* third section csc */
.section-three {
  padding: 55px 60px;
  background-color: #fff;
  max-width: 1440px;
  margin: 0 auto;
}

.section-three-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.section-three-content {
  flex: 1;
}

.section-three-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 15px;
}

.highlight-orange {
  color: #FF5722;
  /* Adjust to match your exact orange */
}

.section-three-content .main-desc {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
  color: #333;
}

.section-three-content h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  color: #FF5722;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.feature-item span {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
}

.section-three-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.dashboard-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.watch-btn-orange {
  background-color: #FF5722;
  color: white;
  border: none;
  padding: 12px 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.watch-btn-orange:hover {
  background-color: #E64A19;
}

/* Responsive adjust */
@media (max-width: 992px) {
  .section-three-row {
    flex-direction: column;
    text-align: center;
  }

  .section-three {
    padding: 40px 30px;
  }

  .section-three-content {
    max-width: 100%;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .section-three {
    padding: 30px 0px;
  }

  .section-three-content h2 {
    font-size: 18px;
    line-height: 1.2;
  }

  .section-three-content .main-desc {
    font-size: 14px;
    line-height: 1.4;
  }

  .section-three-content h3 {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 400px) {
  .section-three-content h2 {
    font-size: 16px;
  }

  .section-three-content .main-desc {
    font-size: 13px;
  }
}

/* sixth section */
.section-four {
  position: relative;
  width: 100%;
  min-width: 320px;
  margin: 0 auto;
  padding: 100px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("./Assests/Innovation/sixth.jpg") center/cover no-repeat;
  color: white;
}

.section-four::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* 🔵 INNER LAYOUT (1332px) */
.section-four-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1332px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* 🔵 TITLE WRAPPER */
.section-four-title {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* 🔵 MAIN HEADING */
.section-four-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  color: #fff;
}

/* 🔵 SUBTITLE WRAPPER */
.section-four-subtitle {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* 🔵 SUBTEXT */
.section-four-subtitle p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  color: #fff;
}

/* 🔵 TABLET */
@media (max-width: 992px) {
  .section-four {
    padding: 80px 30px;
  }

  .section-four-title h2 {
    font-size: 36px;
  }

  .section-four-subtitle p {
    font-size: 18px;
  }
}

/* 🔵 MOBILE */
@media (max-width: 600px) {
  .section-four {
    padding: 60px 20px;
  }

  .section-four-title h2 {
    font-size: 28px;
  }

  .section-four-subtitle p {
    font-size: 16px;
  }
}

/* 🔵 SMALL MOBILE */
@media (max-width: 400px) {
  .section-four {
    padding: 50px 15px;
  }

  .section-four-title h2 {
    font-size: 24px;
  }

  .section-four-subtitle p {
    font-size: 14px;
  }
}