
/* Importing Google font - Open Sans */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

body {
    height: 70vh;
    width: 100%;
    background: url("help-2.jpg") center/cover no-repeat;
    
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 0 10px;
}

.navbar {
    display: flex;
    padding: 22px 0;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: space-between;
}

.navbar .hamburger-btn {
    display: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
}

.navbar .logo {
    gap: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar .logo img {
    width: 80px;
    border-radius: 50%;
    
}

.navbar .logo b {
    color: #fff;
    font-weight: 300;
    font-size: 1.2rem;
}
.navbar .logo b:hover {
    color: yellow;
}

.navbar .links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.navbar .close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    display: none;
    color: #000;
    cursor: pointer;
}

.navbar .links a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: 0.1s ease;
}

.navbar .links a:hover {
    color: yellow;
}

form button {
    width: 100%;    color: #fff;    border: none;    outline: none;
    padding: 14px 0;    font-size: 1rem;    font-weight: 500;
    border-radius: 8px;    cursor: pointer;    margin: 25px 0;
    background: #00bcd4;    transition: 0.2s ease;
    
}

form button:hover {
    background: #08a700;
}
.home{
width:50%;
height: 50%;
 background:linear-gradient(rgb(245, 243, 243),rgba(254, 253, 253, 0.3),rgba(247, 245, 245, 0.4)) ;
margin-left:300px;border-radius: 5px;

}
.abt-img img{
    width: 70px;margin-left: 600px;
    
}
.edu{
    text-align: right;font-weight: 45px;font-family:Georgia, serif;
    color: #d40004;
}
.vsn{
    width:30%;
height: 50%;
background:linear-gradient(rgb(245, 243, 243),rgba(254, 253, 253, 0.3),rgba(247, 245, 245, 0.4)) ;
margin-left:80px;
margin-top:50px;
border-radius: 7px;color: #050505;
 font-family:Georgia, serif;
word-spacing: 5px;
padding-left: 10px;
    padding-right: 10px;
}
.prjct{
    width:30%;
    height: 50%;
    background:linear-gradient(rgb(245, 243, 243),rgba(245, 243, 243),rgba(245, 243, 243)) ;
    margin-left:80px;
    margin-top:50px;
    border-radius: 7px;
    color: #050505;
     font-family:Georgia, serif;
     font-weight: bold;
    word-spacing: 5px;
    
}
.cntct{
    width:22%;
    height: 280px;
    background:linear-gradient(rgb(120, 220, 220, 0.4),rgba(220, 220, 220, 0.4),rgba(220, 120, 220, 0.4)) ;
    margin-left:580px;margin-top:50px;
    border-radius: 7px;color: #050505;
    text-align: center;font-family: Georgia, serif;
}
.txt{
    margin-top: 13px;font-family: Georgia, serif;
}

.submit{
    width:90px;height: 40px;margin-left: 50px;
}
.futr{
    width:100%;
    height: 70px;
    background:linear-gradient(rgba(2, 2, 2, 0.4),rgba(10, 10, 10, 0.4),rgba(10, 10, 10, 0.4)) ;
    color: #faf8f8;
    text-align: center;
    font-family: Georgia, serif;
    margin-top: 90px;
}
/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;margin-top:250px;margin-left: 400px;margin-top: 10%;
  }
  .slideshow-container img {
    border-radius: 8px;
      }
  }
  
  /* Caption text */
  .text {
    color: #c60b0b; margin-left: 10px;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .text {font-size: 11px}
  }
    


