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

html {
  scroll-behavior: smooth;
}

/* Hero section border */
.hero-head {
  z-index: 999;
  background-color: #e9e9f0;
  border-bottom: 1px solid #e9e9f0;
  position: sticky;
  top: 0%;
}

/* Left side flex for logo and text */
.head-left-side div {
  display: flex;
  align-items: center;
}

/* Logo image */
.head-left-side img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-right: 8px;
}

/* Heading text */
.head-left-side h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 500;
  margin: 0%;
}

/* Highlighted span in heading */
.head-left-side h3 span {
  color: #0b5ea2;
}

/* Navigation menu list */
.head-right-side ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Menu items */
.head-right-side ul li {
  font-size: clamp(1rem, 2vw, 1.1rem);
  list-style: none;
  font-weight: 500;
}

/* Menu links */
.head-right-side ul li a {
  text-decoration: none;
  color: black;
}

/* Hover effect */
.head-right-side ul li a:hover {
  color: #0b5ea2;
}

/* Icon size */
.icon-brightnes {
  font-size: clamp(1.6rem, 2vw, 2rem);
  /* font-size: 30px; */
  cursor: pointer;
}

/* Sidebar Styling */
.menu-icon {
  font-size: 30px;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 450px;
  /* Hidden by default */
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar .sidebar-header {
  display: flex;
  justify-content: flex-end;
}

.mobile-sidebar .close-btn {
  font-size: 28px;
  cursor: pointer;
}

.mobile-sidebar ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.mobile-sidebar ul li {
  margin-bottom: 15px;
}

.mobile-sidebar ul li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 18px;
}

/* intro-page */
.intro-me {
  color: #0b5ea2;
  font-weight: bold;
}

.hero-para {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  font-weight: 400;
}

.hero-heading {
  font-size: clamp(1.9rem, 5vw, 2.5rem);
  font-weight: 600;
}

#typed-text {
  color: #0b5ea2;
}

.cursor {
  display: inline-block;
  color: #0b5ea2;
  font-weight: bold;
  margin-left: 2px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.bn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #0b5ea2;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 500;
  transition: background-color 0.3s;
}

.bn:hover {
  background-color: #117bd1;
}

@media screen and (min-width: 0px) and (max-width: 425px) {
  .bn {
    width: 100%;
    margin: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.intro-page {
  /* height: 100vh; */
  background-image: url('./assets/abstract-glossy-hexagon-pattern-background_1302-22441.avif');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}

.hero-img {
  background-image: url("./assets/blue-curve-background_361591-1369.avif");
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-img img {
  background-image: url('./assets/web_title_bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* About style */
.about-section {
  background-color: #f9fafb;
}

.about-head {
  /* text-decoration:underline  #0b5ea2; */
  background-image: linear-gradient(to right, #0b5ea2, #1d92ff);
  background-repeat: no-repeat;
  background-size: 16% 4px;
  background-position: 50% 100%;
  padding-bottom: 4px;
  /* color: #0b5ea2; */
  text-align: center;
  font-size: clamp(1.9rem, 5vw, 2.5rem);
  font-weight: 600;
}

.para {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  font-weight: 400;
}

.about-img img {
  border: 5px solid white;
  border-radius: 20px;
}

.about-head span {
  color: #0b5ea2;
}

.about-info h3 span {
  color: #0b5ea2;
}

.about-icon {
  width: 30px;
  height: 30px;
  background-color: #e0e7ff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.about-icon i {
  font-size: 20px;
  color: #0b5ea2;
}

.Location-part {
  padding-left: 150px;
}

@media screen and (min-width: 0px) and (max-width: 425px) {
  .Location-part {
    padding-left: 0px;
  }

  .detail-box {
    margin-bottom: 10px;
  }

  .about-head {
    background-size: 35% 4px;
  }
}

.icon-links {
  display: flex;
}

.icon-links div {
  width: 35px;
  height: 35px;
  background-color: #e0e7ff;
  border-radius: 50px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-links div:hover {
  background-color: #bbc8fa;
}

.icon-links a i {
  font-size: 25px;
  color: #0b5ea2;
}

/* skill  */
#Skill {
  margin-top: 45px !important;
}

.skill-color {
  color: #0b5ea2;
}

.skill-head {
  background: linear-gradient(to right, #0b5ea2, #1d92ff);
  background-repeat: no-repeat;
  background-size: 14% 4px;
  background-position: 50% 100%;
  padding-bottom: 10px;
  text-align: center;
  font-size: clamp(1.9rem, 5vw, 2.5rem);
  font-weight: 600;
}

.skill-box {
  background-color: #eeeeeef1;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.skill-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.range {
  width: 90%;
  background-color: darkgrey;
  height: 10px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.range-inner {
  /* width: 85%; */
  height: 10px;
  background-color: #4f46e5;
}

.skill-intro {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  font-weight: 400;
}

@media screen and (min-width: 0px) and (max-width: 425px) {
  .skill-head {
    background-size: 35% 4px;
  }
}

/* project-section */
.project-section {
  background-color: #f9fafb;
}

.project-head {
  background: linear-gradient(to right, #0b5ea2, #1d92ff);
  background-repeat: no-repeat;
  background-size: 18% 4px;
  background-position: 50% 100%;
  padding-bottom: 10px;
  text-align: center;
  font-size: clamp(1.9rem, 5vw, 2.5rem);
  font-weight: 600;
}

@media screen and (min-width: 0px) and (max-width: 425px) {
  .project-head {
    background-size: 35% 4px;
  }

  .project {
    margin-bottom: 30px;
  }
}

.hover-zoom {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.hover-zoom:hover {
  transform: scale(1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.footer-page {
  /* height: 100vh; */
  background-image: url('./assets/blue-curve-background_361591-1369.avif');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}