/* General Body Styling */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
}

/*index*/
.topbar {
    background-color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
}

/*index*/
.topbar h4 a {
    color: inherit;
    text-decoration: none;
}

/*index*/
.hero {
    background: linear-gradient(135deg, #007bff 30%, #6610f2);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

/*index*/
.feature-card {
    border-radius: 1rem;
    transition: transform 0.3s;
}

/*index*/
.feature-card:hover {
    transform: scale(1.03);
}


/*footer*/
footer {
    background-color: #f1f3f5;
    padding: 40px 30px;
}

/*footer*/
footer h6 {
font-weight: 600;
color: #343a40;
}

/*footer*/
footer p, footer a {
color: #6c757d;
text-decoration: none;
}

/*footer*/
footer a:hover {
text-decoration: underline;
}

/*footer*/
.footer-bottom {
border-top: 1px solid #dee2e6;
padding-top: 15px;
text-align: center;
font-size: 14px;
color: #adb5bd;
}

/*footer*/
footer .col-md-3 {
    margin: 0 50px;
}


/*contact.html*/
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    background-color: #e9ecef;
    color: #007bff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*contact.html*/
.contact-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
}

/*contact.html*/
.contact-card h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

/*contact.html*/
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

/*contact.html*/
.form-group label {
    margin-bottom: 6px;
    font-weight: 600;
}

/*contact.html*/
.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/*contact.html*/
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/*contact.html*/
.submit-button {
    background-color: #007bff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

/*contact.html*/
.submit-button:hover {
    background-color: #007bff;
}

/*contact.html*/
.return-button {
    background-color: transparent;
    color: #007bff;
    padding: 12px;
    border: 2px solid #007bff;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

/*contact.html*/
.return-button:hover {
    background-color: #007bff;
    color: white;
}

/*gst summary & help*/
.tab {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-bottom: none;
    background-color: #f1f1f1;
}

/*gst summary & help*/
.tab.active {
    background-color: white;
    font-weight: bold;
}

/*gst summary & help*/
.tab-content {
    display: none;
    padding: 10px;
    border: 1px solid #ccc;
}

/*gst summary & help*/
.tab-content.active {
    display: block;
}
