/* ABOUT PAGE */

/* WHY US INDEX */

/* Why Us Section */
.why-us h2 {
  color: #ff6600;
  font-weight: 700;
}

.why-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 30px 20px;
  margin: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.25);
}

.icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ff6600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(255,102,0,0.3);
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.why-card p {
  font-size: 15px;
  color: #555;
}

/* WHY CHOOSE US */
.why-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease-in-out;
}
.why-box .icon {
  font-size: 50px;
  color: #f96d00; /* orange accent */
  display: block;
  margin-bottom: 15px;
}
.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(249, 109, 0, 0.4); /* orange glow */
}

/* CORE VALUES */
.value-card {
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.value-card h5 {
  font-weight: 600;
  color: #f96d00; /* orange title */
  margin-bottom: 12px;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(249, 109, 0, 0.4); /* orange glow */
}


/* RECENT PROJECTS */

/* Section Styling */
.recent-projects {
  background: #fff;
  padding: 60px 0;
}

.recent-projects h2 {
  color: #ff6600; /* Orange title */
  font-weight: 700;
}

.recent-projects p {
  color: #555;
}

/* Project Card */
.project-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
  width: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2);
}

/* Image Styling */
.project-card .img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid #ff6600;
}

/* Text Info */
.project-card .info h3 a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s;
}

.project-card .info h3 a:hover {
  color: #ff6600;
}

.project-card .position {
  font-size: 14px;
  color: #999;
}

.project-card .text p {
  font-size: 15px;
  color: #444;
}

.project-card .text span {
  font-weight: 600;
  color: #ff6600;
}

.project-card .text a {
  color: #ff6600;
  font-weight: 500;
  text-decoration: none;
}

.project-card .text a:hover {
  text-decoration: underline;
}


/* UPCOMING PROJECTS */

/* Upcoming Projects Section */
.upcoming-projects h2 {
  color: #ff6600;
  font-weight: 700;
}

/* Project Card */
.project-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.25);
}

/* Image */
.project-card .card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* Card Body */
.project-card .card-body {
  padding: 20px;
}

.project-card .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.project-card .card-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.project-card .card-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

/* Link */
.project-card .card-link {
  color: #ff6600;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.project-card .card-link:hover {
  color: #cc5200;
  text-decoration: underline;
}


/* SERVICE TANK STORAGE */

/* .services .icon span {
  font-size: 40px;
  color: #f96d00; 
  display: inline-block;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.services:hover .icon span {
  transform: scale(1.2);
  color: #333;
}

.services {
  border-radius: 12px;
  transition: all 0.3s ease;
}

.services:hover {
  box-shadow: 0 10px 25px rgba(249, 109, 0, 0.3);
  transform: translateY(-8px);
} */



/* MAP */


 .map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 16:9 aspect ratio; change if you want it taller */
  height: 0;
  overflow: hidden;
  border-radius: 6px; /* optional, rounded corners */
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}