html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #066a5a;
    color: #fff;
}

.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('Parallax BG.png');
    /* put your background image here */
    background-size: cover;
    background-position: center;

    /* makes the image stay while scrolling */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.2s ease-out;
}



/* optional overlay for better text contrast */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    /* darken the background */
    z-index: -1;
}

/* make sure content is visible above overlay */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 150px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 2rem;
    margin: 10px 0;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.hero-content button {
    background-color: #f2a900;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-content button:hover {
    background-color: #d89000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #055345;
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    width: 48px;
    height: 48px;
    margin-right: 1rem;
}

.company-name {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.cta-btn:hover {
    color: #f7c873;
}

.section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(6, 106, 90, 0.05);
    border-radius: 8px;
    margin-top: 2rem;
}

.home-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    box-shadow: none;
    margin-top: 0;
}

.hero-content {
    text-align: center;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.7em 2em;
    background: #f7c873;
    color: #066a5a;
    border: none;
    border-radius: 24px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.cta-btn:hover {
    background: #ffd99b;
    color: #066a5a;
}

.services-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5em;
    margin-top: 2em;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.container {
  width: 90%;
  margin: 0 auto;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.contact-form {
    background: rgba(6, 106, 90, 0.12);
    border-radius: 8px;
    padding: 2rem;
    flex: 1;
    min-width: 260px;
}

.contact-form label {
    display: block;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5em;
    border: none;
    border-radius: 4px;
    margin-bottom: 1em;
    font-size: 1em;
}

.contact-form button {
    background: #f7c873;
    color: #066a5a;
    padding: 0.7em 1.5em;
    border: none;
    border-radius: 24px;
    font-size: 1em;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #ffd99b;
}

.contact-details {
    flex: 1;
    min-width: 220px;
    font-size: 1.05em;
    margin-top: 2rem;
}

footer {
    background: #055345;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
}

.footer-links a {
    color: #f7c873;
    text-decoration: none;
    margin: 0 0.5em;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffd99b;
}

/* Responsive Styles */
/* Large Phone */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    font-size: 1.2rem;
  }
}
/* Regular Phone */
@media (max-width: 480px) {
  .nav-menu {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    font-size: 1.2rem;
  }
}
/* Tablets */
@media (max-width: 1024px) {
  .nav-menu {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .section {
        padding: 2rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Elegant gradient background */
body {
    background: linear-gradient(180deg, #064f41 0%, #0b7c66 60%, #0d5c4c 100%);
    color: #fff;
}

/* Hero text glow for readability */
.hero-content h1,
.hero-content p {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

/* Luxury gold button */
button,
.btn,
.cta-btn {
    background: linear-gradient(90deg, #E3B75D, #F2D184);
    color: #064f41 !important;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all .3s ease;
}

button:hover,
.btn:hover,
.cta-btn:hover {
    background: linear-gradient(90deg, #e4c06e, #ffe4a7);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Section cards for premium look */
.section {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 3rem;
    transition: .4s ease;
}

.section:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Image hover upscale */
.gallery-grid img {
    transition: 0.35s ease-in-out;
}

.gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Contact form elegance */
.contact-form {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Footer styling */
footer {
    background: rgba(0, 0, 0, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gold accent links */
a:hover {
    color: #f7d88a;
}