body {
  font-family: sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #d4d4d4;
  background-color: #272727;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

a.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

a.logo:hover {
  text-decoration: none;
}

.imglogo {
  max-height: 45px;
  margin: 0;
  padding: 0;
}

.logotext {
  font-size: 1.2em;
  margin: 0;
  padding: 0 0 0 5px;
  font-family: "Montserrat", sans-serif;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #a6a6a6;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #5bc0de;
}

.hamburger {
  all: unset;
  display: none;
  cursor: pointer;
}

.bar {
  content: "";
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: white;
  transition: all 0.3s ease-in-out;
}

.dropdown-menu {
  position: fixed;
  top: 80px;
  transition: 0.3s ease-in-out;
  opacity: 0;
  background-color: #272727;
  display: flex;
  justify-content: center;
  width: 100%;
  border-top: 1px solid rgb(87, 87, 87);
  border-bottom: 1px solid rgb(87, 87, 87);
  display: none;
  z-index: 100;
}

.dropdown-menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 15px 0 0 0;
}

.dropdown-menu ul li {
  position: relative;
  margin-bottom: 1rem;
}

.dropdown-menu ul :nth-child() {
  margin-bottom: 0;
}

.dropdown-menu ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.1s ease-in-out;
  font-family: "Poppins", Times, serif, Courier, monospace;
  font-weight: 500;
  font-size: 20px;
}

.dropdown-menu ul li a:hover {
  color: #5bc0de;
}

.hero {
  background-color: #333;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #fff;
}

.hero .subheadline {
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 30px;
}

.hero-buttons a {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin: 0 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-buttons .primary {
  background-color: #5bc0de;
  color: #222;
  border: 1px solid #5bc0de;
}

.hero-buttons .primary:hover {
  background-color: #46b8da;
  border-color: #46b8da;
  color: #222;
}

.hero-buttons .secondary {
  background-color: transparent;
  color: #5bc0de;
  border: 1px solid #5bc0de;
}

.hero-buttons .secondary:hover {
  background-color: #5bc0de;
  color: #222;
  border: 1px solid #5bc0de;
}

.why-choose-us {
  padding: 50px 0;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2em;
  margin-bottom: 60px;
  color: #fff;
}

.why-choose-us .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns by default */
  gap: 30px;
  margin-top: 30px;
}

.why-choose-us .feature {
  padding: 30px;
  background-color: #333;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  color: #d4d4d4;
}

.why-choose-us .feature i {
  font-size: 2em;
  color: #5bc0de;
  margin-bottom: 15px;
}

.why-choose-us .feature h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #fff;
}

.template-showcase {
  padding: 50px 0;
  background-color: #333;
  text-align: center;
}

.template-showcase h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #fff;
}

.template-showcase .carousel {
  display: flex;
  overflow-x: auto;
  gap: 100px;
  justify-content: center;
}

.template-showcase .template-card {
  width: 300px;
  background-color: #2c2c2c;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  padding: 20px;
  text-align: center;
  color: #d4d4d4;
}

.template-showcase .template-card img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
  filter: brightness(0.8);
}

.template-showcase .template-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #fff;
}

.template-showcase .template-card .button {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  color: #5bc0de;
  border: 1px solid #5bc0de;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.template-showcase .template-card .button:hover {
  background-color: #5bc0de;
  color: #222;
}

.custom-development {
  padding: 10px 0px 70px;
  text-align: center;
  background-color: #333;
  color: #d4d4d4;
}

.custom-development h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #fff;
}

.custom-development p {
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 30px;
}

.custom-development a {
  list-style: none;
  text-decoration: none;
  color: #a6a6a6;
  font-size: 20px;
  border-radius: 5px;
}

.custom-development .secondary {
  background-color: transparent;
  color: #5bc0de;
  border: 1px solid #5bc0de;
  padding: 12px;
}

.custom-development .secondary:hover {
  background-color: #5bc0de;
  color: #222;
}

.about-us {
  padding: 50px 0px;
  text-align: center;
}

.about-us .container {
  max-width: 800px;
}

.about-us h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #fff;
}

.about-us p {
  font-size: 1.1em;
  color: #d4d4d4;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.skills-highlight {
  margin-top: 30px;
  text-align: left;
}

.skills-highlight h3 {
  font-size: 1.4em;
  color: #fff;
  margin-bottom: 15px;
}

.skills-highlight .benefits-list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
}

.skills-highlight .benefits-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 10px;
  font-size: 18px;
}

.skills-highlight .benefits-list li::before {
  content: "\2022";
  color: #5bc0de;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  position: absolute;
  left: 0;
}

.testimonials {
  padding: 80px 0;
  background-color: #2c2c2c;
  text-align: center;
  color: #d4d4d4;
}

.testimonials h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #fff;
}

.testimonials .testimonial-slider {
  margin-top: 30px;
}

.testimonials .testimonial {
  padding: 20px;
  background-color: #333;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  margin: 20px auto;
  max-width: 600px;
  color: #d4d4d4;
}

.testimonials .testimonial p {
  font-style: italic;
  color: #ccc;
  margin-bottom: 10px;
}

.testimonials .testimonial cite {
  font-weight: bold;
  color: #fff;
}

footer {
  color: #ccc;
  padding: 40px 0;
  text-align: center;
  background-color: #242424;
}

footer ul {
  display: flex;
  justify-content: center;
  padding-bottom: 17px;
}

footer nav ul li a {
  color: #ccc;
}

footer nav ul li a:hover {
  color: #5bc0de;
}

footer p {
  color: #888;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info p {
  font-size: 18px;
  color: #5bc0de;
}

.footer-links {
  margin-top: 15px;
  text-align: center;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
}

.footer-link:hover {
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .template-showcase .carousel {
    gap: 50px;
  }

  .why-choose-us .grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for medium screens */
  }
}

@media (max-width: 768px) {
  header {
    display: flex;
    justify-content: space-around;
    padding: 0 0;
    position: sticky;
    /*top: 0;*/
    background-color: #272727;
  }
  
  header .container {
      margin-left: 20px;
  }
  
  header .hamburger {
      margin-right: 20px;
  }

  .logo {
    font-size: 1.25em;
  }

  .imglogo {
    max-height: 40px;
  }

  nav {
    display: none;
  }

  .hamburger {
    display: block;
    z-index: 101;
  }

  .hamburger.active :nth-child(2) {
    opacity: 0;
  }

  .hamburger.active :nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active :nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .dropdown-menu.active {
    display: flex;
    opacity: 1;
  }

  .hero {
    padding: 50px 0;
  }

  .about-us .container {
    padding: 20px;
  }

  .about-us h2 {
    font-size: 1.8em;
  }

  .about-us p {
    font-size: 1em;
  }

  .template-showcase .carousel {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
  }

  .contact-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  }

  .contact-info p {
    width: 150px;
  }

  .contact-info p:last-child {
    width: 250px;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  #email {
    text-align: center;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .contact-info {
    flex-direction: column;
  }

  .why-choose-us .grid {
    grid-template-columns: 1fr; /* 1 column for small screens */
  }
  
  header .container {
      margin-left: 15px;
      padding-left: 0px;
  }
  
  header .hamburger {
      margin-right: 15px;
  }
  
 .logo {
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

a.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

a.logo:hover {
  text-decoration: none;
}

.imglogo {
  max-height: 45px;
  margin: 0;
  padding: 0;
}

.logotext {
  font-size: 1.15em;
  margin: 0;
  padding: 0 0 0 5px;
  font-family: "Montserrat", sans-serif;
}
}
