/*
* Description: Personal Portfolio Website
* Author/Developer: Frank Regal
* Version: v1
*/

@import url('https://fonts.googleapis.com/css?family=Raleway:300&display=swap');
@import url('https://fonts.googleapis.com/css?family=Monoton&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,300&display=swap');

*{padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* ////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////// */
/*
Laptop
*/

input[type=number] {
  -moz-appearance: textfield;
}
  html{
    background: #101010;
    
  }
#loader{
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      height:100vh;
      position: fixed;
      z-index:100;
      font-family: poppins;
      background-color: #202020;
      color: whitesmoke;
      font-size: 25px;
      width: 100%;
}
body{
    user-select: none;
    height: auto;
    overflow-x: hidden;
    width: 100%;
    background: #101010;
}
#header{
    background:#101010;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position:relative;
    display: block;
}

/* Video Carousel Styles */
#video-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.carousel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    background: #000;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
}

.carousel-video.active {
    opacity: 0.8;
}

/* Video Navigation Controls */
#video-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
    background: transparent;
    padding: 5px 10px;
    border-radius: 50px;
    /* backdrop-filter: blur(10px); */
}

.video-nav-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-nav-btn:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.video-nav-btn:active {
    transform: scale(0.95);
}

#video-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
}

/* Dark overlay for better text readability */
#header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

/* Add this to add a zoom animation to the header content
.header-content {
    animation: scale 1.5s ease;
} */

.nav-name {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.688);
    text-decoration: none;
    font-family: 'Mrs Sheppards', cursive;
    font-size: 28px;
    font-weight: 400;
    z-index: 10;
    letter-spacing: 1px;
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-style: normal;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    display: inline-block;
    min-width: 60px;
    text-align: center;
    pointer-events: auto;
    cursor: pointer;
}

.nav-name:hover {
    opacity: 1;
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
    letter-spacing: 2px;
    /* text-shadow: 0 4px 8px rgba(191, 87, 0, 0.4); */
    filter: brightness(1.3);
}

#particles{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100vw;
    background-size: cover;
    background-position: 50% 50%;
    display: block;
}
#navigation-content{
    height: 100vh;
    width: 100%;
    position:fixed;
    z-index: 5;
    background-color:rgba(2, 2, 2, 0.9);
    transform: translateY(-200%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#navigation-bar{
    position: fixed;
    top: 0;
    height: 70px;
    width: 100%;
    z-index: 15;
    padding: 0;
    background: transparent;
    opacity: 1.0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}
#navigation-bar .navigation-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;  
    width: 100%;
    padding-right: 25px;  
}

/* Centered tagline in the top navigation bar */
#navigation-bar .nav-tagline {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Barlow', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 30px;
    font-weight:250;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    white-space: nowrap;
    z-index: 16;
}

@media (max-width: 768px) {
    #navigation-bar .nav-tagline {
        font-size: 14px;
        max-width: 80%;
        white-space: normal;
        text-align: center;
    }
}

/* Offset navigation links when nav-name is present (home page) */
#navigation-bar.home .navigation-links {
    margin-left: -80px;
}

/* Consulting Button Styles */
.consulting-link {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.consulting-btn {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    display: block;
    min-width: 120px;
    backdrop-filter: blur(10px);
}

.consulting-content {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding-top: 2px;
}

.consulting-logo {
    display: flex;
    align-items: left;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;
}

.consulting-logo img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.consulting-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    justify-content: center;
}

.consulting-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
}

.consulting-subtitle {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

.consulting-btn:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.consulting-btn:hover .consulting-logo {
    background: rgba(34, 197, 94, 0.3);
    transform: rotate(5deg);
}

.consulting-btn:hover .consulting-logo img {
    transform: scale(1.1);
}

.consulting-btn:hover .consulting-title {
    color: #ffffff;
}

.consulting-btn:hover .consulting-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

#navigation-bar .navigation-links a{
    font-size: 18px;
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
#navigation-bar .navigation-links li{
    list-style: none;
}
.menubar{
    position: fixed;
    right: 25px;
    top: 25px;
    cursor: pointer;
    opacity: 0.8;
    transition: all .4s ease;
    display: none;
    z-index: 20;
}
.menubar span{
    position: relative;
    background-color:transparent;
    height:2px;
    width: 20px;
    display: block;
    margin:6px;
    border-radius: 20px;
}
.menubar .first-span{
    width:35px;
}
.menubar .first-span::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    top:0;
    right:0;
    background-color:whitesmoke;
    transition: all .5s ease;

}
.menubar .second-span{
    width:35px;
}
.menubar .second-span::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 75%;
    top:0;
    right:0;
    background-color:whitesmoke;
    transition: all .3s ease;
}
.menubar .third-span{
    width:35px;
}
.menubar .third-span::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top:0;
    right:0;
    background-color:whitesmoke;
    transition: all .3s ease;
}
.menubar:hover .second-span::before , .menubar:hover .first-span::before {
    width: 100%;
}
.menubar:hover{
    opacity: 1;
}
.close-first , .close-second{
 height: 2px;
 width: 35px;
 background-color: whitesmoke;
 display: block;
 margin: 4px;
 cursor: pointer;
 padding: 1px;
}

/* Mobile Navigation Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 25;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-name-mobile {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 1px;
}

.close-menu {
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.close-menu:hover {
    opacity: 1;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    padding: 15px 0;
    position: relative;
}

.mobile-nav-links a:hover {
    color: #ffffff;
}
.close-first {
    transform: rotate(45deg);
}
.close-second{
    transform: rotate(-45deg);
}
.navigation-close{
    position: absolute;
    top: 6%;
    right:4%;
    padding: 10px;
    cursor: pointer;
    transition: all.3s ease;
    opacity: .8;
}
.navigation-close:hover{
    opacity: 1;
    transform: rotate(90deg);
}
.logo img{
    height: 55px;
    position: absolute;
    top: 3%;
    left: 25px;
    opacity: 0.5;
    z-index: 2;
    cursor: pointer;
    transition: all .4s ease;
}
.logo img:hover{
    opacity: 1;
    transform: rotate(-30deg);
}
#navigation-bar img{
    height: 30px;
    position: absolute;
    ;
    top: 30%;
    left: 25px;
    opacity: 0.6;
    transition: all .4s ease;
    pointer-events: none;
    z-index: 1;
}
#navigation-bar img:hover{
    opacity: 1;
    transform:rotate(-30deg);
}
.header-image img{
    height: 100vh;
    float: right;
}
.header-image{
    float: right;
    height: auto;
    background-size: cover;
    background-position: center;
    width: 40%;   
    height: 100vh;

}
.header-content{
    height: 105vh;
    width: 100%;
    float: left;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    color: whitesmoke;
    font-family: raleway;
    font-weight: 400;
    letter-spacing: 1px;
    flex-direction: column;
    font-size: 50px;
    z-index: 2;
}
.header-content-box{
    z-index: 2;
    text-align: center;
    height: auto;
    width: auto;

}
.header-content .firstline{
    z-index: 2;
    font-weight:700;
    font-family: poppins;
    font-size: 65px;
}
.header-content .secondline{
    z-index: 2;
    font-size: 30px;
    padding-top:0px ;
    font-weight:500;
    color: rgb(255, 255, 255,.8);
}

.header-content .firstline .logo-image {
    max-width: 900px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-top: 50px;
}

.hidden-text {
    opacity: 0;
    animation: fadeInText 0.1s ease-in-out 0.1s forwards;
    font-family: poppins;
    font-weight: 500;
    color: rgb(255, 255, 255, 0.8);
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.slash{
    animation-name: animateslash;
    animation-duration: .8s;
    animation-iteration-count: infinite;
    animation-play-state: running;
}
@keyframes animateslash{
    0%{
        opacity: 1;
        z-index: 2;
    }
    100%{
        opacity: 0;
        z-index: 0;
    }
}
@-webkit-keyframes animateslash{
    0%{
        opacity: 1;
        z-index: 2;
    }
    100%{
        opacity: 0;
        z-index: 0;
    }
}
.social-media-links{
    height: 100vh;
    position: absolute;
    z-index: 3;
    padding: 30px;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.social-media{
    color: white;
    width:  30px;
    ;
    opacity: .6;
    margin: 8px;
    transition: all .4s ease;
}
.social-media:hover{
    opacity: 1;
    transform: scale(1.1);
}
.navigation-links{
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: column;
    font-family:poppins;
}
.navigation-links a{
    padding:10px;
    text-decoration: none;
    color: white;
    font-size: 30px;
    opacity: .7;
    transition: all .4s ease;
}
.navigation-links a:hover{
    opacity: 1;
}
.navigation-links a::before{
    content: "";
    position: absolute;
    top:50%;
    left: 50%;
    display: flex;
    justify-content: center;
    transform: translate(-50%,-50%);
    align-items: center;
    font-size: 5em;
    font-weight: 400;
    font-family: monoton;
    color:rgb(255, 255, 255,.1);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    letter-spacing: 100px;
    transition: all .4s ease;
}
.navigation-links a:hover::before{
    content: attr(data-text);
    opacity: 1;
    letter-spacing: 10px;
}
.contact{
    display: flex;
    position: absolute;
    width: 10%;
    right: 0;
    top: 0;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 3;
}
.contact a{
    z-index: 3;
}
.contact img{
    margin:10px;
    height:30px;
    opacity: .6;
    transition: all .4s ease;
}
.contact img:hover{
    opacity: 1;
    transform: scale(1.1);
}
/*
#breaker{
    height: 100vh;
    width: 200%;
    background-color: #333f48;
    opacity: 0.5;
    animation: breakeranimate 2s linear;
    display: none;
    transition: all .4s ease;
    border-radius: 5px;
    z-index: 10;
    position: fixed;
}
*/
@keyframes breakeranimate{
   0%{ transform : translateX(-100%)}
   50%{ transform : translateX(0%) }
   100%{ transform : translateX(100%) }
}
@-webkit-keyframes breakeranimate{
    0%{ transform : translateX(-100%) }
    50%{ transform : translateX(0%) }
    100%{ transform : translateX(100%) }
}
.color{
    color: rgba(255, 255, 255, 0.8);
    transition: all .4s ease;
}
#about{
    background-color: #101010;
    display: none;
    width: 100%;
    height: auto;
    overflow: hidden;
}
@keyframes scale{
    0%{
        transform: scale(.6);
    }
    100%{
        transform: scale(1);
    }
}
@-webkit-keyframes breakeranimate{
    0%{
        transform: scale(.6);
    }
    100%{
        transform: scale(1);
    }
}
#about-content{
    display: flex;
    flex-direction:column;
    align-items: center;
    color: #cfcfcf;
    justify-content: center;
    height: 100vh;
    width: 100%;
    padding-top: 80px;
    text-align: center;
    /*background-color: #BB0035;*/
}
.about-header{
    height: auto;
    width: 400px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-family: roboto;
    color: #cfcfcf;
    padding:0px;
    padding-bottom: 6px;
    padding-top: 6px;
    font-weight: 500;
    letter-spacing: 1px;
    /*background-color: #04A777;*/
    border-bottom: 2px solid #bf5700;
    border-top: 2px solid #bf5700;
    border-radius: 17px;
}

.bottom-header{
    width: 400px;
    padding-top: 6;
    padding-bottom: 12;
    border-top: 0px solid #bf5700;
    border-radius: 0;
    border-bottom: 0px solid #bf5700;
    font-size: 60px;
}

.about-bio{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: auto;
    font-family: roboto;
    color: #cfcfcf;
    align-items:center;
    align-content: center;
    justify-content: flex-start;
    justify-items: center;
    padding-bottom: 80px;
    padding-top: 0px;
    background-color: #1d1d1d;
}
.about-bio-text{
    width: 55vw;
    font-size: 18px;
    font-family: roboto;
    text-align: justify;
    line-height: 1.2;
    font-weight: 300;
}
.about-bio-text a{
    text-decoration: underline;
    color:#bf5700;
}
.about-first-paragraph{
    color: #cfcfcf;
    justify-content: center;
    font-size: 20px;
    font-family: poppins;
    width: 50%;
    padding: 30px;
    font-weight: 400;
}
.about-first-paragraph .color{
    font-size: 40px;
}
.about-first-line{
    font-size: 35px;
    opacity: 1;
    margin-bottom: 10px;
    display: block;
}
.about-second-line{
    opacity: .8;
    font-size: 24px;
    font-weight: 200;
}

.about-second-line .link .color{
    font-size: 24px;
    font-weight: 200;
    font-family: poppins;
}

.about-main{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: auto;
    padding-left: 50px;
    padding-right: 50px;
    flex-direction: row;
}
.about-img img{
    width: 100%;
    height:100%;
    padding: 30px;
    border-radius: 2.25em;
}
.about-img {
    width: 550px;
    height:auto;
    padding: 30px;
    padding-top: 10px;
}

#about-content a{
    text-decoration: none;
    font-family: aileron;
    font-weight: 400;
    font-size: 35px;
    color: #bf5700;
    transition: all .4s ease;
}
.about-main{
    display: flex;
    align-items:center;
    justify-content: center;
    width: 100vw;
    height: 100%;
    flex-direction: row;
    /*background-color: #035aa6;*/
}
.about-img img{
    padding: 0px;
    margin: 0px;
    height: auto;
    width: 100%;
    animation: opacity 1.4s ease ;
    border-radius: 1em;
    max-width: 531px;
    max-height: 425px;
    
}
.about-img {
    height: 45vh;
    width: 100%;
    /*background-color: #dd7631;*/
    padding: 0px;
    margin: 0px;
    margin-right: 3em;
    /*padding: 30px;*/
    padding-top: 10px;
}
.about-side-info{
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
}

.about-side-info-title{
    /*background-color:#14a704;*/
    text-align: left;
    font-family: roboto;
    font-size: 40px;
    letter-spacing: 0.05em;
    font-weight: 400;
    margin-bottom: 0.5em;
}
.about-side-info-title-paragraph{
    /*background-color:#a70469;*/
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    text-align: left;
    font-weight: 300;
    line-height: 1.5;
}

.about-top-info {
    display: flex;
    flex-wrap: wrap;
    /*background-color:#0407a7;*/
    text-align: left;
    align-items: left;
    justify-content: left;
    margin-top: 0;
    padding-top: 0;
    font-weight: 300;
}
.about-top-info-text{
    font-size: 18px;
    font-family: roboto;
}

.about-top-info ul {
    list-style: none;
    padding-top: 0;
    padding: 1em;
}

.about-top-info ul i {
    /*font-size: 20px;*/
    color: #bf5700;
    font-weight: 2000;
    line-height: 2;
    padding: 0.1em;
}


.cv a button{
    border:none;
    padding: 0.4em 5em;
    color: #cfcfcf;
    outline: none;
    font-size:20px;
    font-family: roboto;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all .4s ease;
    font-weight: 400;
    letter-spacing: 1px;
}
*, ::after, ::before {
    box-sizing: border-box;
}

.cv {
    padding-top: 2vh;
}
.cv a button{
    background: transparent;
    border:none;
    padding: 0.4em 5em;
    color: #cfcfcf;
    background: #bf5700;
    outline: none;
    font-size:20px;
    font-family: roboto;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all .4s ease;
    font-weight: 900;
    letter-spacing: 1px;

}
.cv a button:hover{
    opacity: 1;
    transform: scale(1.05);
}
#services{
    position: relative;
    padding-top: 0;
    background-color: #1d1d1d;
    padding-bottom: 50px;
    border-bottom: 1px solid #101010;
}

.services-heading{
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: roboto;
    color: #cfcfcf;
    padding:0px;
    padding-bottom: 40px;
    padding-top: 40px;
    font-weight: 500;
    /*background-color: #BB0035;*/
    letter-spacing: 2px;
}
.about-first-paragraph {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction:column ;
}
.colors{
    color: #cfcfcf;
}
.services-content{
    height: auto;
    width: 100%;
    overflow: hidden;
    text-align: center;
    padding:2.5%;
    background-color: #101010;
}
.services-content a{
    text-decoration: none;
}
.service{
    height:380px;
    width:28%;
    margin: 1.5%;
    background-color: #191919;
    ;
    display: inline-block;
    box-shadow:0px 0px 25px rgb(0,0,0,.05);
    position: relative;
    text-align: center;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    animation: opacity 1.4s ease ;
}
.service-img{
    text-align: center;
}

.service-img img{
    display: inline-block;
    z-index: 2;
    position: relative;
    margin: 5px;
    margin-top: 17px;
    border-radius: 10px;
    padding: 4px;
    border: 0px solid #bf5700;
    background: #bf5700;
    box-shadow:0px 0px 0px 0px #bf5700 ;
    height:175px;
    max-width: 90%;
    transition: all .8s ease;
}
.service:hover .service-img img{
    box-shadow:0px 0px 0px 400px #bf5700 ;
}
.service-description{
    font-family: poppins;
    color:whitesmoke;
    position: relative;
    display: inline-block;
    z-index:2;
}
.service-description h2{
    padding: 10px;
    margin: 5px;
    font-weight: 400;
    font-family: roboto;
    font-size: 25px;
    color: #cfcfcf;
    letter-spacing: 1.5px;
}
.service-description p{
    padding: 20px;
    padding-top: 0px;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.25;
    opacity: 1;
    font-family: roboto;
    color: #cfcfcf;
}

    /*TIMELINE ADD*/
    /* The actual timeline (the vertical ruler) */
    .main-timeline-2 {
        position: relative;
    }
    
    /* The actual timeline (the vertical ruler) */
    .main-timeline-2::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #ffffff;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    }
    
    /* Container around content */
    .timeline-2 {
    position: relative;
    /*background-color:#04A777;
    border: 0.2em solid #BB0035;*/
    width: 60%;
    }

    .card{
        width: 50%;
        margin-top: -20px;
        font-family: roboto;
        border: 10px solid whitesmoke;
        border-radius: 1em;
        background-color: whitesmoke;
    }
    .card img{
        width: 100%;
        border: 1px;
        border-radius: 1em;
    }

    .card:hover img{
        transform: scale(1.03);
        transition: all 0.3s ease;
    };
    .card-body{
        background-color: whitesmoke;
        margin-top: -2px;
    }

    .fw-bold{
        padding-top: 7px;
        padding-left: 7px;
        font-weight: 600;
        font-size: 17px;
        letter-spacing: 1px;
    }

    .text-muted{
        padding-left: 7px;
        padding-top: 3px;
        font-size: 14px;
    }
    .mb-0{
        padding: 7px;
        font-size: 15px;
    }
    /* The circles on the timeline */
    .timeline-2::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    left: 50%;
    background-color: #c9d1cc;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    margin-left: -3px;
    }
    
    /* Place the container to the left */
    .left-2 {
    padding: 0px 40px 10px 0px;
    right: -18%; /*ADJUST CONTAINER LOCATION*/
    }
    
    /* Place the container to the right */
    .right-2 {
    margin-top: -200px;
    padding: 0px 0px 0px 70px;
    left: 48.25%; /*ADJUST CONTAINER LOCATION*/
    }
    
    /* Add arrows to the left container (pointing right) */
    .left-2::before {
    content: " ";
    position: absolute;
    top: 13px;
    z-index: 1;
    left: 48%; /*ADJUST ARROW LOCATION*/
    border: medium solid #c9d1cc;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #c9d1cc;
    }
    
    /* Add arrows to the right container (pointing left) */
    .right-2::before {
    content: " ";
    position: absolute;
    top: 13px;
    z-index: 1;
    left: 6.25%; /*ADJUST ARROW LOCATION*/
    border: medium solid #c9d1cc;
    border-width: 15px 15px 15px 0;
    border-color: transparent #c9d1cc transparent transparent;
    }
    
    /* Fix the circle for containers on the right side */
    .right-2::after {
        left: 1.65%; /* ADJUST CIRCLE LOCATION*/
    }
    /* Fix the circle for containers on the left side */
    .left-2::after {
        left: 52.1%; /* ADJUST CIRCLE LOCATION*/
    }
#skills{
    width: 100%;
    height:auto;
}
.skills-header{
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: raleway;
    color: #cfcfcf;
    padding:10px;
    padding-bottom: 30px;
    padding-top: 30px;
    font-weight: 900;
}
.skills-content{
    height: auto;
    width:100%;
    margin-top: 20px;
    margin-bottom: 80px;
}
.skill-html{
    height: auto;
    width: 45%;
    padding: 0%;
    position: relative;
    font-family: poppins;
    color:whitesmoke;
    display: inline-block;
    padding:1.5%;
}
.skill-text{
    width:80%;
    position: relative;
    height: 50px;
}
.html{
    display: inline-block;
    position: absolute;
    left: 5%;
    top:30%;
}
.html-prog{
   width:100%;
   height:40px;
   border-radius: 10px;
   background: #191919;
   box-shadow:0px 0px 25px rgb(0,0,0,.1);
   position: relative;
   overflow: hidden;
}
.html-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    width:95%;
    border-radius: 10px;
    background: #bf5700;
}
.js-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    font-family: poppins;
    justify-content: center;
    transition: all .4s ease;
    width:90%;
    border-radius: 10px;
    background: #bf5700;
}
.adobe-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    width:83%;
    border-radius: 10px;
    background: #bf5700;
}
.php-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    width:85%;
    border-radius: 10px;
    background: #bf5700;
    transition: all .4s ease;
}
.jquery-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    width:94%;
    border-radius: 10px;
    background: #bf5700;
}
.seo-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    width:84%;
    border-radius: 10px;
    transition: all .4s ease;
    background: #bf5700;
}

/* Portfolio Page */
.portfolio-header{
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: raleway;
    transition: all .4s ease;
    color: #cfcfcf;
    padding:10px;
    padding-bottom: 30px;
    padding-top: 60px;
    font-weight: 900;
}

.header-caption{
    opacity:.8;
    display: block;
    font-size: 20px;
    font-family: raleway;
    padding: 8px;
    padding-top: 15px;
    color: #cfcfcf;
    font-weight: 400;
}
.portfolio{
    height:auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1.5%;
    padding-right: 2%;
    padding-top: 50px;
    padding-bottom: 40px;
}

.portfolio-text{
    width: 40%;
    padding-left: 1%;
    margin: 1%;
    margin-left: -40px;
    margin-top: 160px;
    z-index: 3;
    opacity: 1;
    background: #da1111; /* portfolio text red*/
    padding-top: 10px;
    padding-bottom: 10px;
}

.portfolio-text h2{
    font-size: 35px;
    font-family: poppins;
    font-weight: 200;
    padding: 20px;
    color: #bf5700;
    transition: all .4s ease;
}
.portfolio-text p{
    font-size: 16px;
    opacity: .8;
    font-family: poppins;
    font-weight: 200;
    padding: 20px;
}
.portfolio-text button{
    font-size: 16px;
    opacity: .8;
    font-family: poppins;
    font-weight: 200;
    padding: 5px 5px;
    background:transparent;
    color:#bf5700;
    transition: all .4s ease;
    outline: none;
    margin: 20px;
    border: 1.5px solid #bf5700;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: all .4s ease;
}
.portfolio-text button::before{
    content: "";
    position: absolute;
    width: 0%;
    height: 200%;
    transform: rotate(-15deg) translateY(-20px);
    top: 0;
    left: 0;
    z-index: 3;
    background: #bf5700;
    transition: all .7s ease;
}
.portfolio-text button:hover{
    opacity: 1;
    color:whitesmoke;
}
 button:hover .index{
     position: relative;
    z-index: 4;
}
.portfolio-text button:hover::before{
    opacity: 1;
    width: 120%;
}
.button{
    text-align: center;
}
    .portfolio-image img{
        height: 400px;
        width: 100%;
        position: relative;
    }
    .portfolio-image{
        height: 400px;
        width: 40%;
    }
.portfolio-image img::before{
    content: "";
    height: 100%;
    width: 100%;
    background: #bf5700;
    opacity: .1;
    top: 0;
    left: 0;
    transition: all .4s ease;
    position: absolute;
    z-index: 2;
}
#portfolio-content{
    width: 100%;
    display: flex;
    height: auto;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
#portfolio{
    display: none;
    height: auto;
    overflow-x: hidden;
    background-color: #101010;
    width: 100%;
    color:whitesmoke;
}

    
/* Simplified Portfolio Styles */
.portfolio-simple {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-family: poppins;
}

.portfolio-header p {
    font-size: 1.1rem;
    color: #e5e5e5;
    opacity: 0.85;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.5;
    text-align: justify;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px;
    background-color: #1d1d1d;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.project-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

.project-image {
    flex: 0 0 300px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.project-image img,
.project-image video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Removed zoom animation on hover */

.project-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #1d1d1d;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-content {
    flex: 1;
    color: #cfcfcf;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-family: poppins;
}

.project-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.85;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    color: #e5e5e5;
    letter-spacing: 0.01em;
    text-align: justify;
}

.project-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.project-link {
    background-color: rgba(255, 255, 255, 0.688);
    color: #1d1d1d;
    padding: 2px 8px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: poppins;
    font-size: 12px;
}

.project-link:hover {
    background-color: #ffffff;
}

.project-publication {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    opacity: 0.8;
}

/* Mobile Responsiveness for Portfolio */
@media (max-width: 768px) {
    .project-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .project-image {
        flex: none;
        width: 100%;
        max-width: 300px;
    }
    
    .portfolio-header h1 {
        font-size: 2rem;
    }
    
    .project-links {
        justify-content: center;
    }
}

/* Portfolio Styles for Grid of Projects */
.portfolio-items-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 100px;
}
.portfolio-item-wrapper {
    position: relative; 
    padding: 15px;
}
.portfolio-img-background {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.image-text-wrapper {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding-left: 100px;
    padding-right: 100px;
}
.logo-wrapper img {
    width: 50%;
    margin-bottom: 20px;
}
/*Need to be more specific with selector*/
.image-text-wrapper .subtitle {
    transition: 1s;
    font-weight: 600;
    color: transparent;
}
.image-text-wrapper:hover .subtitle {
    font-weight: 600;
    color: lightseagreen;
}
.img-darken {
    transition: 1s;
    filter: brightness(10%);
}



/* Blog Page */

.cursor{
    height: 50px;
    width: 50px;
    display: block;
    border-radius: 50%;
    border: 1px solid whitesmoke;
    background: transparent;
    pointer-events: none;
    position: fixed;
    top: -25px;
    left: -25px;
    z-index: 10;
    opacity: .6;
    transition:  scale .5s ease;
}
.cursor-small{
    height: 50px;
    width: 50px;
    display: block;
    border-radius: 50%;
    border: 1px solid whitesmoke;
    background: transparent;
    pointer-events: none;
    position: fixed;
    top: -25px;
    left: -25px;
    z-index: 10;
    opacity: .6;
    transition:  scale .4s ease;
}

.blog{
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.blog-header{
    height: auto;
    width: 400px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-family: roboto;
    color: #cfcfcf;
    padding:0px;
    padding-bottom: 6px;
    padding-top: 6px;
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 2px solid #bf5700;
    border-top: 2px solid #bf5700;
    border-radius: 17px;
}

.blog-header .header-caption{
    letter-spacing: 0;
}

.blog-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}
.blogs{
    height: 470px;
    width: 40%;
    margin: 20px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border-radius: 0.65em;
    border: 0.1em solid #c9d1cc;
    background-color: #1d1d1d;
}
.blogs .img{
    height: 83%;
    width: 100%;
    overflow: hidden;
    transition: all .65s ease;
    position: relative;
}


.blog-date{
    position: absolute;
    left: 0;
    bottom: 0;
    background: #bf5700;
    color: white;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    font-family: roboto;
    padding: 3px;
    transition: all .4s ease;
    width: 25%;
    height: auto;
}
.blogs .img img{
    height: 100%;
    width: 100%;
    transition: all .65s ease;
}
.blog-text{
  height: 80%;
  width: 100%;
  text-align: center;
  vertical-align: center;
  font-family: roboto;
  color: #cfcfcf;
  background-color: #1d1d1d;
  transition: all .5s ease;
}
.blog-text h3{
  font-size: 1.35rem;
  font-weight: 500;
  height: 20%;
  padding: 20px;
  margin-top: 0.2em;
  letter-spacing: 1px;
}
.blog-text p{
    font-size: 1rem;
    opacity: 1;
    font-weight: 300;
    height: 80%;
    padding: 40px;
    padding-top: 0px;
    letter-spacing: 1px;
}

.blogs .project-button{
    background-color: #be5608;
    color: white;
    font-weight: 500; 
    padding: 8px;
    padding-right: 32px;
    padding-left: 32px;
    border-radius: 5px;
}
.blogs:hover .img{
      transform: translateY(-70%);
}
.blogs:hover .blog-text{
    transform: translateY(-70%);
}
.blogs:hover .augre{
    transform: translateY(-45%);
}
.blogs:hover .augre{
    transform: translateY(-45%);
}
.blogs:hover .ar-control{
    transform: translateY(-60%);
}
.blogs:hover .ar-control{
    transform: translateY(-60%);
}
.blogs:hover .haptics{
    transform: translateY(-90%);
}
.blogs:hover .haptics{
    transform: translateY(-90%);
}

.blogs:hover .auto-car{
    transform: translateY(-95%);
}
.blogs:hover .auto-car{
    transform: translateY(-95%);
}
.blogs:hover .robot-latency{
    transform: translateY(-105%);
}
.blogs:hover .robot-latency{
    transform: translateY(-105%);
}
.blogs:hover .motion-planning{
    transform: translateY(-105%);
}
.blogs:hover .motion-planning{
    transform: translateY(-105%);
}
.blogs:hover .kilnbot{
    transform: translateY(-105%);
}
.blogs:hover .kilnbot{
    transform: translateY(-105%);
}
.blogs:hover .senior-design{
    transform: translateY(-105%);
}
.blogs:hover .senior-design{
    transform: translateY(-105%);
}
.blogs:hover .shadow-arm{
    transform: translateY(-105%);
}
.blogs:hover .shadow-arm{
    transform: translateY(-105%);
}


.blogs a{
    text-decoration: none;
    color: #cfcfcf;
}
#contact{
    display: none;
    height: auto;
    text-align: center;
    width: 100%;
    background: #101010;
    position: relative; 
}
.contact-header{
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: raleway;
    color: #cfcfcf;
    padding:10px;
    padding-bottom: 30px;
    padding-top: 60px;
    font-weight: 900;
}
.contact-header-caption{
    padding: 10px;
    color: #cfcfcf;
    opacity: .9;
    font-family:raleway;
    font-size: 18px;
}
.contact-content{
    width: 90%;
    margin: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.contact-info{
    width: 40%;
    height: 500px;
    background: url(../images/contact-back.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 16px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}
.contact-info::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #101010;
    opacity: .8;
    pointer-events: none;
}
.contact-form{
    height: 550px;
    padding-right:40px;
    width: 60%;
    display: flex;
    flex-direction: column;
}
form{
    display: flex;
    flex-direction: column;
    height: auto;
    width:auto;
    align-items: center;
    position: relative;
}
.input-line{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.input-name{
    width: 40%;
    padding:10px 20px;
    margin:14px;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border:none;
    color: #cfcfcf;
    font-family: poppins;
    font-size: 18px;
}
.form-header{
    font-size: 24px;
    font-family: poppins;
    font-weight: 400;
    color: #cfcfcf;
    padding: 28px;
}
.input-subject{
    width: 84%;
    padding:10px 20px;
    margin:24px;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border:none;
    color: #cfcfcf;
    font-family: poppins;
    font-size: 18px;
}
.input-textarea{
    width: 84%;
    padding:10px 20px;
    margin:15px;
    height: 150px;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border:none;
    color: #cfcfcf;
    font-family: poppins;
    font-size: 18px;
}
form button{
    padding:8px 24px;
    font-family: poppins;
    font-size:20px;
    color: #cfcfcf;
    background:#BB0035;
    opacity: .8;
    margin: 20px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    transition: all .4s ease;
}
form button:hover{
  opacity: 1;
}
.contact-info-header{
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-family: poppins;
    font-weight: 400;
    color: #cfcfcf;
    padding: 30px;
}
.contect-info-content-line{
    height: auto;
    padding: 10px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    margin-left: 100px;
}
.contact-info-icon-text{
    color: #cfcfcf;
    padding:15px;
    font-family: poppins;
}
.contact-info-icon-text h6{
    font-size: 15px;
    opacity: .8;
}
.contact-info-icon-text p{
    font-size: 14px;
    opacity: .7;
}
.icon{
    height:40px;
    opacity: .8;
}

.footer{
    background: #1d1d1d;
    width: 100%;
    padding: 13px;
    color: whitesmoke;
    display: flex;
    flex-direction: row;
    font-family: poppins;
    justify-content: center;
    align-items: center;
    padding-bottom: 0.75em;
    
}
.footer .footer-text{
    position: relative;
    display: inline;
    font-size: 12px;
    font-weight: 2;
    opacity: .8;
}
.footer-image{
    display: flex;
    flex-direction: row;
    font-family: poppins;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
}
.footer-image img{
    padding-left: 6px;
}
.color-changer{
    height: auto;
    width: auto;
    display: flex;
    flex-direction: row;
    position: fixed;
    right:-150px;
    top:40%;
    z-index: 4;
    color:black;
    transition:all .4s ease;
}
.color-changer-active{
    right:0px;
    transition:all .4s ease;
}
.color-panel{
    height: 45px;
    cursor: pointer; 
    width:45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    background: whitesmoke;
}
.color-panel img{
    height: 40px; 
    width:40px;
    padding:2px;
    animation: rotate 2s linear infinite;
}
.colors ul{
    display: flex;
    flex-wrap: wrap;
    height: auto;
    max-width: 150px;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
}
.colors li{
    height: 30px;
    width: 30px;
    margin: 5px;
    border-radius: 20%;
    position: relative;
    overflow: hidden;
}
.colors li a{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.color-red{
    background: #bf5700;
}
.color-purple{
    background: #481380;
}
.color-green{
    background: #04A777;
}
.color-blue{
    background: #035aa6;
}
.color-malt{
    background: #00909e;
}
.color-orange{
    background: #dd7631;
}
@keyframes rotate{
    0%{
   transform: rotate(0deg);
    }
    100%{
   transform: rotate(360deg);
    }
}
@-webkit-keyframes rotate{
    0%{
        transform: rotate(0deg);
         }
         100%{
        transform: rotate(360deg);
         }
}
.color-selector{
    height:auto;
    width:150px;
    padding: 10px;
    background: whitesmoke;
    font-family: poppins;
    font-size: 16px;
    display: flex;
    color: black;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.color-selector li{
  list-style: none;
}

/* ////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////// */
/*
Mobile Phone
*/

@media only screen and (max-width: 550px){
    .header-content{
        height: 100vh;
        width: 100%;
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: whitesmoke;
        font-family: raleway;
        font-weight: 500;
        letter-spacing: 2px;
        font-size: 40px;
    }
    .contact{
        display: none;
    }
    #loader{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height:100vh;
        position: fixed;
        z-index:100;
        font-family: poppins;
        background-color: #202020;
        color: whitesmoke;
        font-size: 15px;
        width: 100%;
    }
    .header-image{
        float: right;
        height: auto;
        width: 0%;   
    }
    .social-media-links{
        width: 100%;
        left: 0;
        bottom: 0;
        position: absolute;
        padding: 15px;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .social-media-links a{
        padding: 15px;
    }
    .header-content-box{
        padding-left: 0px;
        z-index: 2;
        text-align: center;
    }
    #contact{
        display: none;
    }
    .header-content .firstline{
        z-index: 2;
        font-weight:700;
        font-family: poppins;
        font-size: 40px;
    }
    .header-content .secondline{
        z-index: 2;
        font-size: 20px;
        padding-top:0px ;
        font-weight:500;
        color: rgb(255, 255, 255,.8);
    }
    /*
    #breaker{
        height: 50vh;
        width: 200%;
        background-color: #c9d1cc;
        opacity: 1;
        animation: breakeranimate 2s linear;
        display: none;
        transition: all .4s ease;
        z-index: 10;
        position: fixed;
    }
    */
    @keyframes breakeranimate{
       0%{ transform : translateX(-100%)}
       50%{ transform : translateX(0%) }
       100%{ transform : translateX(100%) }
    }
    @-webkit-keyframes breakeranimate{
        0%{ transform : translateX(-100%) }
        50%{ transform : translateX(0%) }
        100%{ transform : translateX(100%) }
    }
    .header-content-box{
        z-index: 2;
        text-align: center;
        height: auto;
        padding-right: 0px;
        width: auto;
    
    }
    #about-content{
        display: flex;
        flex-direction:column;
        align-items: center;
        justify-content: center;
        height: auto;
        width: 100%;
        padding:30px;
        color: #cfcfcf;
        text-align: center;
    }
    
    .about-header{
        justify-content: center;
        font-size: 25px;
        font-family: raleway;
        padding:10px;
        font-weight: 900;
        color: #cfcfcf;
        width: 40vw;
    }
    
    .about-first-paragraph{
        color: #cfcfcf;
        justify-content: center;
        font-size: 20px;
        font-family: poppins;
        width: 95%;
        padding: 0px;
        font-weight: 400;
    }
    .about-first-paragraph .color{
        font-size: 30px;
    }
    .about-first-line{
        font-size: 28px;
        opacity: 1;
        margin-bottom: 10px;
        display: block;
    }
    .about-second-line{
        opacity: .8;
        font-size: 15px;
        font-weight: 200;
    }
    .about-second-line .link .color{
        font-size: 15px;
        font-weight: 200;
        font-family: poppins;
    }

    .about-main{
        display: flex;
        align-items:center;
        justify-content: center;
        width: 100vw;
        height: auto;
        flex-direction: column;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 40px;
        /*background-color: #035aa6;*/
    }
    .about-img img{
        padding: 0px;
        margin: 0px;
        height: 40vh;
        width: 80%;
        border-radius: 1em;
    }
    .about-img {
        height: 45vh;
        width: 100%;
        /*background-color: #dd7631;*/
        padding: 0px;
        margin: 0px;
        margin-right: 0;
        padding-top: 0px;
        /*padding: 30px;*/
        text-align: center;
        overflow: hidden;
    }
    .about-side-info{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .about-side-info-title{
        /*background-color:#14a704;*/
        text-align: left;
        font-family: roboto;
        font-size: 28px;
        letter-spacing: 0.05em;
        font-weight: 400;
        margin-bottom: 0.5em;
    }
    .about-side-info-title-paragraph{
        /*background-color:#a70469;*/
        font-size: 16px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        text-align: center;
        font-weight: 300;
        line-height: 1.5;
        width: 90vw;
    }
    
    .about-top-info {
        display: flex;
        flex-wrap: wrap;
        /*background-color:#0407a7;*/
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        padding-top: 0;
        font-weight: 300;
    }
    .about-top-info-text{
        font-size: 16px;
        font-family: roboto;
    }
    
    .about-top-info ul {
        list-style: none;
        padding-top: 0;
        padding: 1em;
    }
    
    .about-top-info ul i {
        /*font-size: 20px;*/
        color: #bf5700;
        font-weight: 2000;
        line-height: 2;
        padding: 0.1em;
    }
    
    *, ::after, ::before {
        box-sizing: border-box;
    }
    .about-bio{
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100vw;
        height: auto;
        font-family: roboto;
        color: #cfcfcf;
        align-items:center;
        align-content: center;
        justify-content: flex-start;
        justify-items: center;
        padding-bottom: 80px;
        padding-top: 0px;
        background-color: #1d1d1d;
    }
    .about-bio-text{
        width: 80vw;
        font-size: 16px;
        font-family: roboto;
        text-align: justify;
        line-height: 1.2;
        font-weight: 300;
    }
    .about-bio-text a{
        text-decoration: underline;
        color:#bf5700;
    }
    .bottom-header{
        display: none;
    }
    

    /* Media queries - Responsive timeline on screens less than 600px wide */
    
        /* Place the timelime to the left */
        .main-timeline-2::after {
            display: none;
        }

        /* Full-width containers */
        .timeline-2 {
            width: 100%;
            padding-left: 0;
            padding-right: 0;
            left: 40px;
        }

        .timeline-2::after {
            display: none;
        }
    
        /* Make sure that all arrows are pointing leftwards */
        .timeline-2::before {
        left: 0px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
        }

        .card{
            width: 80vw;
            margin-top: 40px;
        }
        
        /* Make sure all circles are at the same spot */
        .left-2::after,
        .right-2::after {
            left: 0px;
        }

        .left-2::before {
            display: none;
        }
        .right-2::before{
            display: none;
        }
        
        .left-2{
            padding: 0px 0px 0px 0px;
        }
        /* Make all right containers behave like the left ones */
        .right-2 {
            left: 40px;
            margin-top: 0px;
            padding: 0px 0px 0px 0px;
        }
        

    .service{
        height:400px;
        width:90%;
        margin: 1.5%;
        background-color: #191919;
        display: inline-block;
        box-shadow:0px 0px 25px rgb(0,0,0,.1);
        position: relative;
        text-align: center;
        z-index: 2;
        border-radius: 10px;
        overflow: hidden;
    }
    .services-heading{
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 28px;
    }
    .services-content{
        padding-bottom: 40px;
    }
    
    .service-img img{
        display: inline-block;
        z-index: 2;
        position: relative;
        margin: 20px;
        border-radius: 10px;
        padding: 4px;
        max-width: 70vw;
        height: auto;
        transition: all .8s ease;
    }

    .print img{
        height: 35vh;
        width: auto;
    }
    .service-description h2{
        padding: 10px;
        margin: 5px;
        font-weight: 400;
        font-size: 28px;
        font-family: roboto;
    }
    .service-description p{
        padding: 20px;
        padding-top: 10px;
        padding-bottom: 200px;
        font-weight: 300;
        font-size: 15px;
        color:#cfcfcf;
        font-family: roboto;
    }
    .career-timeline-heading{
        padding-bottom: 0px;
        padding-top: 60px;
    }
    
    .skill{
        width:80%;
    }
    .prog{
        height:30px;
    }
    .skills-content{
        height: auto;
        width:100%;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .portfolio{
        height:auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.5%;
        padding-right: 2%;
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .portfolio-text{
        width: 90%;
        padding-left: 0%;
        margin: 0%;
        margin-left: 0px;
        margin-top: 0px;
        z-index: 1;
        background: #070707;
        padding-top: 10px;
        padding-bottom: 10px;
    }
        .portfolio-image{
            position: relative;
        }
            .portfolio-text h2{
                font-size: 22px;
                font-family: poppins;
                font-weight: 200;
                padding: 10px;
            }
            .portfolio-text p{
                font-size: 15px;
                opacity: .8;
                font-family: poppins;
                font-weight: 200;
                padding: 15px;
            }
            .cursor{
                display: none;
            }
            .service:hover .service-img img{
                box-shadow:0px 0px 0px 0px #bf5700 ;
            }
            .portfolio-image img{
                height: 300px;
                width: 100%;
            }
            .portfolio-image{
                height: 300px;
                width: 90%;
            }
            #navigation-bar img{
                height: 30px;
                position: absolute;
                top: 30%;
                left: 25px;
                opacity: 0.6;
                transition: all .4s ease;
                display: none;
            }
            .blogs{
                height: auto;
                width: 90%;
                margin: 10px;
                margin-top: 20px;
                margin-bottom: 20px;
                position: relative;
                border-radius: 0.65em;
                border: 0.1em solid #c9d1cc;
                background-color: #1d1d1d;
            }
            .blogs .img{
                height: 83%;
                width: 100%;
                overflow: hidden;
                transition: all .65s ease;
                position: relative;
            }
            .blogs .color{
                color: #be5608;
                font-weight: 800; 
            }
            .blog-date{
                font-size: 14px;
                font-weight: 300;
            }
            .blogs .img img{
                height: 100%;
                width: 100%;
                transition: all .65s ease;
            }

            .blog-text h3{
              font-size: 1.35rem;
            }
            .blog-text p{
                font-size: 1rem;
              }
            .blogs:hover .img{
                  transform: translateY(0%);
              }
            .blogs:hover .blog-text{
                transform: translateY(0%);
            }
            .contact-content{
                width: 90%;
                margin: auto;
                height: auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            .contact-info{
                width: 90%;
                height: 500px;
                background-position: center;
                background-size: cover;
                border-radius: 16px;
                margin-bottom: 25px;
                position: relative;
                overflow: hidden;
            }
            .contact-info::before{
                content: "";
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background: #101010;
                opacity: .7;
                pointer-events: none;
            }
            .contact-form{
                height: auto;
                width: 90%;
                display: flex;
                padding-bottom: 40px;
                padding-right:0px;
                flex-direction: column;
            }
            form{
                display: flex;
                flex-direction: column;
                height: auto;
                width:auto;
                align-items: center;
                position: relative;
            }
            .input-line{
                width: 100%;
                height: auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            .input-name{
                width: 90%;
                padding:10px 20px;
                margin:14px;
                border-radius: 8px;
                outline: none;
                background: #050505;
                border:none;
                color: #cfcfcf;
                font-family: poppins;
                font-size: 16px;
            }
            .form-header{
                font-size: 22px;
                font-family: poppins;
                font-weight: 400;
                color: #cfcfcf;
                padding: 20px;
                padding-top: 0px;
            }
            .input-subject{
                width: 90%;
                padding:10px 20px;
                margin:24px;
                border-radius: 8px;
                outline: none;
                background: #050505;
                border:none;
                color: #cfcfcf;
                font-family: poppins;
                font-size: 16px;
            }
            .input-textarea{
                width: 90%;
                padding:10px 20px;
                margin:15px;
                height: 140px;
                border-radius: 8px;
                outline: none;
                background: #050505;
                border:none;
                color: #cfcfcf;
                font-family: poppins;
                font-size: 16px;
            }
            form button{
                padding:8px 24px;
                font-family: poppins;
                font-size:20px;
                color: #cfcfcf;
                opacity: .8;
                margin: 20px;
                cursor: pointer;
                border: none;
                border-radius: 8px;
                transition: all .4s ease;
            }
            form button:hover{
              opacity: 1;
            }
            .contact-info-header{
                position: relative;
                z-index: 2;
                font-size: 24px;
                font-family: poppins;
                font-weight: 400;
                color: #cfcfcf;
                padding: 20px;
            }
            .contect-info-content-line{
                height: auto;
                padding: 10px;
                position: relative;
                z-index: 2;
                display: flex;
                flex-direction: row;
                align-items: center;
                text-align: left;
                margin-left: 5%;
            }
            .contact-info-icon-text{
                color: #cfcfcf;
                padding:15px;
                font-family: poppins;
            }
            .contact-info-icon-text h6{
                font-size: 15px;
                opacity: .8;
            }
            .contact-info-icon-text p{
                font-size: 14px;
                opacity: .7;
            }
            .hire-me-section{
                display: none;
            }
           
}
       
/* ////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////// */
/*
Tablets
*/

@media all and (max-width: 1025px) and (min-width: 551px){
    .header-content{
        height: 100vh;
        width: 100%;
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: whitesmoke;
        font-family: raleway;
        font-weight: 500;
        letter-spacing: 2px;
        font-size: 40px;
    }
    .header-image{
        float: right;
        height: auto;
        width: 0%;   
    }
    .social-media-links{
        width: 100%;
        left: 0;
        bottom: 0;
        position: absolute;
        padding: 10px;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .header-content-box{
        padding-left: 0px;
        z-index: 2;
        text-align: center;
    }
    .contact{
        display: none;
    }
    .header-content .firstline{
        z-index: 2;
        font-weight:700;
        font-family: poppins;
        font-size: 55px;
    }
    .header-content .secondline{
        z-index: 2;
        font-size: 25px;
        padding-top:5px ;
        font-weight:500;
        color: rgb(255, 255, 255,.8);
    }

    /*
    #breaker{
        height: 50vh;
        width: 200%;
        background-color: #c9d1cc;
        opacity: 1;
        animation: breakeranimate 2s linear;
        display: none;
        transition: all .4s ease;
        z-index: 10;
        position: fixed;
    }
    */
    @keyframes breakeranimate{
       0%{ transform : translateX(-100%)}
       50%{ transform : translateX(0%) }
       100%{ transform : translateX(100%) }
    }
    @-webkit-keyframes breakeranimate{
        0%{ transform : translateX(-100%) }
        50%{ transform : translateX(0%) }
        100%{ transform : translateX(100%) }
    }
    .header-content-box{
        z-index: 2;
        text-align: center;
        height: auto;
        padding-right: 0px;
        width: auto;
    
    }
    #about-content{
        display: flex;
        flex-direction:column;
        align-items: center;
        color: #cfcfcf;
        justify-content: center;
        height: auto;
        width: 100%;
        text-align: center;
    }

    .about-first-paragraph{
        color: #cfcfcf;
        justify-content: center;
        font-size: 40px;
        font-family: poppins;
        width: 95%;
        padding: 25px;
        font-weight: 400;
    }

    .about-first-paragraph .color{
        font-size: 35px
    }
    .about-first-line{
        font-size: 35px;
        opacity: 1;
        margin-bottom: 10px;
        display: block;
    }
    .about-second-line{
        opacity: .8;
        font-size: 24px;
    }

    .about-second-line .link .color{
        font-size: 24px;
        font-weight: 200;
        font-family: poppins;
    }
    .about-main{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        height: auto;
        flex-direction: column;
        padding-bottom: 50px;
    }
    .about-img img{
        width: 100%;
        height: 380px;
        padding: 30px;
        border-radius: 2.25em;
    }
    .about-img {
        width: 550px;
        height:auto;
        padding: 30px;
        padding-top: 10px;

        max-width: 100%;
        /*background-color: #dd7631;*/
        padding: 0px;
        margin: 0px;
        margin-right: 0;
        padding-top: 0px;
        /*padding: 30px;*/
        text-align: center;
        overflow: hidden;
    }
    .about-side-info{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .about-side-info-title{
        /*background-color:#14a704;*/
        text-align: left;
        font-family: roboto;
        font-size: 28px;
        letter-spacing: 0.05em;
        font-weight: 400;
        margin-bottom: 0.5em;
    }
    .about-side-info-title-paragraph{
        /*background-color:#a70469;*/
        font-size: 16px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        text-align: center;
        font-weight: 300;
        line-height: 1.5;
        width: 70vw;
    }
    
    .about-top-info {
        display: flex;
        flex-wrap: wrap;
        /*background-color:#0407a7;*/
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        padding-top: 0;
        font-weight: 300;
    }
    .about-top-info-text{
        font-size: 16px;
        font-family: roboto;
    }
    
    .about-top-info ul {
        list-style: none;
        padding-top: 0;
        padding: 1em;
    }
    
    .about-top-info ul i {
        /*font-size: 20px;*/
        color: #bf5700;
        font-weight: 2000;
        line-height: 2;
        padding: 0.1em;
    }
    
    *, ::after, ::before {
        box-sizing: border-box;
    }

    .about-bio-text{
        width: 70vw;
    }
    .bottom-header{
        display: none;
    }


    .cv a button{
        border:none;
        padding: 0.4em 5em;
        color: whitesmoke;
        outline: none;
        font-size:20px;
        font-family: raleway;
        border-radius: 8px;
        cursor: pointer;
        position: relative;
        transition: all .4s ease;
        font-weight: 900;
        letter-spacing: 1px;
    }
    .cv a button:hover{
        opacity: 1;
        transform: scale(1.05);
    }
    .service{
        height:auto;
        width:45%;
        margin: 2%;
        background-color: #191919;
        display: inline-block;
        box-shadow:0px 0px 25px rgb(0,0,0,.1);
        position: relative;
        text-align: center;
        z-index: 2;
        border-radius: 10px;
        padding: 10px;
        overflow: hidden;
    }
    .service-description h2{
        padding: 10px;
        margin: 5px;
        font-weight: 400;
        font-size: 22px;
    }
    .service-description p{
        padding: 20px;
        padding-top: 0px;
        font-weight: 200;
        font-size: 15px;
        color:#cfcfcf;
    }


    .skill{
        width:40%;
    }
    .prog{
        height:35px;
    }
    .skills-content{
        height: auto;
        width:100%;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .portfolio{
        height:auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.5%;
        padding-right: 2%;
    padding-top: 50px;
    padding-bottom: 40px;
    }
    .portfolio-text{
        width: 70%;
        padding-left: 0%;
        margin: 0%;
        margin-left: 0px;
        margin-top: 0px;
        z-index: 1;
        background: #080808;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .portfolio-image{
        position: relative;
    }
    .portfolio-text h2{
        font-size: 35px;
        font-family: poppins;
        font-weight: 200;
        padding: 15px;
    }
    .portfolio-text p{
        font-size: 20px;
        opacity: .8;
        font-family: poppins;
        font-weight: 200;
        padding: 15px;
    }
    .cursor{
        display: none;
    }
    .service:hover .service-img img{
        box-shadow:0px 0px 0px 0px #bf5700 ;
    }
    .portfolio-image img{
        height: 380px;
        width: 100%;
        position: relative;
    }
    .portfolio-image{
        height: 380px;
        width: 70%;
    }
    #navigation-bar img{
        height: 30px;
        position: absolute;
        top: 30%;
        left: 25px;
        opacity: 0.6;
        transition: all .4s ease;
    }
    .blogs{
        height: auto;
        width: 75%;
        margin: 10px;
        margin-top: 20px;
        margin-bottom: 20px;
        position: relative;
        border-radius: 0.65em;
        border: 0.1em solid #c9d1cc;
        background-color: #1d1d1d;
    }
    .blogs .img{
        height: 83%;
        width: 100%;
        overflow: hidden;
        transition: all .65s ease;
        position: relative;
    }
    .blogs .color{
        color: #be5608;
        font-weight: 800; 
    }
    .blog-date{
        font-size: 13px;
    }
    .blogs .img img{
        height: 100%;
        width: 100%;
        transition: all .65s ease;
    }

    .blog-text h3{
      font-size: 1.35rem;
    }
    .blog-text p{
        font-size: 1rem;
      }
    .blogs:hover .img{
          transform: translateY(0%);
      }
    .blogs:hover .blog-text{
        transform: translateY(0%);
    }
    .contact-content{
        width: 90%;
        margin: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .contact-info{
        width: 70%;
        height: 500px;
        background-position: center;
        background-size: cover;
        border-radius: 16px;
        margin-bottom: 50px;
        position: relative;
        overflow: hidden;
    }
    .contact-info::before{
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: #101010;
        opacity: .7;
        pointer-events: none;
    }
    .contact-form{
        height: auto;
        width: 90%;
        display: flex;
        padding-bottom: 40px;
        padding-right:0px;
        flex-direction: column;
    }
    form{
        display: flex;
        flex-direction: column;
        height: auto;
        width:auto;
        align-items: center;
        position: relative;
    }
    .input-line{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .input-name{
        width: 80%;
        padding:10px 20px;
        margin:14px;
        border-radius: 8px;
        outline: none;
        background: #050505;
        border:none;
        color: #cfcfcf;
        font-family: poppins;
        font-size: 16px;
    }
    .form-header{
        font-size: 22px;
        font-family: poppins;
        font-weight: 400;
        color: #cfcfcf;
        padding: 20px;
        padding-top: 0px;
    }
    .input-subject{
        width: 80%;
        padding:10px 20px;
        margin:24px;
        border-radius: 8px;
        outline: none;
        background: #050505;
        border:none;
        color: #cfcfcf;
        font-family: poppins;
        font-size: 16px;
    }
    .input-textarea{
        width: 80%;
        padding:10px 20px;
        margin:15px;
        height: 140px;
        border-radius: 8px;
        outline: none;
        background: #050505;
        border:none;
        color: #cfcfcf;
        font-family: poppins;
        font-size: 16px;
    }
    form button{
        padding:8px 24px;
        font-family: poppins;
        font-size:20px;
        color: #cfcfcf;
        opacity: .8;
        margin: 20px;
        cursor: pointer;
        border: none;
        border-radius: 8px;
        transition: all .4s ease;
    }
    form button:hover{
      opacity: 1;
    }
    .contact-info-header{
        position: relative;
        z-index: 2;
        font-size: 24px;
        font-family: poppins;
        font-weight: 400;
        color: #cfcfcf;
        padding: 20px;
    }
    .contect-info-content-line{
        height: auto;
        padding: 10px;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        margin-left: 30%;
    }
    .hire-me-section{
        display: none;
    }
            
            
}





/* ////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////// 
@media all and (max-width: 9000px) and (min-width: 1441px)*/
/*
Monitor
*/

@media all and (max-width: 9000px) and (min-width: 1441px){

    .portfolio-image img{
        height: 400px;
        width: 100%;
        position: relative;
    }
    .portfolio-image{
        height: 400px;
        width: 40%;
    }
    .about-main{
        display: flex;
        align-items:center;
        justify-content: center;
        width: 90vw;
        height: 100%;
        flex-direction: row;
        /*background-color: #035aa6;*/
        padding-left: 7%;
    }
    .about-img img{
        padding: 0px;
        margin: 0px;
        height: auto;
        width: 100%;
        animation: opacity 1.4s ease ;
        border-radius: 1em;
        max-width: 625px;
        max-height: 500px;
    }
    .about-img {
        height: 45vh;
        width: 100%;
        max-width: 625px;
        /*background-color: #dd7631;*/
        padding: 0px;
        margin: 0px;
        margin-right: 3em;
        text-align: right;
        /*padding: 30px;*/
    }
    .about-side-info{
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: left;
    }

    .about-side-info-title{
        /*background-color:#14a704;*/
        text-align: left;
        font-family: roboto;
        font-size: 40px;
        letter-spacing: 0.05em;
        font-weight: 400;
        margin-bottom: 0.5em;
    }
    .about-side-info-title-paragraph{
        /*background-color:#a70469;*/
        font-size: 18px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        text-align: left;
        font-weight: 300;
        line-height: 1.5;
        max-width: 550px;
    }

    .about-top-info {
        display: flex;
        flex-wrap: wrap;
        /*background-color:#0407a7;*/
        text-align: left;
        align-items: left;
        justify-content: left;
        margin-top: 0;
        padding-top: 0;
        font-weight: 300;
    }
    .about-top-info-text{
        font-size: 18px;
        font-family: roboto;
    }

    .about-top-info ul {
        list-style: none;
        padding-top: 0;
        padding: 1em;
    }

    .about-top-info ul i {
        /*font-size: 20px;*/
        color: #bf5700;
        font-weight: 2000;
        line-height: 2;
        padding: 0.1em;
    }

    
    .cv a button{
        border:none;
        padding: 0.4em 5em;
        color: #cfcfcf;
        outline: none;
        font-size:20px;
        font-family: roboto;
        border-radius: 4px;
        cursor: pointer;
        position: relative;
        transition: all .4s ease;
        font-weight: 400;
        letter-spacing: 1px;
    }
    .cv a button:hover{
        opacity: 1;
        transform: scale(1.05);
    }


    /*TIMELINE ADD*/
    /* The actual timeline (the vertical ruler) */
    .main-timeline-2 {
        position: relative;
    }
    
    /* The actual timeline (the vertical ruler) */
    .main-timeline-2::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #ffffff;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    }
    
    /* Container around content */
    .timeline-2 {
    position: relative;
    /*background-color:#04A777;
    border: 0.2em solid #BB0035;*/
    width: 50%;
    }

    .card{
        width: 50%;
        max-width: 400px;
        margin-top: -20px;
        font-family: roboto;
        border: 10px solid whitesmoke;
        border-radius: 1em;
        background-color: whitesmoke;
    }
    .card img{
        width: 100%;
        border: 1px;
        border-radius: 1em;
    }

    .card:hover img{
        transform: scale(1.03);
        transition: all 0.3s ease;
    };
    .card-body{
        background-color: whitesmoke;
        margin-top: -2px;
    }

    .fw-bold{
        padding-top: 7px;
        padding-left: 7px;
        font-weight: 600;
        font-size: 17px;
        letter-spacing: 1px;
    }

    .text-muted{
        padding-left: 7px;
        padding-top: 3px;
        font-size: 14px;
    }
    .mb-0{
        padding: 7px;
        font-size: 15px;
    }
    /* The circles on the timeline */
    .timeline-2::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    left: 50%;
    background-color: #c9d1cc;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    margin-left: -3px;
    }
    
    /* Place the container to the left */
    .left-2 {
    padding: 0px 40px 10px 0px;
    right: -22%;
    }
    
    /* Place the container to the right */
    .right-2 {
    margin-top: -200px;
    padding: 0px 0px 0px 70px;
    left: 50%;
    }
    
    /* Add arrows to the left container (pointing right) */
    .left-2::before {
    content: " ";
    position: absolute;
    top: 13px;
    z-index: 1;
    left: 49.75%;
    border: medium solid #c9d1cc;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #c9d1cc;
    }
    
    /* Add arrows to the right container (pointing left) */
    .right-2::before {
    content: " ";
    position: absolute;
    top: 13px;
    z-index: 1;
    left: 3.25%;
    border: medium solid #c9d1cc;
    border-width: 15px 15px 15px 0;
    border-color: transparent #c9d1cc transparent transparent;
    }
    
    /* Fix the circle for containers on the right side */
    .right-2::after {
        left: -1.5%;
    }
    /* Fix the circle for containers on the left side */
    .left-2::after {
        left: 54.5%;
    }
    
    



    .service{
        height:400px;
        width:28%;
        margin: 1.5%;
        padding: 10px;
        background-color: #191919;
        display: inline-block;
        box-shadow:0px 0px 25px rgb(0,0,0,.05);
        position: relative;
        text-align: center;
        z-index: 2;
        border-radius: 10px;
        overflow: hidden;
        animation: opacity 1.4s ease ;
    }
    .service-img{
        text-align: center;
    }
    
    .service-img img{
        display: inline-block;
        z-index: 2;
        position: relative;
        margin: 5px;
        margin-top: 17px;
        border-radius: 10px;
        padding: 4px;
        height:200px;
        width: auto;
        transition: all .8s ease;
    }
    .service-description h2{
        padding: 10px;
        margin: 5px;
        font-weight: 400;
        font-family: roboto;
        font-size: 32px;
        color: #cfcfcf;
    }
    .service-description p{
        padding: 20px;
        padding-top: 10px;
        font-weight: 300;
        font-size: 18px;
        opacity: 1;
        font-family: roboto;
        color: #cfcfcf;
    }
    .blogs{
        height: 470px;
        width: 30%;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 50px;
        position: relative;
        overflow: hidden;
        border-radius: 0.65em;
        border: 0.1em solid #c9d1cc;
        background-color: #1d1d1d;
    }
    .blogs .img{
        height: 83%;
        width: 100%;
        overflow: hidden;
        transition: all .65s ease;
        position: relative;
        padding: 0;
        padding-bottom: 0%;
    }
    .blogs .color{
        color: #be5608;
        font-weight: 800; 
    }
    .blog-date{
        position: absolute;
        left: 0;
        bottom: 0;
        color: white;
        font-size: 13px;
        text-align: center;
        font-weight: 400;
        font-family: poppins;
        padding: 3px;
        width: 25%;
        height: auto;
    }
    .blogs .img img{
        height: 100%;
        width: 100%;
        transition: all .65s ease;
    }
    .blog-text{
        height: 80%;
        width: 100%;
        text-align: center;
        vertical-align: center;
        font-family: roboto;
        color: #cfcfcf;
        background-color: #1d1d1d;
        transition: all .5s ease;
      }
      .blog-text h3{
        font-size: 1.35rem;
        font-weight: 500;
        height: 20%;
        padding: 20px;
        margin-top: 0.2em;
        letter-spacing: 1px;
      }
      .blog-text p{
          font-size: 1rem;
          opacity: 1;
          font-weight: 300;
          height: 80%;
          padding: 40px;
          padding-top: 0px;
          letter-spacing: 1px;
      }
      
      .blogs .project-button{
          background-color: #be5608;
          color: white;
          font-weight: 500; 
          padding: 8px;
          padding-right: 32px;
          padding-left: 32px;
          border-radius: 5px;
      }
      .blogs:hover .img{
            transform: translateY(-70%);
      }
      .blogs:hover .blog-text{
          transform: translateY(-70%);
      }
      .blogs:hover .ar-affordance{
        transform: translateY(-105%);
      }
      .blogs:hover .ar-affordance{
        transform: translateY(-105%);
    }
      .blogs:hover .augre{
          transform: translateY(-105%);
      }
      .blogs:hover .augre{
          transform: translateY(-105%);
      }
      .blogs:hover .ar-control{
          transform: translateY(-105%);
      }
      .blogs:hover .ar-control{
          transform: translateY(-105%);
      }
      .blogs:hover .haptics{
          transform: translateY(-105%);
      }
      .blogs:hover .haptics{
          transform: translateY(-105%);
      }
      
      .blogs:hover .auto-car{
          transform: translateY(-105%);
      }
      .blogs:hover .auto-car{
          transform: translateY(-105%);
      }
      .blogs:hover .robot-latency{
          transform: translateY(-105%);
      }
      .blogs:hover .robot-latency{
          transform: translateY(-105%);
      }
      .blogs:hover .motion-planning{
          transform: translateY(-105%);
      }
      .blogs:hover .motion-planning{
          transform: translateY(-105%);
      }
      .blogs:hover .kilnbot{
          transform: translateY(-105%);
      }
      .blogs:hover .kilnbot{
          transform: translateY(-105%);
      }
      .blogs:hover .senior-design{
          transform: translateY(-105%);
      }
      .blogs:hover .senior-design{
          transform: translateY(-105%);
      }
      .blogs:hover .shadow-arm{
          transform: translateY(-105%);
      }
      .blogs:hover .shadow-arm{
          transform: translateY(-105%);
      }
      
    .contact-header{
        height: auto;
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
        font-size: 45px;
        font-family: raleway;
        color: #cfcfcf;
        padding:10px;
        padding-bottom: 30px;
        padding-top: 60px;
        font-weight: 900;
    }
    .contact-header-caption{
        padding: 10px;
        color: #cfcfcf;
        opacity: .9;
        font-family:raleway;
        font-size: 18px;
    }
    .contact-content{
        width: 90%;
        margin: auto;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .contact-info{
        width: 40%;
        height: 600px;
        background-position: center;
        background-size: cover;
        border-radius: 16px;
        margin-bottom: 50px;
        position: relative;
        overflow: hidden;
    }
    .contact-info::before{
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: #101010;
        opacity: .7;
        pointer-events: none;
    }
    .contact-form{
        height: 600px;
        width: 60%;
        display: flex;
        flex-direction: column;
    }
    form{
        display: flex;
        flex-direction: column;
        height: auto;
        width:auto;
        align-items: center;
        position: relative;
    }
    .input-line{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .input-name{
        width: 60%;
        padding:10px 20px;
        margin:14px;
        border-radius: 8px;
        outline: none;
        background: #050505;
        border:none;
        color: #cfcfcf;
        font-family: poppins;
        font-size: 18px;
    }
    .form-header{
        font-size: 24px;
        font-family: poppins;
        font-weight: 400;
        color: #cfcfcf;
        padding: 20px;
        padding-top: 0px;
    }
    .input-subject{
        width: 60%;
        padding:10px 20px;
        margin:24px;
        border-radius: 8px;
        outline: none;
        background: #050505;
        border:none;
        color: #cfcfcf;
        font-family: poppins;
        font-size: 18px;
    }
    .input-textarea{
        width: 60%;
        padding:10px 20px;
        margin:15px;
        height: 150px;
        border-radius: 8px;
        outline: none;
        background: #050505;
        border:none;
        color: #cfcfcf;
        font-family: poppins;
        font-size: 18px;
    }
    form button{
        padding:8px 24px;
        font-family: poppins;
        font-size:20px;
        color: #cfcfcf;
        opacity: .8;
        margin: 20px;
        cursor: pointer;
        border: none;
        border-radius: 8px;
        transition: all .4s ease;
    }


}

/* Mobile responsiveness for video controls */
@media only screen and (max-width: 1025px) {
    #video-controls {
        bottom: 88px;
    }
}

@media only screen and (max-width: 768px) {
    #video-controls {
        bottom: 100px;
        padding: 12px 20px;
        gap: 15px;
    }
    
    .video-nav-btn {
        width: 28px;
        height: 28px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .video-nav-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media only screen and (max-width: 550px) {
    #video-controls {
        bottom: 90px;
        padding: 10px 15px;
        gap: 12px;
    }
    
    .video-nav-btn {
        width: 24px;
        height: 24px;
    }
    
    .dot {
        width: 5px;
        height: 5px;
    }
    
    .video-nav-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Mobile responsiveness for nav-name */
@media only screen and (max-width: 768px) {
    .nav-name {
        font-size: 22px;
        left: 15px;
        letter-spacing: 0.5px;
    }
    
    /* Hide desktop navigation links on mobile */
    #navigation-bar .navigation-links {
        display: none;
    }
    
    /* Show hamburger menu on mobile */
    .menubar {
        display: block;
    }
    
    /* Mobile consulting button */
    .consulting-link {
        right: 15px;
    }
    
    .consulting-btn {
        padding: 10px 12px;
        min-width: 100px;
    }
    
    .consulting-title {
        font-size: 12px;
    }
    
    .consulting-subtitle {
        font-size: 9px;
    }
    
    .consulting-logo {
        width: 16px;
        height: 16px;
    }
    
    .consulting-logo img {
        width: 12px;
        height: 12px;
    }
}

@media all and (max-width: 1025px) and (min-width: 769px) {
    .nav-name {
        font-size: 24px;
        letter-spacing: 0.8px;
    }
    
    /* Hide hamburger menu on tablet */
    .menubar {
        display: none;
    }
}

@media only screen and (max-width: 550px) {
    .nav-name {
        font-size: 20px;
        left: 15px;
        letter-spacing: 0.5px;
    }
    
    .mobile-nav-links a {
        font-size: 20px;
    }
    
    .nav-name-mobile {
        font-size: 28px;
    }
    
    /* Small mobile consulting button */
    .consulting-link {
        right: 10px;
    }
    
    .consulting-btn {
        padding: 8px 10px;
        min-width: 90px;
    }
    
    .consulting-content {
        gap: 4px;
    }
    
    .consulting-title {
        font-size: 11px;
    }
    
    .consulting-subtitle {
        font-size: 8px;
    }
    
    .consulting-logo {
        width: 14px;
        height: 14px;
    }
    
    .consulting-logo img {
        width: 10px;
        height: 10px;
    }
}