@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap');

body {
    font-family: "Space Grotesk", sans-serif !important;
    background-color: black !important;
}

html {
  scroll-behavior: smooth;
}

a {
    text-decoration: none !important;
}

/* Bootstrap Classes */
/* Header Classes */
.header-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}
.button {
  width: 180px;
  height: 42px;
  background: #111;
  color: #fff;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

/* Text & icon */
.button .text,
.button .icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s;
}

.button .icon {
  transform: translateY(100%);
}

.button:hover .text {
  transform: translateY(-120%);
}

.button:hover .icon {
  transform: translateY(0);
}

/* Tooltip */
.button::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  background: #fff;
  color: #111;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s;
}

.button:hover::before {
  opacity: 1;
}

.nav-link {
  position: relative;
  padding: 6px 14px;
  overflow: hidden;
}

/* text only */
.nav-text {
  display: inline-block;
  font-weight: 500;
  transition:
    color 0.6s ease,
    transform 0.6s ease,
    letter-spacing 0.6s ease;
  will-change: transform, letter-spacing;
}

/* underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: width 0.6s ease;
}

/* hover effects */
.nav-link:hover .nav-text {
  color: #fff;
  transform: translateY(-1.5px);
  letter-spacing: 1px;
}

.nav-link:hover::after {
  width: 100%;
}

/* Banner Classes */
.banner-section {
    padding: 100px 0 50px 0;
}

.profile-image {
    max-width: 450px;
    border-radius: 50%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.profile-image>img {
    width: 100%;
    object-fit: contain;
    border-radius: 80px;
}

.content h1 {
    font-size: 48px;
}

.btn {
  padding: 15px 30px;
  border: 2px solid #2c2c2c;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  z-index: 1;
  transition: transform 0.3s ease;
}

/* OUTWARD glow */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  transition: transform 0.5s ease;
  z-index: 0;
}

/* expand outward */
.btn:hover::after {
  transform: scale(4);
}

/* hover state */
.btn:hover {
  border-color: #666666;
  background: #292929;
  transform: scale(1.1);
}

.links {
    margin-top: 20px;
}

/* About Us Section */
.about-me {
    padding-bottom: 70px;
}

.tech-used img {
    max-width: 65px;
    object-fit: contain;
}

.child-about-us {
    padding: 20px;
    border-radius: 10px;
}

.tech-used {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 9px;
    background-color: white;
    border-radius: 10px;
}


/* Projects section */
.projects{
    padding-bottom: 50px;
}

.proj {
    border-radius: 10px;
    margin-top: 20px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper2 {
    height: 400px;
    width: 100%;
}

.mySwiper {
    height: 150px;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 150px;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

/* Footer Section */
.footer {
    padding: 50px 0;
}

.footer>div {
    border-radius: 10px;
}

.social-icons>a>i {
    font-size: 32px;
    padding: 8px;
    color: #fff;
    border: 4px solid #fff;
    border-radius: 5px;
}



.social-icons {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 40px;
}

.email,
.email>a {
    font-size: 28px;
    color: #fff;
}

@media screen and (min-width : 992px) {
    .custom-navbar {
        border-radius: 50rem;
    }
}

@media screen and (max-width : 991.98px) {
    .custom-navbar {
        border-radius: 10px;
    }

    .navbar-collapse {
        text-align: center !important;
    }
}

@media screen and (max-width: 1200px) {
  .content h1 {
    font-size: 42px;
  }

  .cmn-head {
    font-size: 36px;
  }

  .cmn-subhead {
    font-size: 26px;
  }

  .social-icons i {
    font-size: 30px;
  }
}

@media screen and (max-width: 992px) {
  .content h1 {
    font-size: 36px;
  }

  .cmn-head {
    font-size: 32px;
  }

  .cmn-subhead {
    font-size: 24px;
  }

  .navbar a,
  .about-me p,
  .content p,
  .tech-used a,
  .btn,
  .email a {
    font-size: 15px;
  }

  .social-icons i {
    font-size: 28px;
  }
}


@media screen and (max-width: 768px) {
  .content h1 {
    font-size: 32px;
  }

  .cmn-head {
    font-size: 28px;
  }

  .cmn-subhead {
    font-size: 22px;
  }

  .navbar a,
  .about-me p,
  .content p,
  .tech-used a,
  .btn,
  .email a {
    font-size: 14px;
  }

  .social-icons i {
    font-size: 24px;
  }

  .social-icons{
    justify-content: start;
    margin-top: 10px;
  }

}

@media screen and (max-width: 576px) {
  .content h1 {
    font-size: 28px;
  }

  .cmn-head {
    font-size: 24px;
  }

  .cmn-subhead {
    font-size: 20px;
  }

  .navbar a,
  .about-me p,
  .content p,
  .tech-used a,
  .btn,
  .email a {
    font-size: 13px;
  }

  .social-icons i {
    font-size: 20px;
  }
}

@media screen and (max-width: 320px) {
  .content h1 {
    font-size: 24px;
  }

  .cmn-head {
    font-size: 20px;
  }

  .cmn-subhead {
    font-size: 18px;
  }

  .navbar a,
  .about-me p,
  .content p,
  .tech-used a,
  .btn,
  .email a {
    font-size: 12px;
  }

  .social-icons i {
    font-size: 18px;
  }

  .btn {
    padding: 6px 16px;
  }

  .email {
    flex-direction: column;
    align-items: start;
    gap: 4px;
  }

  .tech-used img {
    max-width: 50px;
  }
}

@media screen and (max-width: 1024px) {
    .mySwiper2 {
        height: 300px;
    }
    .mySwiper {
        height: 120px;
    }
}


/* Swiper slider responsive */
@media screen and (max-width: 768px) {
    .mySwiper2 {
        height: 250px;
    }
    .mySwiper {
        height: 100px;
    }
}


@media screen and (max-width: 480px) {
    .mySwiper2 {
        height: 180px;
    }
    .mySwiper {
        height: 80px;
    }
}


@media screen and (max-width: 320px) {
    .mySwiper2 {
        height: 150px;
    }
    .mySwiper {
        height: 60px;
    }
}

