body {
  color: #444;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: #00332e;
}

.oswald-heading {
  font-family: 'Oswald', sans-serif;
  color: #ffc107;
  font-weight: 500;
  margin-bottom: 20px;
}

.navbar {
  background-color: #00332e;
  border: none;
  border-bottom: 2px solid #004d40;
  margin-bottom: 0;
}

/* Remove container padding */
.container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-brand, .navbar-nav > li > a {
  color: #ffc107 !important;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar-nav > li > a:hover, .navbar-nav > li > a:focus {
  color: #e0a800 !important;
  background-color: transparent !important;
}

/* Ensure the navbar collapses properly */
@media (max-width: 768px) {
  .navbar-nav {
    float: none !important;
    text-align: center;
    margin: 0;
  }

  .navbar-nav > li {
    float: none;
    display: block;
  }

  .navbar-header {
    float: none;
    text-align: center;
  }

  .navbar-toggle {
    display: block;
    margin: 0 auto;
  }

  .navbar-collapse {
    background-color: #00332e;
    border-top: 1px solid #004d40;
  }

  .navbar-nav > li > a {
    padding: 12px;
    color: #ffc107 !important;
    border-bottom: 1px solid #004d40;
  }

  .navbar-nav > li > a:hover,
  .navbar-nav > li > a:focus {
    background-color: #004d40 !important;
    color: #e0a800 !important;
  }
}


.main-content {
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-text {
  background-color: #f8f8f8;
  border: 1px solid #eee;
  color: #00332e;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 8px;
}

.section-title {
  font-size: 2em;
  border-left: 5px solid #ffc107;
  padding-left: 15px;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #00332e;
  font-weight: bold;
}

.intro-panel, .expertise-panel, .products-overview-panel, .testimonials-panel {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 20px;
}

.highlight {
  color: #ffc107;
  font-weight: bold;
}

.budania-logo {
  max-height: 180px;
}

.expertise-item {
  margin-top: 20px;
  text-align: center;
}

.icon-lg {
  font-size: 2.5em;
  color: #004d40;
  margin-bottom: 10px;
}

.testimonial {
  margin-bottom: 25px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 5px;
  font-style: italic;
  color: #555;
}

.testimonial-author {
  font-style: normal;
  font-weight: bold;
  color: #333;
  text-align: right;
  margin-top: 10px;
}

.call-to-action {
  background-color: #004d40;
  color: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 30px;
}

.cta-heading {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.2em;
  line-height: 1.8;
  margin-bottom: 30px;
}

.call-to-action .btn {
  font-size: 1.5em;
  padding: 15px 30px;
  border-radius: 5px;
}

.footer {
  background-color: #002922;
  padding: 30px;
  text-align: center;
  color: #ddd;
  margin-top: 40px;
}

.footer a, .footer a:hover {
  color: #ffc107;
  text-decoration: none;
}


  .main-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-title {
    font-size: 1.8em;
  }

  .intro-panel .col-sm-6,
  .expertise-panel .col-sm-6,
  .testimonials-panel .col-sm-6 {
    width: 100%;
    text-align: left;
  }

  .intro-panel .col-sm-6:first-child{
    margin-bottom: 20px;
  }

  .budania-logo {
    max-height: 150px;
    margin-bottom: 20px;
  }

  .expertise-item {
    margin-bottom: 30px;
  }

  .call-to-action {
    padding: 30px;
  }

  .cta-heading {
    font-size: 2em;
  }

  .cta-text {
    font-size: 1em;
  }

  .typing-text::after {
    content: '|';
    animation: blink 0.7s infinite;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  