/* style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}


.hero2 {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('blueflooring.jpg');
    background-size: cover;       /* Ensures the image fills the whole area */
    background-position: center;  /* Keeps the image centered */
    background-attachment: fixed; /* Optional: Creates a cool parallax scrolling effect */
    color: #fff;                  /* Makes the section text white so it stands out */
}


.hero2 h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.intro {

}

.btn {
    display: inline-block;
    background: #27ae60; /* Professional green */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}


.contact-section {
	background:#fff;
	color:#333;
	
}

.features {
    display: flex;
    padding: 50px 0;
    background: #2c3e50;
}

.features .container {
    display: flex;
    gap: 20px;
}

.feature-card {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: gives your photos nice rounded corners */
}

.faq-section-old {
    padding: 60px 0;
    background: #2c3e50;
}

.faq-section {
    padding: 80px 0;
    /* Replace 'your-image.jpg' with your actual file name */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('blueflooring.jpg');
    background-size: cover;       /* Ensures the image fills the whole area */
    background-position: center;  /* Keeps the image centered */
    background-attachment: fixed; /* Optional: Creates a cool parallax scrolling effect */
    color: #333;                  /* Makes the section text white so it stands out */
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
	color:#fff
}

details {
    background: #f4f4f4;
	color:#333;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

details:hover {
    background: #e9e9e9;
}

summary {
    font-weight: bold;
    font-size: 1.1rem;
    list-style: none; /* Removes the default arrow in some browsers */
    position: relative;
    padding-left: 25px;
}

/* Custom indicator arrow */
summary::before {
    content: '▶';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

details[open] summary::before {
    transform: rotate(90deg);
}

details p {
    margin-top: 15px;
    padding-left: 25px;
    color: #555;
    line-height: 1.5;
}


.form-container {
    max-width: 800px;    /* Limits the form width on big desktop screens */
    margin: 40px auto;   /* The 'auto' centers the div horizontally */
    padding: 0 15px;     /* Adds a little breathing room on mobile edges */
}

.form-container iframe {
    width: 100%;         /* Makes the form span the full width of the container */
    border: none;
    border-radius: 10px; /* Optional: matches your professional look */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}