 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: Arial, sans-serif;
 }
 
 .contact-us-container {
     /* background-color: #02353C; */
     padding: 4px;
     background: linear-gradient(120deg, #000329 8%, #2d53ba, #c12390 116%);
     /* max-width: 1440px; */
 }

 @media (min-width: 1025px) {
     .contact-us-container {
         padding: 80px;
     }
 }

 .contact-us-inner-container {
     display: flex;
     gap: 20px;
     color: white;
     padding: 8px;
     margin: auto;
     max-width: 1440px;
     flex-direction: column;
     flex-wrap: wrap;
 }

 @media (min-width: 1025px) {
     .contact-us-inner-container {
         padding: 20px;
     }
 }

 @media (min-width: 1025px) {
     .contact-us-inner-container {
         flex-direction: row;
     }
 }

 .contact-us-left {
     width: 100%;
     margin-right: 20px;
     padding: 20px 0px;
 }

 @media (min-width: 1025px) {
     .contact-us-left {
         width: 40%;
         padding: 20px;
     }
 }

 .contact-us-right {
     width: 100%;
     border-radius: 8px;
     box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
     padding: 16px;
 }

 @media (min-width: 1025px) {
     .contact-us-right {
         flex: 1;
         padding: 40px;
     }
 }

 .contact-us-title {
     font-size: 2.8rem;
     background: linear-gradient(45deg, #2d53ba, #c12390 116%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin: 30px 0;
     text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.1);
     /* light white glow */
 }

 .contact-us-description-wrapper {
     display: flex;
     justify-content: center;
     width: 100%;
     margin-top: 20px;
 }

 .contact-us-description-wrapper {
     display: flex;
     justify-content: center;
     width: 100%;
     margin-top: 20px;
 }

 .contact-us-description {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     text-align: left;
     max-width: 900px;
     width: 100%;
     margin: 20px auto;

 }

 .feature-item {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     /* Align text to start */
     text-align: left;
     padding: 0 20px 0 0px;
     /* Add right padding for space before the line */
     flex: 1;
     position: relative;
 }

 .feature-item:not(:last-child)::after {
     content: "";
     position: absolute;
     right: 10px;
     /* shift the line slightly left */
     top: 50%;
     transform: translateY(-50%);
     height: 25px;
     width: 1px;
     background-color: #ccc;
 }


 .feature-top {
     font-size: 0.85rem;
     /* Reduced size */
     color: white;
     margin-bottom: 4px;
 }

 .feature-bottom {
     font-weight: bold;
     font-size: 1rem;
     /* Reduced size */
     color: #fff;
 }


 .contact-us-form-group {
     display: flex;
     flex-direction: column;
     margin-bottom: 15px;
     gap: 8px;
 }

 .contact-us-row {
     display: grid;
     gap: 10px;
     grid-template-columns: repeat(1, minmax(0, 1fr));
 }

 @media (min-width: 1025px) {

     .contact-us-row {
         grid-template-columns: repeat(2, minmax(0, 1fr));
     }

 }

 .contact-us-input {
     padding: 16px;
     border: 1px solid #ccc;
     border-radius: 5px;
     font-size: 16px;
     width: 100%;
 }

 .contact-us-textarea {
     height: 100px;
     resize: none;
     border-radius: 5px;
 }

 .contact-us-checkbox-container {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .contact-us-checkbox {
     width: auto;
 }

 .contact-us-submit-btn {
     background-color: #f9f8ff;
     color: white;
     border: none;
     padding: 12px 40px;
     font-size: 16px;
     border-radius: 28px;
     width: auto;
     cursor: pointer;
     margin-top: 10px;
     font-weight: 600;

 }

 .contact-us-submit-btn-container {
     display: flex;
     justify-content: center;
     align-items: center;
     margin-top: 20px;
 }

 .contact-us-submit-btn span {
     background: linear-gradient(45deg, #2d53ba, #c12390 116%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-size: 18px;
 }

 .contact-us-submit-btn:hover {
     background-color: #f9f8ff;
 }

 .contact-us-error {
     color: red;
     font-size: 14px;
     display: none;
 }


 /*contactus section*/
 .contact-section {
     background-color: whitesmoke;
     /* black background */
     color: black;
     text-align: center;
     padding: 40px 20px;
     font-family: 'Poppins', sans-serif;
 }

 .contact-section h2 {

     margin-bottom: 20px;
     color: #2d53ba;
     font-size: 35px;
     background: linear-gradient(45deg, #2d53ba, #c12390 116%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .contact-section p {
     font-size: 16px;
     line-height: 1.6;
     max-width: 700px;
     margin: 0 auto 40px;
 }

 .contact-button {
     display: inline-block;
     background: linear-gradient(45deg, #2d53ba, #c12390 116%);
     color: #fff;
     padding: 15px 30px;
     border-radius: 30px;
     text-decoration: none;
     font-weight: 600;
     transition: background-color 0.3s ease;
 }



