/* @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'); */


*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

p li{
    font-family: "Source Sans 3";
}
ul li{
    font-family: "Source Sans 3";
}
body{
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    /* background-image: url(../images/background.jpg); */
    background: white;
    overflow-x: hidden;
    /* margin-bottom: 100px; */
}
.header{
    background-color: black;
    height: 300px;
    background-image: url(../images/hero-image.jpg);
    background-position: center;
    background-size: cover;
    /* align-items: center; */
}
img{
    max-width: 100%;

}

h1, h2{
    /* margin-bottom: 10px; */
}
ul{
    list-style-type: none;
}
.container{
    /* max-width: 1100px; */
    margin: 500px auto;
    padding: 0 30px;
}


.top-nav i,
.top-nav span{
    font-size: .8rem;
}

.nav-item .nav-link{
    font-size: .95rem;
}



.header{
    display: flex;
    align-items: center;
    background-color: white;
    color: black;
    padding: 2rem 0;
    /* min-height: 400px; */
}
.header{
    /* background: radial-gradient(circle at 10% 20%, rgb(255, 131, 61) 0%, rgb(249, 183, 23) 90%); */
    background-color: transparent;
}
.header h1{
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;
    color:#f6f6f6;
    text-align: center;
}

.header h1 {
    overflow: hidden; 
    white-space: nowrap; 
    margin: 0 auto; 
    letter-spacing: .15em; 
    
  }

  
.header p{
    text-align: center;
    color: whitesmoke;
}



.header .container{
    display: flex;
    align-items: center;
}
.header {
    opacity: 0;
    animation-name: fadeInLeft;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.boxes .container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box{
    flex: 1;
    display: flex;
    flex-direction: row;
    color: black;
    border-radius: 10px;
    margin: 20px 10px;
    
}


#box-slide{
    overflow: hidden;
    animation: slideIn 2s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#box-ani{
    overflow: hidden;
    animation: slideInR 2s ease forwards;
}
@keyframes slideInR {
    from {
        opacity: 0;
        transform: translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.box img{
    max-width: 300px;
    margin-left: 50px;
    border-radius: 30px;
}
.box p{
    text-align: justify;
}
.box h2{
    display: block;
    padding: 0px 0px;
    color: #dd2424;
}

.bi{color:black;}

.team{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f6f6f6;
}

.top{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.top {
    opacity: 0; /* Initially set opacity to 0 */
    transform: translateY(20px); /* Initially move element down */
    animation: fadeInUp 1s ease forwards; /* Apply animation */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.top img{
    max-width: 100px;
}

.top p{
    width: 60%;
}

.circles{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 10px;
    justify-content: space-between;
}

.circle{
    display: flex;
    flex: 1;
    flex-direction: column;
    /* background-color: blue; */
    height: 250px;
    margin: 30px 10px;
    align-items: center;
    /* padding: 10px 0px; */
    
}

.circle img{
    max-width: 120px;
    height: 120px;
    background: white;
    border-radius: 200px;
    margin: 5px 0px;
}

.circle h3{
 text-align: center; 
 line-height: 1.2;  
 font-size: 1rem;
 font-weight: 700;
}

.circle p{
    padding: 8px 0;
    text-align: center;
}



.team-full{
    display: flex;
    flex-direction: row;
    /* border: 1px solid red; */
    align-items: center;
    justify-content: center;
    padding: 0px 120px;
    margin-bottom: 100px;
}


.team-full img{
    max-width: 400px ;
}

.team-bio{
    flex: 1;
    margin-left: 15px;
    text-align: justify;
}
.values{
    display: flex;
    flex-direction: column;
    padding: 10px 120px;
}

.value{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 40px;
}
.value h4{
    flex: 1;
    font-weight: 600;
}
.value p{
    flex: 1;
    text-align: justify;
}


  
  
  .demo-form{
    display: flex;
    flex-direction: column;
  }
  .form-heading{
    font-size: 25px;
  }
  .form{
    display: flex;
    flex-direction: column;
    max-width: 250px;
  }
  
  .form input{
    padding: 10px;
    border: none;
    background-color: #0000001e;
    color: black;
    margin-bottom: 10px;
    border-bottom:1px solid #000;
  }
  
  .form input:focus{
    outline: none;
    /* border: none; s*/
  }
  
  
  .form textarea{
    padding: 10px;
    color: black;
    border: none;
    background-color: #00000047;
    margin-bottom: 10px;
  }
  .form textarea:focus{
    outline: none;
    border:none;
  }
  
 .home ul , .about-us ul, .our-services ul, .products ul{
    padding-left: 0 !important;
}
ul a{
    color: #88898b;
}

ul a:hover{
    color: var(--primary-color);
}

.footer-bottom{
    background-color: var(--primary-color);
    padding: 10px 0;
}

.social-media a i{
    margin-right: 7px;
    color: black;
    font-size: 20px;
}

.head{
    color: var(--main-color);
    /* font-size: 2px; */
    font-weight: 700;
}
  .submit-button {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  font-size: 15px;
  }
  
  .submit-button:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
  }
  
  @keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
  }
  
  .submit-button:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #174ea6;
  left: 0;
  top: 0;
  border-radius: 10px;
  }
  
  label{
    font-size: 17px;
  }

@media(max-width: 600px){
    html{
        overflow: scroll;
        overflow-x: hidden;
    }


    .header .container{
        display: flex;
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 0px 20px;
        overflow: hidden;
    }
    .header h1{
        font-size: 40px;
        margin-bottom: 20px;
    }
    .header p{
        margin: 0px 20px;
        text-align: start;
    }

    body{
        background-image: none;
    }
    .boxes{
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }
    .box{
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
    }
    .box img{
        padding: 0;
        margin: 0;
    }
    .box p{
        margin:10px 0px;
    }
    
    .team .container{
        display: flex;
        flex-direction: column;
        max-width: 100%;
        align-items: center;
    }

    .circles{
        display: flex;
        flex-direction: column;
    }
    .team-full{
        display: flex;
        flex-direction: column;
        margin: 40px 0px;
        padding: 0;
    }
    .team-image{
        overflow: hidden;
    }

    .team-bio{
        margin: 20px 25px ;
    }

    .values{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .value{
        display: flex;
        flex-direction: column;
    }
    p{
        font-size: 14px;
    }

    .foot1{
        display: flex;
        flex-direction: column;
        padding: 10px 10px;
    }

    .foot2{
        display: flex;
        flex-direction: column;
    }

    .home, .about-us, .our-services, .products{
        margin: 10px 10px;
    }
}

@media only screen and (min-width:600px) and (max-width:768px){
    html{
        overflow: scroll;
        overflow-x: hidden;
    }

    .team .container{
        display: flex;
        flex-direction: column;
        max-width: 100%;
        align-items: center;
    }

    .circles{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-full{
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .values{
        padding: 0;
    }


    .foot1{
        padding: 0px 20px;
    }

    .foot2{
        display: flex;
        flex-direction: column;
    }

    .home, .about-us, .our-services, .products, .form, .form-heading{
        margin: 10px 10px;
    }

    
}

@media only screen and (min-width:768px) and (max-width:992px){
    html{
        overflow: scroll;
        overflow-x: hidden;
    }

    .team .container{
        display: flex;
        flex-direction: column;
        max-width: 100%;
        align-items: center;
    }

    .circles{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-full{
        display: flex;
        flex-direction: column;
    }

    .foot1{
        padding: 0px 20px;
    }

    .foot2{
        display: flex;
        flex-direction: column;
    }

    .home, .about-us, .our-services, .products, .form, .form-heading{
        margin: 10px 10px;
    }

}

@media only screen and (min-width:992px) and (max-width:1200px){
   


    .team .container{
        display: flex;
        flex-direction: column;
        max-width: 100%;
        align-items: center;
    }

    .foot1{
        padding: 0px 10px;
    }
}
