body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #111;
    background-color: #fff;
    scroll-behavior: smooth;
}

h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    text-align: center;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1rem;
    text-align: center;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #f8f8f8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-left {
    display: flex;
    gap: 1.5rem;
}

.nav-left a {
    text-decoration: none;
    color: #111;
    font-weight: bold;
}

#theme-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    animation: zoomFade 12s infinite alternate ease-in-out;
}

.overlay {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    text-align: center;
}

.logo {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.brand {
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    animation: glow 2s ease-in-out infinite alternate;
}

.scroll-down {
    font-size: 2rem;
    color: white;
    margin-top: 20px;
    animation: float 2s ease-in-out infinite;
    text-decoration: none;
}

/* About */
.about {
    padding: 2rem 1rem;
    background-color: #f9f9f9;
}

.quote {
    max-width: 700px;
    margin: auto;
    font-style: italic;
    position: relative;
}

.quote-mark {
    font-size: 2rem;
    color: #999;
}

/* Services */
.services {
    padding: 3rem 1rem;
    background-color: #fff;
}

.service-boxes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: auto;
}

.service {
    background-color: #f0f0f0;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service h3 {
    margin-top: 0;
    font-size: 1.5rem;
    text-align: center;
    
}

.service p {
    text-align: justify;
}

/* Contact */
.contact {
    padding: 2rem 1rem;
    background-color: #f0f0f0;
}

.map-placeholder {
    max-width: 800px;
    margin: auto;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-info {
    margin-top: 1rem;
    text-align: center;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: bold;
}

.footer-left .highlight {
    color: red;
}

.footer-logo.small {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-right {
    text-align: right;
}

.footer-right p {
    margin: 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes zoomFade {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0% { text-shadow: 0 0 5px #fff; }
    100% { text-shadow: 0 0 20px #fffa; }
}

/* Responsive */
@media (max-width: 768px) {
    .service-boxes {
        flex-direction: column;
    }

    .footer-right {
        text-align: center;
        margin-top: 1rem;
    }

    .navbar {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .logo {
        width: 200px;
        height: 200px;
    }
}

/* Dark Mode */
body.dark-mode {
    background-color: #111;
    color: #eee;
}

body.dark-mode .navbar,
body.dark-mode .service,
body.dark-mode .about,
body.dark-mode .services,
body.dark-mode .contact,
body.dark-mode footer {
    background-color: #222;
    color: #eee;
}

body.dark-mode a,
body.dark-mode .brand,
body.dark-mode .scroll-down {
    color: #eee;
}

body.dark-mode #theme-toggle {
    color: #eee;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form button {
  padding: 0.8rem;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #333;
}