/* Updated Color Scheme for a more colorful look */
:root {
  --primary-color: #4A90E2; /* Bright blue accent */
  --secondary-color: #FF6B6B; /* Warm coral/red accent */
  --background-color: #F0F4F8; /* Light, soft background */
  --card-bg: #FFFFFF;
  --shadow-color: rgba(74, 144, 226, 0.2);
}

body {
  margin: 0 ;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
  color: #333;
  background: var(--background-color);
}
header,
footer {
  max-width: 1024px;
  margin: 0 auto;
  padding: 30px;
}
header {
    max-width: 1440px;
  background: var(--primary-color); /* Header background is now the primary color */
  color: white;
}
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-align: center;
}
h1 {
  margin: 0 0 0.5em;
  font-size: 2.8rem;
}
h2 {
  margin: 1.5em 0 0.75em;
  font-size: 2rem;
  color: var(--primary-color); /* Headings are colored */
  border-bottom: 3px solid var(--secondary-color);
}
h5, h6 {
  margin: 1em 0 0.25em;
}
p {
  margin: 0.8em 0;
}
.section {
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    padding: 20px; /* bump from 15px */
    margin-bottom: 30px;
}
.section-grid {
    background: var(--card-bg);
    border-radius: 15px; /* Slightly rounder corners */
    box-shadow: 0 10px 30px var(--shadow-color); /* Brighter shadow */
    padding: 10px;
    margin-bottom: 25px;
}
.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-card {
  padding: 20px;
  border: 2px solid var(--primary-color); /* Primary color border */
  border-radius: 12px;
  background: #f9faff; /* Very light blue tint for cards */
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-color);
}
iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 12px;
}
/* Add this to style.css */

/* Style for the image gallery on index.html */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.gallery a {
    flex: 1 1 200px; /* controls size */
    max-width: 250px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}
/* Ensure the main content area doesn't interfere */
main {
    max-width: 1024px;
    margin: 0 auto ;
    padding: 15px; /* Keep standard padding */
}

.embed {
    display: block;      /* makes it behave like a block element */
    width: 100%;         /* lets it scale with the container */
    max-width: 512px;    /* caps the size */
    margin: 0 auto;      /* centers horizontally */
}

.Customer {
    max-width: 1024px;
    margin: 40px auto; /* adds vertical spacing */
    padding: 20px;
    border-radius: 15px;
    background: white; /* important for card look */
    box-shadow: 0 10px 30px var(--shadow-color);
}