/*
Theme Name: Time Arch
Theme URI: http://example.com/my-custom-theme
Author: Chirag Koshti
Author URI: http://example.com
Description: A custom WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-theme, responsive
Text Domain: my-custom-theme
*/

/* Basic styling */
body {
    margin: 0;
    padding: 0;
}

.wpcf7-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.wpcf7-form input,
.wpcf7-form textarea {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ddd;
}

.wpcf7-form .btn-primary {
    background-color: #d9534f;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
}

.wpcf7-submit {
    font-size: 18px;
    padding: 10px 20px;
    background-color: #d9534f;
    /* Adjust color */
    border: none;
    border-radius: 5px;
}

.wpcf7-submit:hover {
    background-color: #c9302c;
}

.contact-form-container {
    width: 60%;
    margin: auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 8px 5px rgba(0, 0, 0, 0.1);
}

.contact-form-container .form-control {
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.contact-form-container .btn {
    background-color: #dc3545;
    /* Your theme's primary color */
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
}

.contact-form-container .btn:hover {
    background-color: #b52d3b;
}
.form-reponsive-class {
    width: 60% !important; /* Default for desktop */
    border-radius: 8px;
    box-shadow: 0px 0px 8px 5px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Center the form */
}

/* Tablet View */
@media screen and (max-width: 1024px) {
    .form-reponsive-class {
        width: 70% !important;
    }
}

/* Mobile View */
@media screen and (max-width: 768px) {
    .form-reponsive-class {
        width: 90% !important;
    }
}

/* Small Mobile View */
@media screen and (max-width: 480px) {
    .form-reponsive-class {
        width: 100% !important;
    }
}

.wpcf7-form .wpcf7-spinner {
    margin: 0;
    display: contents; /* This will act like there's no p tag at all */
}

.hero {
	overflow: none !important;
}

.current-menu-item {
    color: var(--primary-color) !important;
    /* Bootstrap primary color */
    font-weight: 700 !important;
}

.sub-menu {
    display: none;
    transition: all 0.3s ease-in-out;
}

.menu-item-has-children > a {
	content: "" !important;
    cursor: pointer;
}

.menu-item-has-children > a::after {
	 content: "" !important;
    font-size: 12px;
}

ul {
    display: none; /* Hide all submenus */
}

li:hover > ul {
    display: block; /* Show submenu on hover */
}

.product-list {
  padding: 50px 0;
}
.product-item {
  text-align: center;
  margin-bottom: 30px;
}
.product-card img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  padding: 10px;
}
.product-card h4 {
  margin: 15px 0;
  font-size: 20px;
}
.product-card .btn {
  background: #ff6600;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
}
.grecaptcha-badge { 
    visibility: hidden !important;
}
