* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
   display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #fafafa;
  min-height: 100vh;
}

.header {
  background: #000;
  padding: 18px 40px;
  color: #fff;
  width:100%;
}
.hamburger {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width:100%;
}

.menu {
  display: flex;
  gap: 24px;
  list-style: none;
}

.menu .active {
  color: orange;
}

.logo {
  font-size: 30px;     
  font-weight: 800;    
  letter-spacing: 1px; 
}

.about-section {
  padding: 80px 20px;
}

.about-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 400;
}

.about-main-title {
  margin-top: -50px;   /* reduce space from top */
  font-weight: 700;   /* keep it bold */
}

.subtitle {
  color: #777;
  margin-bottom: 50px;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-images {
  position: relative;
  flex: 1;
}

.img-main {
  width: 50%;
  border-radius: 12px;
  margin-left: -20px;
}

.img-secondary {
  position: absolute;
  width: 50%;
  bottom: -20px;
  right: 10px;
  height: 300px;
  border-radius: 14px;
  margin-left: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.experience-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: -25px; 
  height: 30px;
}

.experience-badge {
  position: absolute;
  bottom: -70px;
  left: 30px;
  background: #ff7a18;
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  background-color: #ff7a18;
  width: 300px;
}

.experience-badge h3 {
  font-size: 28px;
   margin: 0;
   
}

.experience-badge span {
  font-size: 14px;
  width: 15px;
}

.about-content {
  flex: 1;
}

.section-heading {
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 8px 22px;
  background-color: #fde7cf;
  color: #f28c28;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 20px;
  transform: translateY(6px);

}

.section-title {
  font-weight: 400; 
}

.section-tag {
  color: #ff7a18;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 36px;
  margin: 15px 0;
}

.subtitle {
  color: #666;
  margin-bottom: 25px;
}

.about-sub-title {
  font-weight: 400;   /* normal */
}

.features {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  flex: 1;
}

.feature-card h4 {
  margin-bottom: 10px;
}

.stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.stat h3 {
  color: #ff7a18;
  font-size: 28px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: #ff7a18;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  bottom: -90px;
}

.cta-btn button {
  margin-top: 20px;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.footer {
  background: #000;
  color: #aaa;
  width :100%;
  text-align: center;
  padding: 20px;
}
@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }

  .img-secondary {
    right: 0;
    height: 250px;
  }

  .features,
  .stats {
    flex-direction: column;
  }
}
@media(max-width: 1024px){
  .hamburger {
    display: block;
  }
  .menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0px;
    background: #2d2d2dcc;
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 100%;
    border-radius: 8px;
    z-index: 1;
  }
  .menu.active {
    display: flex;
  }
  .section-tag{
    bottom: 1200px;
    width: 120px;
  }
}
@media(max-width: 768px){
.about-main-title {
    margin-top: -60px;
  }
}