* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: url("./Images/bg-image.jpeg") no-repeat ;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  position: relative;
  overflow-x: hidden;
  height: 100vh;
}

.page-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  background: linear-gradient(
    to top,
    rgba(243, 135, 0, 1) 0%,
    rgba(243, 135, 0, 0.8) 40%,
    rgba(243, 135, 0, 0.1) 90%,
    rgba(243, 135, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;  
  background-color: transparent;
  position: relative;
  z-index: 1;
  padding: 20px 120px;
}

.logo img {
  width: 135px;
}

.nav-bar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

.nav-bar a {
  text-decoration: none;
  color: #ff9800; /* Brighter orange */
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  transition: color 0.3s, text-shadow 0.3s;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4); /* Adds depth */
}

.nav-bar a:hover {
  color: #ffffff;
  text-shadow: 1px 1px 6px rgba(255, 255, 255, 0.8);
}

.nav-bar {
  background-color: rgba(243, 135, 0, 0.15); /* Light orange tint */
  border-radius: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero {
  text-align: center;
  padding-top: 100px;
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 65px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #f38700 0%, #ff8800 40%, #ffc107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 20px;
  font-weight: 500;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background-color: #f38700;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #d96e00;
}

.features {
  display: flex;
  justify-content: center;
}

.features-wrapper {
  border-radius: 24px;
  padding-top: 90px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1280px;

}

.feature-box {
  background: transparent;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  z-index: 100;
}


.feature-box:hover,
.feature-box:focus-within {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
  outline: none;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(243, 135, 0, 1), rgba(243, 135, 0, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: white;
  box-shadow: 0 6px 16px rgba(243, 135, 0, 0.8);
  font-weight: 700;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.feature-description {
  font-size: 16px;
  font-weight: 500;
  color: white; 
  max-width: 320px;
  line-height: 1.5;
}

.footer {
  text-align: center; 
  background-color: transparent;
  color: white;
  font-weight: bold;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  justify-content: space-evenly;
  display: flex;
}

