@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Parisienne&family=Tangerine:wght@700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* all similar style */
section {
  padding: 100px 0;
}
.about,
.projects,
.skills,
.experience,
.footer {
  font-family: "Poppins", sans-serif;
}
.max-width {
  max-width: 1300px;
  padding: 0 80px;
  margin: auto;
}
.about .about-content,
.projects .serv-content,
.skills .skills-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
section .title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  padding-bottom: 20px;
  font-family: "Ubuntu", sans-serif;
}
section .title::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 180px;
  height: 3px;
  transform: translateX(-50%);
}
section .title::after {
  position: absolute;
  left: 50%;
  font-size: 20px;
  padding: 5px;
  transform: translateX(-50%);
}

/* navbar styling */
.navbar {
  position: fixed;
  z-index: 999;
  width: 100%;
  padding: 30px 0;
  font-family: "Ubuntu", sans-serif;
  transition: all 0.3s ease;
}

/* root color : #00FFFF */
.navbar.sticky {
  padding: 15px 0;
  background: #00ffff;
  background: #00ffff;
}
.navbar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo a {
  color: white;
  font-size: 35px;
  font-weight: 600;
  font-family: "Ubuntu", bold;
}
.navbar .logo .scroll a {
  color: white;
  font-size: 35px;
  font-weight: 600;
  font-family: "Ubuntu", bold;
}

.navbar.sticky .logo a {
  color: white;
  font-size: 35px;
  font-weight: 600;
  font-family: "Ubuntu", bold;
}

.navbar .logo a span {
  color: #00ffff;
}
.navbar.sticky .logo a span {
  color: white;
  transition: all 0.3s ease;
}
.navbar .menu li {
  list-style: none;
  display: inline-block;
}
.navbar .menu li a {
  display: block;
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin-left: 25px;
  transition: color 0.2s ease;
}
.navbar .menu li a:hover {
  color: #00ffff;
}
.navbar.sticky .menu li a:hover {
  color: white;
}

/* menu btn styling */
.menu-btn {
  color: white;
  font-size: 30px;
  cursor: pointer;
  display: none;
}
.scroll-up-btn {
  position: fixed;
  height: 45px;
  width: 42px;
  background: #00ffff;
  right: 30px;
  bottom: 10px;
  text-align: center;
  line-height: 45px;
  color: #fff;
  z-index: 9999;
  font-size: 30px;
  border-radius: 6px;
  border-bottom-width: 2px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.scroll-up-btn.show {
  bottom: 30px;
  opacity: 1;
  pointer-events: auto;
}
/* home section styling */
.home {
  display: flex;
  background: url("Images/web_background.jpg") no-repeat center;
  height: 100vh;
  color: white;
  min-height: 500px;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Ubuntu", sans-serif;
}
.home .max-width {
  margin: auto 0 auto 40px;
}
.home .home-content .mySign {
  height: 180px;
  padding: 10px;
  border-spacing: 60px;
}
.home .home-content .text-1 {
  font-size: 27px;
}
.home .home-content .text-2 {
  font-family: "Great Vibes";
  font-size: 75px;
  font-weight: 400;
  margin-top: 9px;
  margin-left: -3px;
}
.home .home-content .text-3 {
  font-size: 40px;
  margin: 5px;
}
.home .home-content .text-3 span {
  color: #00ffff;
  font-weight: 500;
}
.home .home-content a {
  display: inline-block;
  background: #00ffff;
  color: black;
  font-size: 25px;
  font-weight: 600;
  padding: 12px 36px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid #00ffff;
  transition: all 0.3s ease;
}

.home .home-content a:hover {
  color: #00ffff;
  background: none;
}

/* about section styling */

.about .title::before {
  background: #111;
  bottom: -187px;
}
.about .title::after {
  bottom: -202px;
  color: #00ffff;
  background: #fff;
}

.about .about-content .left {
  width: 45%;
}
.about .about-content .left img {
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}
.about .about-content .right {
  width: 55%;
}
.about .about-content .right .text {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}
.about .about-content .right .text span {
  color: #00ffff;
}
.about .about-content .right p {
  text-align: justify;
}
.about .about-content .right a {
  display: inline-block;
  background: #00ffff;
  color: black;
  font-size: 25px;
  font-weight: 500;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid #00ffff;
  transition: all 0.3s ease;
}
.about .about-content .right a:hover {
  color: #00ffff;
  background: none;
}

/* projects section styling */
.projects,
.experience {
  color: #fff;
  background: #111;
}
.projects .title {
  color: #fff;
}
.projects .title::before {
  background: #fff;
  bottom: -1040px;
}
.projects .title::after {
  background: #111;
  bottom: -1055px;
  color: #00ffff;
}
.projects .serv-content .card {
  width: calc(33% - 20px);
  background: #222;
  text-align: center;
  border-radius: 6px;
  padding: 35px 30px;
  cursor: pointer;
}
.projects .serv-content .card:hover {
  background: #00ffff;
}
.projects .serv-content .card .box {
  transition: all 0.3s ease;
}
.projects .serv-content .card:hover .box {
  transform: scale(1.05);
}
.projects .serv-content .card i {
  margin-bottom: 20px;
  font-size: 25px;
  color: #00ffff;
}
.projects .serv-content .card p {
  padding: 15px;
  text-align: center;
}
.projects .serv-content .card:hover i {
  color: #111;
}
.projects .serv-content .card:hover .text {
  color: #111;
}
.projects .serv-content .card:hover p {
  color: #111;
}
.projects .serv-content .card .text {
  font-family: "Great Vibes";
  font-size: 35px;
  font-weight: 400;
  color: #00ffff;
}

/* skills section styling */
.skills .title::before {
  background: #000;
  bottom: -1660px;
}
.skills .title::after {
  background: #fff;
  bottom: -1675px;
  color: #00ffff;
}
.skills .skills-content .column {
  width: calc(50% - 30px);
}
.skills .skills-content .left .text {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}
.skills .skills-content .left p {
  text-align: justify;
}
.skills .skills-content .left a {
  display: inline-block;
  background: #00ffff;
  color: black;
  font-size: 25px;
  font-weight: 500;
  padding: 8px 16px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid #00ffff;
  transition: all 0.3s ease;
}
.skills .skills-content .left a:hover {
  color: #00ffff;
  background: none;
}
.skills .skills-content .right .bars {
  margin-bottom: 15px;
}
.skills .skills-content .right .info {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
  justify-content: space-between;
}
.skills .skills-content .right .span {
  font-weight: 600;
  font-size: 18px;
}
.skills .skills-content .right .line {
  height: 6px;
  width: 100%;
  background: lightgrey;
  position: relative;
}
.skills .skills-content .right .line::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 70%;
  left: 0;
  top: 0;
  background: #00ffff;
}
.skills .skills-content .right .java::before {
  width: 90%;
}
.skills .skills-content .right .js::before {
  width: 10%;
}
.skills .skills-content .right .ai::before {
  width: 95%;
}
.skills .skills-content .right .sql::before {
  width: 50%;
}

/* experience section styling */

.experience .title::after {
  background: #111;
  bottom: -2255px;
  color: #00ffff;
}
.experience .carousel .card {
  background: #222;
  border-radius: 6px;
  padding: 25px 35px;
  text-align: center;
  transition: all 0.3s ease;
}
.experience .carousel .card:hover {
  background: #00ffff;
}
.experience .carousel .card .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.experience .carousel .card:hover .box {
  transform: scale(1.05);
}
.experience .carousel .card .text {
  font-family: "Great Vibes";
  font-size: 35px;
  color: #00ffff;
  font-weight: 500;
  margin: 10px 0 7px 0;
}
.experience .carousel .card:hover .text {
  color: #000;
}
.experience .carousel .card img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 15%;
  border: 5px solid #00ffff;
}
.experience .carousel .card:hover img {
  border-color: #000;
}
.owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-dot {
  height: 13px;
  width: 13px;
  margin: 0 5px;
  outline: none !important;
  border-radius: 50%;
  border: 2px solid #00ffff !important;
}
.owl-dot.active {
  width: 35px;
  border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover {
  background: #00ffff !important;
}

/* gallery section styling */
.gallery .title::before {
  background: #111;
  bottom: -2940px;
}
.gallery .title::after {
  background: #fff;
  /*content: " What I Do ";*/
  bottom: -3200px;
  color: #00ffff;
}
.gallery .carousel-2 .card {
  height: 400px;
  width: 550px;
  background: black;
  border-radius: 6px;
  padding: 25px 35px;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.gallery .carousel-2 .card:hover {
  background: #00ffff;
}
.gallery .carousel-2 .card .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.gallery .carousel-2 .card:hover .box {
  transform: scale(1.05);
}
.gallery .carousel-2 .card .text {
  font-family: "Great Vibes";
  font-size: 45px;
  color: #00ffff;
  font-weight: 500;
  margin: 30px 0 10px 0;
  text-align: center;
}
.gallery .carousel-2 .card .text2 {
  font-family: "Great Vibes";
  font-size: 30px;
  color: #00ffff;
  font-weight: 500;
  margin: 20px 0 7px 0;
}
.gallery .carousel-2 .card:hover .text {
  color: #000;
}
.gallery .carousel-2 .card:hover .text2 {
  color: #000;
}
.gallery .carousel-2 .card img {
  height: 250px;
  width: auto;
  object-fit: cover;
  border: 5px solid #00ffff;
}
.gallery .carousel-2 .card:hover img {
  border-color: #000;
  transform: scale(1.02);
}
.owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-dot {
  height: 13px;
  width: 13px;
  margin: 0 5px;
  outline: none !important;
  border-radius: 50%;
  border: 2px solid #00ffff !important;
}
.owl-dot.active {
  width: 35px;
  border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover {
  background: #00ffff !important;
}

/* footer section styling */
footer {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  background: #111;
  padding: 20px 23px;
  color: #fff;
}
footer span a {
  font-family: "Great Vibes";
  font-size: 35px;
  color: #00ffff;
}
footer span a:hover {
  text-decoration: underline;
}

/* responsive media query start */
@media (max-width: 1104px) {
  .about .about-content .left img {
    height: 350px;
    width: 350px;
  }
  section .title::before {
    opacity: 0;
    width: 0px;
    height: 0px;
  }
  section .title::after {
    opacity: 0;
    font-size: 0px;
  }
}

@media (max-width: 991px) {
  .max-width {
    padding: 0 50px;
  }
  section .title::before {
    opacity: 0;
    width: 0px;
    height: 0px;
  }
  section .title::after {
    opacity: 0;
    font-size: 0px;
  }
}
@media (max-width: 947px) {
  .menu-btn {
    display: block;
    z-index: 999;
  }
  .menu-btn i.active:before {
    content: "\f00d";
  }
  .navbar .menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0;
    background: #111;
    text-align: center;
    padding-top: 80px;
    transition: all 0.3s ease;
  }
  .navbar .menu.active {
    left: 0;
  }
  .navbar .menu li {
    display: block;
  }
  .navbar .menu li a {
    display: inline-block;
    margin: 20px 0;
    font-size: 25px;
  }
  .home .home-content .text-2 {
    font-size: 70px;
  }
  .home .home-content .text-3 {
    font-size: 35px;
  }
  .home .home-content a {
    font-size: 23px;
    padding: 10px 30px;
  }
  .max-width {
    max-width: 930px;
  }
  .about .about-content .column {
    width: 100%;
  }
  .about .about-content .left {
    display: flex;
    justify-content: center;
    margin: 0 auto 60px;
  }
  .about .about-content .right {
    flex: 100%;
  }
  .projects .serv-content .card {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  .skills .skills-content .column {
    width: 100%;
    margin-bottom: 35px;
  }
  .gallery .carousel-2 .card {
    width: 100%;
    height: auto;
  }
  .gallery .carousel-2 .card img {
    height: 180px;
    width: auto;
    object-fit: cover;
    border: 5px solid #00ffff;
  }
  .gallery .carousel-2 .card .text {
    font-size: 25px;
  }
  .gallery .carousel-2 .card .text2 {
    font-size: 17px;
  }
  footer {
    font-size: 15px;
    font-weight: 400;
  }
  footer span a {
    font-size: 25px;
  }
  section .title::before {
    opacity: 0;
    width: 0px;
    height: 0px;
  }
  section .title::after {
    opacity: 0;
    font-size: 0px;
  }
}

@media (max-width: 690px) {
  .max-width {
    padding: 0 23px;
  }
  .home .home-content .text-2 {
    font-size: 60px;
  }
  .home .home-content .text-3 {
    font-size: 32px;
  }
  .home .home-content a {
    font-size: 20px;
  }
  .projects .serv-content .card {
    width: 100%;
  }
  .gallery .carousel-2 .card {
    width: 100%;
    height: auto;
  }
  .gallery .carousel-2 .card img {
    height: 160px;
    width: auto;
    object-fit: cover;
    border: 5px solid #00ffff;
  }
  .gallery .carousel-2 .card .text {
    font-size: 35px;
  }
  .gallery .carousel-2 .card .text2 {
    font-size: 25px;
  }
  footer {
    font-size: 20px;
    font-weight: 400;
  }
  footer span a {
    font-size: 30px;
  }
  section .title::before {
    opacity: 0;
    width: 0px;
    height: 0px;
  }
  section .title::after {
    opacity: 0;
    font-size: 0px;
  }
}

@media (max-width: 500px) {
  .home {
    background: url("Images/mobile_background.jpg") no-repeat center;
    height: 120vh;
    color: white;
    min-height: 400px;
    background-size: cover;
    background-attachment: fixed;
  }
  .home .home-content .mySign {
    padding: 5px;
    border-spacing: 20px;
  }
  .home .home-content .text-1 {
    left: 1px;
  }
  .home .home-content .text-2 {
    font-size: 50px;
    margin-top: 9px;
    margin-left: -5px;
  }
  .home .home-content .text-3 {
    font-size: 27px;
    margin: 3px;
  }
  .home .home-content a {
    padding: 5px;
  }
  .about .about-content .right .text,
  .skills .skills-content .left .text {
    font-size: 19px;
  }

  .scroll-up-btn {
    right: 15px;
    bottom: 15px;
    height: 38px;
    width: 35px;
    font-size: 23px;
    line-height: 38px;
  }
  .about .title::before {
    bottom: -180px;
  }
  .about .title::after {
    bottom: -200px;
  }
  .projects .title::before {
    bottom: -1230px;
  }
  .projects .title::after {
    bottom: -1245px;
  }
  .skills .title::before {
    bottom: -2360px;
  }
  .skills .title::after {
    bottom: -2375px;
  }
  .experience .title::before {
    bottom: -3200px;
  }
  .experience .title::after {
    bottom: -3215px;
  }
  .gallery .title::before {
    bottom: -2940px;
  }
  .gallery .title::after {
    bottom: -2955px;
  }
  .gallery .carousel-2 .card {
    width: 100%;
    height: auto;
  }
  .gallery .carousel-2 .card img {
    height: 190px;
    width: auto;
    object-fit: cover;
    border: 5px solid #00ffff;
  }
  .gallery .carousel-2 .card .text {
    font-size: 30px;
  }
  .gallery .carousel-2 .card .text2 {
    font-size: 20px;
  }
  footer {
    font-size: 10px;
    font-weight: 300;
  }
  footer span a {
    font-size: 20px;
  }
}
