@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap);

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

body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
  }
  
a {
  text-decoration: none; 
  color: inherit; 
  display: inline-block; 
  border: none; 
  padding: 5px 10px; 
  transition: all 0.3s;
  background-color: black;
  border-radius: 5px;
}

/* Style the link on hover */
a:hover {
  background-color: #555; /
 
}

/* Style the image inside the link */
img {
  vertical-align: middle; 
  margin-right: 5px; 
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* ---=========new nav============---- */
header {
  background-color: #1abc9c;
  color: blu;
  text-align: center;
  padding: 20px;
}

.logo img {
  max-width: 200px;
  padding: 20px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

nav a {
  text-decoration: none;
  color: #fff;
  margin: 0 15px;
  font-size: 16px;
}

img {
  width: 100%;
  height: auto;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
}

.logo img {
  border-radius: 50%;
}

.header {
  background-color: #333;
  color: #fff;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  margin: 0 15px;
  transition: color 0.3s ease-in-out;
}

.navbar a:hover {
  color: #00bcd4;
}
.social .social-icons{
align-content: center;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: linear-gradient(to bottom, #55efc4, #f9f9f9);
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: white(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  background: #37517e;
}


#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*footer styling*/
footer {
  background-color: #1abc9c;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.social-media {
  display: flex;
  justify-content: center;
}

.social-media a {
  text-decoration: none;
  padding: 10px;
  background-color: #fff;
  margin: 10px;
  border-radius: 50%;
}

.social-media a i {
  font-size: 2em;
  color:black;
  opacity: 0.9;
}
/*===Hover Effect On Social Icons===*/
.social-media a:hover {
  background-color: black;
  transition: 0.5s;
}
.social-media a:hover i {
  color: #fff;
  transition: 0.5s;
}

* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


.contact-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.contact-section h2 {
  color: #333;
  margin-bottom: 20px;
}

.contact-section p {
  color: black;
  font-size: 18px;
  margin-bottom: 30px;
}

.contact-section .btn {
  background-color: black;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.contact-section .btn:hover {
  background-color: #1abc9c;
}
