/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --text-default: #333;
  --text-grey: #5A6F86;
  --text-green: #1F6D5C;
}

html {
  scroll-behavior: smooth;
}

body {
  /*font-family: "Inter", sans-serif;*/
  font-family: "Exo 2";
  line-height: 1.6;
  overflow-x: hidden;
  color: var(--text-default);
}

body p {
  color: var(--text-default);
}

h3.grey {
  color: var(--text-grey);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 2rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 60px;
  width: auto;
  padding-left: 80px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: #1f6d5c;
  font-weight: 600;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #185a4a;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #1f6d5c;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: #1f6d5c;
}

.nav-link.active::after {
  width: 100%;
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #1f6d5c;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-link:hover {
  color: #185a4a;
  text-decoration: underline;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Banner Section */
.banner {
  background: #1f6d5c;
  color: white;
  padding: 8rem 0 0rem;
  position: relative;
  overflow: hidden;
  margin-top: -2rem;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 200px;
}

.banner-triangle {
  width: 0;
  height: 0;
  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-top: 200px solid #ffffff;
  position: absolute;
  left: 0;
  top: -20px;
  transform: none;
  z-index: 1;
}

.banner-content {
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 3rem;
  max-width: 600px;
  margin-left: auto;
  background: rgba(31, 109, 92, 0.9);
  border-radius: 10px;
}

.banner-title {
  display: flex;
  font-size: 2.7rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-align: center;
  justify-content: center;
  width: 100%;
}

.banner-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.6;
  color: white;
  text-align: justify;
  margin: 0;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 8rem 0 6rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 600px;
}

.hero-additional {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 4rem;
}

.hero-subtitle {
  display: inline-block;
  background-color: #1f6d5c;
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  min-width: 200px;
  text-align: right;
  padding-right: 3rem;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: left;
  max-width: 800px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #333;
}

.hero-section {
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-green);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-green);
  margin-bottom: 1.5rem;
}

.condition-list {
  list-style: none;
  padding: 0;
}

.condition-list li {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.4;
}

.condition-list li::before {
  content: "•";
  color: var(--text-green);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.6rem;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
  border-radius: 50%;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  /*transition: transform 0.3s ease; */
}
/*
.hero-image img:hover {
  transform: translateY(-10px);
} */

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--text-green);
  color: white;
  border-radius: 0px;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: #185a4a;
  border-radius: 0px;
  text-transform: uppercase;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(31, 109, 92, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-green);
  border: 2px solid var(--text-green);
}

.btn-secondary:hover {
  background: var(--text-green);
  color: white;
  transform: translateY(-2px);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-green);
}

.section-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: #f8fafc;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.about-subsection {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-subsection:hover {
  transform: translateY(-5px);
}

.about-subsection h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-grey);
  text-align: center;
  position: relative;
}

.about-subsection h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #1f6d5c;
  border-radius: 2px;
}

.about-me-text p,
.about-fimmpro-text p {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.personal-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateX(10px);
}

.info-item i {
  font-size: 1.5rem;
  color: #1f6d5c;
  width: 30px;
  text-align: center;
}

.info-item span {
  font-weight: 500;
  color: #1f2937;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 2.5rem;
  color: #1f6d5c;
  margin-bottom: 1rem;
}

.feature h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #5a6f86;
}

.feature p {
  color: #6b7280;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(350px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  background: #f8fafc;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: white;
  border: 1px solid var(--text-green);
}

.service-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-green);
  line-height: 1.3;
  min-height: calc(1.3 * 2);
  display: block;
}

.service-subtitle {
  font-size: 1.2rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1;
}

.service-description {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-content {
  margin-top: 2rem;
}

.service-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #5a6f86;
}

.service-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.service-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #4b5563;
}

.service-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1f6d5c;
  font-weight: bold;
}

.service-details {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(31, 109, 92, 0.1);
}

.service-details p {
  margin-bottom: 0.5rem;
  color: #1f2937;
  margin-top: auto;
}
/*
.service-details p:last-child {
  margin-bottom: 0;
}*/

.note {
  font-style: italic;
  color: #6b7280;
  margin: 1rem 0;
}

.service-card .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* Portfolio Section */
.portfolio {
  padding: 6rem 0;
  background: #f8fafc;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #5a6f86;
}

.portfolio-content p {
  color: #6b7280;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  border-radius: 15px;
}

.contact-header {
  margin-bottom: 2rem;
}

.contact-header h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #1f6d5c;
  margin-bottom: 0.5rem;
  text-transform: lowercase;
}

.contact-header p {
  font-size: 1.1rem;
  line-height: 1.5;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.option-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.option-group p {
  color: #1f6d5c;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.option-group p:hover {
  color: #185a4a;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

/*
.contact-item:hover {
  transform: translateX(10px);
} */

.contact-item i {
  font-size: 1.5rem;
  color: #1f6d5c;
  width: 40px;
  text-align: center;
}

.contact-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f6d5c;
}

.contact-item p {
/*  color: #6b7280; */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1f6d5c;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  background-color: white;
  color: #333;
}

.contact-form select:focus {
  outline: none;
  border-color: #000;
}

.contact-form select option {
  padding: 10px;
}

.form-hidden-fields {
  display: none;
}

/* Footer */
.footer {
  background-color: var(--text-green);
  padding: 1rem 0;
  color: #ffffff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 30px;
  width: auto;
}

.footer-copyright, .footer-copyright * {
  color: #ffffff;
}

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
}

.footer-social a {
  color: white;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .banner-container {
    padding: 0 15px;
    justify-content: center;
    min-height: 250px;
  }

  .banner-content {
    text-align: center;
    padding: 2rem;
    margin: 0;
    width: 100%;
    max-width: 500px;
  }

  .banner-subtitle {
    font-size: 1.2rem;
    padding-left: 0;
    text-align: center;
  }

  .hero-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    padding: 0.4rem 1.5rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .about-subsection {
    padding: 2rem;
  }

  .about-subsection h3 {
    font-size: 2rem;
  }

  .personal-info {
    grid-template-columns: 1fr;
  }

  /* Mobile dropdown styles */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin: 1rem 0;
    min-width: auto;
  }

  .dropdown-link {
    padding: 0.5rem 2rem;
    color: #333;
  }

  .dropdown-link:hover {
    background: transparent;
    transform: none;
  }

  .dropdown-toggle::after {
    display: none;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .dropdown-link {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2rem;
  }

  .service-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .service-card,
  .portfolio-item {
    margin: 0 1rem;
  }

  .banner-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1.5rem;
  }

  .condition-list li {
    font-size: 1.1rem;
  }

  .hero-image img {
    max-width: 100%;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
  scroll-padding-top: 80px;
}

/* List styling */
.custom-list li {
  list-style-type: square;
  size: 1.5rem;
}

.custom-list li::marker {
    color: #5a6f86;
}

/* Custom Button Styles */
.Btn-Container {
  display: flex;
  width: 170px;
  height: fit-content;
  background-color: #1f6d5c;
  box-shadow: 0px 5px 10px #bebebe;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 8px;
}

.Btn-Container-Grey {
  display: flex;
  width: 170px;
  height: fit-content;
  background-color: #5a6f86;
  color: #ffffff;
  font-weight: bold;
  /* border-radius: 40px;
  box-shadow: 0px 5px 10px #bebebe;*/
  justify-content: end;
  align-items: end;
  border: none;
  cursor: inherit;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 1.1px;
  padding: 8px;
  margin-bottom: 16px;
}

.icon-Container {
  width: 45px;
  height: 45px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid #1f6d5c;
}

.arrow {
  display: inline-block;
  width: 1.5em;                /* matches text size */
  height: 1.5em;
  vertical-align: middle;    /* aligns nicely with text */
  overflow: visible;
}

.arrow path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 5;
  vector-effect: none;
}


.text {
  width: calc(170px - 45px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1em;
  letter-spacing: 1.2px;
  font-weight: 700;
}

.icon-Container svg {
  transition-duration: 1.5s;
}

.icon-Container svg circle {
  fill: #1f6d5c;
}

.Btn-Container:hover {
  background-color: #185749;
  transform: translateY(-2px);
}

.Btn-Container:hover .icon-Container svg {
  transition-duration: 1.5s;
  animation: arrow 1s linear infinite;
}

@keyframes arrow {
  0% {
    opacity: 0;
    margin-left: 0px;
  }
  100% {
    opacity: 1;
    margin-left: 10px;
  }
}

.hero-separator {
  width: 100%;
  height: 100px;
  background-color: var(--text-green);
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.hero-separator::before,
.hero-separator::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
}

.hero-separator::before {
  top: 15px;
}

.hero-separator::after {
  bottom: 15px;
}

.fimmpro-section {
  margin-bottom: 2rem;
}

.fimmpro-section h4 {
  color: #1f6d5c;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.fimmpro-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
