body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #fdf7f2;
    color: #111;
}

header {
    background-color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    font-weight: bold;
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #0074D9;
}

.hero {
    background-color: #fffaf3;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.btn {
    background-color: #0074D9;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background-color: #005fa3;
}

.services, .about, .contact {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.contact {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }


.contact div {
                flex: 1;
                min-width: 300px;
            }


.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.service-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 20px;
    min-width: 400px;
    max-width: 520px;
    background: white;
    border-radius: 10px;
    padding: 25px 20px;  /* increased vertical padding */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: left;
    height: 260px;  /* optional fixed height */
}

.service-card img {
    width: 210px;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0;
    flex-shrink: 0;
}

.service-card div {
    flex: 1;
}

.service-card h3 {
    margin: 0 0 5px;
    font-size: 1.2em;
    font-weight: 700;
}

.service-card p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.4;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #111;
    color: white;
    border: none;
    padding: 10px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.about-content img {
    width: 220px;
    border-radius: 10px;
    object-fit: cover;
}

.about-text p {
    max-width: 500px;
    margin: auto;
    line-height: 1.6;
}

footer {
    background-color: #eee;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}
.toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #28a745; /* success green */
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;   /* FIXED for screen position */
  z-index: 9999;
  top: 62px;
  right: 20px;       /* 👈 20px from right */
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
  opacity: 0.8;
}

.toast.show {
  visibility: visible;
  opacity: 0.8;
}


@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 10px;
    }

    .about-content {
        flex-direction: column;
    }

    .carousel-btn {
        display: none;
    }
}
