
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0e2d1c;
  color: #ffffff;
}
a {
  color: inherit;
}
.header {
  background-color: #0B3D2E !important;
  border-bottom: 1px solid #444;

  background: #0b2518;
  padding: 1.2em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.8em;
  font-weight: 600;
}
.call-line {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1em;
}
.call-icon {
  font-size: 1.3em;
}
.hero {
  background: linear-gradient(135deg, #114b2e, #0d3a26);
  text-align: center;
  padding: 5em 2em;
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 1.5em;
  opacity: 0.9;
}
.cta-button {
  padding: 0.9em 2em;
  background: #156e46;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}
.cta-button:hover {
  background: #1f925b;
}
.process {
  background: #1a3a2b;
  text-align: center;
  padding: 3em 2em;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
  margin-top: 2em;
}
.step {
  background: #0d3a26;
  padding: 1.5em;
  border-radius: 12px;
  min-width: 220px;
  flex: 1;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.projects {
  padding: 3em 2em;
}
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5em;
  margin-top: 2em;
}
.project {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.project img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.project:hover img {
  transform: scale(1.05);
}
.project .overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 0.8em;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
}
.project:hover .overlay {
  opacity: 1;
}
.contact {
  background: #114b2e;
  padding: 4em 2em;
  text-align: center;
}
.contact-form {
  max-width: 500px;
  margin: auto;
  display: grid;
  gap: 1.5em;
}
.floating-label {
  position: relative;
}
.floating-label input,
.floating-label textarea {
  width: 100%;
  padding: 1em;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  font-family: inherit;
  background: #fff;
  color: #000;
}
.floating-label span {
  position: absolute;
  left: 1em;
  top: 1em;
  color: #888;
  pointer-events: none;
  transition: 0.2s;
}
.floating-label input:focus + span,
.floating-label input:not(:placeholder-shown) + span,
.floating-label textarea:focus + span,
.floating-label textarea:not(:placeholder-shown) + span {
  top: -0.8em;
  left: 0.8em;
  font-size: 0.75em;
  background: #fff;
  padding: 0 0.4em;
  color: #156e46;
}
.contact-form button {
  padding: 1em;
  background: #0d3a26;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #1f925b;
}
footer {
  background: #0d3a26;
  text-align: center;
  padding: 2em 1em;
  font-size: 0.95em;
  opacity: 0.8;
}
.phone-bottom {
  margin-top: 2em;
  font-size: 1.1em;
}
@media screen and (max-width: 768px) {
  .steps {
    flex-direction: column;
  }
  .project-gallery {
    grid-template-columns: 1fr;
  }
}

.contact-form.upgraded {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5em 2em;
}
.contact-form.upgraded textarea {
  grid-column: span 2;
}
.contact-form.upgraded button {
  grid-column: span 2;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .contact-form.upgraded {
    grid-template-columns: 1fr;
  }
}

/* Modernized typography and spacing */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #f2f2f2;
  background: #111;
}
.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}
.header {
  background-color: #0B3D2E !important;
  border-bottom: 1px solid #444;

  background-color: #1a1f1b;
  padding: 1em 0;
  border-bottom: 1px solid #2a2a2a;
}
.logo {
  font-size: 2em;
  font-weight: bold;
  color: #d4f0c0;
}
.call-line {
  color: #d4f0c0;
}
.hero {
  background: url('../images/hero.jpg') center/cover no-repeat, linear-gradient(to bottom, #122a1e, #0c1a14);
  padding: 6em 2em;
  text-align: center;
}
.hero h1 {
  font-size: 2.8em;
  color: #d4f0c0;
}
.hero p {
  color: #b9d9b8;
  font-size: 1.2em;
}
.cta-button {
  background-color: #2f855a;
  border-radius: 30px;
  padding: 0.8em 2em;
  transition: all 0.3s ease-in-out;
}
.cta-button:hover {
  background-color: #38a169;
}
.process {
  background-color: #1a1f1b;
}
.step {
  background-color: #2d2d2d;
  color: #d4f0c0;
}
.project-gallery {
  gap: 2em;
}
.project {
  border-radius: 16px;
  overflow: hidden;
}
.project img {
  border-radius: 16px;
}
.contact {
  background-color: #1a1f1b;
}
.contact-form.upgraded input,
.contact-form.upgraded textarea {
  background-color: #fff;
  border-radius: 8px;
}
.contact-form.upgraded span {
  color: #666;
}
footer {
  background-color: #101410;
  border-top: 1px solid #2a2a2a;
}

/* Enhanced mobile styling */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }
  .cta-button {
    padding: 0.7em 1.5em;
    font-size: 1em;
  }
  .step {
    min-width: auto;
  }
  .project-gallery {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  .contact-form.upgraded {
    grid-template-columns: 1fr;
  }
}

/* Premium Contact Section Layout */
.contact {
  padding: 4em 2em;
  background-color: #121a14;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
  max-width: 1000px;
  margin: auto;
}
.contact-info {
  flex: 1 1 40%;
  color: #d4f0c0;
}
.contact-info h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}
.contact-info p {
  font-size: 1em;
  line-height: 1.6;
  color: #b9d9b8;
}
.contact-form-wrapper {
  flex: 1 1 55%;
}
.contact-form.premium {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}
.contact-form.premium input,
.contact-form.premium textarea {
  background: #fff;
  border-radius: 8px;
  padding: 0.8em 1em;
  border: 1px solid #ccc;
  font-size: 1em;
}
.contact-form.premium textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form.premium button {
  background-color: #2f855a;
  color: #fff;
  padding: 0.8em 2em;
  font-size: 1.1em;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
.contact-form.premium button:hover {
  background-color: #38a169;
}

/* Mobile Optimized Contact Layout */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-info, .contact-form-wrapper {
    flex: 1 1 100%;
  }
}

/* Overall refinements for premium design */
h1, h2, h3 {
  font-weight: 600;
}
.section-title {
  font-size: 2.2em;
  margin-bottom: 0.5em;
  color: #d4f0c0;
  text-align: center;
}
section {
  padding: 5em 2em;
}
.project img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.call-line {
  font-size: 1.2em;
  font-weight: 500;
}
footer {
  padding: 2em;
  font-size: 0.95em;
  color: #999;
}
.contact-form.premium input,
.contact-form.premium textarea {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.contact-form.premium button {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Professional Polish Enhancements */
body {
  background-color: #0e1712;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}
.hero h1 {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.hero p {
  font-size: 1.2em;
  max-width: 700px;
  margin: auto;
}
.project-gallery {
  padding-top: 2em;
}
.project {
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}
footer {
  text-align: center;
  padding-top: 3em;
  color: #aaa;
  font-size: 0.95em;
  background: #0b120d;
  border-top: 1px solid #1c271f;
}
.contact-info h2 {
  color: #e3fce1;
}
.contact-info p {
  font-size: 1em;
  color: #c0eac2;
}

/* Font and structure refinements */
body {
  color: #e6f5e3;
  line-height: 1.7;
}
h1, h2, h3 {
  letter-spacing: -0.5px;
}
button, input, textarea {
  font-family: inherit;
}
nav {
  background-color: #0c1a12;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
nav a {
  padding: 0.75em 1.5em;
  font-weight: 500;
  font-size: 1em;
}
.hero {
  background: linear-gradient(145deg, #173f2f, #0f1f16);
  padding: 6em 2em;
  text-align: center;
  color: #ecfef0;
}
.hero h1 {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 0.4em;
}
.hero p {
  font-size: 1.15em;
  opacity: 0.95;
}
.call-line {
  font-size: 1.1em;
  font-weight: 500;
  margin: 2em auto 0;
  text-align: center;
  background: #1e2b22;
  padding: 1em 2em;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.project-title {
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.5em;
  color: #d1f0c9;
}
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  max-width: 1100px;
  margin: auto;
}
.project {
  overflow: hidden;
  border-radius: 12px;
  background-color: #162419;
}
.project img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.project:hover img {
  transform: scale(1.04);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
.contact {
  background: #0e1b14;
}
.contact-form.premium input,
.contact-form.premium textarea {
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  font-size: 1em;
}
.contact-form.premium button {
  background: #1c8f52;
  padding: 0.9em 2.2em;
  font-size: 1.05em;
  border-radius: 8px;
}
.contact-form.premium button:hover {
  background: #24a062;
}
footer {
  padding: 3em 1em;
  font-size: 0.9em;
  color: #9cbfa3;
}

/* Premium Contact Section */
.contact-section {
  padding: 4em 2em;
  background-color: #0f2c1a;
  text-align: center;
}
.contact-section h2 {
  font-size: 2.2em;
  color: #1c8f52;
  margin-bottom: 0.5em;
}
.contact-section p {
  font-size: 1em;
  margin-bottom: 2em;
  color: #e4e4e4;
}
form {
  max-width: 700px;
  margin: 0 auto;
  background: #103e26;
  padding: 2em;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.input-row {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media(min-width: 600px) {
  .input-row {
    flex-direction: row;
  }
}
form input, form textarea {
  width: 100%;
  padding: 1em;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1em;
}
form textarea {
  resize: vertical;
  height: 150px;
}
form button {
  margin-top: 1em;
  padding: 1em 2em;
  background-color: #1c8f52;
  color: #ffffff;
  font-size: 1.1em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
form button:hover {
  background-color: #24a062;
  transform: scale(1.05);
}

.contact-section h2 {
  font-size: 2.4em;
  font-weight: 700;
}
.contact-section p {
  font-size: 1.1em;
  font-weight: 400;
}

/* Hero Styling */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
              url('/images/hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 2em;
}
.hero-title {
  font-size: 3.5em;
  font-weight: 800;
  letter-spacing: 1px;
}
.hero-title span {
  color: #1c8f52;
}
.hero-subtitle {
  font-size: 1.3em;
  margin: 1em 0 2em;
}
.btn-primary {
  background-color: #1c8f52;
  color: white;
  padding: 1em 2.5em;
  font-size: 1.1em;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover {
  background-color: #28a36a;
  transform: scale(1.05);
}

/* Premium Font Styling */
body {
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #e8e8e8;
  background-color: #0f2c1a;
}
h1, h2, h3, h4 {
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Animated Premium Buttons */
.btn-primary {
  background-color: #1c8f52;
  color: white;
  padding: 1em 2.5em;
  font-size: 1.1em;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 transparent;
}
.btn-primary:hover {
  background-color: #28a36a;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(40, 163, 106, 0.4);
}

.hero-title {
  font-size: 4em;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  color: #ffffff;
}
.hero-title span {
  color: #1c8f52;
  font-weight: 900;
  text-shadow: 1px 1px 2px #0d2d1a;
}

/* Hero Section Cleanup */
.hero-title {
  font-size: 2.5em;
  font-weight: 800;
  text-align: center;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  color: #ffffff;
  margin-bottom: 0.5em;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.2em;
  font-weight: 400;
  text-align: center;
  max-width: 90%;
  margin: 0 auto 1.5em auto;
  color: #ccefd9;
}

/* Button spacing fix */
.hero-section .btn-primary {
  display: inline-block;
  margin-top: 1em;
  margin-bottom: 2em;
}


/* Premium Header Styling */
.hero-title {
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  color: #1a3d2f;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

/* Animated Button Styling */
.btn-primary {
  background-color: #1a3d2f;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 transparent;
}

.btn-primary:hover {
  background-color: #215f44;
  box-shadow: 0 0 12px rgba(33, 95, 68, 0.8);
  transform: scale(1.03);
}

/* Fade-in Animation for Sections */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.animated-section {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.animated-delay-1 { animation-delay: 0.3s; }
.animated-delay-2 { animation-delay: 0.6s; }
.animated-delay-3 { animation-delay: 0.9s; }

/* Mobile Fixes */
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
    padding: 0 1rem;
  }

  .btn-primary {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}

/* Responsive Hero Title and Subtitle Fix */
.hero-title {
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
  margin: 0 auto 0.5em auto;
}
.hero-subtitle {
  font-size: clamp(0.9rem, 4vw, 1.2rem);
  max-width: 90%;
  margin: 0 auto 1em auto;
  line-height: 1.4;
}

/* Ensure button sits below subtitle without overlap */
.btn-primary {
  display: inline-block;
  margin-top: 1.5em;
}

/* Mobile-specific adjustments */
@media screen and (max-width: 480px) {
  .hero {
    padding: 4em 1em;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .btn-primary {
    padding: 0.8em 1.5em;
    font-size: 0.9rem;
  }
}


.logo-glow {
  font-size: 2rem;
  font-weight: 700;
  color: #c0f7c0;
  text-align: center;
  display: block;
  animation: pulseGlow 2s infinite ease-in-out;
  margin-top: 0.5rem;
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 5px #57d957, 0 0 10px #57d957;
  }
  100% {
    text-shadow: 0 0 15px #aaffaa, 0 0 30px #aaffaa;
  }
}

.start-button {
  background-color: #2e8b57;
  color: white;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 12px #2e8b57;
  transition: all 0.3s ease-in-out;
  margin-top: 2rem;
}

.start-button:hover {
  background-color: #3fa96d;
  box-shadow: 0 0 20px #77ff77, 0 0 25px #3fa96d;
}

.hero-title.small-title {
  font-size: 2.2rem;
  margin-top: 0.5rem;
}

.glow-text {
  animation: glow 2s ease-in-out infinite alternate;
  color: #fff;
  text-shadow: 0 0 10px #1a401f, 0 0 20px #1a401f, 0 0 30px #1a401f;
}

.btn-animate {
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 8px #1a401f;
}

.btn-animate:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #1a401f, 0 0 25px #1a401f;
}

.process-step {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #1a401f, 0 0 10px #1a401f;
  }
  to {
    text-shadow: 0 0 15px #1a401f, 0 0 25px #1a401f;
  }
}


@media (max-width: 768px) {
  .hero-title {
    font-size: 1.6em !important;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 1em !important;
  }
  .hero {
    padding-top: 2em !important;
  }
}

/* Global dark green background */
body {
    background-color: #0a3d2e !important;
    color: #ffffff;
}

/* Ensure sections on all pages use dark background */
header, section, footer {
    background-color: #0a3d2e !important;
    color: #ffffff;
}

/* Mobile Navigation */
.nav-bar .hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
@media (max-width: 768px) {
    .nav-bar .nav-links {
        display: none;
        flex-direction: column;
        background-color: #0a3d2e;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 1rem;
    }
    .nav-bar .nav-links.open {
        display: flex;
    }
    .nav-bar .hamburger {
        display: block;
    }
    .nav-logo {
        font-size: 1.2rem;
    }
}


/* --- Responsive Navigation Bar --- */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #002d1e;
  padding: 10px 20px;
  color: white;
  position: relative;
}

.nav-logo {
  font-size: 20px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #003a29;
    padding: 10px 15px;
    border-radius: 8px;
    width: fit-content;
    z-index: 999;
  }

  .menu-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}


/* --- FIXES --- */

body {
    background-color: #002d1f; /* Dark green */
    color: #f0f0f0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav {
    background-color: #004b35;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

nav ul li {
    font-weight: bold;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: #004b35;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        padding: 1rem;
    }

    #menu-toggle:checked + .menu-icon + ul {
        display: flex;
    }
}


/* PREMIUM STYLING ADDITIONS */
body {
    background: linear-gradient(to bottom, #0f2e1c, #132e1d);
    color: #e0e0e0;
    font-family: 'Segoe UI', sans-serif;
}

header {
    background-color: #0f2e1c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

nav ul {
    background-color: #123c27;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #e9ffe8;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #cceccc;
}

button {
    background-color: #1d5c3a;
    border: none;
    padding: 12px 24px;
    color: white;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

button:hover {
    background-color: #2a7b52;
    transform: scale(1.05);
}

/* Project gallery upgrade */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.project-gallery img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.project-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0,0,0,0.6);
}


/* New Premium Font and Color Upgrades */
body {
    background-color: #121b18;
    font-family: 'Work Sans', sans-serif;
    color: #f0f0f0;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

.hero {
    background: linear-gradient(rgba(18, 27, 24, 0.85), rgba(18, 27, 24, 0.85)), url('images/IMG_7574.jpg') no-repeat center center / cover;
    padding: 120px 20px 100px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-in-out;
}

.hero p {
    font-size: 1.25rem;
    color: #c0d6cc;
    animation: fadeInUp 1.2s ease-in-out;
}

.hero button {
    margin-top: 1.5rem;
    background-color: #1c5e3b;
    color: #fff;
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1.4s ease-in-out;
}

.hero button:hover {
    background-color: #2a7b52;
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(42, 123, 82, 0.6);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Enhancements */
.project-gallery img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.project-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* Section Padding and Flow */
section {
    padding: 80px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


/* Premium Projects Gallery Layout */
.projects-gallery {
    background: linear-gradient(to bottom, #0e1a15, #1b2e26);
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.projects-gallery h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.gallery-card {
    flex: 1 1 300px;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.6);
}

.gallery-card:hover img {
    transform: scale(1.05);
}


/* ======= ADVANCED ANIMATIONS ======= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======= CONTACT FORM PREMIUM STYLE ======= */
.contact-section {
    background: linear-gradient(to bottom, #0e1a15, #1b2e26);
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

form.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

form.contact-form input,
form.contact-form textarea {
    padding: 15px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background: #ffffff0a;
    color: white;
    border: 1px solid #3d4d44;
}

form.contact-form input:focus,
form.contact-form textarea:focus {
    outline: none;
    border-color: #5fbf7d;
}

/* ======= HAMBURGER MENU STYLING ======= */
.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.menu-icon div {
    height: 4px;
    background: white;
    border-radius: 2px;
}

.nav-links.mobile {
    display: none;
    flex-direction: column;
    background: #122218;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 20px;
    border-radius: 12px;
    z-index: 1000;
}

.nav-links.mobile a {
    padding: 10px 0;
    color: white;
}

.show-menu {
    display: flex !important;
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    .nav-links.desktop {
        display: none;
    }
}

.nav-bar {
  background-color: #0B3D2E !important;
  border-bottom: 1px solid #444;
}

.menu-icon {
  color: white !important;
}
