@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap" rel="stylesheet');

:root {
  --green: #1bf588;
  --white: #fff;
  --blue: #0faef3;
  --red: #fa1a10;
  --grey: #aab7b8;
  --header: #fff;
  --logo:#0faef3;
  --border:#242526;
  --main-color:#00a78e;
  --shadow-black-100:0 5px 15px rgba(0,0,0,0.2);
  --black-900:#000;
  --black-400:#646f87;
  --black-100:#f7f7f7;
  --white:#fff;
  --black-alpha-100:rgba(0,0,0,.05);
}
body.dark{
  --green: #1bf588;
  --white: #242526;
  --blue: #0faef3;
  --red: #fa1a10;
  --grey: #aab7b8;
  --header: #242526;
  --logo:#0faef3;
  --border:#ffffff;
}
* {
  font-family: "Outfit", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: 0.2s linear;
  text-transform: none;
}

*::selection {
  background-color: var(--blue);
  color: var(--white);
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

::-webkit-scrollbar {
  height: 5rem;
  width: 1rem;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--green);
  border-radius: 5rem;
}

body {
  background-color: var(--white);
}
section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 2rem;
}
.btn {
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: -3rem;
  border-radius: 1rem;
  background-color: var(--logo);
  cursor: pointer;
  color: var(--border);
  font-size: 1.5rem;
  padding: .7rem 2.5rem;
}
.btn a{
  text-decoration: none;
  color: var(--header);
  font-weight: bolder;
}
.btn:hover {
  background-color: var(--border);
  color: var(--logo);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--header);

}
.header .flex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .flex .logo {
  font-size: 3rem;
  color: var(--logo);
  font-weight: bolder;
}
.header .flex .logo img{
  width: 200px;
  height: auto;
}
.header .flex .navbar a {
  margin-left: 2rem;
  color: var(--white);
  font-size: 2rem;
}
.header .flex .navbar a:hover {
  color: var(--green);
}
#menu-btn {
  cursor: pointer;
  color: var(--blue);
  font-size: 2.5rem;
  display: none;
}

.mode{
  display: flex;
  align-items: center;
 }
 .moon-sun{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  background: var(--border);
  border-radius: 50%;
  cursor: pointer;
  font-size: medium;
 }
 .moon-sun :is(#moon,#sun){
  position: absolute;
  color: var(--header);
  transition: .2s ease-in-out;
 }
 #sun{
  opacity: 0;
 }
 body.dark #sun{
  opacity: 1;
 }
 body.dark #moon{
  opacity: 0;
 }

.footer {
  background-color: var(--header);
  text-align: center;
}
.footer .share a {
  margin: 0 0.3rem;
  height: 4rem;
  width: 4rem;
  line-height: 4rem;
  border-radius: 50%;
  font-size: 2rem;
  color: var(--border);
}
.footer .share a:hover {
  background-color: var(--blue);
}
.footer .credit {
  margin-top: 1rem;
  padding: 1rem;
  padding-top: 1rem;
  font-size: 1.2rem;
  color: var(--border);
}
.footer .credit span {
  color: var(--blue);
}






.aboutme{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  background: var(--white);
  border: .2rem solid var(--border);
  border-radius: 0.5rem;
  padding-bottom: 6rem;
  margin-top: 7.9rem;
  width: 1450px;
}
.heading2{
  font-size: 4rem;
  text-align: center;
  color: var(--border);
}
span{
  color: var(--blue);
}
.about-img{
  position: relative;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img img{
  width: 90%;
  border-radius: 50%;
  border: .2rem solid var(--blue);
}
.about-img .circle-spin{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-top: .2rem solid var(--white);
  border-bottom: .2rem solid var(--white);
  border-left: .2rem solid var(--blue);
  border-right: .2rem solid var(--blue);
}
.about-content{
  text-align: center;
}
.about-content h3{
  font-size: 2.6rem;
  color: var(--border);
}
.about-content h2{
  font-size: 1.6rem;
  color:var(--border);
  margin-top: 0.8rem;
}
.about-content h1{
  font-size: 1.1rem;
  color: var(--border);
  margin-top: 0.8rem;
}
.about-content p{
  font-size: 1.2rem;
  margin: 2rem 0 3rem;
  color: var(--border);
}
.object{
  display: flex;
  justify-content: left;
  align-items: left;
  flex-direction: column;
  gap: 2rem;
  background: var(--white);
  border: 0.2rem solid var(--border);
  box-shadow: var(--shadow-black-100);
  border-radius: 0.5rem;
  padding-bottom: 2rem;
  margin-top: 15px;
  width: 1450px;
}
.about-object{
  text-align: left;
}
.about-object h3{
  font-size: 2.6rem;
  color: var(--border);
}
.about-object p{
  font-size: 1.4rem;
  margin: 1rem 0 0.2rem;
  color: var(--border);
}
.about-object p span{
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--border);
}
.object .line 
{
    padding-top: 0px;
}
.object .line li
{
    display: inline-block;
    background-color: var(--border);
    border-radius: 50px;
    height: 3px;
}
.object .line li:nth-of-type(1)
{
    width: 64px;
}
.object .line li:nth-of-type(2)
{
    width: 10px;
}
.object .line li:nth-of-type(3)
{
    width: 7px;
}
.aboutme2{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0rem;
  background: var(--white);
  border: .2rem solid var(--border);
  border-radius: 0.5rem;
  padding-bottom: 1rem;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  width: 1450px;
}
.heading3{
  font-size: 1.6rem;
  text-align: center;
  color: var(--border);
}
span{
  color: var(--border);
}
.about-img2{
  position: relative;
  width: 15rem;
  height: 10rem;
  border-radius: 1.2%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img2 img{
  width: 90%;
  border-radius: 1.2%;
  margin-bottom: 0rem;
}
.about-content2{
  text-align: center;
}
.about-content2 h3{
  font-size: 2.6rem;
  color: var(--border);
}
.about-content2 h2{
  font-size: 1.6rem;
  color: var(--border);
  margin-top: 0.8rem;
}
.about-content2 h1{
  font-size: 1.1rem;
  color: var(--border);
  margin-top: 0.8rem;
}
.about-content2 p{
  font-size: 1.2rem;
  margin: 2rem 0 3rem;
  color: var(--border);
}
.row
{
    display: flex;
    flex-wrap: wrap;
}
/*===== contact =====*/
.contact-section
{
    min-height: 30vh;
    background-color: var(--white);
}
.contact-section .contact-item
{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
}
.contact-section .contact-item-inner
{
    padding: 10px 10px;
    text-align: left;
    border: 0.2rem solid var(--border);
    box-shadow: var(--shadow-black-100);
    border-radius: 5px;
    width: 100%;
}
.contact-section .contact-item-inner i
{
    font-size: 12px;
    color: var(--border);
    padding: 0 5px;
}
.contact-section .contact-item-inner h3
{
    display: block;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--border);
    margin: 10px 0 2px;
    text-transform: capitalize;
}
.contact-section .contact-item-inner span{
  font-size: 1.4rem;
  font-weight: bold;
}
.contact-section .contact-item-inner p
{
  font-size: 1.4rem;
  margin: 1rem 0 0.2rem;
  color: var(--border);
    
}
.contact-section .contact-form
{
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 50px;
}
.contact-section .w-50
{
    padding: 0 15px;
    flex: 0 0 50%;
    max-width: 50%;
}
.contact-section .input-group
{
    margin: 0 0 25px;
    border-radius: 30px;
    background-color: var(--black-100);
    box-shadow: var(--shadow-black-100);
}
.contact-section .input-group .input-control
{
    height: 45px;
    display: block;
    width: 100%;
    border-radius: 30px;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 16px;
    padding: 0 15px;
    transition: all 0.3s ease;
    color: var(--black-400);
}
.contact-section .input-group textarea.input-control
{
    height: 180px;
    padding-top: 15px;
    resize: none;
}
.contact-section .input-group .input-control:focus
{
    border: 1px solid var(--main-color);
}
.contact-section .submit-btn
{
    flex: 0 0 100%;
    max-width: 100%;
    text-align: right;
    padding: 0 15px;
}
.contact-item .line 
{
    padding-top: 0px;
}
.contact-item .line li
{
    display: inline-block;
    background-color: var(--border);
    border-radius: 50px;
    height: 3px;
}
.contact-item .line li:nth-of-type(1)
{
    width: 64px;
}
.contact-item .line li:nth-of-type(2)
{
    width: 10px;
}
.contact-item .line li:nth-of-type(3)
{
    width: 7px;
}
































































@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .home .row .content h3 {
    font-size: 8rem;
  }
}

@media (max-width: 768px) {
  #menu-btn {
    display: inline-block;
  }
  #menu-btn.fa-times {
    transform: rotate(180deg);
  }
  .header .flex .navbar {
    position: absolute;
    top: 100%; /* Change from 99% to 100% */
    left: 0;
    right: 0;
    border-top: 0.1rem solid var(--header);
    border-bottom: 0.1rem solid var(--header);
    background-color: var(--header);
    display: none; /* Add this line */
  }

  .header .flex .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    display: block; /* Add this line */
  }

  .header .flex .navbar a {
    display: block;
    margin: 2rem;
    color: var(--white); /* Add this line */
  }

  .home .row .content h3 {
    font-size: 6rem;
  }
  .header-social
    {
        left: 85%;
    }
    .service-section .service-item,
    .portfolio .portfolio-item,
    .pricing .pricing-item,
    .contact-section .contact-item,
    .contact-section .w-50,
    .about-section .about-content
    {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .object{
      width: 90%;
    }
    .aboutme{
      width: 90%;
    }
    .aboutme2{
      width: 90%;
    }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .home .row .content h3 {
    font-size: 5rem;
  }
}
