@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


        body {
          background: white;
         font-family:'Poppins',sans-serif;
   
        }

        .home-page{
        background-color: rgba(216, 230, 244, 0.717);
          }

        .navbar {
        
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
        }

        .nav-left {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 60px;
            width: auto;
        }

        .nav-links a {
            text-decoration: none;
            color: black;
            margin-left: 25px;
            font-size: 15px;
        }

        .nav-links a:hover {
            color: rgb(55, 15, 216);
        }


        .nav-links a.active {
        color: #2d097c;
         font-weight: bold;
}



    .nav-buttons .btn {
    padding: 10px 18px;
    margin-left: 10px;
    border-radius: 8px;
    border: 1px solid #2d097c;
    text-decoration: none;
    color: #2d097c;
    display: inline-block;
    background-color: transparent;
    transition: all 0.3s ease;
}

.nav-buttons .btn:hover {
    background-color: #2d097c;
    color: white;
}

        .signup {
            color: black;
            border: none;
            background-color: transparent;

        }

        .login {
            background-color: transparent;
            color:black;

        }

        .hero {
            padding: 90px 40px; /* changed by me*/
            max-width: 700px;
        }

        .hero h1 {
            font-size: 50px;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .second-section {
            background-color: #f2f2f2;
            text-align: center;
           
            padding-top: 100px;
            padding-bottom: 100px;
        }

        .badge {
            background-color: #d6e1ea;
            padding: 10px 20px;
            border-radius: 20px;
            display: inline-block;
            font-size: 14px;
        }

        .second-section h1 {
            font-size: 55px;
            margin-top: 30px;
            margin-bottom: 20px;
        }

        .second-section p {
            font-size: 18px;
            color: #555;
            width: 700px;
            margin: auto;
        }


    .problem-solution {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    text-align: left;
}

.problem, .solution {
    width: 40%;
}

.problem li,
.solution li {
    margin-bottom: 15px;
    font-size: 20px;
}

.problem ul,
.solution ul {
    list-style: none;
    padding-left: 0;
}
   
/*Footer Code */

.footer {
            background-color: rgba(208, 220, 231, 0.628);

 
  padding: 20px 60px;

  color: #2c2c2c;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;  
}

.footer-col {
  flex: 1;               
  text-align: center;    
}


.footer-col h3 {
  margin: 0 0 8px 0;   
  position: relative;
}




.footer-col p {
  margin: 5px 0;   
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #333;
  margin: 8px 0;
  transition: 0.3s;
}

.footer-col a:hover {
  color: white;
}

.logo-col img {
  display: block;
  margin: auto;
}

/* Social icons */
.social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  margin-right: 10px;
  color: #333;
  transition: 0.3s;
}

.social a:hover {
  background: white;
  color: #c52fe3;
}


.footer-bottom {
  margin-top: 10px;   
  font-size: 14px;
}

.team-link{
    text-decoration: none;
}    

.headline {
        color: #2d097c;
}

    .icon {
  width: 28px;
  height: 28px;
  margin-left: 8px;
  vertical-align: middle;
}
 
/* admin */

.admin-icon {
    width:58px;
    height:58px;
    
}

.admin-link{
    display:flex;
    align-items:center;
}


/* Admin css */

.admin-icon {
    width:58px;
    height:58px;
    
}

.admin-link{
    display:flex;
    align-items:center;
}

/* nav buttons css */

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}
/* nav buttons css */

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* responsive Navbar */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

/* Mobile view */

@media (max-width:768px){

.menu-toggle{
display:block;
}

/* sidebar */
.nav-links{
position:fixed;
top:0;
left:-260px;        
width:260px;
height:100vh;
background:rgb(193, 196, 249);
display:flex;
flex-direction:column;
justify-content:left;
transition:0.3s;
z-index:1000;
}

/* open menu */
.nav-links.active{
left:0;
}

.nav-links a{
padding:15px;
font-size:18px;
display:block;
}

}/*end resp*/


