/*@import url('https://fonts.googleapis.com/css?family=Raleway');*/


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family:'Raleway', 'Arial', sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Helvetica Neue", Arial, sans-serif;
}

:root {
  --primary: #76abae;
  --secondary: #fff;
  --secondary-light: rgb(173, 173, 173);
  --dark1: #31363f;
  --dark2: #222831;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark2);
  font-size: 18px;
  color: var(--secondary);
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100vh;
  width: 100vw;
}

.hr {
  background-color: var(--secondary-light);
  height: 2px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hrline {
  background-color: var(--primary);
  height: 2px;
  width: 0;
  transition: width 0.6s;
}

button,
a,
div {
  -webkit-tap-highlight-color: transparent;
}

body::-webkit-scrollbar {
  width: 3px;
}

body::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

hr {
  margin-top: 15px;
}

.header {
  width: 100%;
  position: fixed;
  z-index: 30;
  background-color: transparent;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark2);
  opacity: 0.3;
  transition: background-color 400ms ease, opacity 400ms ease;
  z-index: -1; 
}

.container {
  max-width: 1200px;
  width: 88%;
  margin: 0 auto;
  
}

span {
  color: var(--primary);
}

h1, h2 {
  font-weight: normal;
}

/* Navbar */

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
}



.logo {
  width: 100%;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 600;
}


.navbar .menu {
  display: flex;
}

.navbar .menu li {
  list-style: none;
}

.navbar .menu li .nav-link {
  white-space: nowrap;
  display: block;
  text-transform: uppercase;
  margin: 20px 0;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--secondary);
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.5s, color 0.5s;
  z-index: 1;
}

.navbar .menu li:hover > .nav-link {
  color: var(--primary);
  transform: translateY(-5px);
}

.menu li:last-child .nav-link {
  padding-right: 0;
}













/* Main */


.main {
  height: 100dvh;
}


#particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  padding: 0;
}


.main .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto
}


.main .container h1 {
  font-size: clamp(1.45rem, 4vw + 1rem, 4.5rem);
  text-wrap: nowrap;
}

.main .container p {
  line-height: 2.5rem;
  text-align: justify;
  letter-spacing: -1px;
  font-size: clamp(16px, 1vw + 1rem, 1.5rem);
}

.main .container .contact-icon {
  padding-top: 2.5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.main .container .contact-icon a {
  cursor: pointer;
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 63px;
  background: var(--dark1);
  border-radius: 50%;
  font-size: 30px;
  transition: 0.5s;
}

.main .container .contact-icon a img {
  height: 24px;
  width: 24px;
}

.main .container .contact-icon a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--secondary);
  transition: 0.5s;
  transform: scale(0.9);
  z-index: -1;
}

.main .container .contact-icon a:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--secondary);
}

.main .container .contact-icon a:hover {
  box-shadow: 0 0 5px var(--secondary);
  text-shadow: 0 0 5px var(--secondary);
}


















/* service style */
.service {
  background-color: var(--dark1);
  padding-bottom: 75px;
  color: var(--secondary);
}


.service h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0 auto;
  padding: 2.5rem 0;
  display: block;
  text-align: center;
}

.service span {
  font-size: 1.5rem;
  display: block;
  margin: 1rem 0;
  text-align: center;
  color: var(--primary);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 0 auto;
}

.figure-container {
  background: var(--dark2);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.figure-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.figure-container svg {
  width: clamp(40px, 50px, 60px);
  height: clamp(30px, 40px , 50px);
  font-size: 2.5rem;
  fill: var(--primary);
  margin-bottom: 0.88rem;
}

.figure-container p {
  font-size: 0.9rem;
  color: var(--secondary);
  margin-top: 0.5rem;
}

/* .figure-container:hover i svg {
  color: var(--primary);
} */















/*about*/

.about .about-grid {
  height: 100%;
  margin: 0 auto;
}

.about .about-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50%, auto));
  align-items: center;
  padding: 50px 0 100px;
}

.about .about-grid .about-info span {
  font-size: 1.5rem;
  margin: 0 auto;
  line-height: 2.5rem;
}

.about .about-grid .about-info p {
  font-size: 1.5rem;
  margin: 0 auto;
  line-height: 2.5rem;
  color: var(--secondary-light);
  text-align: justify;
  letter-spacing: -1px;
  font-size: clamp(16px, 1vw + 1rem, 1.5rem);
}

.about .about-grid .about-info .contact-container {
  margin: 0 auto;
}

.btn {
  position: relative;
  width: fit-content;
  margin-top: 8px;
  padding: 10px 49.17px;
  border: 1px solid var(--primary);
  font-size: 18px;
  color: var(--primary);
  font-weight: 300;
  letter-spacing: 2px;
  transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
  cursor: pointer;
  user-select: none;
}

.btn:after,
.btn:before {
  content: "";
  position: absolute;
  transition: inherit;
  z-index: -1;
}

.btn:hover {
  color: var(--dark2);
}

.btn:hover:after {
  background: var(--primary);
}

.from-left:after,
.from-left:before {
  top: 0;
  width: 0;
  height: 100%;
}

.from-left:before {
  right: 0;
  border-left: 0;
  border-right: 0;
}

.from-left:after {
  left: 0;
}

.from-left:hover:after,
.from-left:hover:before {
  width: 100%;
}














/*contact form*/

form {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.form > span {
  width: 100%;
  font-size: 35px;
  margin: 4px 0 20px 0;
}

.form > input {
  margin: 4px 0;
  height: 40px;
  border: none;
  background-color: var(--dark2);
  padding: 10px;
  color: var(--secondary);
  outline: none;
  opacity: 0.7;
  width: 100%;
  border-bottom: 1px solid var(--primary);
}

.form > textarea {
  margin: 4px 0;
  resize: none;
  border: none;
  background-color: var(--dark2);
  height: 141.375px;
  width: 100%;
  color: var(--secondary);
  outline: none;
  padding: 10px;
  opacity: 0.7;
  border-bottom: 1px solid var(--primary);
}

.form > textarea::-webkit-scrollbar {
  width: 3px;
}

.form > textarea::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

.btn-2 {
  position: relative;
  width: fit-content;
  margin-top: 4px;
  padding: 10px 41px;
  border: 1px solid var(--primary);
  font-size: 18px;
  color: var(--primary);
  font-weight: 300;
  letter-spacing: 2px;
  transition: all 400ms cubic-bezier(0.77, 0, 0.175, 1);
  cursor: pointer;
  user-select: none;
  width: 100%;
  text-align: center;
}

.btn-2:after,
.btn-2:before {
  content: "";
  position: absolute;
  transition: inherit;
  z-index: -1;
}

.btn-2:hover {
  color: var(--dark2);
}

.btn-2:hover:after {
  background: var(--primary);
}

.from-left-2:after,
.from-left-2:before {
  top: 0;
  width: 0;
  height: 100%;
}

.from-left-2:before {
  right: 0;
  border-left: 0;
  border-right: 0;
}

.from-left-2:after {
  left: 0;
}

.from-left-2:hover:after,
.from-left-2:hover:before {
  width: 100%;
}