/* ==========================
   About Hero Section
========================== */

.about-hero {
  height: 100vh;
  min-height: 600px;
  background: url('../images/about-hero.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 0;
}

.about-hero h1,
.about-hero p {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 600;
}

.about-hero h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #f0a500;
  border-radius: 2px;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 20px auto 0;
}


/* ==========================
   About Main Section Wrapper FIXED
========================== */

.about-main {
  padding: 100px 5%;
  background-color: #ffffff;
  color: #333;
}

.about-container {
  background: #fff;
  border-radius: 25px;
  padding: 40px;
  /* box-shadow: 0 15px 40px rgba(0,0,0,0.08); */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ==========================
   Text Content
========================== */

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #f0a500;
}

.about-text h5 {
  font-weight: 500;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.about-main .btn {
  background: #f0a500;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-main .btn:hover {
  background: #fff;
  color: #f0a500;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}


/* ==========================
   Image FIXED
========================== */

.about-image {
  flex: 1 1 50%;
}


.about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}
/* ==========================
   Expertise Section
========================== */

.experience {
  padding: 100px 5%;
  background-color: #f8f8f8;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Shape 1 - top left */
.experience::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 180px;
  height: 180px;
  background: rgba(240, 165, 0, 0.15);
  border-radius: 50%;
  /* filter: blur(3px); */
  z-index: 0;
}

/* Shape 2 - bottom right */
.experience::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 270px;
  height: 270px;
  background: rgba(240, 165, 0, 0.10);
  border-radius: 50%;
  /* filter: blur(3px); */
  z-index: 0;
}


.exp-text h2{
  font-weight: 600;
  margin-bottom: 10px;
  color: #f0a500;
  position: relative; 
}

.exp-text h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #f0a500;
  border-radius: 2px;
}

.exp-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin: 15px;
}

.exp-box i {
  font-size: 2.5rem;
  color: #f0a500;
  margin-bottom: 15px;
}

.exp-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.exp-box p {
  color: #555;
  font-size: 0.95rem;
}


/* ==========================
   RESPONSIVE DESIGN
========================== */

/* Tablets & smaller */
@media (max-width: 992px) {

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  /* TEXT FIRST – IMAGE SECOND */
  .about-text {
    order: 1;
  }
  .about-image {
    order: 2;
  }

  .about-image img {
    max-width: 450px;
    width: 100%;
  }
}

/* Mobiles */
@media (max-width: 768px) {

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero p {
    font-size: 1.1rem;
    max-width: 340px;
  }

  .about-main {
    padding: 60px 20px;
  }

  .about-image img {
    max-width: 350px;
    width: 100%;
  }
}

/* Small Phones */
@media (max-width: 480px) {

  .about-hero h1 {
    font-size: 1.8rem;
  }

  .about-hero p {
    font-size: 1rem;
    max-width: 280px;
  }

  .about-image img {
    max-width: 300px;
    width: 100%;
  }
}
