 /* Form container */
        body {
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
            font-family: sans-serif;
          background-color:white;
        }
        
        .hero{
            flex-basis: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem;
            justify-content: space-around;
           
        }
        .hero h2 {
            line-height: 2.5rem;
        }

        #sheetdb-form {
            width: 35%;
            margin: 50px auto;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            align-self: center;
            align-content: center;
           
        }

        /* Form title */
        #sheetdb-form h3 {
            text-align: center;
            color: #333;
            margin-bottom: 20px;
            font-family: 'Arial', sans-serif;
        }

        /* Input boxes */
        #sheetdb-form .inputBox {
            position: relative;
            margin-bottom: 20px;
            width: 100%;
           

        }

        #sheetdb-form .inputBox textarea {
            width: 93%;
            height: 80px;
            padding-left: 2.5rem;
            padding-top: 1.5rem;
        }

        #sheetdb-form .inputBox textarea::placeholder {
           padding: 0 0 0  1rem;
            font-size: 1.1rem;
        }

        #sheetdb-form .inputBox input {
            width: 88%;
            padding: 12px 15px 12px 50px;
            /* Added padding on the left */
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            outline: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: border-color 0.3s ease;
               
        }

        

        #sheetdb-form .inputBox input:focus {
            border-color: #007bff;
        }

        /* Icons inside input fields */
       .inputBox span {
            position: absolute;
            top: 50%;
            left: 15px;
            /* Adjusted position of the icons */
            transform: translateY(-50%);
            font-size: 18px;
            color: #007bff;
        }

         #sheetdb-form .inputBox .fa-comments {
            top: 30%;

        }

        /* Submit button */
        #sheetdb-form .btn {
            width: 100%;
            padding: 12px 15px;
            background-color: #007bff;
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 18px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        #sheetdb-form .btn:hover {
            background-color: #0056b3;
        }

        /* Modal styling */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.4);
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: white;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 400px;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            text-align: center;
        }


        .close-btn {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close-btn:hover,
        .close-btn:focus {
            color: black;
            text-decoration: none;
        }

        #submissionMessage {
            font-size: 20px;
            color: #333;
        }

        .star {
            display: flex;
            flex-direction: row;
            background-color: transparent;
            border: none;
            width: auto;
            height: auto;
            
        }
        .star span {
            margin-right: 10px;
        }

        .social-media {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    text-align: center;
    margin-top: 1rem;
  }

  .social-link a {
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    /* width: 100px;
    height: 100px; */
    transition: transform 0.3s;
    justify-content: center;
    gap: 1rem;
  }

  .social-link a i {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .social-link i {
    width: 50px;
    height: 50px;
    vertical-align:middle;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }

  .social-link a span {
    font-size: 20px;
    font-weight: bold;

  }

 

  .social-link a:hover {
    transform: scale(1.1);
  }

  .whatsapp i {
    background-color: #25D366;
  }

  .linkedin i {
    background-color: #0077b5;
  }

  .youtube i {
    background-color: #ff0000;
  }

  .instagram i {
     border: 1px solid rgb(240, 1, 224);
    }
  .whatsapp span {
    color: #25D366;
  }

  .linkedin span {
    color: #0077b5;
  }

  .youtube span {
    color: #ff0000;
  }

  .instagram a {
    color: #cc228b;
    
}


.connect {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.connect h2 {
    color: #333;
}


.errorDiv {
    width: 70%;
    text-align: center;
    margin-left: 0 ;
   /*  margin-top: -20px; */
   
}

.error{
    background-color: #e8c0c0;
    color: red;
    
    padding: 0.6rem;
    border-radius: 8px;
}

.success{
    background-color: #b4ebb3;
    color: rgb(33, 124, 74);
    width: 100%;
    padding: 0.6rem;
    border-radius: 8px;
}

  @media (max-width:880px) {
    body{
        flex-direction: column;
    }

    .content h2{
        font-size: 1.2rem;
    }
     .social-media {
    display: flex;
    flex-direction: row;
    
 }

 .smh2{
    font-size: 1.2rem;
 }

 .logo img{
    width: 350px;
    height: 50px;
 }

  .social-link a i {
    font-size: 14px;
  }
  .social-link a  {
    font-size: 14px;
    gap: 0.5rem;
  }

  .social-link i {
    font-size: 14px;
    width: 30px;
    height: 30px;
  }

  .social-link a span {
    font-size: 10px;
    
  }

  .social-link a {
    display: flex;
    flex-direction: column;
  }
  #sheetdb-form {
    width: 80%;
  }
  #sheetdb-form .inputBox {
    width: 90%;
  }
  }
 