
.page-heading .main-heading{
    margin: 20px auto;
    /* border: 1px solid red; */
    text-align: center;
}

.card{
    /* border: 1px solid red; */
    width: 700px;
    margin: 10px auto;
    line-height: 1.6;
    /* background: #f4f4f4; */
   
}

.content-heading{
    margin-top: 20px;
}

/* Contact Info Styling */
.contact-info p {
    margin: 10px 0;
    font-size: 15px;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}


.list-items{
    margin-left: 30px;
}
.normal-para{
    line-height: 1.6;
    margin-left: 20px;
 }
 .bold-para{
    line-height: 1.6;
    margin-left: 10px;
    font-weight: bold;
    font-size: 0.9rem;
 }
 .point-heading{
    line-height: 1.5;
    margin-top: 10px;  
    margin-bottom:5px ;
 }
 .inline-bold-heading{
   line-height: 1.6;
    /* margin-left: 10px; */
    font-weight: bold;
    font-size: 0.9rem;
 }
 
 /* Form Section */
.contact-form-section {
    margin-top: 30px;
}

.contact-form-section h3 {
    text-align: center;
    margin-bottom: 15px;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
}

/* Form Group */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

/* Inputs */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

/* Focus Effect */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #00c6ff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 198, 255, 0.3);
}

/* Button */
.submit-btn {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
}

@media (max-width:768px) {
    /* .card-container{
      width: 100%;
    } */
    .card{
   width: 90%;
    margin-left: 20px;
   
}
}