/* home page stylee */

/*body {
    background-color: rgb(255, 255, 255);
    padding-top: 65px; 
}
@media (max-width: 768px) {
  body {
padding-top: 50px;}
}*/
.homepage-width{
     max-width: 100%;
  padding: 70px 8% 50px 8%;
}
@media (max-width: 1200px) {
  .homepage-width {
  max-width: 100%;
  padding: 50px 5%;}
}
/* end home page stylee */

/* start page title */
.bradcrub1 {
  position: relative;
  width: 100%;
  height: 250px; 
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {.bradcrub1 {
    position: relative;
    height: 200px; 
}}
.bradcrub1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(62, 155, 161, 0.288); 
}
.bradcrub1-content {
  position: absolute; 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;  
  text-align: center;
  padding: 0 20px; 
}
@media (max-width: 768px) {.bradcrub1-content h1 {
    font-size: 2rem; 
    margin: 0;
} }
@media (max-width: 768px) {.bradcrub1-content p {
    font-size: 0.9rem;
    margin-top: 10px;
}}
/* end page title */

.about-us-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff00;
  padding-top: 50px;
  gap: 30px;
}
.about-image,
.about-content-home {
  flex: 0 0 50%;
  max-width: 800px;
  box-sizing: border-box;
  text-align: justify;
}

.about-image video {
  width: 100%;
  height: auto;
  display: block;
}

/* Example responsive behavior */
@media (max-width: 768px) {
  .about-us-main {
    flex-direction: column;
    text-align: justify;
  }
  .about-image,
  .about-content-home {
    flex: 1 1 100%;
  }
  .about-content-home {
    padding-top: 10px;
  }
}

/* start vision and mision */
.vision-mission-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0px 20px 70px 20px;
  flex-wrap: wrap;
}

.vision-mission-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  max-width: auto;
  flex: 1 1 400px;
  transition: transform 0.3s;
}

.vision-mission-card:hover {
  transform: translateY(-5px);
}
.vision-mission-icone{
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.vision-mission-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.vision-mission-card ul {
  padding-left: 20px;
  margin: 0;
}

.vision-mission-card ul li {
  margin-bottom: 10px;
  line-height: 1.6;
  list-style: none;
  position: relative;
  padding-left: 20px;
  color: #333;
}

.vision-mission-card ul li::before {
  content: "➤ ";
  position: absolute;
  left: 0;
  color: #008b8b;
  font-size: 0.8rem;
}
/* end */

/* why us section */
.whychooseus-title {
  margin-top: 70px;
  background-color: #008A8A;
  padding: 50px 20px;
}

.whychooseus-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 0 auto;
}

.whychooseus-image-card img {
  width: 100%;
  height: auto;
}

.whychooseus-card {
  background-color: #339D9D;
  text-align: center;
  padding: 15px 10px;
  border-radius: 10px;
}

.whychooseus-card h4 {
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 10px;
}

.whychooseus-card p {
  color: #ffffff;
  margin: 0;
}

.whychooseus-card-icone {
  background-color: #008A8A;
  display: inline-block;
  padding: 10px;
  border-radius: 50%;
  margin-bottom: 10px;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Optional responsive tweak */
@media (max-width: 768px) {
  .whychooseus-title {
    padding: 30px 10px;
  }
}
 /* end why us */
 
 /* start counter */
.counter-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #008A8A; /* Teal background */
  padding: 40px 20px;
  flex-wrap: wrap;
}

.counter-box {
  color: white;
  text-align: center;
  padding: 20px;
  flex: 1 1 200px;
  max-width: 250px;
}

.counter-box img {
  height: 60px;
  width: 60px;
  margin: 0 auto 10px auto; /* Centers the image and adds bottom margin */
  display: block;
}

.counter-box h2 {
  font-size: 45px;
  margin: 10px 0;
  font-weight: bold;
}

.counter-box p {
  font-size: 16px;
  font-weight: bold;
  color: #dff6f8;
  letter-spacing: 1px;
}
/* end counter */

/* start core value */
.core-values-section {
  text-align: center;
  padding: 50px 20px;
}
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .core-values-grid {
    grid-template-columns: 1fr;
  }
}
.corevalu-icone1{
  display: inline-block;
  margin-bottom: 20px;
  width: 60px;
  height: 60px;}
.core-value-card {
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.core-value-card:hover {
  transform: translateY(-5px);
}
/* Gradient Colors */
.core-values-teal {
  background: linear-gradient(135deg, #05AFB7, #96CED1);
}
.core-values-orange {
  background: linear-gradient(135deg, #F69F6B, #FBBB6A);
}
.core-values-blue {
  background: linear-gradient(135deg, #559CEA, #6BA3CB);
}
.core-values-pink {
  background: linear-gradient(135deg, #F954A1, #F2A1C6);
}
.core-values-purple {
  background: linear-gradient(135deg, #A040F3, #A86AE3);
}
.core-values-green {
  background: linear-gradient(135deg, #05AFB7, #96CED1);
}
/* end core value */





/* start steps us */
.workingstepp3-aboutus {
   background: linear-gradient(to bottom right, #e6ffff, #f9fbff, #fff4ed);
}
.step-box-about {
  display: flex;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin-bottom: 40px;
  width: 100%;
}

.step-number-about {
  font-size: 2.8rem;
  font-weight: bold;
  margin-right: 30px;
  min-width: 60px;
}

.step-1-about .step-number-about { color: #f97316; } /* Orange */
.step-2-about .step-number-about { color: #2563eb; } /* Blue */
.step-3-about .step-number-about { color: #ec4899; } /* Pink */
.step-2-about{
  margin-left: 50px;
}
@media (max-width: 768px) {
  .step-2-about{
  margin-left: 0px;
}
  }

.step-content-about h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.step-content-about p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 768px) {
  .step-box-about {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number-about {
    margin-bottom: 10px;
  }
}
/* end steps us */