/* Reset some default styles */
body, h1, h2, p, ul, li, form {
    margin: 0;
    padding: 0;
  }
  
  /* Global Styles */
  body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #f8f8f8;
    
    
  }
  
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0px;
  }
  

  
  
  /* Hero Section */
  #hero {
    text-align: center;
    background-color: #fff;
    padding: 0px 0;
  }
  
  #hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  
  
  #hero p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .btn {
    display: inline-block;
    padding: 2px 2px;
    background-color: #FF6347 ;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    width: 50%;
  }
  
  /* Sections */
  section {
    margin-bottom: 60px;
  }
  
  section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  section p {
    margin-bottom: 30px;
  }
  
  

  /* Contact Section */
  #contact form input[type="text"],
  #contact form input[type="email"],
  #contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  #contact form button[type="submit"] {
    padding: 10px 20px;
    background-color: #FF6347;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    width: 100%;
    
  }
  
  /* Footer */
  footer {
    background-color: #FFAA33;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 14px;
  }
  
  /* Header */
  header {
    margin-bottom: 20px;
  }
  
  .navbar {
    padding: 10px;
  }
  
  .navbar-brand {
    font-size: 24px;
    font-weight: bold;
  }
  
  .nav-link {
    color: #fff !important;
    font-size: 15px;
    margin-right: 5px;
  }
 
  /* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
  }
  
  
    .feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
  
  
  .feature img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10%;
    margin-bottom: 5px;
  }
  
  .feature h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .feature p {
    font-size: 14px;
    color: #666;
  }
  
  
  #about {
    text-align: center;
  }
  
  #about .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }

  #features {
    text-align: center;
  }
  
  #features .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
  }

  #contact{
    text-align: center;
  }
  
  .mainImg {
    width: 100%;
    height: auto;
  }