/* ------------------------------------------------------------------------------

  Template Name: Dhaval Solanki Portfolio
  Description: Official portfolio of Dhaval Solanki - Senior UI Developer & Visual Designer
  Author: Dhaval Solanki
  Author URI: https://dhavalsolanki.com

  1.  Global

      1.1 General
      1.2 Typography
      1.3 Buttons
      1.4 Forms
      1.5 Animation

  2.  Preloader
  3.  Header
  4.  Home Personal

	  4.1 Slide Intro
	  4.2 Slide Services
	  4.3 Slide Projects
	  4.4 Slide Awards
	  4.5 Slide Experience
	  4.6 Slide Clients
	  4.7 Slide Testimonials
	  4.8 Slide Contact

  5.  Footer



/*-------------------------------------------------------------------------------
  1. Global
-------------------------------------------------------------------------------*/


/* 1.1 General */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&display=swap');

html {
    font-size: 14px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #000000;
}

a,
a:hover {
    color: #76ABAE;
}

a.text-primary:focus,
a.text-primary:hover {
    color: #76ABAE !important;
}

::selection {
    background-color: #FF5722;
    color: #ffffff;
    text-shadow: none;
}

-webkit-::selection {
    background-color: #FF5722;
    color: #ffffff;
    text-shadow: none;
}

::-moz-selection {
    background-color: #FF5722;
    color: #ffffff;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #FF5722;
}

@media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1200px;
    }
}

@media (min-width: 1600px) {
    .container-fluid {
        padding-left: 4.25rem;
        padding-right: 4.25rem;
    }
}

.full-height {
    min-height: 100vh;
}



/* 1.2 Typography */

.font-custom {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

.text-primary {
    color: #FF5722 !important;
}

.text-success,
a.text-success:hover {
    color: #76ABAE !important;
}

.text-underline {
    text-decoration: underline;
}

.text-md {
    font-size: 1.125rem;
}

.text-white a {
    color: #ffffff;
}



/* 1.3 Buttons */

button:focus,
input:focus {
    outline: none;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 500px;
    font-weight: bold;
    font-size: 1.125rem;
    text-transform: uppercase;
}

.btn-success,
.btn-success:hover,
.btn-success.focus,
.btn-success:focus,
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show>.btn-success.dropdown-toggle {
    background-color: #76ABAE;
    border-color: #76ABAE;
}

.btn-success {
    transition: box-shadow .3s ease-in-out;
    transition-delay: 0;
}

.btn-success:hover,
.btn-success.focus,
.btn-success:focus {
    box-shadow: rgba(92, 165, 149, .2) 0 0 0 6px;
}

.btn-sm {
    padding-top: .5rem;
    padding-bottom: .375rem;
    font-size: 1rem;
}

.btn-circle.btn-sm {
    padding-left: .4375rem;
    padding-right: .4375rem;
    min-width: calc(.875rem + 1.5em + 2px);
}



/* 1.4 Forms */

.control-btn {
    margin-top: 2rem;
}

select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3e%3cpath fill='%23000000' d='M32,48.1c-1.3,0-2.4-0.5-3.5-1.3L0.8,20.7c-1.1-1.1-1.1-2.7,0-3.7c1.1-1.1,2.7-1.1,3.7,0L32,42.8l27.5-26.1 c1.1-1.1,2.7-1.1,3.7,0c1.1,1.1,1.1,2.7,0,3.7L35.5,46.5C34.4,47.9,33.3,48.1,32,48.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1rem 1rem;
    background-position: 100% 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group-material {
    margin-bottom: .625rem;
    padding-top: 1rem;
    position: relative;
}

.form-group-material .label {
    position: absolute;
    left: 0;
    font-size: 1.125rem;
    color: #999999;
    pointer-events: none;
    transform-origin: left top;
    transition: all .3s ease-in-out;
}

.form-group-material .label,
.form-group-material.a-form-group.active .label {
    transform: scale(.77777778);
    top: 0;
}

.form-group-material.a-form-group .label {
    transform: scale(1);
    top: 1.5625rem;
}

.form-group-material .form-control {
    border-radius: 0;
    border: none;
    border-bottom: #999999 1px solid;
    background-color: transparent;
    padding: .5rem 0;
    font-size: 1.125rem;
    color: #000000;
}

.form-group-material .form-control:not(textarea) {
    height: calc(1.5em + 1rem + 1px);
}

.form-group-material .form-control:focus {
    outline: none;
    box-shadow: none;
    border-bottom-color: #000000;
}

label.error {
    margin-top: .5rem;
    margin-bottom: 0;
    color: #FF5722;
}

.form-control.error,
.form-control.error:focus {
    border-color: #FF5722;
    color: #FF5722;
}

.control-file {
    margin-top: 1.625rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.control-file i {
    position: absolute;
    left: -.25rem;
    top: .5625rem;
    font-size: 1.625rem;
}

.control-file .file-path-wrapper {
    overflow: hidden;
}

.control-file input.file-path {
    padding: 0 0 0 2.125rem;
    border: none;
    border-radius: 0;
    background: transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.125rem;
}

.control-file input.file-path::-moz-placeholder {
    color: #FF5722;
    text-decoration: underline;
    opacity: 1;
    transition: color .3s ease;
}

.control-file:hover input.file-path::-moz-placeholder {
    color: #76ABAE;
}

.control-file input.file-path:-ms-input-placeholder {
    color: #FF5722;
    text-decoration: underline;
    transition: color .3s ease;
}

.control-file:hover input.file-path:-ms-input-placeholder {
    color: #76ABAE;
}

.control-file input.file-path::-webkit-input-placeholder {
    color: #FF5722;
    text-decoration: underline;
    transition: color .3s ease;
}

.control-file:hover input.file-path::-webkit-input-placeholder {
    color: #76ABAE;
}

.control-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 1.125rem;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0)
}

.control-file input[type=file]::-webkit-file-upload-button {
    display: none;
}



/* 1.5 Animation */

@-webkit-keyframes fadeZooming {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.6, .6, .6);
        transform: scale3d(.6, .6, .6);
        margin-left: -12rem;
    }

    100% {
        opacity: 1;
        margin-left: 0;
    }
}

@keyframes fadeZooming {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.6, .6, .6);
        transform: scale3d(.6, .6, .6);
        margin-left: -12rem;
    }

    100% {
        opacity: 1;
        margin-left: 0;
    }
}

.fadeZooming {
    -webkit-animation-name: fadeZooming;
    animation-name: fadeZooming;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -6.5rem, 0);
        transform: translate3d(0, -6.5rem, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -6.5rem, 0);
        transform: translate3d(0, -6.5rem, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 10rem, 0);
        transform: translate3d(0, 10rem, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 10rem, 0);
        transform: translate3d(0, 10rem, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-10rem, 0, 0);
        transform: translate3d(-10rem, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-10rem, 0, 0);
        transform: translate3d(-10rem, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(10rem, 0, 0);
        transform: translate3d(10rem, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(10rem, 0, 0);
        transform: translate3d(10rem, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}



/*-------------------------------------------------------------------------------
  2. Preloader
/* ------------------------------------------------------------------------------- */

.preloader {
    position: fixed;
    overflow: hidden;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    text-align: center;
}

.three-bounce {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.three-bounce>div {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    background-color: #76ABAE;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
    animation: bouncedelay 1.4s infinite ease-in-out both;
}

.three-bounce .one {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.three-bounce .two {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1)
    }
}

@keyframes bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}



/*-------------------------------------------------------------------------------
  3. Header
-------------------------------------------------------------------------------*/

.header {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-top: 0;
}

.header .container-fluid {
    color: #000000;
    transition: color .3s ease-in-out;
}

@media (min-width: 768px) {
    .header {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
}

.header-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 0;
    z-index: -1;
    background-color: #ffffff;
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.1);
    transition: .3s ease-in-out;
}

.header-shadow .header-bg {
    height: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.brand {
    float: left;
    margin-right: 1rem;
    white-space: nowrap;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.brand a {
    color: inherit;
    text-decoration: none;
}

.header-content {
    margin-left: 17.25%;
    margin-right: 17.25%;
    padding-top: 3px;
}

.header-tagline {
    padding-top: 2px;
    font-size: .875rem;
    line-height: 1.28571429;
    color: #999999;
    font-weight: bold;
    text-transform: uppercase;
    transition: color .3s ease-in-out;
}

.header-contacts {
    font-weight: bold;
    text-transform: uppercase;
    font-size: .875rem;
}

.header-contact-item,
.header-contact-divider {
    display: inline-block;
    vertical-align: middle;
}

.header-contact-divider {
    margin-left: 1.875rem;
    margin-right: 1.875rem;
    opacity: .2;
}

.phone-link,
.phone-link:hover,
.mail-link,
.mail-link:hover {
    color: inherit;
    text-decoration: none;
}

.phone-link {
    cursor: default;
}

.nav-toggle-btn {
    background: none;
    border: none;
    padding: .625rem 0;
    margin: 0;
    border-radius: 0;
    outline: none;
    float: right;
    position: relative;
    z-index: 995;
    font-weight: bold;
    text-transform: uppercase;
    color: inherit;
}

.nav-toggle-btn:hover {
    color: #b11d11;
}

.nav-toggle-btn:focus {
    outline: none;
}

.nav-toggle {
    display: block;
    width: 32px;
}

.nav-toggle .stick {
    display: block;
    width: 100%;
    border-radius: 3px;
    height: 3px;
    background: #000000;
    transition: all .3s;
    position: relative;
}

.nav-toggle .stick+.stick {
    margin-top: 9px;
}

.body-menu-opened .nav-toggle .stick-1 {
    animation: ease .5s top forwards;
}

.nav-toggle .stick-1 {
    animation: ease .5s top-2 forwards;
}

.body-menu-opened .nav-toggle .stick-2 {
    animation: ease .5s bottom forwards;
}

.nav-toggle .stick-2 {
    animation: ease .5s bottom-2 forwards;
}

@keyframes top {
    0% {
        top: 0;
        transform: rotate(0);
    }

    50% {
        top: 6px;
        transform: rotate(0);
    }

    100% {
        top: 6px;
        transform: rotate(45deg);
    }
}

@keyframes top-2 {
    0% {
        top: 6px;
        transform: rotate(45deg);
    }

    50% {
        top: 6px;
        transform: rotate(0deg);
    }

    100% {
        top: 0;
        transform: rotate(0deg);
    }
}

@keyframes bottom {
    0% {
        bottom: 0;
        transform: rotate(0);
    }

    50% {
        bottom: 6px;
        transform: rotate(0);
    }

    100% {
        bottom: 6px;
        transform: rotate(135deg);
    }
}

@keyframes bottom-2 {
    0% {
        bottom: 6px;
        transform: rotate(135deg);
    }

    50% {
        bottom: 6px;
        transform: rotate(0);
    }

    100% {
        bottom: 0;
        transform: rotate(0);
    }
}



.menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    background: #ffffff;
    max-width: 100%;
    width: 100%;
    padding: 4.25rem 4.375rem 4.1875rem;
    display: flex;
    flex-direction: column;
    transition: transform .4s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.body-menu-opened .menu {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.hide-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 100%;
    background: rgba(0, 0, 0, .65);
    z-index: 980;
}

.body-menu-opened .hide-menu {
    bottom: 0;
}

@media (min-width: 576px) {
    .menu {
        width: 27.5rem;
    }

    .modal-dialog {
        max-width: 450px;
    }
}

.menu .menu-lang,
.menu .menu-main,
.menu .social,
.menu .menu-footer {
    opacity: 0;
    transform: translateY(3rem);
    transition: all .5s ease-in-out;
}

.menu .menu-lang {
    transition-delay: .2s;
}

.menu .menu-main {
    transition-delay: .4s;
}

.menu .social {
    transition-delay: .6s;
}

.menu .menu-footer {
    transition-delay: .8s;
}

.body-menu-opened .menu .menu-lang,
.body-menu-opened .menu .menu-main,
.body-menu-opened .menu .social,
.body-menu-opened .menu .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.menu .menu-lang {
    padding-bottom: 5.875rem;
    padding-bottom: 8.70370370vmin;
}

.menu-lang {
    font-size: .875rem;
    text-transform: uppercase;
    font-weight: 600;
}

.menu-lang-item {
    display: inline-block;
    margin-right: 1.5rem;
    color: #a3a4a8;
    text-decoration: none;
}

.menu-lang-item.active,
.menu-lang-item:hover {
    color: #1f2044;
    text-decoration: none;
}

.menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 1.375rem;
    font-weight: bold;
}

.menu-main>ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-main>ul>li {
    margin-bottom: 1.1875rem;
    padding-left: 2px;
}

.menu-main a,
.menu-main a:hover {
    color: #1f2044;
    text-decoration: none;
}

.menu-main .active>a,
.menu-main a:hover {
    color: #FF5722;
}

.menu-main a:after {
    content: ".";
    opacity: 0;
    display: inline-block;
    transform: translate(2rem, 0);
    transition: all .3s ease-in-out;
}

.menu-main .active a:after {
    transform: translate(0, 0);
    opacity: 1;
}

.menu-footer {
    padding-top: 3rem;
}

.menu-copyright {
    margin-top: 2rem;
    text-transform: uppercase;
    font-size: .875rem;
    font-weight: bold;
    color: #999999;
}



/*-------------------------------------------------------------------------------
  4. Home Personal
-------------------------------------------------------------------------------*/

.content a {
    transition: color .3s ease;
}

@media (max-width: 575px) {
    .homepage-personal .container {
        padding-left: 43px;
        padding-right: 43px;
    }

    .homepage-personal .slide-personal-projects .container {
        padding-right: 53px;
    }
}

#pp-nav.right {
    right: 0;
}

#pp-nav li {
    width: auto;
    height: auto;
    margin: .5rem;
}

#pp-nav li a {
    display: block;
    padding: .375rem;
}

#pp-nav span {
    display: block;
    position: static;
    width: .625rem;
    height: .625rem;
    border: none;
    background-color: #e3e3e3;
    transition: background-color .3s ease-in-out;
}

#pp-nav a:hover span {
    background-color: #aaaaaa;
}

#pp-nav li .active span {
    background-color: #FF5722;
}

@media (min-width: 1600px) {
    #pp-nav.right {
        right: 3.5rem;
    }
}

.pp-scrollable {
    background-color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.slide-dark {
    background-color: #F5F5F5;
}

.slide-num {
    margin-bottom: 1rem;
    position: relative;
    z-index: 200;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #999999;
    transition: color .3s ease-in-out;
}

@media (min-width: 1400px) {
    .slide-num {
        position: fixed;
        left: 15px;
        top: 29.62962963vmin;
        z-index: 100;
        margin-bottom: 0;
    }
}

@media (min-width: 1600px) {
    .slide-num {
        left: 4.25rem;
    }
}

.slide-container {
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    padding-top: 7.75rem;
    padding-bottom: 3.25rem;
    position: relative;
}

.slide-container>.container {
    position: relative;
    z-index: 200;
}

.slide-title {
    margin-bottom: 2rem;
    font-size: 6vmin;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    line-height: 1;
    color: #FF5722;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .slide-title {
        font-size: 7.40740741vmin;
    }
}

.slide-title-lg {
    margin-left: -.25rem;
    font-size: 6.875rem;
}

.slide-title-sub {
    margin-bottom: 2.75rem;
    font-size: 1.375rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.45454545;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: .025em;
}

.text-white .slide-title-sub {
    color: #ffffff;
}

.slide-title-sub-sm {
    font-size: 1.125rem;
    line-height: 1.55555556;
}

.slide-title-sub-md {
    font-size: 1.25rem;
}

.slide-title-info {
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1.35;
    letter-spacing: -.035em;
}

.slide-descr {
    color: #999999;
    font-size: 1.125rem;
    line-height: 1.66666667;
}

.text-white .slide-descr {
    color: #ffffff;
}

.slide-descr-intro {
    margin-right: 18%;
}

.slide-btn {
    margin-top: 6.85185185vmin;
}

.section:not(.active) .animate-element {
    animation-name: none;
}

.section.active .animate-element {
    animation-duration: .7s;
    animation-fill-mode: both;
}

.section.active .delay1 {
    animation-delay: .1s;
}

.section.active .delay2 {
    animation-delay: .2s;
}

.section.active .delay3 {
    animation-delay: .3s;
}

.section.active .delay4 {
    animation-delay: .4s;
}

.section.active .delay5 {
    animation-delay: .5s;
}

.section.active .delay6 {
    animation-delay: .6s;
}

.section.active .delay7 {
    animation-delay: .7s;
}

.section.active .delay8 {
    animation-delay: .8s;
}

.section.active .delay9 {
    animation-delay: .9s;
}

.section.active .delay10 {
    animation-delay: 1s;
}

[class^="circle-"],
[class*=" circle-"] {
    border-radius: 70.625rem;
    transition: all .7s ease-in-out;
}

.circle-golden {
    background-color: #FF5722;
}

.circle-brown {
    background-color: #76ABAE;
}

.circle-light {
    background-color: #F5F5F5;
}

.circle-green {
    background-color: #76ABAE;
}

.transformLeft {
    transform: translate(-100%, 0);
    opacity: 0;
}

.transformRight {
    transform: translate(100%, 0);
    opacity: 0;
}

.active .transformLeft,
.active .transformRight {
    transform: translate(0%, 0);
    opacity: 1;
}



/* 4.1 Slide Intro */

.slide-personal-intro {
    background-image: url("../img/bg-personal-intro.png");
    background-size: cover;
}

.slide-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
    overflow: hidden;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.slide-photo {
    position: absolute !important;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.slide-intro-man {
    background-image: url("../img/bg-personal-intro-man.png");
    background-position: 50% 50%;
}

.slide-intro-man2 {
    width: 36.82291667%;
    height: 91.01851852%;
    background-image: url("../img/bg-personal-intro-man2.png");
    background-size: contain;
    background-position: 0 100%;
    bottom: 0;
    right: 13.02083333%;
}

.slide-intro-circle1 {
    width: 10.0625rem;
    height: 10.0625rem;
    left: -4.5rem !important;
    top: 45.46296296% !important;
    bottom: auto;
    right: auto;
}

.slide-intro-circle2 {
    width: 70.625rem;
    height: 70.625rem;
    left: 58.85416667% !important;
    top: 46.66666667% !important;
    bottom: auto;
    right: auto;
}



/* 4.2 Slide Services */

.slide-services-circle1 {
    width: 8.3125rem;
    height: 8.3125rem;
    right: -3.9375rem !important;
    top: 18.51851852% !important;
    bottom: auto;
    left: auto !important;
}

.slide-services-circle2 {
    width: 55rem;
    height: 55rem;
    left: -8.4375% !important;
    top: 49.44444444% !important;
    bottom: auto;
    right: auto;
}

.slide-title-personal-services {
    margin-bottom: 5.55555556vmin;
    line-height: .93636364;
}

.slide-personal-services .slide-title-info {
    margin-top: 1.25rem;
    margin-bottom: 8.33333333vmin;
}

.service-list {
    margin-bottom: -1.75rem;
}

.service-item {
    margin-bottom: 3.75rem;
}

.service-item-title {
    margin-bottom: .5625rem;
}

.service-item-more {
    margin-top: 1.6875rem;
}

.slide-descr-personal-services {
    margin-right: 10%;
    margin-top: 2.375rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .slide-descr-personal-services {
        margin-top: 22.375rem;
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .slide-descr-personal-services {
        margin-right: 35%;
        margin-top: 14.375rem;
    }
}



/* 4.3 Slide Projects */

.carousel-project-personal {
    min-height: 100%;
    display: flex !important;
}

.carousel-project-personal .owl-stage-outer {
    display: flex;
    overflow: visible;
}

.carousel-project-personal.owl-carousel .owl-stage {
    display: flex;
    flex-wrap: nowrap;
}

.carousel-project-personal.owl-carousel .owl-item {
    height: 100%;
    float: none;
    min-height: 100%;
}

.carousel-project-personal .carousel-project-item {
    height: 100%;
}

.owl-theme .owl-nav {
    margin-top: 0;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.carousel-nav button {
    border: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    font-size: 2.375rem;
    transition: all .3s ease-in-out;
    color: #999999;
}

.owl-theme .owl-nav [class*=owl-].disabled:hover,
.carousel-nav button.disabled:hover {
    color: #999999;
}

.owl-theme .owl-nav [class*=owl-]:not(.disabled):hover,
.carousel-nav button:not(.disabled):hover {
    color: #555555;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    background-color: transparent;
}

.carousel-project-personal.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    z-index: 100;
    transform: translate(0, -50%);
    width: 4.375rem;
    color: rgba(255, 255, 255, .6);
}

.carousel-project-personal.owl-carousel .owl-nav button.owl-prev {
    left: -.5rem;
}

.carousel-project-personal.owl-carousel .owl-nav button.owl-next {
    right: 1rem;
}

.carousel-project-personal.owl-carousel .owl-nav button:not(.disabled):hover {
    color: rgba(255, 255, 255, .9);
}

@media (min-width: 1500px) {

    .carousel-project-personal.owl-carousel .owl-nav button,
    .carousel-project-personal.owl-carousel .owl-nav button.owl-prev {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }

    .carousel-project-personal.owl-carousel .owl-nav button.owl-prev {
        margin-left: -46rem;
    }

    .carousel-project-personal.owl-carousel .owl-nav button.owl-next {
        margin-left: 46rem;
    }
}

.carousel-project-item {
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.carousel-project-personal .slide-title {
    margin-bottom: 2.625rem;
}

.project-date {
    margin-top: .375rem;
    font-size: .875rem;
    font-weight: bold;
    text-transform: uppercase;
}

.slide-descr-projects {
    min-height: 8.33333333em;
    margin-bottom: 1.875rem;
}

.slide-btn-projects {
    margin-top: 0;
}

.slide-btn-projects .btn {
    margin-right: 2.25rem;
}

.slide-projects-more {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: underline;
}

.slide-projects-more:hover {
    text-decoration: none;
}



/* 4.4 Slide Awards */

.slide-personal-awards .slide-bg {
    background-image: url("../img/bg-personal-awards.png");
}

.slide-awards-circle1 {
    width: 8.125rem;
    height: 8.125rem;
    left: -4.0625rem !important;
    top: 50.92592593% !important;
    bottom: auto !important;
    right: auto !important;
}

.slide-awards-circle2 {
    width: 45.3125rem;
    height: 45.3125rem;
    right: -15.625% !important;
    top: 82.59259259% !important;
    bottom: auto !important;
    left: auto !important;
}

.award-item {
    background: #F5F5F5;
    border-radius: 1rem 1rem 3rem 1rem;
    padding: 2.1875rem 2.5rem;
}

.award-list .award-item {
    margin-top: 4rem;
}

.award-item-date {
    margin-bottom: .625rem;
    font-size: .875rem;
    color: #999999;
    text-transform: uppercase;
    font-weight: bold;
}

.award-item-logo {
    margin-bottom: .75rem;
    height: 9rem;
    display: flex;
    overflow: hidden;
    align-items: center;
}

.award-item-logo img {
    max-width: 100%;
    max-height: 100%;
}

.award-item-title {
    margin-bottom: 1rem;
}

.award-item-descr {
    margin-bottom: 2rem;
}

.award-item-more {
    font-size: 1.125rem;
}

@media (min-width: 992px) {
    .award-list .award-item {
        height: calc(100% - 4rem);
    }
}



/* 4.5 Slide Experiences */

.slide-experience-circle1 {
    width: 8.125rem;
    height: 8.125rem;
    left: -4.0625rem !important;
    top: 25% !important;
    bottom: auto !important;
    right: auto !important;
}

.slide-experience-circle2 {
    width: 45.3125rem;
    height: 45.3125rem;
    right: -15.625% !important;
    top: 75% !important;
    bottom: auto !important;
    left: auto !important;
}

.experience-item:not(:first-child) {
    border-top: #e1ddd6 1px solid;
}

.experience-item {
    padding-top: 1.625rem;
}

.experience-item-company,
.experience-item-title,
.experience-item-descr {
    margin-bottom: 1.625rem;
}

.experience-item-title {
    margin-right: 1rem;
}

.experience-item-date {
    margin-top: .3125rem;
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: bold;
}

.experience-item-descr {
    margin-top: 2px;
    min-height: 5em;
}

.company-blue {
    color: #1774eb;
}

.company-pink {
    color: #f73163;
}

.company-green {
    color: #1dd05d;
}

.carousel-experience {
    position: relative;
}

.carousel-nav {
    margin-right: -.625rem;
}

.carousel-nav .owl-next {
    margin-left: .5rem;
}

.slide-personal-experience .slide-btn {
    margin-top: 3.88888889vmin;
}

@media (min-width: 768px) {
    .carousel-nav .owl-next {
        margin-left: 2rem;
    }
}



/* 4.6 Slide Clients */

.slide-personal-clients .slide-bg {
    background-image: url("../img/bg-personal-clients.png");
}

.slide-personal-clients .slide-title-info {
    margin-bottom: 12.40740741vmin;
}

.title-mini {
    font-size: .875rem;
    text-transform: uppercase;
    color: #999999;
    font-weight: bold;
}

.slide-personal-clients .title-mini {
    margin-bottom: 3.375rem;
}

.icon-partners {
    display: inline-block;
    vertical-align: top;
    width: 3.75rem;
    height: 3.75rem;
    background-image: url("../img/icon-partners.png");
    background-position: 50% 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.icon-project {
    display: inline-block;
    vertical-align: top;
    width: 3.75rem;
    height: 3.75rem;
    background-image: url("../img/icon-project.png");
    background-position: 50% 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.icon-worldwide {
    display: inline-block;
    vertical-align: top;
    width: 3.75rem;
    height: 3.75rem;
    background-image: url("../img/icon-worldwide.png");
    background-position: 50% 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.client-icon {
    width: 3.75rem;
    margin-right: 2.5rem;
}

.client-item {
    margin-bottom: 2.75rem;
}

.client-item-title {
    margin-bottom: .625rem;
    font-size: 2.125rem;
    font-family: 'Syne';
    line-height: .94117647;
}

.clients-photo {
    height: 0;
    padding-bottom: 103.50877193%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.clients-photo-item {
    width: 4.375rem;
}

.clients-photo .clients-photo-item {
    position: absolute;
    width: 14.56140351%;
}

.clients-photo-item>.inside {
    display: block;
    height: 0;
    padding-bottom: 100%;
    background-color: #F5F5F5;
    border-radius: 50rem;
    overflow: hidden;
    position: relative;
}

.clients-photo-item img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.clients-photo .clients-photo-item1 {
    width: 19.29824561%;
    top: 43.05084746%;
    left: 6.31578947%;
}

.clients-photo .clients-photo-item2 {
    top: 0%;
    left: 57.54385965%;
}

.clients-photo .clients-photo-item3 {
    top: 48.81355932%;
    right: 0;
}

.clients-photo-item3 img {
    width: 60.24096386%;
    margin-top: 2px;
}

.clients-photo .clients-photo-item4 {
    top: 11.52542373%;
    left: 11.57894737%;
}

.clients-photo-item4 img {
    width: 34.93975904%;
}

.clients-photo .clients-photo-item5 {
    width: 31.92982456%;
    bottom: 0;
    right: 3.50877193%;
}

.clients-photo .clients-photo-item6 {
    width: 17.54385965%;
    bottom: 6.10169492%;
    left: 31.57894737%;
}

.clients-photo-item6 img {
    width: 31%;
}

.clients-photo .clients-photo-item7 {
    width: 49.12280702%;
    top: 23.05084746%;
    left: 31.92982456%;
}

.clients-photo .clients-photo-item8 {
    width: 12.28070175%;
    top: 73.55932203%;
    left: 6.31578947%;
}



/* 4.7 Slide Testimonials */

.slide-testimonials-circle1 {
    width: 10.5625rem;
    height: 10.5625rem;
    left: -14.89361702%;
    top: -11.70212766%;
}

.slide-testimonials-circle2 {
    width: 17.5rem;
    height: 17.5rem;
    left: 64.893617023%;
    top: 65.95744681%;
}

.slide-testimonials-circle3 {
    width: 6.875rem;
    height: 6.875rem;
    left: 27.55208333%;
    top: 100%;
    margin-top: -3.75rem;
}

.slide-personal-testimonials .slide-bg {
    background-image: url("../img/bg-personal-testimonials.png");
}

.testimonials-item-avatar-container {
    margin-bottom: 3.25rem;
}

.testimonial-item-avatar,
.testimonial-item-company {
    display: inline-block;
    vertical-align: top;
    margin-right: -1.25rem;
    width: 4.375rem;
}

.avatar>.inside {
    display: block;
    height: 0;
    padding-bottom: 100%;
    border-radius: 500px;
    overflow: hidden;
    background-position: 50% 30%;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonials-item-text {
    margin-bottom: 3.125rem;
}

.testimonials-item-rating {
    margin-bottom: .875rem;
    color: #ffc705;
}

.testimonials-item-author {
    font-size: 1.125rem;
    font-weight: bold;
    text-transform: uppercase;
}

.carousel-testimonial.owl-theme .owl-nav {
    margin-top: 3.625rem;
    margin-left: -.5rem;
    text-align: left;
}

.carousel-testimonial.owl-carousel .owl-nav button.owl-prev {
    margin-right: 1.875rem;
}

.slide-personal-testimonials .video-link {
    margin-top: .5rem;
}

.video-link {
    position: relative;
}

.video-link>.inside {
    display: block;
    position: relative;
    z-index: 100;
    height: 0;
    padding-bottom: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 2rem 2rem 5rem 2rem;
}

.center-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 100;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 2.75rem;
}

.center-icon i {
    display: block;
    transform: scale(1);
    transition: all .3s ease-in-out;
}

a:hover .center-icon i {
    transform: scale(1.2);
}

.video-link-descr {
    margin-left: 2.5rem;
    margin-top: 1.375rem;
    position: relative;
    font-style: italic;
}



/* 4.8 Slide Contacts */

.slide-contacts-circle1 {
    width: 60.5625rem;
    height: 60.5625rem;
    top: 46.94444444%;
    left: -3.4375%;
}

.slide-contacts-circle2 {
    width: 8.125rem;
    height: 8.125rem;
    top: 15.55555556%;
    right: -2.96875%;
    left: auto;
}

.contact-personal-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-personal-card-title {
    height: 100%;
}

.contact-personal-card .title-mini {
    margin-bottom: 2.875rem;
}

.contact-personal-card .slide-title-sub {
    margin-bottom: 1.6875rem;
}

.slide-personal-contacts .slide-title-info {
    margin-bottom: 2.625rem;
}

.contact-personal-form {
    margin-bottom: .25rem;
}



/*-------------------------------------------------------------------------------
  5. Footer
-------------------------------------------------------------------------------*/

.social {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1.3125rem;
}

.social li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
}

.social a {
    color: #999999;
    transition: color .3s ease;
}

.social a:hover {
    color: #000000;
}

.social-fixed {
    position: fixed;
    z-index: 300;
    left: 15px;
    bottom: 0rem;
}

.social-fixed li {
    display: block;
    margin-right: 0;
    margin-bottom: 1.375rem;
}

.copyright {
    position: relative;
    text-align: center;
    color: #999999;
    font-weight: bold;
    font-size: .875rem;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    margin-top: 4rem;
    margin-bottom: 2rem;
    width: 100%;
    display: block;
    z-index: 10;
}

.copyright-fixed {
    position: fixed;
    right: 15px;
    bottom: 1.5rem;
    z-index: 300;
}

@media (min-width: 1600px) {
    .social-fixed {
        left: 4.25rem;
        bottom: 2rem;
    }

    .copyright-fixed {
        right: 4.25rem;
        bottom: 3.5rem;
    }
}


.body-bg-dark .header:not(.header-shadow) .container-fluid {
    color: #ffffff;
}

.body-bg-dark .header:not(.header-shadow) .header-tagline,
.body-bg-dark .copyright,
.body-bg-dark .slide-num,
.body-bg-dark .footer .social a,
.body-copyright-light .copyright {
    color: rgba(255, 255, 255, .6);
}

.body-bg-dark .social a:hover {
    color: #ffffff;
}

.body-bg-dark .header:not(.header-shadow) .nav-toggle .stick,
.body-bg-dark #pp-nav li a:not(.active) span {
    background: #ffffff;
}

.body-menu-opened .body-bg-dark .nav-toggle .stick {
    background: #000000;
}



/*-------------------------------------------------------------------------------
  6. Modal
-------------------------------------------------------------------------------*/

.modal-content {
    border: none;
    border-radius: 1rem 1rem 3rem 1rem;
}

.modal-header {
    padding-top: 2rem;
    padding-bottom: .5rem;
    border-bottom: none;
}

.modal-header,
.modal-body,
.modal-footer {
    padding-left: 2rem;
    padding-right: 2rem;
}

.modal-body {
    padding-bottom: 2rem;
}

.modal-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #FF5722;
    text-transform: uppercase;
}

.modal-header .close {
    padding: .5rem;
    position: relative;
    top: -.5rem;
    right: -.5rem;
    font-size: 1.5rem;
    line-height: .75;
}

.message {
    display: none;
}



@media (min-width: 768px) {
    html {
        font-size: 13px;
    }
}

@media (min-width: 992px) {
    html {
        font-size: 14px;
    }
}

@media (min-width: 1280px) {
    html {
        font-size: 15px;
    }
}

@media (min-width: 1600px) {
    html {
        font-size: 16px;
    }
}


/*-------------------------------------------------------------------------------
  7. Dhaval Portfolio Custom Masking, Avatar, and Animations
-------------------------------------------------------------------------------*/

/* Header Alignment & Centering */
.header .container-fluid {
    position: relative;
}

.brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    float: none !important;
    margin-right: 0 !important;
    z-index: 910;
}

.brand-link {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 800 !important;
    color: #FF5722 !important;
}

.brand-link:hover {
    transform: scale(1.1);
}

.brand span {
    font-weight: 800 !important;
    color: #FF5722 !important;
}

.header-tagline {
    float: left;
    padding-top: 5px;
    margin-left: 0;
    border-left: none;
    z-index: 905;
    position: relative;
}

/* Hero Section Name Styling for GSAP morphing & Typing reveals */
.main-hero-title {
    display: flex !important;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 16px;
    min-height: 2.4em;
    /* reserves space for 2 lines on mobile, preventing vertical shifts */
}

@media (min-width: 768px) {
    .main-hero-title {
        min-height: 1.2em;
        white-space: nowrap;
        /* prevents wrapping on desktop */
    }
}

.name-part {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
}

.hero-char {
    display: inline-block;
    position: relative;
    font-weight: 800 !important;
    color: #FF5722 !important;
}

.hero-char-rest {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: bottom;
    width: auto;
    opacity: 1;
}

/* CSS styles for the cloned elements during animation */
.flying-char {
    font-family: 'Syne', sans-serif;
    font-weight: 800 !important;
    color: #FF5722 !important;
    line-height: 1;
    transform-origin: left top;
    margin: 0;
    padding: 0;
}

/* Hero Image Custom Masking & Glow - Enlarged & Sharpened */
.hero-image-mask-wrapper {
    position: relative;
    width: 620px;
    height: 620px;
    max-width: 95vw;
    max-height: 95vh;
    margin: 0 auto;
    z-index: 12;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-image-mask-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
}


.hero-image-mask {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 6px;
    background: #ffffff;
    clip-path: url(#hexagon-clip);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-image-mask:hover {
    box-shadow: 0 30px 60px rgba(255, 87, 34, 0.35);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    clip-path: url(#hexagon-clip);
    transform-origin: center center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: -moz-crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.hero-image-mask-wrapper:hover .hero-img {
    transform: scale(1.08) rotate(2deg) translate3d(0, 0, 0);
}

.hero-image-bg-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, #FF5722, #76ABAE, #FF5722);
    background-size: 200% 200%;
    border-radius: 50%;
    filter: blur(35px);
    opacity: 0.55;
    z-index: -1;
    animation: float 6s ease-in-out infinite, gradientShift 8s ease infinite;
    transition: all 0.5s ease;
}

.hero-image-mask-wrapper:hover .hero-image-bg-glow {
    opacity: 0.85;
    filter: blur(45px);
    transform: scale(1.05);
}

/* SVG Path Animation and Hover Transitions for Rounded Corners Hexagon */
.clip-hexagon-path {
    d: path("M 0.45 0.02 Q 0.50 0.00 0.55 0.02 L 0.95 0.23 Q 0.99 0.25 0.98 0.30 L 0.98 0.70 Q 0.99 0.75 0.95 0.77 L 0.55 0.98 Q 0.50 1.00 0.45 0.98 L 0.05 0.77 Q 0.01 0.75 0.02 0.70 L 0.02 0.30 Q 0.01 0.25 0.05 0.23 L 0.45 0.02 Z");
    animation: morphHexagonPath 8s ease-in-out infinite alternate;
    transition: d 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-image-mask-wrapper:hover .clip-hexagon-path {
    animation-play-state: paused;
    d: path("M 0.22 0.03 Q 0.25 0.00 0.28 0.00 L 0.72 0.00 Q 0.75 0.00 0.78 0.03 L 0.97 0.46 Q 1.00 0.50 0.97 0.54 L 0.78 0.97 Q 0.75 1.00 0.72 1.00 L 0.28 1.00 Q 0.25 1.00 0.22 0.97 L 0.03 0.54 Q 0.00 0.50 0.03 0.46 L 0.22 0.03 Z");
}

@keyframes morphHexagonPath {
    0% {
        d: path("M 0.45 0.02 Q 0.50 0.00 0.55 0.02 L 0.95 0.23 Q 0.99 0.25 0.98 0.30 L 0.98 0.70 Q 0.99 0.75 0.95 0.77 L 0.55 0.98 Q 0.50 1.00 0.45 0.98 L 0.05 0.77 Q 0.01 0.75 0.02 0.70 L 0.02 0.30 Q 0.01 0.25 0.05 0.23 L 0.45 0.02 Z");
    }

    50% {
        d: path("M 0.46 0.05 Q 0.50 0.03 0.54 0.05 L 0.93 0.25 Q 0.96 0.29 0.96 0.33 L 0.96 0.67 Q 0.96 0.71 0.93 0.75 L 0.54 0.95 Q 0.50 0.97 0.46 0.95 L 0.07 0.75 Q 0.04 0.71 0.04 0.67 L 0.04 0.33 Q 0.04 0.29 0.07 0.25 L 0.46 0.05 Z");
    }

    100% {
        d: path("M 0.42 0.02 Q 0.50 0.00 0.58 0.02 L 0.97 0.20 Q 0.99 0.24 0.99 0.28 L 0.99 0.72 Q 0.99 0.76 0.97 0.80 L 0.58 0.98 Q 0.50 1.00 0.42 0.98 L 0.03 0.80 Q 0.01 0.76 0.01 0.72 L 0.01 0.28 Q 0.01 0.24 0.03 0.20 L 0.42 0.02 Z");
    }
}


/* Keyframes for Floating */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Keyframes for Background Glow Gradient */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Status dots and pulsing */
.status-dot {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 10px;
    height: 10px;
    background-color: #25D366;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.status-dot.pulsing::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

/* Footer Profile Pill Badge - Placed in Bottom-Right Corner */
.footer-profile-pill {
    position: fixed;
    right: 15px;
    bottom: 1.5rem;
    left: auto;
    z-index: 300;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 6px 16px 6px 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    font-family: 'Syne', sans-serif;
}

.footer-profile-pill:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.pill-avatar-wrapper {
    position: relative;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    flex-shrink: 0;
}

.pill-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FF5722;
}

.pill-text-content {
    display: flex;
    flex-direction: column;
}

.pill-name {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111111;
    text-transform: capitalize;
}

.pill-status {
    font-size: 0.7rem;
    font-weight: 600;
    color: #25D366;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Footer Profile Hover Details Card - Opens to the Left */
.pill-hover-details {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    left: auto;
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #111111;
}

.footer-profile-pill:hover .pill-hover-details {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.pill-hover-card-inner {
    text-align: center;
}

.hover-card-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FF5722;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.25);
    margin: 0 auto;
}

.hover-card-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111111;
    font-family: 'Syne', sans-serif;
}

.hover-card-title {
    font-size: 0.8rem;
    color: #777777;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.hover-card-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.pill-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333333;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.pill-contact-link i {
    font-size: 1.1rem;
}

.pill-contact-link:hover {
    background: #FF5722;
    color: #ffffff;
    text-decoration: none;
    transform: translateX(3px);
}

.pill-contact-link.whatsapp:hover {
    background: #25D366;
}

.pill-contact-link.email:hover {
    background: #76ABAE;
}

/* Dark Mode Theme overrides for pagepiling sections */
.body-bg-dark .footer-profile-pill {
    background: rgba(26, 26, 26, 0.85);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.body-bg-dark .footer-profile-pill:hover {
    background: rgba(32, 32, 32, 0.95);
}

.body-bg-dark .pill-name {
    color: #ffffff;
}

.body-bg-dark .status-dot {
    border-color: #1a1a1a;
}

.body-bg-dark .pill-hover-details {
    background: rgba(26, 26, 26, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.body-bg-dark .hover-card-name {
    color: #ffffff;
}

.body-bg-dark .hover-card-title {
    color: #bbbbbb;
}

.body-bg-dark .pill-contact-link {
    color: #dddddd;
    background: rgba(255, 255, 255, 0.05);
}

.body-bg-dark .pill-contact-link:hover {
    color: #ffffff;
}



.body-copyright-light .copyright {
    color: rgba(0, 0, 0, 0.6);
}

.body-bg-dark .copyright {
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Section Social Icons Styling */
.contact-social-icons {
    padding: 0;
    list-style: none;
}

.contact-social-icons li {
    display: inline-block;
    margin-right: 1.5rem;
}

.contact-social-icons a {
    font-size: 1.5rem;
    color: #999999;
    transition: color 0.3s ease;
}

.contact-social-icons a:hover {
    color: #FF5722;
}

/* Responsive Overrides */
@media (max-width: 767px) {
    .hero-image-mask-wrapper {
        width: 320px;
        height: 320px;
        margin-top: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-image-mask-wrapper {
        width: 440px;
        height: 440px;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .hero-image-mask-wrapper {
        width: 550px;
        height: 550px;
    }
}

@media (min-width: 1400px) {
    .hero-image-mask-wrapper {
        width: 720px;
        height: 720px;
    }

    .footer-profile-pill {
        right: 4.25rem;
        bottom: 2.5rem;
        left: auto;
    }
}

/* ==========================================================================
   8. Redesigned Contact Section - Glassmorphism, 3D Icons & Capsule Card
   ========================================================================== */

.social-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1.25rem;
    width: 100%;
    margin-top: 2.5rem;
}

@media (min-width: 1200px) {
    .social-cards-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 575px) {
    .social-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.social-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 24px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-decoration: none !important;
    position: relative;
    overflow: visible;
}

.social-card-orb {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--platform-gradient);
    filter: none;
    opacity: 0.85;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-3d-icon-wrapper,
.social-card-title,
.social-card-username {
    position: relative;
    z-index: 2;
}

.social-card:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.social-card:hover .social-card-orb {
    top: 72%;
    width: 60px;
    height: 60px;
    opacity: 0.65;
    filter: blur(12px);
    box-shadow: 0 0 25px var(--glow-color);
}

.social-3d-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.social-card:hover .social-3d-icon-wrapper {
    transform: scale(1.1);
}

.social-3d-icon-wrapper i {
    font-size: 24px;
    color: #ffffff;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

/* Specific platform icon styles (Filled by default, shadow/glow on hover) */
.whatsapp-card .social-3d-icon-wrapper {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.3), inset 2px 2px 5px rgba(255, 255, 255, 0.4);
}

.whatsapp-card:hover .social-3d-icon-wrapper {
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4), inset -2px -2px 5px rgba(0, 0, 0, 0.2), inset 2px 2px 5px rgba(255, 255, 255, 0.4);
}

.whatsapp-card .social-3d-icon-wrapper i {
    text-shadow: 1px 1px 0px #128C7E, 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.linkedin-card .social-3d-icon-wrapper {
    background: linear-gradient(135deg, #0077B5 0%, #005c8a 100%);
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.3), inset 2px 2px 5px rgba(255, 255, 255, 0.4);
}

.linkedin-card:hover .social-3d-icon-wrapper {
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.4), inset -2px -2px 5px rgba(0, 0, 0, 0.2), inset 2px 2px 5px rgba(255, 255, 255, 0.4);
}

.linkedin-card .social-3d-icon-wrapper i {
    text-shadow: 1px 1px 0px #005c8a, 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.behance-card .social-3d-icon-wrapper {
    background: linear-gradient(135deg, #0057FF 0%, #003cbd 100%);
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.3), inset 2px 2px 5px rgba(255, 255, 255, 0.4);
}

.behance-card:hover .social-3d-icon-wrapper {
    box-shadow: 0 10px 20px rgba(0, 87, 255, 0.4), inset -2px -2px 5px rgba(0, 0, 0, 0.2), inset 2px 2px 5px rgba(255, 255, 255, 0.4);
}

.behance-card .social-3d-icon-wrapper i {
    text-shadow: 1px 1px 0px #003cbd, 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.dribbble-card .social-3d-icon-wrapper {
    background: linear-gradient(135deg, #EA4C89 0%, #b83765 100%);
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.3), inset 2px 2px 5px rgba(255, 255, 255, 0.4);
}

.dribbble-card:hover .social-3d-icon-wrapper {
    box-shadow: 0 10px 20px rgba(234, 76, 137, 0.4), inset -2px -2px 5px rgba(0, 0, 0, 0.2), inset 2px 2px 5px rgba(255, 255, 255, 0.4);
}

.dribbble-card .social-3d-icon-wrapper i {
    text-shadow: 1px 1px 0px #b83765, 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.github-card .social-3d-icon-wrapper {
    background: linear-gradient(135deg, #333333 0%, #111111 100%);
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.3), inset 2px 2px 5px rgba(255, 255, 255, 0.4);
}

.github-card:hover .social-3d-icon-wrapper {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), inset -2px -2px 5px rgba(0, 0, 0, 0.2), inset 2px 2px 5px rgba(255, 255, 255, 0.4);
}

.github-card .social-3d-icon-wrapper i {
    text-shadow: 1px 1px 0px #111111, 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.social-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.social-card:hover .social-card-title {
    color: #111111;
}

.social-card-username {
    font-size: 0.7rem;
    color: #666666;
    margin-top: 2px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-card:hover .social-card-username {
    color: #333333;
}

/* Unique Contact Capsule Card */
.contact-popup-capsule-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 30px;
    padding: 40px 35px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    position: relative;
    max-width: 440px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
}

.contact-popup-capsule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(255, 87, 34, 0.15);
    border-color: rgba(255, 87, 34, 0.25);
}

.capsule-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.capsule-avatar-wrapper {
    position: relative;
    width: 84px;
    height: 84px;
    flex-shrink: 0;
}

.capsule-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 20px 20px 40px 20px;
    object-fit: cover;
    border: 3px solid #FF5722;
    box-shadow: 0 8px 16px rgba(255, 87, 34, 0.2);
}

.capsule-avatar-wrapper .status-dot {
    width: 14px;
    height: 14px;
    border-width: 2px;
    bottom: 2px;
    right: 2px;
    border-color: #ffffff;
}

.capsule-header-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.capsule-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 4px;
    line-height: 1.2;
}

.capsule-badge {
    background: rgba(37, 211, 102, 0.12);
    color: #128C7E;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.capsule-card-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.capsule-title-sub {
    font-size: 0.85rem;
    color: #555555;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.capsule-contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.capsule-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
    color: #333333;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(0, 0, 0, 0.02);
}

.capsule-contact-btn i {
    font-size: 1.15rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.capsule-contact-btn.phone:hover {
    background: #FF5722;
    border-color: #FF5722;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.25);
}

.capsule-contact-btn.phone:hover i {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.capsule-contact-btn.email:hover {
    background: #76ABAE;
    border-color: #76ABAE;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(118, 171, 174, 0.25);
}

.capsule-contact-btn.email:hover i {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.contact-personal-card-title {
    height: auto !important;
}

/* Custom Floating Left Work Button (Rotated Vertical) */
/* ==========================================================================
   9. Vertical Bar & Sliding Panels (Single-Page Portfolio/Case Study)
   ========================================================================== */

/* Shifting the landing page content to the right */
.wrapper {
    transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
    /* will-change: transform; */
    /* Removed to prevent blank screen rendering bugs on landing page */
}

body.show-portfolio,
body.show-casestudy {
    overflow: hidden !important;
    width: 100vw;
    height: 100vh;
}

body.show-portfolio .wrapper,
body.show-casestudy .wrapper {
    transform: translate3d(100vw, 0, 0);
}

/* Base style for the sliding panels */
.sliding-panel {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background-color: #0b0f19;
    z-index: 1200;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 220px;
    /* Space for the animated center text title */
    padding-bottom: 80px;
    transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

body.show-portfolio #portfolio-view {
    transform: translate3d(100vw, 0, 0);
}

body.show-casestudy #casestudy-view {
    transform: translate3d(100vw, 0, 0);
}

/* Vertical navigation bar on the left edge */
.vertical-bar {
    position: fixed;
    left: 0;
    top: 0;
    width: 70px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    background: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    gap: 3.5rem;
    transition: background 0.5s ease;
}

.vertical-link-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.vertical-link {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none !important;
    white-space: nowrap;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1),
        color 0.3s ease;
    will-change: transform;
    cursor: pointer;
    display: inline-block;
}

.vertical-link:hover {
    color: #FF5722;
    text-shadow: 0 0 12px rgba(255, 87, 34, 0.4);
    letter-spacing: 3px;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.vertical-bar-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    transition: opacity 0.5s ease;
}

/* Animations when Portfolio is active */
body.show-portfolio #btn-portfolio {
    transform: translate(calc(50vw - 35px), calc(-50vh + 258px)) rotate(0deg) scale(2.2);
    color: #ffffff;
    letter-spacing: 4px;
    pointer-events: none;
}

body.show-portfolio .casestudy-link-wrapper,
body.show-portfolio .vertical-bar-divider {
    opacity: 0;
    pointer-events: none;
}

/* Animations when Case Study is active */
body.show-casestudy #btn-casestudy {
    transform: translate(calc(50vw - 35px), calc(-50vh - 18px)) rotate(0deg) scale(2.2);
    color: #ffffff;
    letter-spacing: 4px;
    pointer-events: none;
}

body.show-casestudy .portfolio-link-wrapper,
body.show-casestudy .vertical-bar-divider {
    opacity: 0;
    pointer-events: none;
}

/* Close Button styling */
.panel-close-btn {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 2100;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.panel-close-btn:hover {
    background: #FF5722;
    border-color: #FF5722;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.4);
}

body.show-portfolio .panel-close-btn,
body.show-casestudy .panel-close-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1) rotate(0deg);
}

/* Responsive Overrides for Mobile Bottom Pill-Bar */
@media (max-width: 991px) {
    .vertical-bar {
        position: fixed;
        left: 50%;
        bottom: 25px;
        top: auto;
        width: 85%;
        max-width: 380px;
        height: 60px;
        transform: translateX(-50%);
        flex-direction: row;
        border-right: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 40px;
        gap: 1.5rem;
        background: rgba(11, 15, 25, 0.8);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    }

    .vertical-link-wrapper {
        width: auto;
        height: 100%;
    }

    .vertical-link {
        transform: rotate(0deg);
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .vertical-bar-divider {
        width: 1px;
        height: 24px;
    }

    /* Center active text on mobile */
    body.show-portfolio #btn-portfolio {
        transform: translate(65px, calc(-100vh + 115px)) rotate(0deg) scale(1.8);
    }

    body.show-casestudy #btn-casestudy {
        transform: translate(-70px, calc(-100vh + 115px)) rotate(0deg) scale(1.8);
    }

    .panel-close-btn {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .sliding-panel {
        padding-top: 180px;
    }
}

/* Ambient Glow */
.ambient-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.15) 0%, rgba(118, 171, 174, 0.05) 70%, transparent 100%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.glow-1 {
    top: 10%;
    left: -10%;
}

.glow-2 {
    bottom: 20%;
    right: -10%;
}

/* Grid Layout */
.portfolio-grid-section {
    padding: 1rem 0 5rem;
    background-color: #0b0f19;
    position: relative;
    z-index: 10;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.project-card.revealed:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 87, 34, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        background-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-link {
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    /* 4:3 aspect ratio */
    overflow: hidden;
    background-color: #161c2e;
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover .project-image {
    transform: scale(1.08);
}

.project-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(4px);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-hover-overlay {
    opacity: 1;
}

.project-hover-content {
    text-align: center;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #ffffff;
}

.project-card:hover .project-hover-content {
    transform: translateY(0);
}

.project-hover-content i {
    font-size: 2rem;
    color: #FF5722;
    margin-bottom: 0.5rem;
    display: block;
}

.project-hover-content span {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(11, 15, 25, 0.4);
    flex-grow: 1;
}

.project-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.project-card:hover .project-title {
    color: #FF5722;
}

.project-category {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.2px;
}