* {
  margin: 0;
  padding: 0;

}

body {
  background: linear-gradient(135deg, #000000, #1a0d2e, #2d1b69);

}

.opening_page_cont {
  width: 100%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}

.opening_blocks {
  width: 100%;
}

.landing_page_cont {
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing_blocks {
  width: 50%;
  height: 100%;
  padding-left: 80px;
}

.heading_landing {
  font-size: 100px;
  font-weight: bolder;
}

.sub_heading_landing {
  font-size: 40px;
  font-weight: bold;
  color: rgb(200, 193, 193);
  margin-top: -20px;
}

.sub_sub_heading_landing {
  font-size: 28px;
  font-weight: light;
  color: rgb(153, 150, 150);
  margin-top: 40px;
  width: 85%;
}

.four_opening {
  display: flex;
  justify-content: center;
}

.svg_opening {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}


.one_opening {
  font-size: 190px;
  color: white;
  font-weight: bolder;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 150px;
}

.two_opening {
  font-size: 50px;
  color: rgb(196, 195, 195);
  font-weight: bolder;
  display: flex;
  justify-content: center;
  align-items: center;
}

.block_openiimg {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.block_of_openinng {
  width: 11%;
  height: 70px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  text-decoration: none;
}


.bolck_open_1 {
  background-color: white;
  color: black;

}

.bolck_open_2 {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);

  border: 1.5px solid white;
}


.blocks_landing {
  width: 100%;
  height: 13%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-right: 120px;
  margin-top: 50px;
}

.block_landing {
  width: 40%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.457);
  border-radius: 15px;
  background-color: rgba(54, 53, 53, 0.193);
  display: flex;
  justify-content: center;
  padding-left: 50px;
  flex-direction: column;
}


.uppr_text {
  font-size: 37px;
  color: white;
  font-weight: bold;
}

.lower_text {
  font-size: 23px;
  color: rgb(164, 162, 162);
  font-weight: bold;
}

.uppr_text2 {
  font-size: 34px;
}

.uppr_text1 {
  color: #6eddfc;
}

.uppr_text2 {
  color: #C7A4FF;
}

.uppr_text3 {
  color: #7bfd9e;
}

.three_opening {
  margin-top: 50px;
}

.four_opening {
  margin-top: 100px;
}










.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: #000;
  color: #00ff88;
  text-decoration: none;
  border: 2px solid #00ff88;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow:
    0 0 10px rgba(0, 255, 136, 0.3),
    inset 0 0 10px rgba(0, 255, 136, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
  margin-left: 150px;
}

.download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.download-btn:hover::before {
  transform: translateX(100%);
}

.download-btn:hover {
  box-shadow:
    0 0 20px rgba(0, 255, 136, 0.6),
    0 0 30px rgba(0, 255, 136, 0.4),
    inset 0 0 15px rgba(0, 255, 136, 0.2);
  color: #000;
  background: #00ff88;
  border-color: #00ff88;
  transform: translateY(-2px);
}

.download-btn:active {
  transform: translateY(1px);
}

.download-btn svg {
  filter: drop-shadow(0 0 5px #00ff88);
  transition: all 0.3s ease;
}

.download-btn:hover svg {
  filter: drop-shadow(0 0 8px #000);
  transform: translateY(2px);
}

.glow-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 255, 136, 0.1);
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 5px;
}

.download-btn:hover .glow-effect {
  opacity: 1;
}

.corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #00ff88;
  transition: all 0.3s ease;
}

.corner-tl {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.corner-tr {
  top: -2px;
  right: -2px;
  border-left: none;
  border-bottom: none;
}

.corner-bl {
  bottom: -2px;
  left: -2px;
  border-right: none;
  border-top: none;
}

.corner-br {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

.download-btn:hover .corner {
  width: 15px;
  height: 15px;
  border-color: #00ff88;
  box-shadow: 0 0 8px #00ff88;
}

.pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #00ff88;
  border-radius: 5px;
  animation: pulse 2s infinite;
  opacity: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.1);
    opacity: 0;
  }

  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ff88, transparent);
  transform: translateY(-100%);
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% {
    transform: translateY(-100%);
  }

  50% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(100%);
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: white;
}

.pre_screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  text-align: center;
  font-family: 'Orbitron', monospace;
}


/* Increased HELLO text size */
.hedin_pre_loader {
  font-size: 10rem;
  /* Increased from 5rem */
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #fff;
}

.sub_headin_pre_loader {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.sub_headin_1 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #aaa;
}

.sub_headin_2 {
  font-size: 5.5rem;
  font-weight: 700;
  color: #fff;
}

.sub_headin_3 {
  font-size: 2rem;
  font-weight: 400;
  color: #00FFFF;
  margin-top: 0.5rem;
}

.progress_container {
  width: 300px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress_bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00FFFF, #0080FF);
}

.loading_info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
}

.percentage {
  font-weight: 700;
  color: #00FFFF;
  min-width: 3rem;
}

.loading-text {
  color: #aaa;
}

/* Main content */
#main-content {
  display: none;
  padding: 2rem;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  color: #fff;
}



/* Left Logo */
.logo {
  display: flex;
  align-items: center;
  font-size: 33px;
  font-weight: bold;

}


.logo-icon {
  color: red;
}

/* Center Menu */
.menu {
  display: flex;
  column-gap: 35px;
  /* adjust spacing */
  list-style: none;
  align-items: center;
  align-content: center;
  margin: 0px;
  padding: 0px;
  font-family: "Fredoka", sans-serif;
}

.menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 25px;
  font-weight: 500;
  position: relative;
  /* needed for hover underline */
  transition: color 0.3s;
}

.menu a:hover {
  color: #ffffff;
}

/* Underline effect */
.menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

li {
  display: inline-flex;
  gap: 10px;
}

.contact-btn1 {
  padding: 10px 22px;
  height: 45px;
  width: 180px;
  font-size: 15px;
  border-radius: 25px;
  cursor: pointer;
  border: 2px solid transparent;
  background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
    linear-gradient(45deg, #70e1f5, #ffd194) border-box;
  background-clip: padding-box, border-box;
  color: #fff;
  transition: background 0.3s, color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btnbox {
  display: flex;
  justify-content: center;
  align-content: center;
  column-gap: 20px;

}

.contact-btn1 {
  font-size: 20px;
}

.contact-btn1,
.contact-btn1:hover,
.contact-btn1:focus {
  background-color: transparent !important;
  text-decoration: none !important;
}

.btnbox a::after,
.btnbox a:hover::after {
  width: 0 !important;
  content: none !important;
  color: black !important;
}

.arr_svg {
  position: relative;
  bottom: 1px;
}

.contact-btn1:hover {
  background: linear-gradient(45deg, #70e1f5, #ffd194) padding-box,
    linear-gradient(45deg, #70e1f5, #ffd194) border-box;
  background-clip: padding-box, border-box;
  color: #000;
}

.btn-outline-primary {
  color: white;
  border-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hamburger {
  font-size: 28px;
  cursor: pointer;
  display: none;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  border-radius: 20px;

  background: rgba(255, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  display: flex;
  flex-direction: column;
  padding: 20px;
  transition: right 0.3s ease-in-out;

  z-index: 1000;
}

.sidebar a {
  color: white;
  text-decoration: none;
  padding: 12px 0;
  display: flex;
  gap: 15px;
}

.close-btn {
  font-size: 30px;
  cursor: pointer;
  align-self: flex-end;
}

.social_handels {
  position: relative;
  right: 25px;
  top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: white;
  gap: 10px;
}

.social_handels h6 {
  display: flex;
  justify-content: center;
  position: relative;
  /* gap: 5px; */
  left: 20px;
}

.social_list {
  list-style: none;
  display: flex;
  justify-content: space-around;
  gap: 8px;
}

.skill_main {
  width: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap: 10px; */
}

.skill_head {
  font-size: 60px;
  font-weight: bolder;
}

.skill_sub_head {
  font-size: 20px;
  color: rgb(121, 118, 118);
  font-weight: bolder;
}

.circle_box {
  border: 1px solid rgb(31, 31, 31);
  border-radius: 50%;
  height: 120px;
  width: 120px;
  padding: 10px;
  background-color: rgb(16, 15, 15);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    filter 0.3s ease;
}

.circle_box:hover {
  background-color: white;
  border-color: white;
}

.circle_box:hover svg {
  filter: invert(1);
}

.row1 {
  top: 15px;
}

.row2 {
  top: 20px;
}

.skill_row1 {
  display: flex;
  margin-bottom: 20px;
  gap: 15px;
}

.services_main {
  width: 100%;
  height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.service_head {
  color: white;
  font-size: 110px;
  /* position: relative; */
  font-weight: bolder;
}

.service_sub_head {
  text-align: center;
  font-size: 30px;
  color: gray;
  position: relative;
}

.colo {
  background: linear-gradient(90deg, #ff0033, #3f5efb, #f70334);
  background-clip: text;
  color: transparent;
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate-gradient 2.5s linear infinite;
}

@keyframes animate-gradient {
  to {
    background-position: 200%;
  }
}


.services_card {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: space-around;
  position: relative;
  column-gap: 20px;


}

.sre_card_row1 {
  width: 50%;
  display: flex;
  gap: 20px;
  height: 470px;
  padding-left: 10px;

}

.card1,
.card2,
.card3,
.card4 {
  width: 50%;

}



.sre_card_row2 {
  height: 470px;
  width: 50%;
  display: flex;
  padding-right: 10px;
  gap: 20px;
}


.card_ser {
  height: 100%;
  min-height: 350px;
  /* Ensure consistent height */
  background-color: rgb(36, 36, 36);
  cursor: pointer;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card_ser:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.top_strip {
  width: 100%;

  height: 1%;
  background-image: linear-gradient(45deg, red, blue);
  position: absolute;
  top: 0px;
}

.card_head_ser {
  color: white;
  font-size: 50px;
  font-weight: bolder;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 20px;
  position: relative;
}

.card_lines_ser {
  color: white;
  font-size: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.ser_svg {
  padding-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 20px;
}

.card_ser {
  opacity: 0;
  transform: translateY(200px);

  animation: reveal_card 0.8s ease-out forwards;

  animation-timeline: view();
  animation-range: entry 0% cover 20%;
}

/* delay for each card */
.card1 {
  animation-delay: 0.3s;
}

.card2 {
  animation-delay: 0.6s;
}

.card3 {
  animation-delay: 0.9s;
}

.card4 {
  animation-delay: 1.2s;
}

@keyframes reveal_card {
  from {
    opacity: 0;
    transform: translateY(200px);
  }

  to {
    opacity: 1;
    transform: translateY(-20px);
  }
}

.collab {
  width: 100%;
  height: 600px;
  background-color: white;
  margin-top: 40px;
  padding: 40px;
  font-family: "Poppins", sans-serif;
  display: flex;
}

.collab_txt {
  width: 50%;
  height: 100%;
}

.collab_txt_plain {
  font-size: 70px;
  font-weight: bolder;
}

.collab_txt_color {
  font-size: 70px;
  font-weight: bolder;
}

.collab_txt_small {
  font-family: "Poppins", sans-serif;
  color: rgb(59, 58, 58);
  font-size: 16px;
}

.collab_button {
  border: none;
  width: 330px;
  height: 70px;
  background: linear-gradient(90deg,
      rgb(249, 85, 211),
      rgb(44, 95, 250),
      rgb(94, 203, 246));
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-left: -12px;
}

.button_txt {
  position: absolute;
  margin-right: 80px;
  font-size: 22px;
  color: white;
  font-size: bolder;
}

.call_collb {
  width: 60px;
  height: 60px;
  border-radius: 1000px;

  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 260px;
}

.collab_why {
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      rgb(249, 85, 211),
      rgb(44, 95, 250),
      rgb(94, 203, 246));
  border: 1px solid black;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  border: none;
}

.collab_why_col {
  padding: 20px;
  width: 90%;
  height: 110px;
  background-color: white;
  display: flex;
  border: none;
  align-items: center;
}

.collab_num {
  width: 90px;
  height: 60px;
  border-radius: 100px;
  background-color: rgb(247, 170, 202);
  display: flex;
  align-items: center;
  justify-content: center;
}

.collab_head {
  font-weight: bolder;
  font-size: 20px;
  margin-left: 10px;
}

.collab_sub_head {
  margin-left: 10px;
}

.collab_sub_head_now {
  display: flex;
  flex-direction: column;
}


.container {
  width: 60vw;
  max-width: 1000px;
  min-width: 300px;
  margin: 0 auto;
}

header {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 20px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #666666, transparent);
  margin: 20px auto;
  width: 80%;
}

.projects-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 50px;
}

.project-card {
  background-color: #111111;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
  border: 1px solid #222222;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.project-image {
  width: 100%;
  height: auto;
  background-color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #222222, #333333);
  color: #888888;
}

.project-image-placeholder i {
  font-size: 3rem;
  margin-bottom: 10px;
}

.project-header {
  padding: 25px;
  border-bottom: 1px solid #222222;
}

.project-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.project-description {
  color: #cccccc;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.tech-tag {
  background-color: #222222;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #cccccc;
  border: 1px solid #333333;
}

.project-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.project-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.project-link:hover {
  color: #60a5fa;
}

.project-link i {
  font-size: 0.8rem;
}

.project-body {
  padding: 25px;
}

.tech-stack {
  margin-bottom: 20px;
}

.tech-category {
  margin-bottom: 15px;
}

.tech-category-title {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #aaaaaa;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-item {
  background-color: #222222;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #cccccc;
  border: 1px solid #333333;
}

.project-actions {
  display: flex;
  gap: 15px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.github-btn {
  background-color: #111111;
  color: #ffffff;
  border: 1px solid #444444;
}

.github-btn:hover {
  background-color: #222222;
}

.live-btn {
  background-color: #ffffff;
  color: #000000;
  border: none;
  font-weight: 500;
}

.live-btn:hover {
  background-color: #e0e0e0;
}

.details-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.details-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.view-more {
  text-align: center;
  margin-top: 30px;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background-color: #111111;
  color: #ffffff;
  border: 1px solid #444444;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.view-more-btn:hover {
  background-color: #222222;
}

.headin {
  font-size: 100px;
  font-weight: bolder;
  display: inline;
  color: white;
}


.SUPR_SVG {
  margin-left: 20px;
}


.modal_project {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: none;
}

.win_blur {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.win_dark {
  width: 100%;
  max-width: 400px;
  padding: 30px 20px 20px;
  background-color: #111;
  color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.close_btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}



.open-modal-btn {
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 20px;
}





.scroll_cont {
  overflow: hidden;
  height: 100vh;
  position: relative;
}

.scrolee {
  width: 400vw;
  height: 100%;
  display: flex;
}

.panel {
  /* border: 1px solid white; */
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: bold;
  color: white;
  flex-shrink: 0;
}

.cont_pan {
  width: 100%;
  height: 100%;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  padding: 15px;

}

.panel1 {
  color: white;
}


.upp {
  width: 620px;
  height: 90px;

  border-radius: 15px;
  z-index: 300;
  position: relative;
  top: 5px;
  background-color: #f64f4f;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
  font-size: 50px;
  border: none;
  box-shadow: 15px 14px 0px rgba(0, 0, 0, 0.382);

  margin-left: 100px;
}

.down {

  width: 670px;
  height: 100px;

  border-radius: 15px;
  background-color: #4359ff;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
  font-size: 40px;
  margin-left: 150px;
  border: none;

}

.para_scroll {
  color: white;
  font-size: 45px;
  font-weight: bolder;
  margin-top: 100px;
}

.para_scroll_intro {
  font-size: 25px;
  font-weight: lighter;
  color: rgb(210, 206, 206);
  padding-right: 60px;
  margin-top: 30px;
}

.resume_toto {
  font-size: 32px;
  display: flex;
  flex-direction: column;
  font-weight: lighter;
  color: rgb(210, 206, 206);
  margin-top: 5px;
}

.pan_left {
  width: 960px;
  height: 1000px;
  background: url(/assets/image.png);
  background-position: center;
  border-radius: 30px;

}

.pan_right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.panel2 {
  color: white;
}

.panel3 {
  color: white;
}

.panel4 {
  color: white;
}

.drop {
  display: flex;

}

/* .container {
  padding: 2rem;
} */

/* Dropdown Container */
.dropdown-tech {
  position: relative;
  width: 240px;
}

/* Trigger Button */
.dropdown-tech__trigger {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #1a1a2a 0%, #16213e 100%);
  border: 1px solid rgba(100, 100, 255, 0.2);
  border-radius: 12px;
  padding-left: 16px;
  padding-right: 16px;
  color: #e0e0ff;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dropdown-tech__trigger::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(100, 100, 255, 0.1), transparent);
  transition: left 0.6s;
}

.dropdown-tech__trigger:hover::before {
  left: 100%;
}

.dropdown-tech__trigger:hover {
  border-color: rgba(100, 100, 255, 0.4);
  box-shadow: 0 0 30px rgba(100, 100, 255, 0.1);
  transform: translateY(-1px);
}

.dropdown-tech__trigger:active {
  transform: translateY(0);
}

/* Dropdown Icon */
.dropdown-tech__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-tech__arrow {
  transition: all 0.3s ease;
}

.dropdown-tech.active .dropdown-tech__arrow {
  transform: rotate(180deg);
}

.dropdown-tech.active .dropdown-tech__icon {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-tech__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #1a1a2a 0%, #16213e 100%);
  border: 1px solid rgba(100, 100, 255, 0.2);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.dropdown-tech.active .dropdown-tech__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Dropdown Items */
.dropdown-tech__item {
  position: relative;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
}

.dropdown-tech__item:hover {
  background: rgba(100, 100, 255, 0.1);
  transform: translateX(4px);
}

.dropdown-tech__item:not(:last-child) {
  margin-bottom: 4px;
}

.dropdown-tech__item-text {
  color: #e0e0ff;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.dropdown-tech__item-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(100, 100, 255, 0.2), transparent);
  transition: left 0.6s;
}

.dropdown-tech__item:hover .dropdown-tech__item-glow {
  left: 100%;
}

/* Active state for items */
.dropdown-tech__item.active {
  background: rgba(100, 100, 255, 0.15);
  border-left: 3px solid #6464ff;
}


.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #1e00fd;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 3px solid #1e00fd;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}



.cont_panel2 {

  display: flex;
  flex-direction: column;
  align-items: center;
}


.main_block_panel_2 {
  border: 1px solid gray;
  padding: 35px 75px;
  margin-bottom: 20px;
  border-radius: 30px;
}

.block_pan_1 {
  background: linear-gradient(45deg, #A8FF3E, #32CD32);
  color: black;
  box-shadow: 0px 4px 25px rgba(4, 255, 0, 0.45);
}

.block_pan_2 {
  background: linear-gradient(45deg, #A8FF3E, #32CD32);
  color: black;
  box-shadow: 0px 4px 25px rgba(21, 255, 0, 0.45);
}

.block_pan_arr_1 {
  background-color: #FF4F8B;
  ;
  ;
  color: black;
  box-shadow: 0px 4px 25px rgba(255, 0, 149, 0.45);
}

.block_pan_arr_2 {
  background-color: #FF4F8B;
  ;
  ;
  color: black;
  box-shadow: 0px 4px 25px rgba(255, 0, 166, 0.45);
}

.control_pannl {
  background-color: rgb(255, 132, 0);
  border-radius: 14px;
  box-shadow: 0px 4px 25px rgba(255, 110, 0, 0.45);
  color: black;
}

.some_work {
  color: white;
  font-size: 80px;
  font-weight: bolder;
  text-align: center;
  margin-top: 80px;
}

@media (max-width: 1200px) {
  .container {
    width: 80vw;
  }
}

@media (max-width: 768px) {
  .container {
    width: 90vw;
  }

  h1 {
    font-size: 2rem;
  }

  .project-actions {
    flex-direction: column;
  }

  .action-btn {
    justify-content: center;
  }

  .project-image {
    height: 180px;
  }
}



.contact-container {
  width: 100%;
  /* max-width: 1100px; */
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  background: rgba(20, 20, 20, 0.95);

  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 20, 147, 0.3);
  margin-top: 20px;

}

.contact-info {
  padding: 50px 40px;
  background: linear-gradient(160deg, #0a0a0a, #1a1a2e);
  position: relative;

}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff0077, #ff2e8a, #ff6b9d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #cccccc;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(40, 40, 40, 0.6);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid #ff0077;
  color: white;
  z-index: 100;
}

.contact-item:hover {
  background: rgba(60, 60, 60, 0.6);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(255, 0, 119, 0.2);
}

.contact-item i {
  font-size: 1.2rem;
  width: 45px;
  height: 45px;
  background: rgba(255, 0, 119, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  color: #ff2e8a;
}

.social-links {
  display: flex;
  margin-top: 30px;
  gap: 15px;
}

.social-links a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: rgba(255, 0, 119, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 0, 119, 0.4);
}

.contact-form {
  padding: 50px 40px;
  background: rgba(25, 25, 25, 0.9);

}

.form-header {
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.form-header p {
  color: #aaaaaa;
  font-size: 1.05rem;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #cccccc;
  font-size: 1rem;
}

.form-control {
  width: 100%;
  padding: 16px 18px;
  background: rgba(80, 80, 80, 0.9);
  border: 1px solid #666666;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;

}

input.form-control::placeholder {
  color: rgb(218, 211, 211);
  opacity: 1;
}

textarea.form-control::placeholder {
  color: rgb(207, 202, 202);
  opacity: 1;
}

.submit-btn {
  background: linear-gradient(90deg, #ff0077, #3b82f6);
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: bolder;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 20px rgba(255, 0, 119, 0.3);
  margin-top: 10px;
  z-index: 10;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.success-message {
  display: none;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: 12px;
  padding: 25px;
  margin-top: 20px;
  text-align: center;
}

.success-message i {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 15px;
}

.success-message h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #22c55e;
}

.required {
  color: #ff2e8a;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 119, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 0, 119, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 119, 0);
  }
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 40px 30px;
  }

  .contact-info h2,
  .form-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {

  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }

  .contact-info h2,
  .form-header h2 {
    font-size: 1.8rem;
  }

  .social-links a {
    width: 45px;
    height: 45px;
  }

  .submit-btn {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .contact-info p {
    font-size: 17px;
    width: 85%;
  }

  .contact-details {
    width: 95%;
    font-size: 15px;
  }

  .form-row {
    width: 90%;
  }

  .form-group_2 {
    width: 90%;
  }



  .form-header p {
    font-size: 0.9rem;
    width: 95%;
  }

  .success-message {
    width: 90%;
  }
}


@media (max-width: 370px) {
  .contact-details {
    width: 94%;
    font-size: 12px;
  }
}



.response-time {
  margin-top: 20px;
  padding: 15px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  border-left: 4px solid #3b82f6;
  font-size: 0.95rem;
  color: white;
}

.response-time i {
  margin-right: 10px;
  color: #3b82f6;
}



.img_profile {
  height: 90px;
}


.panel_wala2 {
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;

}

.template_about {
  width: 100%;
  justify-self: center;
  height: 100%;
  border: 1px solid rgb(88, 86, 86);
  padding: 50px;
  border-radius: 30px;
  background-color: rgb(13, 13, 13);
  box-shadow: 0 0 25px rgba(0, 136, 255, 0.8),
    0 0 60px rgba(0, 136, 255, 0.4);

}

.education_block {
  width: 100%;
  height: 350px;
  display: flex;
  justify-self: center;
  gap: 30px;

}


.edu-card {
  background: #0f0f0f;
  padding: 26px;
  border-radius: 18px;
  width: 32.677%;
  height: 97%;
  color: #fff;
  border: 1px solid rgba(0, 255, 255, 0.08);
  box-shadow: 0px 0px 22px rgba(0, 255, 255, 0.06),
    inset 0px 0px 12px rgba(255, 255, 255, 0.04);
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.edu-card h2 {
  color: #00aaff;
  font-size: 1.7rem;
  margin-bottom: 14px;
  font-weight: 600;
}

.edu-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 20px;
  text-align: center;
}

.edu-icon {
  font-size: 26px;
  color: #00aaff;
}

.details {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  font-size: 1.3rem;

}

.year {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.edu-card:hover {
  transform: translateY(-4px);
  transition: 0.25s;
  box-shadow: 0px 0px 28px rgba(0, 170, 255, 0.25);
}


.profile-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 30px;
  background: #0d0d0d;
  padding: 15px;
  border-radius: 12px;
  font-size: 25px;
  border: 1px solid white;
}

.left-info {
  width: 60%;
}

.left-info h2 {
  font-weight: bolder;
}

.sub-title {
  color: #ccc;
  margin-left: 35px;
  margin-bottom: 15px;
  font-weight: lighter;
  font-size: 30px;
}


.right-card {
  width: 40%;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg,
      rgba(0, 132, 255, 0.3),
      rgba(0, 212, 255, 0.18),
      rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  font-weight: lighter;
}

.ps_right {
  font-size: 30px;
  font-weight: bolder;
  color: #00aaff;
  margin-bottom: 8px;

}

.contact-row {
  padding-left: 80px;
}

.sub_unit_title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: lighter;
  font-size: 30px;
}

.sub_unit_title_mobile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: lighter;
  font-size: 30px;
}

.para_right {
  font-size: 30px;
  color: #d7d7d7;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.skill-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 200, 0.25);
  padding: 25px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.skill-block:hover {
  border-color: rgba(0, 255, 200, 0.5);
  transform: translateY(-4px);
}

.skill-block h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.skill-block ul {
  margin: 0;
  padding-left: 18px;
}

.total_res {
  width: 100%;
  height: 100%;
  border: 1px solid white;
}

.skill_table_pro {
  display: flex;
  flex-direction: row;
}

.uping_y_2 {
  margin-top: 10px;
  font-size: 20px;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;

}



.skill_ul_head {
  display: flex;
  flex-direction: row;
  color: #00aaff;
  margin-bottom: 10px;
}

.skill_table_pro li {
  display: flex;
  flex-direction: row;
  margin-left: 15px;
}

.skill_pro {
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;

}


.skill_pro:hover {
  background-color: rgba(33, 32, 32, 0.793);
  box-shadow: 0px 0px 22px rgb(0, 140, 255);
  transition: all 0.5s;
}

.skill_pro_row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.link_edu_block {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-content: center;
  column-gap: 30px;
  margin-top: 5px;

}

.block_link {
  color: white;
  border: 1px solid rgb(91, 88, 88);
  font-weight: lighter;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  padding: 20px;
  border-radius: 20px;
  cursor: pointer;
  height: 70px;
  width: 180px;
}

.header_panel {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.block_link:hover {
  color: #00aaff;
  background-color: rgba(33, 32, 32, 0.793);
  box-shadow: 0px 0px 22px rgb(0, 140, 255);
  font-size: 30px;
  transition: all 0.5s;
}

.link_edu_block a {
  text-decoration: none;
  color: inherit;

}


.header_res {
  font-size: 55px;
  display: inline-flex;
  align-items: center;
  font-weight: bolder;
}



.header_res_mobile {
  font-size: 55px;
  display: inline-flex;
  align-items: center;
  font-weight: bolder;
}


.nakuu {
  display: inline-flex;
  align-items: center;
  margin-top: 5px;
}

.left_wala_name {
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 55%;
  height: 99%;
  border-radius: 12px;
  border: 1px solid white;
  text-align: start;
}

.profile_cont {
  width: 100%;
  height: 60%;
  display: flex;
  flex-direction: row;
  flex-direction: row;
  align-items: center;
  padding-top: 60px;
  margin-top: 10px;
}


.right_wala_name {
  height: 100%;
  width: 45%;
  border: 1px solid;
  display: flex;
  flex-direction: row;
  padding: 0;
  gap: 10px;
  border: none;
  padding: 10px;
}

.skills_block_new {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.block_of_edu {
  height: 50%;
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  padding-left: 30px;
  flex-direction: column;
  box-shadow: 0px 0px 22px rgba(0, 255, 255, 0.06),
    inset 0px 0px 12px rgba(255, 255, 255, 0.04);
}

.block_of_edu:hover {
  transform: translateY(-4px);
  transition: 0.25s;
  box-shadow: 0px 0px 28px rgba(0, 170, 255, 0.25);
}

.headi_edu_col {
  font-size: 35px;
  font-weight: bolder;
  margin-bottom: 10px;
  display: inline-flex;

  align-items: center;
  color: #00aaff;
  display: inline-flex;
}


.techno_skills_proper {
  font-size: 27px;
  display: inline-flex;
  gap: 5px;
  cursor: pointer;
  padding-left: 10px;
}

.techno_skills_proper:hover {
  color: aqua;
  transform: scale(1.05);
  transition: all 0.3s;
}

.known_si {
  display: flex;
  flex-direction: column;
  margin-left: 25px;
  gap: 5px;
}

.temp_2 {
  padding: 60px;
}

.pannel_2_block_head {
  font-size: 40px;
}

.edu-row {
  display: flex;
  margin-top: 30px;
}

.header_panel {
  margin-bottom: 50px;
}



.code-editor-container {
  width: 90%;
  max-width: 1000px;
  background: #252526;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid #3e3e42;
}

/* Macbook Top Bar */
.mac-top-bar {
  background: #2d2d2d;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid #3e3e42;
}

.window-controls {
  display: flex;
  gap: 8px;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control-dot.close {
  background: #ff5f57;
}

.control-dot.minimize {
  background: #ffbd2e;
}

.control-dot.maximize {
  background: #28ca42;
}

/* Editor Header */
.editor-tabs-container {
  background: #2d2d2d;
  padding: 0;
  border-bottom: 1px solid #3e3e42;
}

.tab-navigation {
  display: flex;
  background: #1e1e1e;
}

.code-tab {
  padding: 12px;
  background: #2d2d2d;
  border-right: 1px solid #1e1e1e;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: white;
}

.code-tab.active-tab {
  background: #1e1e1e;
  color: #ffffff;
  border-bottom: 2px solid #007acc;
}

.code-tab:hover:not(.active-tab) {
  background: #3c3c3c;
}

.tab-icon {
  width: 16px;
  height: 16px;
  margin-bottom: 15px;
  margin-right: 10px;
}

/* Editor Body */
.editor-main-body {
  display: flex;
  height: 500px;
}

.tools-panel {
  width: 60px;
  background: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  gap: 15px;
}

.tool-item {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-bottom: 10px;
}

.tool-item:hover {
  opacity: 1;
}

.editor-workspace {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.line-counter {
  background: #1e1e1e;
  padding: 15px 10px;
  border-right: 1px solid #3e3e42;
  text-align: right;
  color: #6e7681;
  user-select: none;
  min-width: 50px;
}

.code-display-area {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.code-text-container {
  flex: 1;
  padding: 15px;
  background: #1e1e1e;
  overflow-y: auto;
  line-height: 1.5;
}

.file-code-content {
  display: none;
}

.file-code-content.show-content {
  display: block;
}

/* Syntax Highlighting */
.code-keyword {
  color: #569cd6;
}

.code-function {
  color: #dcdcaa;
}

.code-string {
  color: #ce9178;
}

.code-comment {
  color: #6a9955;
}

.code-variable {
  color: #9cdcfe;
}

.code-number {
  color: #b5cea8;
}

.code-operator {
  color: #d4d4d4;
}

.code-tag {
  color: #569cd6;
}

.code-attribute {
  color: #9cdcfe;
}

.code-property {
  color: #9cdcfe;
}

.code-selector {
  color: #d7ba7d;
}

.code-value {
  color: #ce9178;
}

.code-unit {
  color: #b5cea8;
}

.scroll_section_mobile {
  display: none;
  width: 100%;
  color: white;
}

.uparinfo_temp,
.nicheinfo_temp {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  padding: 15px;
}

.nicheinfo_temp {
  flex-direction: column;
}

.profile_cont_mobile {
  width: 100%;
  height: 65%;
  display: flex;
  flex-direction: row;
  flex-direction: row;
  align-items: center;
  padding-top: 20px;
  margin-top: 10px;
}

.right_wala_name_mobile {

  height: 100%;
  width: 45%;
  border: 1px solid;
  display: flex;
  flex-direction: row;
  padding: 0;
  gap: 10px;
  border: none;
  padding: 10px;
}

.block_of_edu_mobile {
  height: 50%px;
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  padding-left: 30px;
  flex-direction: column;
  padding: 10px;
  box-shadow: 0px 0px 28px rgba(0, 170, 255, 0.25);
}

.skills_block_new_mobile {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sub-title_mobile {
  color: #ccc;
  margin-left: 30px;
  margin-bottom: 15px;
  font-weight: lighter;
  font-size: 20px;
}

.block_link_mobile {
  color: white;
  border: 1px solid rgb(91, 88, 88);
  font-weight: lighter;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  border-radius: 20px;
  cursor: pointer;
  height: 60px;
  width: 170px;

}

.resume_toto_mobile {
  font-size: 29px;
  display: flex;
  flex-direction: column;
  font-weight: lighter;
  color: rgb(210, 206, 206);
  margin-top: 5px;
}


.no-scroll {
  overflow: hidden;
  /* Hides scrollbars and prevents scrolling */
  height: 100%;
  position: fixed;
  width: 100%;
  background-color: black;
}

.message {
  padding: 12px;
  margin: 10px 0;
  border-radius: 5px;
  font-size: 14px;
}

.message.error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.success-message {
  display: none;
  text-align: center;
  padding: 30px;
  background-color: rgba(34, 197, 94, 0.1);
  border-radius: 8px;
  margin-top: 20px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}


@media only screen and (max-width: 2100px) {

  .para_right {
    font-size: 22px;
  }

  .para_scroll {
    margin-top: 60px;
  }

  .some_work {
    margin-top: 60px;
  }

  .profile_cont {
    padding-top: 20px;
  }

}

@media only screen and (max-width: 1900px) {

  .sub_heading_landing {
    font-size: 35px;
  }

  .pannel_2_block_head {
    font-size: 30px;
  }

  .some_work {
    font-size: 70px;
  }

  .para_scroll {

    font-size: 40px;
  }

  .upp {
    margin-left: 50px;
  }

  .down {
    margin-left: 100px;
  }


  .link_edu_block {
    margin-top: 15px;
  }

  .one_opening {
    font-size: 170px;
  }

  .two_opening {
    font-size: 40px;
  }



}

@media only screen and (max-width: 1800px) {


  .resu_profile_sec {
    padding: 10px;
  }

  .block_landing {
    padding-left: 30px;
  }
}

@media only screen and (max-width: 1750px) {
  .upp {
    margin-left: 30px;
  }

  .down {
    margin-left: 120px;
  }

  .down {
    width: 570px;
  }

  .some_work {
    font-size: 65px;
  }

  .profile_cont {
    padding-top: 20px;
  }

  .one_opening {
    font-size: 120px;
  }
}

@media only screen and (max-width: 1720px) {

  .resume_toto {
    font-size: 29px;
  }

  .one_opening {
    margin-top: 80px;
  }

  .four_opening {
    margin-top: 80px;
  }
}

@media only screen and (max-width: 1640px) {
  .menu a {
    font-size: 20px;
  }

  .dropdown-tech__text {
    font-size: 20px;
  }

  .menu {
    column-gap: 30px;
  }

  .some_work {
    font-size: 55px;
  }

}

@media only screen and (max-width: 1630px) {



  .nakuu svg {
    width: 10px;
    height: 10px;
  }

  .header_panel {
    gap: 0px;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .block_about {
    margin-bottom: 10px;
    font-size: 3.5rem;
  }





  .edu-card {
    padding: 20px;
  }


  .header_res {
    font-size: 40px;
  }

  /* 
  .para_right {
    font-size: 25px;
  } */

  .headi_edu_col {

    font-size: 27px;
    margin-top: 20px;
  }

  .techno_skills_proper {
    font-size: 26px;
    margin-left: 10px;
  }

  .techno_skills_proper svg {
    height: 33px;
    width: 33px;
  }

  /* .left_wala_name {
    padding-top: 0px;
  } */

  .template_about {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
  }

  .link_edu_block {
    margin-top: 50px;
  }


}

@media only screen and (max-width: 1600px) {


  .card_head_ser {
    font-size: 40px;
  }

  .skill_head {
    font-size: 50px;
  }

  .skill_main h5 {
    font-size: 20px;
  }

  .collab_txt_plain {
    font-size: 60px;
  }

  .collab_txt_color {
    font-size: 60px;
  }

  .edu-row {
    margin-top: 10px;
  }

  .upp {
    width: 480px;
    font-size: 40px;

  }

  .down {
    margin-left: 90px;
  }

  .down {
    width: 470px;
    font-size: 35px;
  }


  .known_si {
    margin-left: 10px;
  }

  .heading_landing {
    font-size: 97px;
  }

  .sub_sub_heading_landing {
    margin-top: 20px;
  }

  .blocks_landing {
    margin-top: 50px;
  }

  .sub_heading_landing {
    font-size: 29px;
  }

  .heading_landing {
    font-size: 90px;
  }
}


@media only screen and (max-width: 1500px) {
  .service_head {
    font-size: 90px;
  }

  .header_panel {
    font-size: 55px;
    gap: 0px;
  }

  .header_panel img {
    height: 75px;
  }

  .one_opening {
    font-size: 100px;
    margin-top: 100px;
  }

  .four_opening {
    margin-top: 80px;
  }


  .block_of_openinng {

    font-size: 20px;
  }


  .heading_landing {
    font-size: 85px;
  }

  .landing_blocks {
    padding-left: 40px;
  }

  .uppr_text {
    font-size: 30px;
  }

  .lower_text {
    font-size: 20px;
  }

  .block_landing {
    padding-left: 10px;
  }

}

@media only screen and (max-width: 1450px) {

  .pan_right {
    padding: 15px;
  }



  .ps_right {
    font-size: 20px;
  }

  .profile_cont {
    height: 55%;
  }
}

@media only screen and (max-width: 1350px) {
  .card_head_ser {
    font-size: 35px;
  }

  .card_lines_ser {
    font-size: 18px;
  }

  .skill_head {
    font-size: 45px;
  }

  .skill_main h5 {
    font-size: 20px;
  }

  .collab_button {
    width: 300px;
    height: 60px;
  }

  .button_txt {
    margin-right: 40px;
    font-size: 20px;
  }

  .call_collb {
    width: 50px;
    height: 50px;
    margin-left: 240px;
  }

  .collab_txt_plain {
    font-size: 55px;
  }

  .collab_txt_color {
    font-size: 55px;
  }

  .service_head {
    font-size: 75px;
  }

  .circle_box {
    height: 90px;
    width: 90px;
  }



  .edu-card {
    padding: 15px;
  }

  .sub_heading_landing {
    font-size: 23px;
    margin-top: 5px;
  }
}

@media only screen and (max-width: 1300px) {
  .resu_profile_sec {
    padding: 10px;
  }

  .details {
    margin-bottom: 0px;
    font-size: 1.0rem;
  }

  .year {
    font-size: 1.0rem;
  }


  .scroll_cont {
    display: none;
  }


  .heading_landing {
    font-size: 75px;
  }

  .sub_sub_heading_landing {
    font-size: 25px;

  }

  .scroll_section_mobile {
    display: block;
  }

  .download-btn {
    margin-left: 550px;
  }

  .link_edu_block {
    column-gap: 10px;
  }

  .contact-row {
    padding-left: 40px;
  }

  .header_panel {
    width: 100%;
  }

}


@media only screen and (max-width: 1250px) {
  nav {
    padding: 15px 10px;
  }

  .skill_head {
    font-size: 35px;
  }

  .skill_sub_head {
    font-size: 16px;
  }

  .collab_txt_plain {
    font-size: 50px;
  }

  .collab_txt_color {
    font-size: 50px;
  }




  .block_of_openinng {
    width: 14%;
    height: 65px;
    font-size: 18px;
  }


  .download-btn {
    margin-left: 500px;
  }

  .cursor {
    display: none;
  }

  .cursor-follower {
    display: none;
  }

}

@media only screen and (max-width: 1200px) {
  .menu {
    column-gap: 30px;
  }

  .contact-btn1 {
    height: 40px;
  }

  .card_head_ser {
    font-size: 30px;
  }

  .dropdown-tech {

    width: 200px;
  }

  .upper_text {
    font-size: 25px;
  }

  .lower_text {
    font-size: 15px;
  }

  .heading_landing {
    font-size: 65px;
  }

  .one_opening {
    margin-top: 50px;
  }

  .four_opening {
    margin-top: 50px;
  }

  .opening_page_cont {
    margin-bottom: 50px;
  }

  .download-btn {
    margin-left: 400px;
  }
}

@media only screen and (max-width: 1100px) {

  .download-btn {
    margin-left: 350px;
  }

  .sub_headin_3 {
    font-size: 1.1rem;
  }

  .sub_headin_2 {
    font-size: 3.5rem;
  }

  .hedin_pre_loader {
    font-size: 5.5rem;
    /* Adjusted for mobile */
  }

  .menu {
    column-gap: 25px;
  }

  .menu a {
    font-size: 16px;
  }

  .contact-btn1 {
    height: 40px;
    width: 160px;
  }

  .dropdown-tech__text {
    font-size: 16px;
  }

  .dropdown-tech {
    width: 160px;
  }

  .btn-outline-primary {
    height: 35px;
  }

  .btnbox {
    column-gap: 10px;
  }

  .logo {
    font-size: 27px;
  }

  .services_card {
    height: 700px;
    flex-direction: column;
  }

  .sre_card_row1 {
    width: 100%;
    padding-right: 10px;
    margin-bottom: 20px;
  }

  .sre_card_row2 {
    padding-left: 10px;
    width: 100%;
  }

  .card3 {
    width: 49%;
    padding-bottom: 10px;
  }

  .card1 {
    padding-bottom: 10px;
  }

  .card2 {
    padding-bottom: 10px;
  }


  .collab_why {
    padding: 0px;
  }

  .SUPR_SVG {
    height: 90px;
    width: 90px;
  }

  .services_main {
    height: 1050px;

  }

  .skill_row1 {
    margin-bottom: 15px;
  }


  .one_opening {
    font-size: 90px;

  }

  .two_opening {
    font-size: 30px;
  }

  .heading_landing {
    font-size: 60px;
  }

  .sub_heading_landing {
    font-size: 20px;
  }

  .uppr_text {
    font-size: 20px;
  }

  .lower_text {
    font-size: 13px;
  }


  .sub_sub_heading_landing {
    font-size: 20px;

  }
}




@media only screen and (max-width: 1000px) {
  .block_link_mobile {

    width: 150px;
  }

  .resume_toto_mobile {
    font-size: 20px;
  }

  .download-btn {
    margin-left: 250px;
  }

  .sub_unit_title_mobile {
    font-size: 20px;
  }

  .sub_title_mobile {
    font-size: 20px;
  }

}

@media only screen and (max-width: 980px) {


  .btn-outline-primary {
    width: 85px;
    padding: 0px;
    font-size: 15px;
  }

  .btnbox {
    column-gap: 15px;
  }

  .dropdown-tech__trigger {
    height: 40px;
  }

  .menu {
    column-gap: 25px;
  }


  .collab_txt_small {
    font-size: 14px;
  }



  .service_head {
    font-size: 60px;
  }

  .sub_heading_landing {
    font-size: 20px;
  }



}

@media only screen and (max-width: 964px) {



  .right-card {
    padding: 10px;
  }
}

@media only screen and (max-width: 950px) {
  .skill_head {
    font-size: 30px;
  }

  .skill_sub_head {
    font-size: 13px;
  }

  .service_sub_head {
    font-size: 17px;
  }



  .collab {
    padding: 20px;
    flex-direction: column;
    height: 1100px;
  }

  .collab_txt {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .collab_why {
    width: 100%;
    height: 50%;
  }

  .collab_txt_plain {
    font-size: 70px;
    font-weight: bolder;
    text-align: center;
    margin-bottom: -25px;
  }

  .collab_txt_color {
    font-size: 70px;
    font-weight: bolder;
    text-align: center;
  }

  .collab_txt_small {
    font-size: 20px;
    text-align: center;
  }

  .collab_button {
    width: 330px;
    height: 70px;
  }

  .button_txt {
    font-size: 22px;
  }

  .call_collb {
    width: 60px;
    height: 60px;
    margin-left: 260px;
  }

  .SUPR_SVG {
    height: 80px;
    width: 80px;
  }

  .one_opening {
    font-size: 70px;
  }

  .heading_landing {
    font-size: 50px;
  }

  .sub_heading_landing {
    font-size: 16px;
  }


  .one_opening {
    margin-top: 10px;
  }

  .four_opening {
    margin-top: 150px;
  }

  .opening_page_cont {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 940px) {
  .uppr_text {
    font-size: 18px;
  }

  .lower_text {
    font-size: 12px;
  }

  .download-btn {
    margin-left: 200px;
  }
}

@media only screen and (max-width: 900px) {
  .logo {
    font-size: 20px;
  }

  .menu {
    column-gap: 16px;
  }

  .collab_why_col {
    padding: 10px;
  }

  .circle_box {
    height: 70px;
    width: 70px;
  }

  .skill_row1 {
    gap: 10px;
  }

  .two_opening {
    font-size: 25px;
  }



  .block_landing {
    width: 50%;
  }

  .block_link_mobile {
    width: 130px;
  }


  .download-btn {
    margin-left: 150px;
  }
}



@media only screen and (max-width: 850px) {
  .sub-title_mobile {
    margin-left: 5px;
  }

  .contact-row {
    padding-left: 20px;
  }

  .download-btn {
    margin-left: 100px;
  }
}

@media only screen and (max-width: 800px) {
  .menu {
    column-gap: 15px;
  }

  .logo {
    font-size: 15px;
  }

  .logo_nav {
    height: 30px;
    width: 30px;
  }

  .circle_box {
    height: 60px;
    width: 60px;
  }

  .skill_head {
    font-size: 25px;
  }

  .skill_sub_head {
    font-size: 10px;
  }

  .service_head {
    font-size: 40px;
  }

  .collab_txt_plain {
    font-size: 60px;
  }

  .collab_txt_color {
    font-size: 60px;
  }

  .SUPR_SVG {
    height: 50px;
    width: 50px;
    margin-left: 5px;
  }

  .skill_row1 {

    margin-bottom: 10px;

  }

  .block_of_openinng {
    font-size: 14px;
  }

  .landing_page_cont {
    flex-direction: column;
  }

  .landing_blocks {
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .blocks_landing {
    padding-right: 20px;
    padding-left: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .opening_page_cont {
    margin: 0;
  }


  .heading_landing {
    font-size: 100px;
    font-weight: bolder;
  }

  .landing_blocks {
    width: 100%;

  }

  .sub_heading_landing {
    font-size: 25px;
    font-weight: bold;
    color: rgb(200, 193, 193);
    margin-top: -20px;
  }



  .one_opening {
    margin-top: 100px;
  }

  .four_opening {
    margin-top: 150px;
  }

  .opening_page_cont {
    margin-bottom: 60px;
  }

  .landing_page_cont {
    gap: 35px;
    height: 130vh;
  }

  .opening_page_cont {
    height: 70vh;
  }

  .collab {
    margin-top: 200px;
  }

  .profile_cont_mobile {
    flex-direction: column;
  }

  .left_wala_name {
    width: 100%;
  }

  .right_wala_name_mobile {
    width: 100%;
  }

  .download-btn {
    margin-left: 70px;
  }

  .right-card {
    display: none;
  }

  .left-info {
    width: 100%;
  }

  .download-btn {
    width: 300px;
    font-size: 13px;
    margin-left: 190px;
  }

  .block_about {
    font-size: 40px;
  }

  .header_panel img {
    height: 55px;
    width: 90px;
  }
}

@media only screen and (max-width: 750px) {
  .contact-btn1 {
    width: 90px;
    padding: 0px;
    font-size: 13px;
    margin-left: 15px;
  }

  .btn-outline-primary {
    width: 70px;
    padding: 0px;
    font-size: 13px;
  }

  .btnbox {
    column-gap: 10px;
  }

  .menu {
    column-gap: 10px;
  }

  .a_menu {
    font-size: 8px;
  }

  .arr_svg {
    bottom: 2px;
    height: 16px;
    width: 16px;
  }

  .service_head {
    font-size: 45px;
  }

  .service_sub_head {
    font-size: 16px;
  }

  .collab {
    height: 1000px;
  }

  .collab_txt {
    height: 47%;
  }

  .collab_why {
    height: 53%;
  }


  .collab_txt_small {
    font-size: 20px;
    text-align: center;
  }

  .services_card {
    height: 800px;
  }

  .one_opening {
    font-size: 55px;
  }

  .two_opening {
    font-size: 20px;
  }

  .heading_landing {
    font-size: 90px;
  }

  .download-btn {
    margin-left: 150px;
  }
}

@media only screen and (max-width: 700px) {
  .menu {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .btnbox {
    column-gap: 20px;
  }

  .btn-outline-primary {
    width: 90px;
    padding: 10px;
    font-size: 15px;
  }

  .contact-btn1 {
    width: 120px;
    padding: 10px;
    font-size: 15px;
  }

  .logo {
    font-size: 20px;
  }

  .skill_head {
    font-size: 20px;
  }

  .skill_sub_head {
    font-size: 9px;
  }

  .collab_txt_plain {
    font-size: 50px;
  }

  .collab_txt_color {
    font-size: 50px;
  }

  .services_main {
    height: 1150px;
  }


  .sub_headin_3 {
    font-size: 1rem;
  }

  .sub_headin_2 {
    font-size: 2.5rem;
  }

  .hedin_pre_loader {
    font-size: 4.5rem;
    /* Adjusted for mobile */
  }

  .block_of_openinng {
    width: 16%;
    height: 55px;
  }


  .heading_landing {
    font-size: 80px;
  }

  .download-btn {
    padding: 10px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .uparinfo_temp {
    padding: 10px;
  }


}

@media only screen and (max-width: 650px) {
  .service_head {
    font-size: 40px;
  }

  .service_sub_head {
    font-size: 14px;
  }

  .services_card {
    height: 1000px;
  }

  .collab {
    height: 900px;
  }

  .collab_txt {
    height: 45%;
  }

  .collab_why {
    height: 59%;
  }


  .collab_txt_small {
    font-size: 16px;
    text-align: center;
  }

  .collab_button {
    width: 300px;
    height: 60px;
  }

  .button_txt {
    margin-right: 40px;
    font-size: 20px;
  }

  .call_collb {
    width: 50px;
    height: 50px;
    margin-left: 240px;
  }

  .collab_button {
    margin-top: 0px;
  }

  .heading_landing {
    font-size: 70px;
  }

  .download-btn {
    margin-left: 100px;
  }

  .header_res_mobile {
    font-size: 25px;
  }
}

@media only screen and (max-width: 600px) {
  .svG_Ser {
    height: 70px;
    width: 70px;
  }

  .card_head_ser {
    padding: 20px;
  }

  .card_lines_ser {
    padding: 20px;
  }

  .service_head {
    font-size: 35px;
  }

  .service_sub_head {
    font-size: 13px;
  }

  .collab_txt_plain {
    font-size: 45px;
  }

  .collab_txt_color {
    font-size: 45px;
  }

  .block_of_openinng {
    width: 20%;
    height: 53px;
    font-size: 14px;
  }

  .sub_heading_landing {
    font-size: 20px;
  }

  .download-btn {
    margin-left: 50px;
  }

}

@media only screen and (max-width: 570px) {

  .download-btn {
    width: 200px;
    font-size: 10px;
    padding: 0;
  }

  .block_about {
    font-size: 35px;
  }

  .header_panel img {
    height: 50px;
    width: 65px;
  }


}

@media only screen and (max-width: 550px) {
  .skill_head {
    font-size: 17px;
  }

  .skill_sub_head {
    font-size: 8px;
  }

  .collab {
    height: 850px;
  }

  .collab_txt {
    height: 40%;
  }

  .collab_why {
    height: 60%;
  }


  .collab_txt_small {
    font-size: 15px;
  }

  .circle_box {
    height: 50px;
    width: 50px;
    padding: 4px;
  }

  .collab_txt_plain {
    font-size: 40px;
    margin-bottom: -15px;
  }

  .collab_txt_color {
    font-size: 40px;
  }

  .skill_row1 {
    gap: 5px;
  }

  .one_opening {
    font-size: 45px;
  }

  .heading_landing {
    font-size: 60px;
  }

  .sub_heading_landing {
    font-size: 20px;
  }


}

@media only screen and (max-width: 500px) {
  .row1 {
    top: 5px;
  }

  .row2 {
    top: 10px;
  }

  .svG_Ser {
    height: 60px;
    width: 60px;
  }

  .ser_svg {
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 0px;
  }




  .service_head {
    justify-self: center;
    font-size: 30px;
  }

  .one_opening {
    font-size: 35px;

  }

  .two_opening {
    font-size: 15px;
  }


  .block_of_openinng {
    width: 20%;
    height: 35px;
    font-size: 10px;
  }

  .heading_landing {
    font-size: 55px;
  }

  .sub_heading_landing {
    font-size: 16px;
    margin-top: 8px;
  }


  .download-btn {
    width: 180px;
    font-size: 9px;
    margin-left: 40px;
    height: 45px;
  }

  .sub_unit_title_mobile {
    font-size: 15px;
  }

  .sub_unit_title_mobile {
    font-size: 15px;
  }

  .resume_toto_mobile {
    font-size: 15px;
  }

  .block_link_mobile {
    width: 120px;
    padding: 10px;
  }


  .block_about {
    font-size: 30px;
  }

  .header_panel img {
    height: 45px;
    width: 60px;
  }

  .uparinfo_temp {
    padding: 5px;
  }
}

@media only screen and (max-width: 470px) {
  .collab {
    height: 800px;
  }

  .collab_txt {
    height: 38%;
  }

  .collab_why {
    height: 63%;
  }



  .collab_button {
    width: 230px;
    height: 53px;
  }

  .button_txt {
    margin-right: 0px;
    margin-left: -40px;
    font-size: 15px;
  }

  .call_collb {
    width: 45px;
    height: 45px;
    margin-left: 175px;
  }

  .collab {
    padding: 10px;
  }

  .collab_why_col {
    width: 95%;
  }

  .heading_landing {
    font-size: 55px;
  }

  .collab_txt_small {
    font-size: 12px;
  }
}


@media only screen and (max-width: 450px) {
  .card_head_ser {
    padding: 10px;
  }

  .card_lines_ser {
    padding: 10px;
  }

  .skill_head {
    font-size: 15px;
  }

  .skill_sub_head {
    font-size: 7px;
  }

  .sre_card_row1 {
    flex-direction: column;
    height: 1000px;
  }

  .sre_card_row2 {
    flex-direction: column;
    height: 1000px;
  }

  .services_main {
    height: 2000px;
    margin-top: -400px;
    margin-bottom: 60px;
  }

  .card1 {
    width: 100%;
  }

  .card2 {
    width: 100%;
  }

  .card3 {
    width: 100%;
  }

  .card4 {
    width: 100%;
  }

  .service_sub_head {
    font-size: 10px;
  }

  .services_card {
    padding-left: 20px;
    padding-right: 20px;
  }


  .collab_txt_plain {
    font-size: 30px;

  }

  .collab_txt_color {
    font-size: 30px;
  }

  .service_head {
    font-size: 25px;
  }

  .circle_box {
    height: 45px;
    width: 45px;
    padding: 4px;
  }

  .skill_row1 {
    margin-bottom: 10px;
  }

  .heading_landing {
    font-size: 50px;
  }

  .landing_blocks {
    padding-left: 10px;
  }

  .block_link_mobile {
    width: 100px;
    font-size: 15px;
  }


}

@media only screen and (max-width: 400px) {
  .contact-btn1 {
    width: 70px;
    padding: 4px;
    font-size: 10px;
  }

  .btn-outline-primary {
    width: 60px;
    height: 30px;
    padding: 4px;
    font-size: 10px;
  }

  .btnbox {
    column-gap: 10px;
    justify-content: flex-end;
  }

  .collab_head {
    font-size: 15px;
  }

  .collab_sub_head {
    font-size: 14px;
  }

  .skill_head {
    font-size: 13px;
  }

  .skill_sub_head {
    font-size: 7px;
  }


  .one_opening {
    font-size: 30px;

  }

  .collab {
    margin-top: 300px;
  }

  .one_opening {
    margin-top: 50px;
  }

  .four_opening {
    margin-top: 50px;
  }

  .opening_page_cont {
    margin-bottom: 50px;
  }

  .landing_page_cont {
    height: 155vh;
  }

  .collab {
    margin-top: 50px;
  }

  .heading_landing {
    font-size: 45px;
  }

  .sub_heading_landing {
    font-size: 15px;
  }

  .block_landing {
    padding-left: 0px;
  }


  .download-btn {
    width: 150px;
    font-size: 6px;
    margin-left: 20px;
    height: 45px;
  }

  .block_about {
    font-size: 25px;
  }

  .header_panel img {
    width: 50px;
    height: 40px;
  }

  .download-btn {
    margin-left:
      60px
  }
}



@media only screen and (max-width: 380px) {

  .sub_heading_landing {
    font-size: 12px;
  }
}

@media only screen and (max-width: 360px) {
  .skill_head {
    font-size: 12px;
  }

  .skill_sub_head {
    font-size: 5px;
  }

  .collab_head {
    font-size: 14px;
  }

  .collab_sub_head {
    font-size: 12px;
  }

  .opening_page_cont {
    margin-bottom: 0;
    height: 50vh;
  }

  .heading_landing {
    font-size: 40px;
  }

  .download-btn {
    margin-left: 30px;
  }

  .block_link_mobile {
    width: 80px;
    font-size: 13px;
  }
}

@media only screen and (max-width: 300px) {
  .heading_landing {
    font-size: 35px;
  }
}


@media only screen and (max-height: 1220px) {
  .profile_cont {
    padding: 10px;
  }

  .headi_edu_col {
    margin-top: 10px;
  }
}

@media only screen and (max-height: 1200px) {
  .link_edu_block {
    margin-top: 20px;
  }

  .block_of_edu {

    padding-left: 15px;
  }

  .headi_edu_col {

    font-size: 27px;
  }

  .techno_skills_proper {
    font-size: 23px;
  }
}

@media only screen and (max-height: 1160px) {
  .link_edu_block {
    margin-top: 10px;
  }

  .resume_toto {
    font-size: 25px;
  }

  .profile_cont {
    height: 58%;
  }

  .headi_edu_col {

    font-size: 25px;
  }

  .techno_skills_proper {
    font-size: 18px;
  }

  .techno_skills_proper svg {
    width: 18px;

  }

  .known_si {
    display: inline-flex;
    justify-content: center;

  }
}




@media only screen and (max-height: 1500px) {
  .header_panel {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .profile_cont {
    height: 55%;
    padding: 0px;
  }


}


@media only screen and (max-height: 1100px) {

  .profile_cont {
    height: 52%;
    padding: 0px;
  }

  .left_wala_name {
    padding: 10px;
  }

  .pan_left {
    width: 960px;
    height: 900px;
    background-position: center;
  }


}

@media only screen and (max-height: 1050px) {
  .headi_edu_col {

    font-size: 20px;
  }

  .para_scroll_intro {
    font-size: 20px;
  }

  .edu-card h2 {
    font-size: 1.5rem;
  }

  .some_work {
    margin-top: 30px;
  }

  .para_scroll {
    margin-top: 30px;
  }
}

@media only screen and (max-height: 1000px) {
  .header_res {
    margin-bottom: 5px;
  }

  .sub-title {

    margin-left: 35px;
    margin-bottom: 10px;
    font-size: 22px;
  }

  .sub_unit_title {
    font-size: 22px;
  }

  .block_link {
    height: 65px;
    width: 140px;
    padding: 15px;
    font-size: 20px;
  }

  .resume_toto {
    font-size: 22px;
  }
}




@media only screen and (max-height: 950px) {
  .edu-card h2 {
    margin-bottom: 5px;
  }

  .pannel_2_block_head {
    font-size: 30px;
  }

  .details {
    margin-bottom: 4px;
    font-size: 1.1rem;
  }

  .year {
    margin-bottom: 4px;
    font-size: 1.1rem;
  }

  .edu-card {
    height: 85%;
  }

  .para_scroll_intro {
    margin-top: 10px;
  }

  .pan_left {
    width: 780px;
    height: 780px;
    background-position: center;
  }

}

@media only screen and (max-height: 900px) {
  .profile_cont {
    height: 55%;
  }

  .header_res {
    font-size: 33px;
  }

  .header_res svg {
    width: 33px;
  }

  .header_res {
    margin-bottom: 0px;
  }

  .nakuu {
    margin-top: 0px;
  }

  .edu-card {
    height: 75%;
  }

  .edu-card p {
    margin-bottom: 2px;
  }

  .edu-card h2 {
    margin-bottom: 2px;
  }

  .details {
    margin-bottom: 2px;
  }

  .year {
    margin-bottom: 2px;
  }

  .pannel_2_block_head {
    font-size: 25px;
  }

  .some_work {
    margin-top: 20px;
  }

  .para_scroll {
    margin-top: 20px;
  }


}

@media only screen and (max-height: 850px) {
  .profile_cont {
    height: 53%;
  }

  .left_wala_name {
    padding-top: 0px;
  }

  .temp_2 .header_panel {
    margin: 0px;

  }

  .temp_2 .block_about {
    margin: 0px;
    margin-top: 10px;

  }

  .edu-card {
    padding: 10px;
  }

  .para_scroll_intro {
    margin-top: 0px;
  }

  .pan_left {
    width: 750px;
    height: 750px;
    background-position: center;
  }

}

@media only screen and (max-height: 800px) {
  .header_panel {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .profile_cont {
    height: 54%;
  }

  .block_link {
    height: 62px;
    width: 167px;
    padding: 13px;
    font-size: 18px;
  }

  .right-card {
    padding: 12px;
    font-size: 8px;
  }

  .headi_edu_col {
    margin: 5px;
  }
}