/* Global Styles */
body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

header {
    background: #1a1a1a;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    color: #00bfff;
}

/* Hero */
.hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    padding: 6rem 2rem;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.25rem;
}

/* Sections */
section {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

/* Contact Form */
form input, form textarea {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

form button {
    background: #00bfff;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

form button:hover {
    background: #0099cc;
}

/* Full-width responsive iframe */
.iframe-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.iframe-container iframe {
    width: 100%;
    height: 600px; /* adjust as needed */
    border: none;
}

/* Centered responsive iframe matching page margins */
.iframe-wrapper {
    max-width: 900px;    /* same as your sections */
    margin: auto;
}

.iframe-wrapper iframe {
    width: 100%;
    height: 850px;       /* adjust if needed */
    border: none;
}

/* Optional: reduce height on mobile */
@media (max-width: 600px) {
    .iframe-wrapper iframe {
        height: 800px;
    }
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    max-width: 900px; /* matches your section width */
    margin: 2rem auto; /* centered */
    overflow: hidden;
    border-radius: 8px; /* optional for style */
    box-shadow: 0 2px 10px rgba(0,0,0,0.15); /* optional for style */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2
    background: #1a1a1a;
    color: #fff;
}
