/*^^^^^^^^Desktop  1200px+ ^^^^^^^^^*/
@media (min-width: 1200px) {
  /* Hide Burger */
  .burger-toggle {
    display: none;
  }

  .burger-icon {
    display: none;
  }

  .menu {
    color: white;
    display: flex;
    background-color: rgba(255, 0, 0, 0.83);
    border-radius: 50px;
    padding: 0px;
    margin-top: 4%;
    justify-content: space-evenly;
  }

  /* Hero Section with Circular Video */
  .main {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 4%;
    gap: 30px;
  }

  .video-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(0, 231, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 231, 255, 0.5);
    flex-shrink: 0;
  }

  .vidio {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: lighten;
    opacity: 3;
  }

  .devloper {
    font-size: 190%;
    text-align: center;
    color: whitesmoke;
    font-family: sans-serif;
    background-color: rgba(9, 69, 128, 0.3);
    border-radius: 30px;
    padding: 20px;
    width: 74%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Skills Section */
  .text-div {
    display: flex;
    justify-content: space-evenly;
    margin: 10px 20px;
    gap: 20px;
  }

  .text {
    text-align: center;
    font-size: 22px;
    background-color: rgba(9, 69, 128, 0.3);
    font-weight: 100;
    color: whitesmoke;
    border-radius: 30px;
    width: 55%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    line-height: 160%;
    margin-top: 2%;
    margin-bottom: 2%;
  }

  .svgs-left,
  .svgs-right {
    background: linear-gradient(135deg, rgba(0, 231, 255, 0.2), rgba(9, 69, 128, 0.3));
    width: 18%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s ease;
    overflow-y: auto;
    padding: 20px 10px;
    max-height: 600px;
  }

  .svgs-left:hover {
    transform: translateX(5px);
    background: linear-gradient(120deg, #00c6ff, #7d5fff, black, rgb(109, 13, 13));
  }

  .svgs-right:hover {
    transform: translateX(-5px);
    background: linear-gradient(120deg, #00c6ff, #7d5fff, black, rgb(109, 13, 13));
  }

  .svgs-left svg,
  .svgs-right svg {
    margin-top: 20px;
  }

  .svg-text {
    color: whitesmoke;
    font-family: sans-serif;
    font-weight: 500;
    margin-top: 8px;
    margin-bottom: 15px;
    cursor: pointer;
  }

  .next-js {
    color: whitesmoke;
  }

  /* Scrollbar */
  .svgs-left::-webkit-scrollbar,
  .svgs-right::-webkit-scrollbar {
    width: 6px;
  }

  .svgs-left::-webkit-scrollbar-thumb,
  .svgs-right::-webkit-scrollbar-thumb {
    background: rgba(0, 231, 255, 0.5);
    border-radius: 10px;
  }

  .python {
    background-color: white;
    border-radius: 20px;
    padding: 4px;
  }
}

/*^^^^^^^^Tablet 768px - 1200px ^^^^^^^^^*/
@media (min-width: 768px) and (max-width: 1199px) {
  .burger-toggle {
    display: none;
  }

  .burger-icon {
    display: none;
  }

  .menu {
    color: white;
    display: flex;
    background-color: rgba(255, 0, 0, 0.83);
    border-radius: 50px;
    padding: 0px 7%;
    margin-top: 30px;
    margin-left: 1%;
    justify-content: space-around;
    width: 90%;
  }

  .main {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 4%;
    gap: 20px;
  }

  .video-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(0, 231, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 231, 255, 0.5);
    flex-shrink: 0;
  }

  .vidio {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: lighten;
    opacity: 3;
  }

  .devloper {
    font-size: 150%;
    text-align: center;
    color: whitesmoke;
    font-family: sans-serif;
    background-color: rgba(9, 69, 128, 0.3);
    border-radius: 30px;
    padding: 20px;
    width: 65%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .text-div {
    display: flex;
    justify-content: space-evenly;
    margin: 10px 20px;
    gap: 15px;
  }

  .text {
    text-align: center;
    font-size: 18px;
    background-color: rgba(9, 69, 128, 0.3);
    font-weight: 100;
    color: whitesmoke;
    border-radius: 30px;
    width: 50%;
    height: auto;
    display: flex;
    align-items: center;
    padding: 30px 15px;
    line-height: 150%;
    margin: 2% 0;
  }

  .svgs-left,
  .svgs-right {
    background: linear-gradient(135deg, rgba(0, 231, 255, 0.2), rgba(9, 69, 128, 0.3));
    width: 20%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 15px 8px;
    max-height: 500px;
  }

  .svgs-left:hover {
    transform: translateX(5px);
    background: linear-gradient(120deg, #00c6ff, #7d5fff, black, rgb(109, 13, 13));
  }

  .svgs-right:hover {
    transform: translateX(-5px);
    background: linear-gradient(120deg, #00c6ff, #7d5fff, black, rgb(109, 13, 13));
  }

  .svg-text {
    color: whitesmoke;
    font-family: sans-serif;
    font-weight: 500;
    margin-top: 8px;
    margin-bottom: 12px;
    font-size: 14px;
  }

  .next-js {
    color: whitesmoke;
  }

  .svgs-left::-webkit-scrollbar,
  .svgs-right::-webkit-scrollbar {
    width: 5px;
  }

  .svgs-left::-webkit-scrollbar-thumb,
  .svgs-right::-webkit-scrollbar-thumb {
    background: rgba(0, 231, 255, 0.5);
    border-radius: 10px;
  }

  .python {
    background-color: white;
    border-radius: 20px;
    padding: 4px;
  }
}

/*^^^^^^^^Mobile/Small Tablet 480px - 768px WITH BURGER ^^^^^^^^^*/
@media (min-width: 480px) and (max-width: 767px) {
  /* BURGER MENU */
  .burger-toggle {
    display: none;
  }

  .burger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }

  .burger-icon span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(2) {
    opacity: 0;
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .menu {
    color: white;
    display: flex;
    background-color: rgba(255, 0, 0, 0.83);
    border-radius: 50px;
    padding: 10px 20px;
    margin-top: 4%;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.95), rgba(150, 0, 0, 0.95));
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 15px;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  }

  .burger-toggle:checked ~ .container {
    right: 0;
  }

  .tags {
    width: 100%;
  }

  .nav-btn {
    display: block;
    background-color: rgba(255, 0, 0, 0.65);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    text-align: center;
  }

  .nav-btn:hover {
    background-color: #ff3366;
    color: #000;
    transform: translateX(-5px);
  }

  .name {
    z-index: 1001;
    font-size: 35px;
  }

  /* Hero Section */
  .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5%;
    gap: 20px;
    padding: 0 10px;
  }

  .video-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(0, 231, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 231, 255, 0.5);
  }

  .vidio {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: lighten;
    opacity: 3;
  }

  .devloper {
    font-size: 140%;
    text-align: center;
    color: whitesmoke;
    font-family: sans-serif;
    background-color: rgba(9, 69, 128, 0.3);
    border-radius: 30px;
    padding: 20px;
    width: 90%;
  }

  /* Skills */
  .text-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 10px;
    gap: 20px;
  }

  .text {
    text-align: center;
    font-size: 18px;
    background-color: rgba(9, 69, 128, 0.3);
    color: whitesmoke;
    border-radius: 30px;
    width: 95%;
    padding: 25px 15px;
    line-height: 150%;
    order: 2;
  }

  .svgs-left,
  .svgs-right {
    background: linear-gradient(135deg, rgba(0, 231, 255, 0.2), rgba(9, 69, 128, 0.3));
    width: 95%;
    border-radius: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    place-items: center;
  }

  .svgs-left {
    order: 1;
  }

  .svgs-right {
    order: 3;
  }

  .svgs-left svg,
  .svgs-right svg {
    width: 45px;
    height: auto;
  }

  .svg-text {
    color: whitesmoke;
    font-size: 13px;
    text-align: center;
    margin-top: 5px;
    font-family: sans-serif;
    font-weight: 500;
  }

  .next-js {
    color: whitesmoke;
  }

  .python {
    background-color: white;
    border-radius: 15px;
    padding: 4px;
  }
}

/*^^^^^^^^Mobile < 480px WITH BURGER ^^^^^^^^^*/
@media (max-width: 479px) {
  /* BURGER MENU */
  .burger-toggle {
    display: none;
  }

  .burger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
  }

  .burger-icon span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(2) {
    opacity: 0;
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .menu {
    color: white;
    display: flex;
    background-color: rgba(255, 0, 0, 0.83);
    border-radius: 50px;
    padding: 10px 15px;
    margin: 5% 2%;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.95), rgba(150, 0, 0, 0.95));
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 60px 12px 12px;
    gap: 10px;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }

  .burger-toggle:checked ~ .container {
    right: 0;
  }

  .tags {
    width: 100%;
  }

  .nav-btn {
    display: block;
    background-color: rgba(255, 0, 0, 0.65);
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    text-align: center;
  }

  .nav-btn:hover {
    background-color: #ff3366;
    transform: translateX(-5px);
  }

  .name {
    z-index: 1001;
    font-size: 28px;
  }

  /* Hero Section - FIXED NO OVERLAP */
  .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5%;
    gap: 20px;
    padding: 0 10px;
  }

  .video-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 231, 255, 0.6);
    box-shadow: 0 0 15px rgba(0, 231, 255, 0.5);
    flex-shrink: 0;
  }

  .vidio {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: lighten;
  }

  .devloper {
    font-size: 110%;
    text-align: center;
    color: whitesmoke;
    font-family: sans-serif;
    background-color: rgba(9, 69, 128, 0.3);
    border-radius: 20px;
    padding: 15px;
    width: 95%;
    margin-bottom: 10px;
  }

  /* Skills */
  .text-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 5px 20px;
    gap: 15px;
    width: 100%;
  }

  .text {
    text-align: center;
    font-size: 15px;
    background-color: rgba(9, 69, 128, 0.3);
    color: whitesmoke;
    border-radius: 20px;
    width: 95%;
    padding: 18px 12px;
    line-height: 140%;
    font-family: sans-serif;
    font-weight: 300;
    order: 2;
  }

  .svgs-left,
  .svgs-right {
    background: linear-gradient(135deg, rgba(0, 231, 255, 0.2), rgba(9, 69, 128, 0.3));
    width: 95%;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px 10px;
    place-items: center;
  }

  .svgs-left {
    order: 1;
  }

  .svgs-right {
    order: 3;
  }

  .svgs-left svg,
  .svgs-right svg {
    width: 40px;
    height: auto;
  }

  .svg-text {
    color: whitesmoke;
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
    font-family: sans-serif;
    font-weight: 500;
  }

  .next-js {
    color: whitesmoke;
  }

  .python {
    background-color: white;
    border-radius: 10px;
    padding: 3px;
  }
}
