*{
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition:all 0.3s ease-in-out;
}
:root {
    --dark-brown: #251412;
    --light-brown: #4d000f;
    --gold-brown: #FFA800;
    --white: #ffffff;
  }

body{
    width: 100vw;
    /* height: 100vh; */
    overflow-x: hidden;


}
.body{
    max-width: 86rem;
    
    margin: 0 auto;
    background-color: var(--white);
    font-family: "Poppins", sans-serif;
    /* border: 2px solid black; */

}

/* .header{
    background-image: linear-gradient(rgba(255, 255, 255, 0.514), rgba(255, 255, 255, 0.726)), url("./img/1.jpg");
    height: 700px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    
} */

.hamburger{
    position: fixed;
    right: 65px;
    top: 65px;
    display: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    appearance: none;
    background-color: rgb(255, 255, 255);
    outline: none;
    border: none;
    z-index: 200;
}
.hamburger .bar, .hamburger::after, .hamburger::before{
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    background-color: rgb(48, 47, 47);
    margin: 4px 10px;
    transition: 0.4s;
}
.hamburger.is-active::before{
    transform: rotate(-45deg) translate(-6.5px, 5px);
}
.hamburger.is-active::after{
    transform: rotate(45deg) translate(-4px, -3px);
}
.hamburger.is-active .bar{
    opacity: 0;
}
.navbar{
    top: 0;
    left: 0;
    background: var(--light-brown);
    z-index: 10;
    width: 100%;
    transition: 0.3s ease-in-out;
    position: relative;
}
.nav{
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    padding-right: 5%;
    padding-top: 1.5rem;
}
.nav .logo{
    width: 100px;
}

.nav-items{
    margin-top: auto;
    display: flex;
    gap: 2rem;
    
}
.nav-items>li>a{
    border: 1px solid var(--white);
    border-radius: 10px;
    display: block;
    padding: 4px 7px;
    cursor: pointer;
    background: transparent;
    color: var(--white);
}
.nav-items>li>a:hover{
    background: var(--dark-brown);
}

.mobile-nav{
    position: fixed;
    top: 0;
    right: 100%;
    width: 50%;
    max-height: 50vh;
    display: block;
    z-index: 20;
    background-color: var(--white);
    opacity: 0.85;
    padding-top: 50px;
    transition: 0.9s;
}
.mobile-nav.is-active{
    right: 0;
}
.mobile-nav>a {
    display: flex;
    font-weight: 900;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
    padding: 12px 16px;
    border: 1px solid rgb(63, 0, 0);
    color: var(--dark_brown);
    text-decoration: none;
}
.mobile-nav>a:hover{
    color: var(--light_brown);
}


/* .nav-active {
    position: fixed;
    background-color:#fff;
    top: 0;
    box-shadow: 5px -1px 12px -5px grey;
    z-index: 10;
}  */

@media only screen and (max-width: 900px) {
    .nav-items>li>a{
        display: none;
    }
    .hamburger{
        right: 65px;
        top: 20px;
        display: block;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        position: absolute;
    }
}

.button{
    border: none;
    background: var(--gold-brown);
    border-radius: 10px;
    padding: 1rem 3rem;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    color: var(--white);
    box-shadow: 1px 5px 6px 3px #888888;
    cursor: pointer;
}
.button:hover{
    background: #ffa331;
}
.button:active{
    box-shadow: 1px 3px 6px 1px #888888;
}

/* .hero-text {
    text-align: center;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dark-brown);
}

.hero-text> h1{
    font-style: normal;
    font-weight: 700;
    font-size: clamp(24px, 5vw, 54px);
    line-height: 148.9%;
    width: 869px;
    height: 285px;
    margin-bottom: 2rem;
}
.int-text> h1{
    font-style: normal;
    font-weight: 700;
    font-size: clamp(24px, 10vw, 64px);
    line-height: 148.9%;
    width: 869px;
    height: 285px;
    margin-bottom: 2rem;
}*/

.slide {
    top: 80%;
    left: 15%;
    color: var(--gold-brown);
    font-size: 2rem;
    cursor: pointer;
}
.slide-right {
    left: 20%;
}

.social-media{
    position: absolute;
    display: flex;
    flex-direction: column;
    left: 3rem;
    bottom: 3rem;
    gap: 1rem;
}
.fa {
    display: flex;
    padding: 20px;
    font-size: 25px;
    width: 60px;
    height: 60px;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    background: var(--white);
    color:var(--dark-brown);
}
  
.fa:hover {
    opacity: 0.7;
}


@media only screen and (max-width: 700px) {
    .social-media{
        display: none;
    }
}


.main{
    padding-top: 1rem;
    width: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.171), rgba(255, 255, 255, 0.774)), url("./img/nain_background.svg");
    min-height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    
}
.headings{
    margin: 0 auto;
    text-transform: uppercase;
}
.headings>span{
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 148.9%;
    text-align: center;
    letter-spacing: 0.05em;
    color: var(--light-brown);
    text-shadow: -2px 2px 3px var(--dark-brown);
}

.info{
    padding-top: 2rem;
    display: flex;
    gap: 2rem;
}
.corner{
    flex: 1;
    float: left;
    max-width: 609px;
    height: 600px;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.corner .corner-img{
    /* position: relative; */
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url("./img/1.jpg");
    /* background-position: center; */
    /* background-repeat: inherit; */
    background-size: inherit;
    max-width: 100%;
    height: 80%;
    border-radius: 0px 200px 0px 0px;
    box-shadow: 2px 2px 10px #554d4d;
    
}
.text{
    max-width: 50%;
    text-align: center;
    padding-right: 4rem;
    padding-top: 4rem;
}
.textwrap{
    text-align: left;
}
.textwrap>p{
    margin-bottom: 2rem;
}

@media only screen and (max-width: 1000px) {
    .body{
        max-width: 100%;
    }
    .hamburger{
        right: 10%;
    }

    .hero-text {
        top: 45%;
    }

    .hero-text> h1{
        margin-bottom: 0;
    }

    .button{
        border-radius: 8px;
        padding: 1rem 2rem;
        font-weight: 600;
        font-size: 28px;
    }

    .info{
        flex-direction: column;
    }
    .corner{
        flex: 1;
        max-width: 100%;
        height: 600px;
    }

    .main{
        min-height: 500px;
    }

    .headings span{
        width: 877px;
        height: 122px;
        font-size: 100px;
    }
    .corner>.corner-img{
        margin: 0 auto;
        width: 400px;
        height: 350px;

    }
    .text{
        max-width: 100%;
        text-align: center;
        padding-right: 10%;
        padding-left: 10%;
        padding-top: 1rem;
    }
}
@media only screen and (max-width: 550px) {
    .headings>:nth-child(1){
        font-size: 58px;
    }
    .headings>:nth-child(2){
        font-size: 24px;
        left: 38%;
        top: 50px;
    }
    .headings{
        margin-bottom: 4rem;
    }
    .corner-img{
        width: 400px;
        height: 350px;
    }
}
footer{
    text-align: center;
    background-color: var(--light-brown);
    margin-top: 2rem;
    height: 40vh;
    padding: 2rem 0;
}
.footer-icons, .footer-nav{
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 1rem;
}
.footer-nav>li>a{
    color: var(--white);
}
.footer-nav>li>a:hover{
    color: var(--light-brown);
}



/* Internship and Training */
/* .int-header{
    background-image: url("./img/intern.jpg");
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;   
} */
.int-text>h1{
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}
.intern{
    position: relative;
    align-items: center;
}
.inte, .tra{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}
.inte>:nth-child(2){
    position: absolute;

}
.train{
    position: relative;  
}
.tra>:nth-child(2){
    position: absolute;
}
.info-text{
    width: 100%;
    padding: 0 10%;
}
.int-textwrap{
    margin-bottom: 2rem;
}

.int-btn{
    width: 25rem;
    border: none;
    background: var(--gold-brown);
    border-radius: 10px;
    padding: 1rem 3rem;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: var(--white);
    box-shadow: 1px 5px 6px 3px #888888;
    cursor: pointer;
}
.int-btn:hover{
    background: #ff8800;
}
.int-btn:active{
    box-shadow: 1px 3px 6px 1px #888888;
}

/* PROJECT PAGE */

/* .pro-header{
    background-image: url("./img/python.jpg");
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;   
} */
/* .main>:nth-child(3){
    margin-bottom: 2rem;

} */

.proj {
    padding-top: 2rem;
    width: 70%;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.proj>div>h2 {
    color: var(--dark-brown);
    text-transform: uppercase;
}

.proj>div>p {
    text-align: justify;
    color: var(--dark-brown);
}

@media only screen and (max-width: 900px) {
    .proj{
        flex-direction: column;
    }
}

/* Contact Us */
/* .con-header{
    background-image: url("./img/philip-strong-iOBTE2xsYko-unsplash.jpg");
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;   
} */

.wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 350px;
    width: 100%;
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 4px 4px 2px rgba(254,236,164,1); 
  }
  
  .wrapper h2{
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--dark-brown);
  }
  
  .wrapper .input_field{
    margin-bottom: 10px;
  }
  
  .wrapper .input_field input[type="text"],
  .wrapper textarea{
    border: 1px solid #e0e0e0;
    width: 100%;
    padding: 10px;
  }
  
  .wrapper textarea{
    resize: none;
    height: 80px;
  }
  
  .wrapper .btn input[type="submit"]{
    border: 0px;
    margin-top: 15px;
    padding: 10px;
    text-align: center;
    width: 100%;
    background: var(--gold-brown);
    color: var(--dark-brown);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
  }
  
  #error_message{
    margin-bottom: 20px;
    background: #f12c33;
    color: var(--white);
    padding: 0px;
    text-align: center;
    font-size: 14px;
    transition: all 0.5s ease;
  }

  /* CSS ANIMATIONS */

  .animate {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  .half {
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    animation-delay: 0.25s;
  }
  .one {
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    animation-delay: 0.25s;
  }

  .two {
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    animation-delay: 1.5s;
  }
/* fade up */
  @-webkit-keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  .fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }

/* fade in */
  @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  .fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
  }

  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }

  /* .reveal{
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: 1s all ease;
  }
  
  .reveal.active{
    transform: translateY(0);
    opacity: 1;
  } */
  .slideLeft{
    position: relative;
    transform: translateX(200px);
    opacity: 0;
    transition: 1s all ease;
  }
  
  .slideLeft.active{
    transform: translateX(0);
    opacity: 1;
  }
  .slideRight{
    position: relative;
    transform: translateX(-200px);
    opacity: 0;
    transition: 1s all ease;
  }
  
  .slideRight.active{
    transform: translateX(0);
    opacity: 1;
  }
  

  @media only screen and (max-width: 550px) {
    .footer-icons, .footer-nav{
        flex-direction: column;
    }
}