@import url('https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton+SC&family=Arapey:ital@0;1&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    /* button color */
    --color1: #FBBA45;      
 --color1: #F9D57D;      
 --background-color2: #212832;
 --color2: #162548;
 --color3: #7BAED4;

  }
/* bg */
.hero-section1{
    background: url("https://storage.googleapis.com/a1aa/image/IJLIV7e6pYQ7OCJkXem3vUcT5jOvEX0nPqHBmiWFIACwlhqTA.jpg") no-repeat center;

    background-size: cover;
    height: 100vh;
    width: 100%;
  }
  .hero-section1::before{
    background-color: rgba(0,0,0,0.6);
    content:"";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .hero-section1 .container{
    position: relative;
    top:100px;
    color: whitesmoke;
  }
  #style2{
    position: relative;
   top:160px;
   text-align: center;
   font-size: 70px;
   font-family: "Anton SC", sans-serif;
   font-weight: 400;
   font-style: normal;
}
 
/* end bg */

/* Section 1: About Us */
.About_us {
    text-align: center;
    padding: 40px;
    background-color: #EAEAE6;
}


.about-us-heading h1 {
    font-size: 30px;
    color: var(--color2);
    font-weight: 900;
}

.about-us-heading p {
    font-size: 20px;
    /* margin-bottom: 40px; */
    font-family: "Arapey", serif;
}

.about-us-tag-line {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Ensure wrapping on smaller screens */
    gap: 20px;
    margin-top: 40px;
    transition: all 1s ease-in-out;
}
.box{
    background-color: var(--background-color2);
    color: #fff;
}
.box h2{
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-style: normal; 
    margin-top: 10px;
}
.box p{
    font-family: "Arapey", serif; 
}

.about-us-tag-line .box {
    width: 30%;
    box-shadow: 0 0 10px rgba(19, 15, 15, 0.2);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.15s ease-in-out;

}

.about-us-tag-line .box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.about-us-tag-line .box:hover {
    transform: scale(1.05);
}

/* Section 2: Mission and Vision */
.About_us2 {
    text-align: center;
    padding: 40px;
    background-color: #f4f4f4;
}

.about-us-heading h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.mission-vision {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow for wrapping on smaller screens */
}

.company-mv {
    width: 45%;
    box-shadow: 0 0 10px rgba(19, 15, 15, 0.2);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.15s ease-in-out;
    background-color: var(--background-color2);
   color: whitesmoke;

}

.mission-vision .company-mv:hover {
    transform: scale(1.05);
}

.company-mv h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#mission{
   color: var(--color1);
    
}
.company-mv p {
    font-size: 1rem;
    font-family: "Arapey", serif;
}

/* team section */
#team {
    background-color:  #EAEAE6;
    padding: 50px;
    text-align: center;
}
.team-members {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
}
.team-member {
    margin: 20px;
    width: 200px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    background-color: #212832;
    color: white;
}
.team-member:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
  
.team-member img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.team-member h3 {
    font-size: 18px;
    margin-top: 10px;
}

.team-member p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-family: "Arapey", serif;
 }
 #team h2{
    color: var(--color2);
    font-size: 2.5rem;
    font-weight: 900;
 }
 #team ul{
  display: flex;
  width: 50px;
 }
  #team ul li a{
   margin: 10px;
   position: relative;
   right: 10px;
   color: var(--color1);
  }
  #team ul li a:hover{
    color: whitesmoke;
   }
  #team ul li{
    list-style-type: none;
  } 
  
  /* #fb a{
    color: var(--color1);
  }
  #yt a{
    color: var(--color1);
  }
  #insta a{
   
  } */

/* Responsive Styles */
@media (max-width: 450px) {
    .about-us-tag-line .box,
    .mission-vision .company-mv {
        width: 100%; /* Full width on small screens */
    }

    .about-us-heading h1 {
        font-size: 2rem; /* Smaller heading */
    }

    .about-us-heading p {
        font-size: 1rem; /* Smaller paragraph text */
    }

    .mission-vision .company-mv h2 {
        font-size: 1.5rem; /* Smaller subheading */
    }

    .mission-vision .company-mv p {
        font-size: 0.9rem; /* Smaller paragraph text */
    }

    .team-member {
        width: 100%; /* Wider team member cards on small screens */
        margin: 20px auto; /* Center the cards */
       
    }
    .team-members {
     display: block;
    }
    #team ul li a{
        margin: 10px;
        position: relative;
        left: 5px;
       }

    .team-member img {
        width: 100%;
    }



    #team ul li {
        margin: 10px 0; /* Add margin between links */
    }
   

#style2{
  position: relative;
 top:120px;
 text-align: center;
 font-size: 50px;
}
}