
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('color-variables.css');

html
{
    scroll-behavior: smooth;
}
*,
h1,
h2,
h3,
h5,
h5,
h6,
a,
p,
li,
span,
body,
input,
button 
{
  font-family: 'Poppins', sans-serif;
  color: var(---gray1-color);
  line-height: 120%;
  text-decoration: none;
  font-weight: 400;
  outline: none;
}
button:focus, a:focus, .btn-check:focus+.btn-secondary, .btn-secondary:focus
{
    outline: none;
    border: none;
    box-shadow: none;
    background: none;
}
h1
{
    font-size: 96px;
    font-weight: bold;
    line-height: 100%;
}
h2
{
    font-size: 56px;
    font-weight: bold;
}
h3
{
    font-size: 32px;
    font-weight: 600;
}
h4
{
    font-size: 24px;
    font-weight: 500;
}
p
{
    color: var(---gray2-color);
    line-height: 180%;
    font-size: 18px;
    letter-spacing: .5px;
}
.btn-primary
{
    background-color: var(---primary-color);
    font-size: 18px;
    border-radius: 25px;
    min-width: 140px;
    height: 48px;
    border-bottom: 4px solid rgba(0,0,0,.2);
    transition: all .5s ease;
}
.btn-primary:hover
{
    background-color: var(---primary-dark-color);
    transform: translateY(-3px);
}

/* base */

.container-fluid
{
    padding: 0 2%;
}
.section-gutter{
    height: 100px;
}
.heading-gutter{
    height: 64px;    
}
.container
{
    max-width: 1080px;
}

/* header */

.header
{
    width: 100%;
    border-radius: 0;
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background .5s ease;
}
.header.fixed
{
    background-color: var(---white);
}
.navbar-brand
{
    font-weight: bold;
    font-size: 24px;
    color: var(---gray1-color);
    text-transform: lowercase;
}
.navbar-light .navbar-nav .nav-item
{
    margin: 0 16px;
}
.navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link i
{
    font-size: 17px;
    text-transform: capitalize;
    padding: 0;
    position: relative;
    transition: margin .5s ease-in-out;
    color: var(---gray2-color);
    vertical-align: middle;
}
.navbar-light .navbar-nav .nav-link::before
{
    content: '';
    position: absolute;
    width: 100%;
    transition: .5s ease-in-out;
    height: 1px;
    left: 0;
    top: 0;
    background-color: var(---primary-color);
    opacity: 0;
}
.navbar-light .navbar-nav .nav-link:hover::before
{
    opacity: 100;
    top: 110%;
}
.navbar-light .navbar-nav .nav-link  i
{
    margin-right: 4px;
}
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:hover i
{
    color: var(---primary-color);
}
.dropdown-toggle 
{
    padding-right: 20px !important;
}
.navbar-light .navbar-nav .nav-item.dropdown .nav-link::after
{
    background-image: url(../images/chevron-down.svg);
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    content: '';
    position: absolute;
    right: 0;
    top: 2px;
    font-size: 0;
}
.navbar-light .navbar-nav .nav-item.dropdown .nav-link:hover::after, .nav-link.active:after
{
    background-image: url(../images/chevron-down-hover.svg) !important;
}
.dropdown-menu.show
{
    padding: 8px 0;
    margin-top: 8px;
    border: 0;
    left: auto;
    right: 0;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0,0,0,.1);
}
.dropdown-menu.show li .dropdown-item
{
    padding: 16px 16px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(---gray2-color);
    min-width: 200px;
    border-bottom: 1px solid var(---grayLight-color);
    transition: background .5s ease;
}
.dropdown-menu.show li .dropdown-item:hover
{
    color: var(---primary-color);
    background-color: var(---grayLight-color);
}
.navbar-light .navbar-nav .resume
{
    margin-left: 3rem;
}
.dropdown-item.active, .dropdown-item:active
{
    background-color: none;
    background: none;
    color: var(---primary-color) !important;
}

/* hero banner */

.hero-banner
{
    position: relative;
    overflow: hidden;
    height: 100vh;
    background-image: url(../images/pattern.svg);
}
.banner-text-outer
{
    position: relative;
    display: inline-block;
}
.hero-banner .banner-text
{
    position: relative;
    display: inline-block;
    /* border: 2px solid var(---gray1-color); */
    padding: 20px 30px;
    text-align: center;
}
.hero-banner .banner-text h1
{
    text-transform: uppercase;
    color: var(---gray1-color);
    line-height: 100%;
    /* margin-bottom: 32px; */
    transition: .5s ease-in-out;
}
.hero-banner .banner-text p
{
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    color: var(---gray3-color);
    line-height: auto;
}
.hero-banner .banner-text p i
{
    color: var(---gray3-color); 
    margin-right: 8px;
}
.anchor-points
{
    border: 2px solid var(---gray1-color);
    width: 16px;
    height: 16px;
    position: absolute;
    border-radius: 4px;
    display: none;
}
.anchor-points.one
{
    left: -8px;
    top: -8px;
    background-color: var(---white);
}
.anchor-points.two
{
    left: -8px;
    bottom: -8px;
    background-color: var(---white);
}
.anchor-points.three
{
    right: -8px;
    top: -8px;
    background-color: var(---white);
}
.anchor-points.four
{
    right: -8px;
    bottom: -8px;
    background-color: var(---white);
}
.my-cursor
{
    background-color: var(---accent-orange-color);
    color: var(---white);
    font-size: 18px;
    font-weight: 400;
    padding: 8px 16px;
    position: absolute;
    z-index: 1;
    border-radius: 4px;
    transition: all .8s ease;
}
.banner-text-outer:hover .my-cursor.one
{
    transform: translate(-12px, -12px);
}
.my-cursor.one
{
    bottom: -60%;
    right: -10%;
    animation: cursor_animation_1 5s ease;
    animation-iteration-count:initial;
    animation-delay: 4s;
    display: none;
}
.my-cursor::before
{
    position: absolute;
    left: -16px;
    top: -15px;
    background-image: url(../images/pointer.svg);
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    font-size: 0;
    background-position: center;
    content: '';
}
@keyframes cursor_animation_1
{
    0% {bottom: -60%;}
  
    25% {bottom: 32px;right: -40px;}

    50% {bottom: 32px;right: 30%;}

    75% {bottom: 20px;right: 50px;}

    100% {bottom: -60%;}
}
.my-cursor.two
{
    background-color: var(---accent-green-color);
    border-radius: 0 25px 25px 25px;
    border: 2px solid var(---accent-green-dark-color);
    box-shadow: 0px 4px 10px rgba(9, 154, 21, 0.3);
    position: relative;
    display: inline-block;
    transition: width .5s;
}
.my-cursor.two::before
{
    background-image: url(../images/pointer-purple.svg);
}
.my-cursor .blinker
{
    width: 111px;
    opacity: 100;
    animation: typing 2s steps(16), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 1px solid;
    color: var(---white);
    display: block;
    text-align: left;
    transition: width .5s;
    line-height: 100%;
}
@keyframes typing {
    from {
        width: 0;
    }
}
@keyframes blink {
    50% {
        border-color: transparent;
    }
}
.mouse 
{
    width: 35px;
    height: 50px;
    border-left: 1px solid var(---gray1-color);
    border-top: 1px solid var(---gray1-color);
    border-right: 1px solid var(---gray1-color);
    border-bottom: 4px solid var(---gray1-color);
    border-radius: 60px;
    position: absolute;
    bottom: 5%;
    left: 50%;
    margin-left: -17.5px;
    background: var(---white);
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}
.mouse::before
{
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(---gray1-color);
    border-radius: 4px;
    opacity: 1;
    animation: wheel 2s infinite;
}
@keyframes wheel 
{
	to {
		opacity: 0;
		top: 36px;
	}
}

/* home about me */
.hm-details
{
    background-color: var(---white);
    padding: 24px;
    border-radius: 24px 24px 24px 0;
    border-left: 1px solid var(---gray1-color);
    border-top: 1px solid var(---gray1-color);
    border-right: 1px solid var(---gray1-color);
    border-bottom: 8px solid var(---gray1-color);
    height: fit-content !important;
    margin: auto 0 auto -40px;
    max-width: 460px;
    transition: all .5s ease;
}
.hm-details:hover
{
    transform: translateY(-10px);
}
.ha-name
{
    margin-bottom: 20px;
}
.ha-name p
{
    color: var(---gray1-color);
    margin: auto 0 auto 4px;
    line-height: 100%;
}
.ha-name span
{
    background-color: var(---accent-green-color);
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    color: var(---white);
    padding-top: 8px;
    font-size: 20px;
    border-radius: 24px;
    margin-right: 8px;
}
.ha-description
{
    margin-bottom: 20px;
}
.hm-details a
{
    color: var(---gray1-color);
    font-size: 18px;
}
.hm-details a:hover
{
    color: var(---primary-dark-color);
}

/* works */
.home-works .row > div
{
    padding: 0 20px;
    margin-bottom: 40px;
}
.hm-icon-holder
{
    width: 100%;
    text-align: center;
    background-color: var(---accent-yellow-color);
    border-radius: 24px;
    transition: .3s ease-in-out;
    border-bottom: 8px solid rgba(29, 29, 29, 0.1);
}
.hm-icon-holder img
{
    width: 100px;
    margin-top: 28%;
    margin-bottom: 1rem;
    transition: margin .4s ease-in-out;
    display: inline-block;
}
.hm-icon-holder h4
{
    color: var(---white);
}
.home-works .hm-icon-holder:hover img
{
    margin-top: 23%;
}
.home-works .hm-icon-holder:hover
{
    transform: translateY(-15px);
}
.motion
{
    background-color: var(---accent-orange-color);
}
.graphics
{
    background-color: var(---accent-lightblue-color);   
}
.hm-case-studies
{
    background: var(---accent-purple-color);
    padding: 40px 32px;
    border-radius: 24px;
    display: inline-block;
    transition: .3s ease-in-out;
    border-bottom: 8px solid rgba(29, 29, 29, 0.1);
}
.hm-case-studies h4
{
    color: var(---white);
}
.hm-case-studies p
{
    margin: 0;
    color: var(---white);
}
.hm-case-studies span
{
    display: inline-block;
    vertical-align: middle;
}
.hm-case-studies span.cs-icon
{
    width: fit-content;
}
.hm-case-studies span.cs-icon img
{
    width: 100px;
}
.hm-case-studies span.cs-text
{
    width: 80%;
    padding-left: 16px;
}
.hm-case-studies:hover
{
    transform: translateY(-15px);
}
/* recommendations */

/* .recommendations
{
    background-image: url(../images/strip.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
} */
.recommendations .col-sm-4
{
    height: fit-content;
    margin: auto;
    padding: 0 20px;
}
.rec-card
{
    background-color: var(---white);
    padding: 24px;
    border-radius: 24px 24px 24px 24px;
    border-left: 1px solid var(---gray1-color);
    border-top: 1px solid var(---gray1-color);
    border-right: 1px solid var(---gray1-color);
    border-bottom: 8px solid var(---gray1-color);
    height: fit-content !important;    
    transition: .5s ease-in-out;
    margin-bottom: 40px;
    min-height: 390px;
}
.rec-card p
{
    margin: 0;
}
.personal-details
{
    display: flex;
    margin-bottom: 24px;
    vertical-align: middle;
}
.rec-message
{
    overflow: hidden;
    margin-bottom: 24px;
}
.rec-card .avatar-holder
{
    position: relative;
    width: 48px;
    height: 48px;
    overflow: hidden;
    display: inline-block;
    border-radius: 30px;
    margin-right: 12px;
    vertical-align: middle;
}
.rec-card .avatar-holder img
{
    position: absolute;
    max-width: 100%;
}
.personal-details p
{
    font-size: 16px;
    color: var(---gray1-color);
}
.personal-details label
{
    font-size: 12px;
    color: var(---gray2-color);
}
.rec-card .org a
{
    font-size: 14px;
    color: var(---primary-dark-color);
}
.rec-card .org a:hover
{
    text-decoration: underline;
}

/* contact form */

.contact-form .form-control
{
    border-radius: 12px;
    border-left: 1px solid var(---gray1-color);
    border-top: 1px solid var(---gray1-color);
    border-right: 1px solid var(---gray1-color);
    border-bottom: 4px solid var(---gray1-color);
    padding: 8px 12px;
    min-height: 48px;
}
.social-handles a
{
    padding: 8px 20px;
    color: var(---gray2-color);
    transition: color .5s;
}
.social-handles a:hover
{
    color: var(---primary-dark-color);
}
.social-handles li+li
{
    border-left: 1px solid var(---border-color);
}

/* footer */

footer
{
    background-color: var(---gray1-color);
    padding: 16px 0;
}
footer h5
{
    color: var(---white);
    margin-bottom: 16px;
    font-size: 16px;
}
footer ul
{
    margin: 0;
    padding: 0;
}
footer ul li
{
    display: block;

}
footer ul li+li
{
    margin-top: 12px;
}
footer p, footer a  
{
    margin: 0;
    font-size: 14px;
    text-decoration: none;
    color: var(---gray3-color);
    font-weight: 300;
}
footer a:hover
{
    color: var(---grayLight-color);
}
.copyright
{
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}
.copyright p
{
    font-size: 12px;
}
.sitemap a
{
    text-transform: capitalize;
    transition: color .5s ease;
}
/* other elemetns  */

.custom-cursor 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(---accent-orange-color);
    background-color: var(---accent-orange-color);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: all 0.3s ease-out;
    animation: heartbeat 1s infinite;
  }
  @keyframes heartbeat 
  {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
  .drag-element 
  {
    position: absolute;
    cursor: grab;
    transition: transform 0.3s ease-out;
    user-select: none;
  }
  


/* preloader */

#preloader 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    overflow: hidden;
  }
  
  .text 
  {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 64px;
    font-weight: bold;
    color: var(---gray1-color);
    text-align: center;
    text-transform: uppercase;
    margin-top: -32px;
    margin-left: -150px;
    width: 300px;
    text-align: center;
  }
  
  @keyframes glitch 
  {
    0% {
      transform: scale(1);
    }
    5% {
      transform: scale(1.1) skewX(10deg);
      opacity: 0.8;
      color: aqua;
    }
    10% {
      transform: scale(0.9) skewX(-10deg);
      opacity: 0.8;
    }
    15% {
      transform: scale(1.1) skewX(10deg);
      opacity: 0.8;
      color: blue;
    }
    20% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(1);
    }
  }
  
  .glitch-effect 
  {
    animation: glitch 1s infinite;
  }
  
  
  /* Hero section gradient */

  .gradient-background 
  {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #ffffff, #0048FF, #ffffff, #AF68F7,#ffffff, #0048FF);
    background-size: 200% 200%;
    animation: waveAnimation 10s linear infinite;
    z-index: 0;
  }
  .gradient-background::before
  {
    position: absolute;
    width: 100%;
    height: 150px;
    bottom: 0;
    left: 0;
    content: "";
    background: linear-gradient(0, #ffffff, #ffffff00);
  }
  
  @keyframes waveAnimation {
    0% {
      background-position: 0 50%;
      opacity: 0;
    }
    50% {
      background-position: 100% 50%;
      opacity: .2;
    }
    100% {
      background-position: 0 50%;
      opacity: 0;
    }
  }

  #toast-message {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 24px;
    border: 2px solid var(---accent-green-dark-color);
    border-radius: 5px;
    color: var(---white);
    font-size: 16px !important;
    display: none;
  }


.my-avatar
{
    position: absolute;
    left: -1000px;
}


  