* {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-image: url('./media/vegetables-space-top.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  #section-1 {
    background-image: url('./media/pexels-janetrangdoan-1099680.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 100vh; 
    background-blend-mode: color-burn;
    background-color: rgba(0, 0, 0, 0.6);

    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    animation: fadeIn 1.5s ease-in-out;
    
  }

  #section-1 h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: slideInDown 1s ease-in-out;
}

#section-1 p {
    animation: fadeIn 2s ease-in-out;
}

/* Button Hover Effects */
.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

/* Input Focus Effects */
input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

/* Card Hover Effects */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

/* App Section Image Animation */
.app_section img {
    transform: scale(1);
    transition: transform 0.5s ease-in-out;
}

.app_section img:hover {
    transform: scale(1.1);
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
  
  #heading {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  }
  
  .card img {
    height: 250px;
    object-fit: cover;
  }
  
  .app_section {
    background-image: url(https://themewagon.github.io/delfood/images/app-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  

  




*{
    margin:0px;
}
footer{
    background-color: rgb(5, 5, 109);
} 
#icon{
    padding: 60px;
    padding-bottom: 8px;
    font-size: large;
}





/* About */

#about-btn{
    background-color: #4855fe;
    border: 0px;
  }
  #about-btn:hover{
    background-color: rgb(222, 195, 63);
    color: black;
    border:0px;
  }
   .abouthr{
    height: 5px;
    width: 85px;
    color: blue;
    background-color: #fd7e14;
  }  
  p{
    font-size: 18px;
  }
  
  .parentdiv{
    height: 200px;
    width: 100%;
    background-color: blue;
    display: flex;
    justify-content: center;
  }
  .childdiv{
    height: 120px;
    width: 1530px;
    background-color:white;
    border-radius: 0px 0px 1000px 1000px;
  }