body {
    margin: 0;
    font-family: 'Montserrat', sans-serif; font-weight:200;
    background-color: #f9f9f9;
    color: #333;
    width: 100%;
  }
  
  header {
    background-color: #005562;
    padding: 1em 0;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2em;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: fine;
  }
  .hero-section {
    text-align: center;
    margin-top: 3em;
    padding: 0 1em;
  }
  
  .hero-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #111;
    margin-bottom: 0.2em;
  }
  
  .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    line-height: 25px;
    margin-bottom: 2em;
  }

  .home-section {
    text-align: center;
    padding: 3em 1em;
  }
  
  .profile-pic {
    width: 310px;
    height: auto;
    object-fit: cover;
  }

  .hero-quote {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    margin: 2em auto;
    max-width: 700px;
    line-height: 35px;
    color: #222;
   
    animation: fadeInUp 1s ease-out;
  }
  
  .gold-glow {
    font-weight: 700;
    font-style: italic;
    color: #d4af37;
    transition: text-shadow 0.3s ease;
  }
  
  .gold-glow:hover {
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.8), 0 0 12px rgba(255, 165, 0, 0.6);
  }
  
  .sparkle {
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
    opacity: 0;
    margin-left: 5px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
  }
  
  .gold-glow:hover .sparkle {
    opacity: 1;
    transform: scale(1.2) rotate(10deg);
  }
  
  @keyframes shimmer {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 200% 50%;
    }
  }
  
  .gold-glow {
    background-size: 200% auto;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}
  
  .cta-button {
    display: inline-block;
    margin-top: 1.5em;
    padding: 0.75em 1.5em;
    background-color: #005562;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #f0c92f;
  }

  .about-section {
    padding: 50px 0;
    font-family: 'Monserrat', sans-serif;
    font-size: 14pt;
  }
  .profile-img {
    width: 400px; 
    height: 400px;
    object-fit: cover;
    border-radius: 50%; 
    border: 4px solid #005562; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .highlight {
    font-family: 'Montserrat', sans-serif;
    background-color: #dbebed;
    padding: 10px;
    border-left: 4px solid #005562;
    margin-top: 20px;
  }

  #highlight-name {
    font-family: 'Monserrat', sans-serif;
    color: #005562;
    font-weight: bold;
    font-size: 18pt;
    opacity: 0; 
  }


.work-values-section {
  background-color: #f5f0e6; 
}

/* Section heading */
.work-values-section h2 {
  font-family: 'Monserrat', sans-serif;
  font-weight: 700;
 
}

/* Card styling */
.work-values-section .card {
  border-top: 4px solid #005562;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.work-values-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-top-color: #d4af37;
}

/* Icon sizing and spacing */
.work-values-section .card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #005562; /* teal by default */
  transition: color 0.3s ease;
  opacity: 0.7;
}

/* Card titles */
.work-values-section .card-title {
  font-weight: 600;
  color: #212529;
}
.services-intro-section {
  background-color: #f5f0e6; /* soft sand */
  color: #005562; /* teal */
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.services-intro-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  font-family: 'Monserrat', sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  color:black;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.section-subtext {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: left;
  font-size: 14pt;
  color: black
}
  /* Section heading */
.services-section h3 {
  font-family: 'Monserrat', sans-serif;
  font-weight: 500;
  
}

/* Card styling */
.services-section .card {
  border-top: 4px solid #005562;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.services-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-top-color: #d4af37;
}

/* Icon sizing and spacing */
.services-section .card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #005562; /* teal by default */
  opacity: 0.7;
  
  transition: color 0.3s ease;
}

/* Card titles */
.services-section .card-title {
  font-weight: 600;
  color: #212529;
}
  footer {
    text-align: center;
    padding: 2em 0;
    background-color: #eee;
    font-size: 0.9em;
  }

  /* Design Process Section */
.design-process-section {
  background-color: #f5f0e6; /* soft sand */
  color: #005562;
}

.design-process-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #005562;
}

/* Table Styling */
.process-table th {
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: #2c6e49; /* pine green */
  width: 220px;
  vertical-align: top;
}

.process-table td {
  font-family: 'Montserrat', sans-serif;
  color: #6c757d; /* slate gray */
}

.process-table i {
  color: #d4af37; /* gold icons */
}

/* Initial state */
.process-row {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

/* Visible state */
.process-row.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Work Section */
.featured-project-section {
  background-color: #ffffff;
  color: #005562;
}

.project-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: black;
}

.project-details li {
  font-family: 'Montserrat', sans-serif;
  color: #005562;
  margin-bottom: 4px;
}

.project-description {
  font-family: 'Montserrat', sans-serif;
  color: black;
  font-size: 1rem;
  line-height: 1.6;
}

.carousel {
  position: relative;
  width: 100%; /* Ensure carousel takes full container width */
}

/* Optional: Styling for the carousel items */
.carousel-inner {
  position: relative;
  width: 100%;
}

/* Adjusting the icon color */
.carousel-control-prev,
.carousel-control-next-icon {
  background-color: #d4af37; 
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 5%;
}


.btn-primary {
  background-color: #005562 !important;
  border-color: #005562 !important;
}

.btn-primary:hover {
  background-color: #d4af37!important;
  border-color: #d4af37!important;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

/* Optional: Ensure the form and text take equal space and adjust padding */
.intro-text {
  flex: 1;
  padding-right: 20px;
}

.contact-form {
  flex: 1;
}

.contact-section .btn {
  background-color: #005562;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.contact-section .btn:hover {
  background-color: #d4af37;
}