/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #0c0c0c;
    color: #f9f9fc;
}

/* Header Styles */
header {
    background: linear-gradient(#000C24, #080061);
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-content img {
    width: 50%;
    height: auto;
    border-radius: 25px;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #f9f9fc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, background 0.3s;
    padding: 5px 10px;
    border-radius: 5px;
}

nav ul li a:hover {
    color: #00C4FF;
    background: rgba(255, 255, 255, 0.1);
}

/* Column and Section Styles */
.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.column {
    padding: 20px;
    flex: 1 1 100%;
    box-sizing: border-box;
}

.column h2 {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #00C4FF;
    margin-bottom: 20px;
}

/* Two-column layout for tools */
.tool-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.tool-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    width: calc(50% - 40px); /* Two columns with some margin */
    box-sizing: border-box;
}

.tool-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Specific styles for the main content and sections */
main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#map {
    width: 100%;
    height: 500px;
    border: 5px solid white;
    margin-bottom: 20px;
}

/* Layout for the container and columns */
.container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.left-column, .right-column {
    width: 25%;
    padding: 5px;
}

.middle-column {
    width: 50%;
}

.stock-ticker-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.service-box img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.youtube-video {
    margin-bottom: 20px;
}

.youtube-video iframe {
    width: 100%;
    height: auto;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-links {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.footer-links a {
    color: #f9f9fc;
    text-decoration: none;
    margin: 10px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.footer-links a img {
    margin-right: 10px;
}

.footer-links a:hover {
    color: #00C4FF;
}

/* Footer Styles */
footer {
    background: #141414;
    color: #9A9A9A;
    text-align: center;
    padding: 10px 0;
}
/* Free Quote Form Styles */
.quote-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Contact Form Styles */
.contact-form-container {
    background-color: #f9f9fc;
    color: #333;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: auto;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form-container label {
    margin: 0.5rem 0 0.2rem;
    font-weight: bold;
    color: #333;
}

.contact-form-container input, 
.contact-form-container textarea {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form-container button {
    padding: 0.7rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.contact-form-container button:hover {
    background-color: #555;
}

.contact-form-messages {
    margin-top: 1rem;
    color: green;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-container input {
    margin-right: 0.5rem;
}

.checkbox-container label {
    color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .left-column, .right-column, .middle-column {
        width: 100%;
    }

    .tool-box {
        width: calc(100% - 40px); /* Full width on smaller screens */
    }
}
