/* Reset styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #777;
  font-weight: 400;
  padding-top: 60px; /* Adjust based on header height */
  background-color: #f6f6f6;
}

h2, h3, h4, h5 {
  font-family: "Raleway", sans-serif;
  color: #333;
}

h2 {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 36px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

h4, h5 {
  font-size: 18px;
  font-weight: 600;
}

a {
  color: #608dfd;
  font-weight: 400;
}

a:hover, a:focus {
  color: #608dfd;
  text-decoration: none;
}

hr {
  height: 2px;
  width: 70px;
  background: #1e7a46;
  margin-bottom: 20px;
  border: 0;
}

#menu {
  padding: 15px;
  transition: all 0.8s;
}

#menu.navbar-default {
  background-color: #035828;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

#menu .navbar-brand {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

#menu.navbar-default .navbar-nav > li > a {
  font-family: "Lato", sans-serif;
  text-transform: capitalize;
  font-weight: bold;
  color: #ffffff;
  font-size: 20px;
  padding: 8px 2px;
  margin: 9px 20px 0;
}

#menu.navbar-default .navbar-nav > li > a:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #1919f0 0%, #e8081a 100%);
  content: "";
  transition: width 0.2s;
}

#menu.navbar-default .navbar-nav > li > a:hover:after {
  width: 100%;
}

.section-title {
  margin-bottom: 70px;
}

.section-title h2 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 36px;
}

.section-title h2::after {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 50%;
  margin-left: -30px;
}

.btn-custom {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #fff;
  background-color: #2e8b57;
  padding: 6px 18px;
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.5s linear;
  border: 0;
  width: 200px;
  margin: 10px auto 50px;
}

.btn-custom:hover {
  background-image: linear-gradient(to right, #3cb371 0%, #2e8b57 100%);
}

.intro h1 {
  font-family: "Roboto", sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: #333;
  margin-top: -10px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.intro h1 span {
  font-weight: 800;
  color: #5ca9fb;
}

.intro p {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  color: #333;
  text-align: left;
  margin-bottom: 60px;
}

.intro {
  display: flex;
  justify-content: flex-start;
  position: relative;
}

.intro .intro-text {
  flex: 1;
  padding-top: 200px;
  padding-bottom: 200px;
  text-align: left;
}

#about, #services, #portfolio, #testimonials, #team {
  padding: 100px 0;
}

#services {
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
  color: #fff;
}

#testimonials {
  background: #f6f6f6;
}

/* Bullet style */
.intro-text p.bullets {
  font-size: 16px;
  line-height: 1.6;
  color: #000080;
  margin-bottom: 2px;
}

.intro-text p.bullets::before {
  content: "\2713";
  margin-right: 10px;
  font-size: 1.2em;
  color: #006633;
}
