* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: 0;
  text-decoration: none;
  list-style: none;
}

#nedpic {
  width: 80px;
  padding: 10px;
  font-weight: bold;

}

:root {
  --color-primary: #1CB5E0;
  --color-success: linear-gradient(90deg, rgba(75, 187, 35, 1) 0%, rgba(39, 127, 53, 1) 0%, rgba(76, 175, 80, 1) 100%);
  --color-warning: linear-gradient(90deg, rgba(250, 24, 7, 1) 1%, rgba(255, 128, 17, 1) 50%, rgba(180, 59, 8, 1) 100%);
  --color-danger: linear-gradient(90deg, rgba(75, 187, 35, 1) 0%, rgba(200, 26, 26, 1) 0%, rgba(163, 14, 14, 1) 100%);
  --color-danger-varient: linear-gradient(90deg, rgba(207, 5, 18, 1) 0%, rgba(247, 0, 0, 1) 50%, rgba(207, 5, 18, 1) 98%, rgba(187, 16, 4, 1) 100%);
  --color-white: #fff;
  --color-light: rgba(34, 151, 87, 0.733);
  --color-black: #000;
  --color-bg: radial-gradient(circle at 30% -100%, #151718 25%, rgb(0, 2, 7) 85%, rgb(21, 24, 26) 100%);
  --color-bg1: #08082ec9;
  --color-bg2: radial-gradient(circle at 30% -100%, #042c54 25%, rgba(4, 44, 84, 1) 85%, rgba(27, 120, 222, 1) 100%);

  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));


  --container-width-lg: 76%;
  --container-width-md: 90%;
  --container-width-sm: 94%;

  --transition: all 400ms ease;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  color: var(--color-white);
  background: black;
}

.container {
  width: var(--container-width-lg);
  margin: 0 auto;
}

.nav__container h4 {
  margin-right: 70px;
}

section {
  padding: 6rem 0;
}

section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.3rem;
}

a {
  color: var(--color-white);
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}




/*=========navbar===========*/
nav {
  background: transparent;
  width: 100vw;
  height: 5rem;
  position: fixed;
  top: 0;
  z-index: 10001;
}


.window-scroll {
  background-color: rgba(105, 98, 98, 0.322);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(20px);
}
.nav__container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#open-menu-btn,
#close-menu-btn {
  display: none;
}

.nav__menu {
  
  font-weight: bold;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.nav__menu a {
  font-size: 0.9rem;
  color: rgb(252, 251, 251);
  transition: var(--transition);
}

.nav__menu a:hover,
.nav__menu a.active {
  background: #0bdaff;
}

#nedpic {
  margin-left: -8rem;
}


@media screen and (max-width: 1150px) {
  .h1 {
    font-size: 10px;
    text-align: justify;
    justify-content: flex-start;
  }

  .overview p {
    justify-content: start;
    text-align: start;
  }

  nav button {
    margin-right: -1.5rem;
    display: inline-block;
    background: transparent;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
  }

  #open-menu-btn {
    display: flex;
  }

  #close-menu-btn {
    display: none;
  }



  .nav__menu {
    position: fixed;
    top: 5rem;
    right: 5%;
    height: fit-content;
    width: 18rem;
    flex-direction: column;
    gap: 0;
    display: none;
  }

  .nav__menu a {
    width: 100%;
    height: 3rem;
    background: linear-gradient(110.3deg, rgba(73, 93, 109, 1) 4.3%, rgba(49, 55, 82, 1) 96.7%);
    box-shadow: -4rem 6rem 10rem rgba(0, 0, 0, 0.6);
    display: grid;
    place-items: center;
    animation: animateNavItems 400ms linear forwards;
    transform-origin: top right;
    opacity: 0;
  }

  .nav__menu a:nth-child(2) {
    animation-delay: 100ms;
  }

  .nav__menu a:nth-child(3) {
    animation-delay: 200ms;
  }

  .nav__menu a:nth-child(4) {
    animation-delay: 300ms;
  }

  .nav__menu a:nth-child(5) {
    animation-delay: 400ms;
  }

  .nav__menu a:nth-child(6) {
    animation-delay: 500ms;
  }

  .nav__menu a:nth-child(7) {
    animation-delay: 600ms;
  }

  .nav__menu a:nth-child(8) {
    animation-delay: 700ms;
  }

  .nav__menu a:nth-child(9) {
    animation-delay: 800ms;
  }

  @keyframes animateNavItems {
    0% {
      transform: rotateZ(-90deg) rotateX(90deg) scale(0.1);
    }

    100% {
      transform: rotateZ(0) rotateX(0) scale(1);
      opacity: 1;
    }
  }

  .nav__menu a:hover {
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    display: block;
  }

  #nedpic {
    margin-left: -2rem;
  }
}


input,
textarea {
  font-family: "Poppins", sans-serif;
}

.contain {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 8rem;
  background-color: #080808;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #03d3f8;
  position: relative;
}

.circle {
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #03d3f8;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.5rem 1.3rem;
  background: linear-gradient(45deg, #03d3f8, #149279);
  border: 2px solid #faf9f9;
  font-size: 1rem;
  font-weight: 400;
  color: #f2f7f8;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.btn:hover {
  transform: scale(1.1);
  background: transparent;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #070707;
  border: 2px solid black;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #03d3f8;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #03d3f8;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #03d3f8, #149279);
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.1);
  background: transparent;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #070707;
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #03d3f8;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: #03d3f8;
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #080808;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 680px) {
  .nav__menu a:hover {
    background: #000046;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    display: block;
    text-align: center;
  
}

  .contain {
    padding: 0;
    margin-top: 5rem;
    padding: 1rem;
  }

  .contact-info:before {
    display: none;
  }

  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}

/* Footer */


#nedpic {
  margin-top:3px ;
  position: relative;
  width: 100px;
  padding: 3px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}


footer {
  background-image: linear-gradient(94.3deg, rgba(26, 33, 64, 1) 10.9%, rgba(81, 84, 115, 1) 87.1%);
color: #fff;
padding-top: 40px;
padding-bottom: 20px;
font-family: "Montserrat Medium";
}

footer h4 {
font-size: 20px;
margin-bottom: 20px;
}

footer p {
font-size: 16px;
line-height: 1.6;
margin-bottom: 30px;
}

footer ul {
margin: 0;
padding: 0;
list-style: none;
justify-content: center;
}

footer ul li {
margin-bottom: 10px;
}

footer ul li a {
color: #fcfcfc;
text-decoration: none;
}

footer .col-md-4 {
text-align: center;
}

footer .col-md-4 ul li {
display: inline-block;
margin-right: 10px;
}

footer .col-md-4 ul li:last-child {
margin-right: 0;
}

footer .col-md-4 ul li a i {
font-size: 24px;
}

footer .social-iconss li {
display: inline-block;
margin-right: 10px;
}

footer .social-iconss li:last-child {
margin-right: 0;
}

footer .social-iconss li a {
display: block;
height: 40px;
width: 40px;
border-radius: 50%;
background-color: #fff;
text-align: center;
line-height: 40px;
color: #111;
transition: all 0.3s ease;
}

footer .social-iconss li a:hover {
background-color: #3b5998;
color: #fff;
}

footer .footer-bottom {
background-color: #000;
padding: 10px 0;
text-align: center;
}

footer .footer-bottom p {
margin: 0;
font-size: 14px;
color: #fff;
}

footer .useful-links {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 40px;
}

footer .useful-links ul {
margin: 0;
padding: 0;
list-style: none;
}

footer .useful-links ul li {
margin-bottom: 10px;
}

footer .useful-links ul li a {
color: #fff;
text-decoration: none;
font-size: 16px;
}

footer .useful-links ul li a:hover {
color: white;
}
.links li a:hover{
  color: #0bdaff;
}

@media screen and (max-width: 767px) {
footer .col-md-4 {
  margin-bottom: 30px;
}

footer .useful-links {
  flex-direction: column;
}

footer .useful-links ul li {
  margin-bottom: 20px;
}

footer .useful-links ul li:last-child {
  margin-bottom: 0;
}
}