* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

#background-video {
  position: fixed; /* Fixes the video to the viewport */
  right: 0;
  bottom: 0;
  min-width: 100vw; 
  min-height: 100vh;
  z-index: -1000; /* Puts the video behind other elements */
  object-fit: cover; /* Ensures the video covers the entire area while maintaining aspect ratio */
}



/* Splash container */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  overflow: hidden;
}

/* Background video */
.splash__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02); /* tiny scale helps hide edge artifacts */
  filter: brightness(0.85);
}

/* Full-screen overlay layer (IMPORTANT) */
.splash__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* no grid/flex here */
  padding: 0;
  text-align: center;
}

/* Centered logo */
.splash__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(360px, 75vw);
  height: auto;

  opacity: 0;
  transform: translate(-57%, -50%) scale(0.96);
  transition: opacity 1500ms ease, transform 1500ms ease;

  z-index: 3;
}

/* Enter button centered under logo */
.splash__btn {
  position: absolute;
  left: 50%;
  top: calc(50% + 190px); /* adjust this to move button closer/farther */
  transform: translateX(-50%);

  opacity: 0;
  pointer-events: none;
  transition: opacity 1500ms ease, transform 1500ms ease;

  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.4px;
  backdrop-filter: blur(10px);

  z-index: 3;
}

.splash__btn:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.5);
}

/* Skip button */
.splash__skip {
  position: absolute;
  right: 18px;
  bottom: 18px;

  border: none;
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.8);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  backdrop-filter: blur(10px);

  z-index: 3;
}

/* Activated states */
.splash--ready .splash__logo {
  opacity: 1;
  transform: translate(-57%, -50%) scale(1);
}

.splash--ready .splash__btn {
  opacity: 1;
  transform: translate(-72%);
  pointer-events: auto;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .splash__logo,
  .splash__btn {
    transition: none;
  }
}



.nav-container {
    position: sticky;
    top: 0;
    background: linear-gradient(to bottom, #0d0d0d 0%, #000000 80%, #003319 100%);
    box-shadow: 0 2px 10px rgba(0, 255, 128, 0.2);
    /*background-color: #0A0F0C;*/
    z-index: 200;
}

.dropdown {
    display: none;
}

.menu-container {
  display: inline-block;
  cursor: pointer; 
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #FFFFFF;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

.nav {
    padding: 1.5rem;
    width: auto;
}

.imglink img {
    width: 50px;
    cursor: pointer;
}

.hero {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.hero img{
    min-width: 100%;
    position: relative;
    
}

video {
    max-width: 99.2vw;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    justify-content: space-around;
    width: 50%;
    margin: auto;
    align-items: center;
}

.links a{
    font-size: 1.5rem;
    text-decoration: none;
    position: relative;
    padding-bottom: 6px;
    color: #FFFFFF;
}

.links a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #00FF80;
    transition: all 0.3s ease;
}

.links a:hover::after {
    width: 99%;
}

.links a:visited {
    color: #FFFFFF;
}

.container {

    margin: auto;
    position: relative;
}
.title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #00FFFF;
}
.me {
    width: auto;
    max-width: 650px;
    height: auto;
    max-height: 400px;
    border: solid transparent;
    border-radius: 100px;
    display: block;
    margin: auto;
    margin-bottom: 4rem;
}

.intro_section {
    width: 100%;
    background: linear-gradient(135deg, black, #0A192F);
    min-height: 500px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 255, 128, 0.2);
}
.intro {
    width: 95%;
    margin: auto;
    font-size: 1.5rem;
    padding: 30px;
    border-radius: 20px;
    color: #00FFFF;
    line-height: 1.6;
    z-index: 10;
}

.p-content {
    width: 95%;
    margin: auto;
    font-size: 1.5rem;
    padding: 30px;
    border-radius: 20px;
    color: #FFFFFF;
    line-height: 1.6;
    z-index: 10;
}

.button {
    padding: 15px;
    border-radius: 40px;
    width: 60%;
    font-size: 1.6rem;
    text-align: center;
    margin: auto;
    color: #00FFFF;
    background-color: #001A12;
}

.button:hover {
    background-color: #FFFFFF;
    color: #0D0F1A;
}
.guy {
    width: 100%;
    margin: auto;
}

.img_stack {
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 0.6s ease-out,
    transform 0.8s ease-out;
  will-change: opacity, transform;
}

.img_stack.in_view {
  opacity: 1;
  transform: translateY(0);
}

.guy img{
    display: block;
    margin: auto;
    width: 450px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.bgImg {
    width: 350px;
    transform: translateX(-10%) translateY(-18%) rotate(-45deg);
    position: absolute;
    opacity: 0.6;
}


.about_div {
    display: flex;
    flex-direction: row;
}

.bigBackground {
  background-image: url(pictures/honeycomb.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.skills {
    
    padding: 10px;
    color: #FFFFFF;
    height: auto;
    
}
.backend {
    width: 100%;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    gap: 30px;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-70px);
    transition: opacity 0.6s ease-out, transform 0.8s ease-out;
}

.backend.in_view {
  opacity: 1;
  transform: translateX(0);
}

.back-left {
    width: 85%;
    transition: ease-in-out 0.3s;
}

.back-left img{
    min-width: 100%;
    max-height: 30%;
}

.back-right {
    font-size: 1.2rem;
    width: 40%;
    transition: ease-in 0.3s;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    box-shadow: 0 2px 10px rgba(0, 255, 128, 0.2);
    padding: 25px;
}

.back-right:hover {
    box-shadow: 0 2px 10px #00FF80;
}

.ba-left-active {
    width: 65%;
}

.ba-left-active img{
    border-radius: 0px 140px 140px 0px;
    box-shadow: 0 2px 10px rgba(0, 255, 128, 0.2);
}

.ba-right-active {
    display: block;
}

.backend img {
    width: auto;
    max-width: 250px;
}

.frontend {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 10px;
    border-radius: 10px;
    gap: 30px;
    justify-content: center;
    align-items: center;
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 0.6s ease-out, transform 0.8s ease-out;
  overflow: hidden;
}

.frontend.in_view {
  opacity: 1;
  transform: translateX(0);
}

.front-right {
    width: 85%;
    transition: ease-in-out 0.3s;
}

.fe-right-active {
    width: 65%;
}

.fe-right-active img{
    border-radius: 140px 0px 0px 140px;
    box-shadow: 0 2px 10px rgba(0, 255, 128, 0.2);
}

.fe-left-active {
    display: block;
}

.front-right img{
    min-width: 100%;
    max-height: 30%;
}

.front-left {
    font-size: 1.1rem;
    width: 40%;
    transition: ease-in 0.3s;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    box-shadow: 0 2px 10px rgba(0, 255, 128, 0.2);
    padding: 25px;
}

.front-left:hover {
    box-shadow: 0 2px 10px #00FF80;
}

.backgroundColor {
    color: white;
}

.backgroundColor1 {
    /*background: #0D0F1A;*/
    background-image: url(pictures/honeycomb.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.clickme {
    padding: 20px;
    font-weight: 900;
    font-size: 1.3rem;
    background-color: white;
    color: black;
    border-radius: 20px;
    position: absolute;
    z-index: 10;
    left: 50%;
    transform: translate(-50%, 250%);
    transition: ease-in-out 0.2s;
}

.clickme:hover {
    background-color: black;
    color: white;
    
}



.frontend img {
    width: auto;
    max-width: 250px;
}



.projects {
  position: relative;
  padding: 80px 20px;
  /*background-color: black;*/
  color: #ffffff;
  overflow: hidden;
}



.projects-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
   opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 0.6s ease-out,
    transform 0.8s ease-out;
  will-change: opacity, transform;
}

.projects-content iframe {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 500px;
}

.projects-content h1 {
    text-align: center;
    color: #ffffff;
}

.projects-content.in_view {
  opacity: 1;
  transform: translateY(0);
}
.projects img {
    width: 100%;
    max-width: 1080px;
    height: 100%;
    max-height: 1920px;
    border: solid black 2px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 10px 10px 10px rgba(0, 255, 128, 0.2);
}

.projects img:hover {
    box-shadow: 10px 10px 10px #00FF80;
}

.check {
    width: auto;
    max-width: 25px;
    display: inline-block;
}

blockquote {
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.form-container {
    padding: 30px;
    outline: none;
    border: none;
}

.form {
    width: 70%;
    margin: auto;
    padding: 25px;
    border: solid transparent;
    border-radius: 5px;
}

.form input, select {
    width: 100%;
    margin: auto;
    padding: 30px;
    font-size: 1.4rem;
    border: none;
    border-bottom: 2px solid black;
}

.form label{
    font-size: 1.5rem;
    font-weight: 900;
}

.form-container blockquote{
    width: 75%;
    text-align: center;
    font-size: 1.05rem;
    margin: auto;
}

.btn {
    font-size: 1.3rem;
    background-color: #38BDF8;
    padding: 10px;
    width: 250px;
    margin: auto;
    color: white;
    border: solid transparent;
    border-radius: 10px;
}

.btn:hover {
    background-color: black;
    color: white;
}

.email {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: black;
  padding-top: 50px;
  padding: 30px;
}

.email-content {
  background-color: #e2e1de;
  color: #414648;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: solid transparent;
  border-radius: 5px;
  width: 80%; /* Could be more or less, depending on screen size */
  height: auto;
  min-height: 600px;
  padding: 30px;
}

.email-content input, textarea {
    width: 100%;
    margin: auto;
    padding: 10px;
}

.close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #f1f1f1;
}

.close:hover,
.close:focus {
  color: #f44336;
  cursor: pointer;
}

.footer {
    background: linear-gradient(to bottom, #0d0d0d 0%, #000000 80%, #003319 100%);
    /*background-color: #0A0F0C;*/
    color: #FFFFFF;
}

.footer-container {
    display: flex;
    padding: 5px;
    width: 100%;
    margin: auto;
}

.footer-container img {
    max-width: 20px;
}

.foot {
    display: flex;
    flex-direction: row;
    width: 50%;
}

.footer img {
    max-width: 150px;
    float: right;
    padding: 20px;
}
.foot-left{
    display: flex;
    flex-direction: column;
    font-size: 1.15rem;
    padding: 20px;
    line-height: 40px;
    width: 100%;
}

.foot-content {
    margin: auto;
}

.foot-content a {
    text-decoration: none;
    color: white;
}

.foot-content a:visited {
    color: white;
}

.foot-links a{
    font-size: 15px;
    text-decoration: none;
    position: relative;
    padding-bottom: 6px;
    color: #FFFFFF;
}

.foot-links a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #00FF80;
    transition: all 0.3s ease;
}

.foot-links a:hover::after {
    width: 99%;
}

.foot-right {
    display: flex;
    flex-direction: column;
    font-size: 1.15rem;
    padding: 20px;
    line-height: 40px;
    width: 100%;
}

.foot-far-right {
    display: flex;
    flex-direction: column;
    font-size: 1.15rem;
    padding: 20px;
    line-height: 40px;
    width: 100%;
}

.foot-button {
    padding: 10px;
    margin: 20px;
    border-radius: 40px;
    width: 100%;
    font-size: 15px;
    text-align: center;
    color: #00FFFF;
    background-color: #001A12;
}

.foot-button:hover {
    background-color: #FFFFFF;
    color: #0D0F1A;
}

.terms {
    padding: 25px;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.terms h2 {
    color: #00FFFF;
}

.slideshow {
    background-color: black;
}

.mySlides {
    display: none;
}

.mySlides img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  background-color: black;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.overlayImg {
    width: auto;
    max-width: 250px;
}

.logoOverlay {
    position: absolute;
    max-width: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    margin: auto;
}

.slide {
    display: none;
}

.active {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
    from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.why-container {
    background-color: black;
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 600px;
    box-shadow: 0 2px 10px rgba(0, 255, 128, 0.2);
}

.why-logo-img {
    width: 900px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.why-logo-img.in_view {
  opacity: 1;
  transform: translateX(-40%) rotate(45deg);
}

.why-text-container {
    padding: 25px;
}

.why-text{
    font-size: 1.4rem;
}

.why-text li {
    margin: 30px;
}

.about {
    background-color: #0D0F1A;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
}

.about h2 {
    color: #6366F1
}

.about_text {
    width: 60%;
}

.about p {
    font-size: 20px;
}
.about_img img {
    position: relative;
    opacity: 0.5;
    width: 900px;
    transform: translateX(100%) rotate(-45deg);
}

.mobileHero {
    display: none;
}

.ratings-container {
    background: linear-gradient(to top, black, #0A192F 70%);
    color: #FFFFFF;
    width: 100%;
    align-items: center;
    min-height: 600px;
    box-shadow: 0 2px 10px rgba(0, 255, 128, 0.2);
    padding-bottom: 40px;
}

.rating {
    font-size: 3rem;
    text-align: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 1.3s ease-out, transform 1.3s ease-out;
}

.rating.in_view {
    opacity: 1;
}

.rating-content {
    font-size: 2.25rem;
    color: #ffffff;
    text-align: center;
    width: 70%;
    margin-right: auto;
    margin-left: auto;
}

         .email-container2 {
              position: fixed; /* Stay in place */
              z-index: 1000; /* Sit on top */
              left: 0;
              top: 0;
              width: 100%; /* Full width */
              height: 100%; /* Full height */
              overflow: auto; /* Enable scroll if needed */
              /*background-color: #474e5d;*/
              background-color: rgba(99,99,99,0.9);
              padding: 50px;
              
         }

.email-card-alert {
    background-color: #1E1E1E;
    color: #FFFFFF;
    width: 70%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    font-size: 1.75rem;
             
    }
         
         .alert-img-container {
             width: 100%;
         }
         
         .alert-img-container img{
             display: block;
             margin-left: auto;
             margin-right: auto;
             top:  0;
            -webkit-animation:spin 4s linear infinite;
            -moz-animation:spin 4s linear infinite;
            animation:spin 4s linear infinite;
        }
        
         .email-header {
             column-span: all;
             text-align: center;
             margin-bottom: 40px;
             font-size: 1.9rem;
             background-color: black;
             color: white;
             margin-top: 0;
             padding: 20px;
         }
         
        .emailBtn {
            padding: 10px;
            border-radius: 10px;
            background-color: black;
            color: white;
            min-width: 200px;
            font-weight: 900;
        }
        
        .emailBtn:hover {
            background-color: white;
            color: black;
            box-shadow: 0 0 10px white,
                        0 0 20px white,
                        0 0 40px white;
        }
        
option {
    background: black;
    color: #ffffff;
}

option:hover {
    background: #ffffff;
    color: black;
}

optgroup {
    background: black;
    color: #00FFFF;
}

.custom_intro_section {
    width: 100%;
    background: linear-gradient(135deg, black, #0A192F);
    /*background-image: url('builder.png');
    background-repeat: no-repeat;
    background-size: cover;*/
    height: 800px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 255, 128, 0.2);
}

.custom_intro_section video {
    width: 100%;
    z-index: -10;
}

.custom_intro_section-db {
    width: 100%;
    background: linear-gradient(135deg, black, #0A192F);
    /*background-image: url('dba1.png');
    background-repeat: no-repeat;
    background-size: cover;*/
    height: 800px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 255, 128, 0.2);
}

.custom_intro_section-db video {
    width: 100%;
    z-index: -10;
}

.custom_intro_section-web {
    width: 100%;
    background: linear-gradient(135deg, black, #0A192F);
    /*background-position-y: -900px;*/
    height: 800px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 255, 128, 0.2);
}

.custom_intro_section-web video {
    width: 100%;
    z-index: -10;
}

.custom_intro_section img {
    width: 1000px;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.custom {
  position: relative;
  padding: 80px 20px;
  background-color: black;
  color: #ffffff;
  overflow: hidden;
}

.custom-float-left {
    float: left;
    padding: 20px;
}

.custom-float-right {
    float: right;
    padding: 20px;
}

.custom-content {
    display: flex; 
}

.custom-content img {
    width: 600px;
}

.zoom-section {
  min-height: 60vh;
  background: linear-gradient(135deg, black, #0A192F);;
  width: 100%;
}

.pre-scroll {
  height: 75px; /* adjust WHEN stickiness starts */
}

.zoom-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Start small */
.zoom-img {
  width: 50vw;
  transform: scale(0.7);
  transition: transform 0.9s linear;
  overflow: hidden;
}

/* email overlay (hidden until triggered) */
.zoom-modal {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  background: rgba(0, 0, 0, 0.7); 

  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.zoom-modal.visible {
  opacity: 1;
  pointer-events: auto;
  width: 40%;
  height: 30%;
  padding: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 40px;
  border: solid white 2px;
}

.post-scroll {
  height: 50px; /* controls how long the image stays sticky */
}

.mobile-CTA {
    display: none;
}

.db-content {
    width: 95%;
    margin: auto;
    font-size: 1.5rem;
    padding: 30px;
    border-radius: 20px;
    color: #FFFFFF;
    z-index: 10;
    text-align: center;
}

.db-content ul {
    text-indent: 20px;
    padding: 15px;
    text-align: center;
    list-style-type: none;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {

    .skills {
        height: auto;
        width: auto;
    }
    
    .links {
       margin: 10px;
    }
    
    .nav-container {
        position: sticky;
        top: 0;
        display: flex;
        justify-items: space-between;
        z-index: 200;
    }
    
    .projects img {
        width: auto;
        max-width: 100%;
        margin: auto;
        height: auto;
        margin-bottom: 20px;
    }
    
    .blur {
        box-shadow: 0 0 500px 100px limegreen;
    }
    
    .me {
        width: auto;
        max-width: 300px;
        margin: auto;
    }
    

    
    
    .backend {
        flex-direction: column;
        padding: 0;
    }
    
    .back-left {
        width: 100%;
        padding: 0;
    }
    
    .back-left img {
        border-radius: 0px;
    }
    
    .back-right{
        width: 100%;
        padding: 22px;
        transition: ease-in 0.3s;
    }
    
    .back-right ul{
        padding-left: 25px;
    }
    
    .frontend {
        flex-direction: column-reverse;
        padding: 0;
    }
    
    .front-right {
        width: 100%;
        padding: 0;
    }
    
    .front-right img{
        border-radius: 0px;
    }
    .front-left{
        width: 100%;
        padding: 22px;
        display: block;
        transition: ease-in 0.3s;
    }
    
    .front-left ul{
        padding-left: 25px;
    }
    
    .clickme {
        padding: 10px;
        font-size: 1rem;
        transform: translate(-50%, 950%);
    }
    
    #clickmeh {
        padding: 10px;
        transform: translate(-50%, -390%);
    }

    .why-container{
        height: auto;
        width: auto;
    }
    
    .why-logo-img {
        max-width: 300px;
    }
    
    .why-text-container {
        padding: 0;
    }
    
    .guy img {
        width: 250px;
    }
    
    .bgImg {
        display: none;
    }
    

    
    .button {
        width: 100%;
    }
    
    .custom_intro_section img {
        max-width: 375px;
    }
    
.custom-float-left {
    float: none;
}

.custom-float-right {
    float: none;
}

.custom-content {
    display: flex; 
    flex-direction: column;
}

.custom-content img{
    max-width: 350px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.zoom-img {
  width: 50vw;
}

.post-scroll {
  height: 10vh; /* controls how long the image stays sticky */
}
    
}

@media screen and (max-width: 768px) {
    
    .skills {
        height: auto;
        width: auto;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        margin: auto;
        width: 100%;
    }
    
    .nav {
        display: none;
    }
    

    
    .dropdown {
        position: relative;
        display: inline-block;
    }
    
        /* Dropdown content (hidden by default) */
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: black;
        min-width: 160px;
        z-index: 1000;
        box-shadow: 0 1px 8px black;
        border-radius: 5px 5px 5px;
        left: 0;
    }
    
    .dropdown-content.show {
        display: block;
    }

        
        /* Links inside the dropdown */
        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 15px;
        }
        
        
        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {
            color: black;
            background-color: white;
        }
    
        
    
    .projects img {
        width: auto;
        max-width: 300px;
        margin: auto;
        height: auto;
    }
    
    .projects {
        height: auto;
    }
    
    .me {
        width: auto;
        max-width: 300px;
        margin: auto;
    }
    
    .form-container{
        width: 100%;
        padding: 5px;
    }
    
    .form{
        width: 100%;
        padding: 0;
    }
    
    .form input, select {
        width: 100%;
    }
    
    .btn {
    text-align: center;
    }
    
    .backend {
        flex-direction: column;
        padding: 0;
    }
    
    .back-left {
        width: 100%;
        padding: 0;
    }
    
    .back-left img {
        border-radius: 0px;
    }
    .back-right{
        width: 100%;
        padding: 22px;
        transition: ease-in 0.3s;
    }
    
    .back-right ul{
        padding-left: 25px;
    }
    
    .frontend {
        flex-direction: column-reverse;
        padding: 0;
    }
    
    .front-right {
        width: 100%;
        padding: 0;
    }
    
    .front-right img{
        border-radius: 0px;
    }
    .front-left{
        width: 100%;
        padding: 22px;
        display: block;
        transition: ease-in 0.3s;
    }
    
    .front-left ul{
        padding-left: 25px;
    }
    
    .clickme {
        padding: 10px;
        font-size: 1rem;
        transform: translate(-50%, 550%);
    }
    
    #clickmeh {
        padding: 10px;
        transform: translate(-50%, -290%);
    }
    
    .foot {
        width: 100%;
        margin: auto;
        display: block;
        padding: 20px;
        text-align: center;
    }
    
    .foot-left, .foot-right {
        padding: 0;
        line-height: 40px;
    }
    
    .logoOverlay img {
        width: 100px;
        transform: translate(120%, 85%);
    }
    
    .why-container{
        height: auto;
        width: auto;
        display: flex;
        flex-direction: column;
    }
    
    .why-logo-img {
        max-width: 300px;
    }
    
    .why-text-container {
        padding: 0;
    }
    
    .why-text {
        text-align: center;
    }
    
    .about_div{
        display: flex;
        flex-direction: column;
    }
    
    .button {
        width: 100%;
    }
    
    .guy img {
        width: 250px;
    }
    
    .bgImg {
        display: none;
    }
    
    .rating {
        font-size: 2.25rem;
    }
    
    .rating-content {
        font-size: 1.5rem;
    }
    
         .email-container2 {
              padding: 100px;
              
         }
         
         .alert-img-container img{
             display: none;
        }
        
.email-card-alert {
    padding: 50px;   
    }
    
    .custom_intro_section img {
        max-width: 375px;
    }
    
.custom-float-left {
    float: none;
}

.custom-float-right {
    float: none;
}

.custom-content {
    display: flex; 
    flex-direction: column;
}

.custom-content img{
    max-width: 350px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.mobile-CTA {
    display: block;
}

.zoom-section {
    display: none;
}

.footer img {
    display: none;
}

.foot-button {
    margin-left: auto;
    margin-right: auto;
}

.splash--ready .splash__logo {
  opacity: 1;
  transform: translate(-55%, -50%) scale(0.85);
}

.splash--ready .splash__btn {
  opacity: 1;
  transform: translate(-67%);
  pointer-events: auto;
}

.custom_intro_section {
    max-height: 400px;
}

.custom_intro_section-db {
    max-height: 400px;
}

.custom_intro_section-web {
    max-height: 400px;
}

}