@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    padding: 0px;
    margin: 0px;
     font-family: "Poppins", sans-serif !important;
}
html{
    scroll-behavior: smooth;
}

#hero{
   height: 400px !important;
   display: grid;
   place-items: center;
   text-align: center;
   background:  linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.597)), /* black overlay */ url('../media/ab-bg.jpg') !important;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   max-width: 1300px;
   margin: 20px auto;
   border-radius: 40px;
}
#hero h4{
    font-size: 15px;
    color: #000;
    padding: 4px 30px;
    border-radius: 40px;
    background-color: #fff;
    width: fit-content;
    text-align: center;
    margin: 0px auto;
}
#hero h1{
    font-size: 60px;
    color: #fff;
    font-weight: 700;
    margin: 10px 0px 10px 0px;
}
#hero p{
    color: #8d8d8d;
    font-size: 14px;
    max-width:800px;
    margin: 10px auto;
    text-align: center;
}

.about-us-con-sec{
    max-width: 1000px;
    margin: 30px auto;
}
.about-us-con-sec h2{
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-align: center;
}
.about-us-con-sec p{
      color: #8d8d8d;
    font-size: 14px;
    text-align: left;
    margin: 0 0 20px 0;
}

/* about-journey  */

#about-journey h2{
    font-size: 30px ;
    font-weight: 600;
    margin: 0 0 10px 0;
}
#about-journey{
    padding: 40px 10px;
}

#about-journey h3 , #about-journey h4{
    font-size: 25px;
    font-weight: 600;
    margin: 0px 0px;
    color: #fff !important;
}

#about-journey p{
    color: #8d8d8d !important;
    font-size: 14px !important;
    line-height: 25px;
    margin: 2px 0px;
}
#about-journey a{
    padding: 5px 20px ;
    border-radius: 3px;
    font-size: 14px;
    text-decoration: none;
}

/* OUR TEAM SECTION */
.our-team {
  background: #fff;
  padding: 20px 20px 50px 20px;
}

.our-team .container {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin: 0 0 5px 0;
}

.section-subtitle {
  font-size: 16px;
  color: #333;
  margin: 0 0 40px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-name {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin: 15px 0 5px;
}

.team-role {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}


@media (max-width:550px)
{
  .about-us-con-sec {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0px 10px;
}
.about-us-con-sec p {
  text-align: center;
}
.about-us-con-sec h2 {
    font-size: 30px;
    
}
#about-journey h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
}
#hero{
   margin: 20px 10px;
   border-radius: 40px;
   padding: 5px ;
}
#hero h4{
    font-size: 15px !important;
    color: #000;
    padding: 4px 30px;
    border-radius: 40px;
    background-color: #fff;
    width: fit-content;
    text-align: center;
    margin: 0px auto;
}
#hero h1{
    font-size: 40px !important;
    color: #fff;
    font-weight: 700;
    margin: 10px 0px 10px 0px;
}
#hero p{
    color: #8d8d8d;
    font-size: 14px;
    max-width:800px;
    margin: 10px auto;
    text-align: center;
}
}