/*-----------------------------------------------------------
Om Shukla - Portfolio Website
*------------------------------------------------------------*/

/*======================================================================
 Table of Content:
 
 01. Google Fonts
 02. Basic Styles
 03. Typography
 04. Buttons
 05. Pre Loader
 06. Header Section
 07. Navigation Menu
 08. Banner Section
 09. About Section
 10. Service Section
 11. Portfolio Section
 12. work Section
 13. Contact Section
 14. Inner Pages
    01. Not Found Page
    02. Coming Soon Page
 15. Styles Switcher CSS
 16. Responsive CSS
 ========================================================================*/

/*-----------------------------------------
* 01. Google Fonts
* -----------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');


/* ===========================
   THEME VARIABLES
=========================== */

/* LIGHT MODE (your original theme colors) */
:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --section-bg: #ffffff;
    --grey-bg: #f9f9f9;
    --cardhover-bg: #fffaf5;
    --card-bg: #ffffff;
    --skill-bg: #e3e3e3;
    --nav-bg: #000000;
    --brand-color: #004aad;
}

/* DARK MODE (new theme) */
.dark-mode {
    --bg-color: #0f1115;
    --text-color: #fff;
    --section-bg: #0f1115;
    --grey-bg: #000000;
    --cardhover-bg: #1b1f27;
    --card-bg: #000000;
    --skill-bg: #ffffffb3;
    --nav-bg: #353535;
    --brand-color: #5e91d4;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    transition: 0.3s ease;
}

section {
    background: var(--section-bg);
}

.card,
.service-item,
footer {
    background: var(--card-bg);
}



/*-----------------------------------------
* 02. Basic Styles
* -----------------------------------------*/
body {
    font-family: 'Lexend', sans-serif;
    background-color: #ffffff;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

/* img.center-picture.img-fluid {
    filter: drop-shadow(0 -5mm 10mm rgb(0, 77, 218));
    transition: ease-in-out 0.3s;
} */

@keyframes shadowMove {
    0% {
        filter: drop-shadow(0 -5mm 15mm rgb(0, 77, 218));
    }

    50% {
        filter: drop-shadow(0 -5mm 15mm rgba(136, 0, 255, 0.7));
    }

    100% {
        filter: drop-shadow(0 -5mm 25mm rgb(0, 0, 255));
    }
}

/* @keyframes shadowMove {
    0% {
      filter: drop-shadow(0 -5mm 15mm rgb(0, 77, 218));
    }
    50% {
      filter: drop-shadow(0 5mm 15mm rgb(0, 77, 218, 0.7));
    }
    100% {
      filter: drop-shadow(0 -5mm 25mm rgb(0, 77, 218));
    }
  }
   */
.img-fluid {
    animation: shadowMove 3s infinite alternate ease-in-out;
}


/* img.center-picture.img-fluid:hover {
    filter: drop-shadow(0 0mm 15mm rgb(23, 158, 255));
} */

a {
    text-decoration: none;
    color: var(--text-color);
}

a:hover {
    color: #000000;
    text-decoration: none;
}

a:focus {
    outline: 0 none;
}

a:active,
a:hover {
    outline: 0;
}

a:hover img {
    opacity: 0.88;
}

a,
a i.fa,
a img,
.button,
.btn {
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gray-bg {
    background-color: var(--grey-bg);
}

::selection {
    color: #ffffff;
}

.row-items {
    margin-top: -30px;
}

.row-items .row-item {
    margin-top: 30px;
}

/*-----------------------------------------
* 03. Typography
* -----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-color);
    margin: 0 0 10px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

p {
    margin: 0 0 15px;
}

p:last-child {
    margin-bottom: 0;
}

/*-----------------------------------------
* 04. Buttons
* -----------------------------------------*/
.btn {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 12px 34px;

    border: none;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: none;
}

.btn:focus,
button:focus {
    box-shadow: none;
    outline: none !important;
}

.btn:before {
    position: absolute;
    top: 0;
    height: 102%;
    left: -25%;
    width: 0%;
    -webkit-transform: skew(-22deg);
    transform: skew(-22deg);
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    z-index: 1;
}

.btn:hover:before {
    width: 180%;
}

.btn span {
    position: relative;
    z-index: 2;
}

/* Button Small */
.btn-small {
    font-size: 12px;
    padding: 6px 15px;
}

/* Button Primary */
.btn-primary,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled):active {
    background-color: #333333;
    color: #ffffff;
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #ffffff;
    background-color: #666666;
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #333333;
}

.btn-primary:before {
    content: "";
    background-color: #333333;
}

/* Button Secondary */
.btn-secondary,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled):active {
    background-color: #353535;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #666666;
    color: #ffffff;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    background-color: #666666;
    color: #ffffff;
}

.btn-secondary:before {
    content: "";
    background-color: #000000;
}

/* Button Link */
.btn-link {
    color: #333333;
    font-weight: 700;

    transition: all 0.3s ease-in-out 0s;
    gap: 5px;
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-link:hover {
    color: #000000;
    text-decoration: none;
    gap: 15px;
    transition: all 0.5s;
}

a.btn-link:hover {
    color: #666666 !important;
    border: 1px solid;
    padding: 3px 10px;
    border-radius: 15px;
    width: fit-content;
}

/* Form Control */
.form-control {
    background-color: var(--bg-color);
    height: 50px;
    font-size: 14px;
    padding: 10px 22px;
    box-shadow: none;
    outline: none;
    border: 1px solid #dfdfdf;
    border-radius: 30px;
}

.form-control:focus {
    color: var(--text-color);
    background: transparent;
    box-shadow: none;
    outline: none;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    background: none;
    box-shadow: none !important;
}

.section-spacing {
    padding: 60px 0;
}

.content-block {
    margin-bottom: 50px;
}

.content-block:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .form-control {
        border-radius: 20px;
        font-size: 12px;
        padding: 10px 15px;
    }
}

/*-----------------------------------------
* 05. Pre Loader
* -----------------------------------------*/
.preloader {
    display: none;
    background-color: rgba(255, 255, 255, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    text-align: center;
    z-index: 99999;
}

.preloader.active {
    display: block;
}

.preloader-inner {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    border: 4px solid hsla(0, 0%, 0%, 0.2);
    border-top-color: #333333;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*-----------------------------------------
* 06. Header Section
* -----------------------------------------*/
.site-header {
    position: fixed;
    top: 0;
    /* left: 0; */
    /* right: 0; >> to make nav right <<  */
    bottom: 0;
    z-index: 1024;
    max-height: 100vh;
    padding: 40px;
    opacity: 1;
    visibility: visible;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

/*-----------------------------------------
* 07. Navigation Menu
* -----------------------------------------*/
.navigation .navbar-nav .nav-item .nav-link {
    background-color: var(--nav-bg);
    color: #ffffff;
    /*  */
    font-size: 14px;
    font-weight: 500;
    height: 56px;
    width: 56px;
    border-radius: 50px;
    white-space: nowrap;
    padding: 10px 18px;
    margin: 5px 0;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: all 0.3s ease-in;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.navigation .navbar-nav .nav-item .nav-link:hover,
.navigation .navbar-nav .nav-item:hover .nav-link {
    width: 100%;
}

.navigation .navbar-nav .nav-item .nav-link:hover span,
.navigation .navbar-nav .nav-item:hover .nav-link .link-text {
    display: inline-block;
}

.navigation .navbar-nav .nav-item .nav-link i {
    color: #ffffff;
    font-size: 20px;
    position: absolute;
    left: 0;
    text-align: center;
    width: 56px;
}

.navigation .navbar-nav .nav-item .nav-link .link-text {
    padding: 0 0 0 28px;
    color: #ffffff;
    display: none;
}

/*-----------------------------------------
* 08. Banner Section
* -----------------------------------------*/
.banner-section {
    position: relative;
    background-color: #d7d7d7;
    min-height: 100vh;
    padding: 60px 0;
}

.banner-section .banner-inner {
    position: relative;
    z-index: 99;
}

.banner-section .banner-text h2 {
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0.9px;
    font-weight: 400;

    margin: 0 0 15px;
}

.banner-section .banner-text h3 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 0 15px;
}

.banner-section .banner-text p {
    color: #ffffff;
    max-width: 510px;
    letter-spacing: 0.2px;
    margin: 0 0 15px;
    text-align: justify;
}

@media (max-width: 768px) {
    .banner-section .banner-text p {
        text-align: center;
    }
}

@media (max-width: 1199px) {
    .banner-section .banner-text p {
        text-align: center;
    }
}

.banner-section .social-links a {
    color: #ffffff;
    font-size: 20px;
    margin: 0 20px 20px 0;
}

/* Background Image */
.banner-section.header-bg-img {
    background-image: url("../../assets/images/banners/bg-image.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Background overlay opacity */
.banner-section.header-bg-img:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.dark-mode .banner-section.header-bg-img:after {
    background-color: rgba(0, 0, 0, 0.85);
}

.banner-section .banner-inner .center-picture {
    /* border-radius: 50%; */
    max-width: 325px;
    /* border: 10px solid rgba(255, 255, 255, 0.1); */
}

/* Cd Type Word Wrapper */
.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}

.cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.cd-words-wrapper b.is-visible {
    position: relative;
}

.cd-headline.clip .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
    border-right: 2px solid #dddddd;
    padding-right: 4px;
}

.cd-headline.clip b {
    opacity: 0;
}

.cd-headline.clip b.is-visible {
    opacity: 1;
}

/* Bottom Scroll Arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: 5vh;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 998;
    display: block;
    cursor: pointer;
    width: 30px;
    height: 60px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.scroll-down-arrow:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    background-color: #fafafa;
    border-radius: 50%;
    -webkit-animation: scroll_down 2s infinite;
    animation: scroll_down 2s infinite;
}

@-webkit-keyframes scroll_down {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        -webkit-transform: translate(0, 20px);
        transform: translate(0, 20px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes scroll_down {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        -webkit-transform: translate(0, 20px);
        transform: translate(0, 20px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

/* Section Title */
.section-title {
    position: relative;
}

.section-title h1 {
    font-size: 42px;
    font-weight: bold;

    margin: 0 0 60px;
    text-align: center;
}

.section-subtitle h3 {
    margin-bottom: 40px;
    text-align: center;
}

/* Separator */
.separator {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    background: var(--skill-bg);
    width: 150px;
    height: 5px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
}

.separator:after {
    content: "";
    display: block;
    width: 10px;
    height: 5px;
    position: relative;
    background-color: #222222;
    animation: separator 2s linear infinite;
    overflow: hidden;
    border-radius: 2px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

@keyframes separator {
    0% {
        top: 0;
        left: 0;
    }

    25% {
        left: 25px;
        width: 25%;
    }

    50% {
        left: 50px;
        width: 45%;
    }

    75% {
        left: 75px;
        width: 65%;
    }

    100% {
        left: 150px;
        width: 80%;
    }
}

/*-----------------------------------------
* 09. About Section
* -----------------------------------------*/
.about-details ul li span:first-child,
.about-details ul li span:first-child {
    opacity: 0.7;
}

/* Eeducation & Experience */
.education,
.experince {
    border-left: 2px solid #dddddd;
}

.education-box,
.experince-box {
    position: relative;
    box-shadow: 2px 0 0 1px #dddddd;
    border-radius: 13px;
    padding: 15px 25px;
    border-left: 3px solid;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.education-box:before,
.experince-box:before {
    content: "";
    left: -37px;
    display: block;
    position: absolute;
    background: #ffffff;
    border: 2px solid;
    width: 17px;
    height: 17px;
    border-radius: 50%;
}

.education-box:after,
.experince-box:after {
    content: "";
    background-color: #666666;
    display: block;
    position: absolute;
    width: 33px;
    height: 2px;
    top: 23px;
    left: -34px;
    z-index: -1;
}

.education-box:hover:before,
.experince-box:hover:before {
    background-color: #666666;
}

.education-box:hover,
.experince-box:hover {
    /* box-shadow: 0 0 10px rgba(33, 33, 33, 0.2); */
    box-shadow: 0 0 10px #004aad5e;
}

.dark-mode .education-box:hover,
.dark-mode .experince-box:hover {
    box-shadow: 0 0 10px var(--brand-color);
}

.education-box span,
.experince-box span,
.meta-action {
    font-size: 13px;
    font-weight: 400;
}

/* Skills */

.skills .progressbar {
    width: 100%;
    position: relative;
    background-color: #dddddd;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);
}

.skills .proggress {
    height: 8px;
    width: 10px;
}

.skills .percentCount {
    float: right;
    clear: both;
    font-weight: 600;
    margin-top: -45px;
}

.skills .skill-name {
    margin: 0 0 12px 0;
    line-height: normal;
    opacity: 1;
    font-weight: 600;
    font-size: 14px;
}

/* Counter */
.counter-box {
    border: 1px solid #dddddd;
    padding: 25px;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.counter-box:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 0 10px rgba(33, 33, 33, 0.2);
}

.counter-box h3 {
    border-bottom: 2px solid rgba(102, 102, 102, 0.4);
    font-size: 50px;
    display: block;
    text-align: right;
}

.counter-box h5 {
    font-size: 17px;
}

/*-----------------------------------------
* 10. Service Section
* -----------------------------------------*/
.service .card-body {
    padding: 25px;
    border-radius: 15px;
    -webkit-transition: cubic-bezier(0.57, 0.11, 0.27, 0.9) .3s;
    transition: cubic-bezier(0.57, 0.11, 0.27, 0.9) .3s;
    border: 1px solid #dddddd;
    height: -webkit-fill-available;
}

.service .card-body:hover {
    background-color: var(--cardhover-bg);
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    box-shadow: 0 0 10px #004aad5e;
    /* box-shadow: 0 0 10px rgba(33, 33, 33, 0.2); */
}

.dark-mode .service .card-body:hover {
    box-shadow: 0 0 25px var(--brand-color);
}

.service .card-icon {
    font-size: 50px;
    margin-bottom: 15px;
    transition: cubic-bezier(0.57, 0.11, 0.27, 0.9) .3s;
}

.service .card-body:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
}

.service .card-title h4 {
    font-size: 22px;
    font-weight: 600;
}

/* Customers Testimonial --*/
.customers-testimonial .item {
    text-align: center;
    margin-bottom: 5px;
    padding: 20px 20px;
    opacity: 0;
    visibility: hidden;
    display: block;
    border: 3px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.customers-testimonial .item.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}

.customers-testimonial p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-style: italic;
}

.customers-testimonial .name {
    margin: 17px auto 0;
    display: table;
    width: auto;
    padding: 6px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.customers-testimonial .item:hover .name {
    background-color: #ffffff;
}

.customers-testimonial .item img {
    max-width: 90px;
    margin: 0 auto 17px;
    border-radius: 40%;
}

/* Carousel Slider */
.carousel .carousel-control-next,
.carousel .carousel-control-next:focus,
.carousel .carousel-control-prev,
.carousel .carousel-control-prev:focus {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 26px;
    text-align: center;
    color: #333333;
    background-color: #ffffff;
    top: calc(50% - 50px);
    border-radius: 50%;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .15);
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.carousel .carousel-control-prev {
    left: -10px;
}

.carousel .carousel-control-next {
    right: -10px;
}

/* Carousel Arrow */
.carousel .carousel-control-next:hover,
.carousel .carousel-control-prev:hover {
    opacity: 0;
    color: #ffffff;
    background-color: #333333;
}

.carousel:hover .carousel-control-next,
.carousel:hover .carousel-control-prev {
    opacity: 1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

/* Carousel Dots */
.carousel .carousel-indicators {
    position: relative;
    margin: 30px auto 0
}

.carousel .carousel-indicators li.active,
.carousel .carousel-indicators li:hover {
    -webkit-transform: translate3d(0px, -50%, 0px) scale(0.7);
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

.carousel .carousel-indicators li {
    display: inline-block;
    height: 25px;
    width: 25px;
    margin: 0 2px 0;
    border: none;
    -webkit-transform: translate3d(0px, -50%, 0px) scale(0.5);
    transform: translate3d(0px, -50%, 0px) scale(0.5);
    -webkit-transition: all 250ms ease-out 0s;
    transition: all 250ms ease-out 0s;
    border-radius: 50%;
}

/*-----------------------------------------
* 11. Portfolio Section
* -----------------------------------------*/
.portfolio #portfolio-flters li {
    cursor: pointer;

    background-color: var(--nav-bg);
    color: #ffffff;
    padding: 10px 28px;
    margin: 0 5px 10px 5px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.portfolio #portfolio-flters li.filter-active,
.portfolio #portfolio-flters li:hover {
    background-color: #000000;
}

/* Portfolio Card Info */
.portfolio .portfolio-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.portfolio .portfolio-wrap:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    -webkit-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    z-index: 9;
    opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 99;
    -webkit-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}

.portfolio .portfolio-wrap .portfolio-info:before {
    content: "";
    display: block;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 1px dashed #ffffff;
    border-left: 1px dashed #ffffff;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    z-index: 9994;
    border-radius: 10px;
}

.portfolio .portfolio-wrap .portfolio-info:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 1px dashed #ffffff;
    border-right: 1px dashed #ffffff;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    z-index: 9994;
    border-radius: 10px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #ffffff;
    margin: 0 0 15px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-inner-info {
    position: relative;
    z-index: 9999;
}

.portfolio .portfolio-wrap .portfolio-links a {
    background-color: var(--bg-color);
    margin: 0 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    background-color: #000000;
    color: #ffffff !important;
}

.portfolio .portfolio-wrap:hover:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

/* .portfolio .portfolio-wrap:hover .portfolio-info:before {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info:after {
    bottom: 15px;
    right: 15px;
    top: 15px;
    left: 15px;
} */

.portfolio .portfolio-wrap:hover .portfolio-info:before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.portfolio .portfolio-wrap:hover .portfolio-info:after {
    bottom: 10px;
    right: 10px;
    top: 10px;
    left: 10px;
}

/* Profolio Detail Popup */
.portfolio-details,
.work-details {
    position: relative;
    width: 95%;
    background: var(--bg-color);
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    z-index: 999;
}

.popup-detail-title {
    font-size: 28px;
    font-weight: 600;

    text-align: center;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 25px;
    padding-bottom: 25px;
    line-height: 1;
}

.portfolio-details .mfp-close,
.work-details .mfp-close {
    color: #666666;
}

.mfp-close-btn-in .mfp-close {
    font-size: 40px;
}

.mfp-arrow {
    position: fixed;
}

.mfp-fade.mfp-bg {
    height: 100% !important;
    position: fixed !important;
}

.mfp-fade.mfp-wrap {
    height: 100% !important;
    position: fixed !important;
    overflow: hidden auto;
    top: 0 !important;
}

/*-----------------------------------------
* 12. work Section
* -----------------------------------------*/
.work .card {
    border: 1px solid #dddddd;
    overflow: hidden;
    border-radius: 15px;
    height: -webkit-fill-available;
}

.work .card:hover .work-card-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.work .card .work-card-img {
    position: relative;
    overflow: hidden;
    /* border-bottom: 5px solid; */
}

/* work Detail Popup */
.post-tags-social {
    border-top: 1px dotted #efefef;
    border-bottom: 1px dotted #efefef;
    padding: 10px 0;
}

.social-media ul li a {
    font-size: 16px;
    margin: 0 12px 0 0;
}

.social-media ul li:last-child a {
    margin: 0;
}

/*-----------------------------------------
* 13. Contact Section
* -----------------------------------------*/
.contact .card-body {
    padding: 20px;
    width: 100%;
    border-radius: 25px;
    border: 1px solid #dddddd;
    -webkit-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
}

@media (max-width: 768px) {
    .contact .card-body {
        padding: 10px;
        width: 100%;
        border-radius: 20px;
        border: 1px solid #dddddd;
        -webkit-transition: ease-in-out .3s;
        transition: ease-in-out .3s;
    }
}

.contact .card-body .card-icon i {
    font-size: 18px;
    background-color: #ececec;
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    -webkit-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -ms-flexbox;
    display: flex;
}

.contact .card-body:hover {
    box-shadow: 0 0 10px 0 #e2e2e2;
}

.contact .card-body:hover .card-icon i {
    color: #ffffff !important;
}

.contact .card-body h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
}

.contact .card-body .social-links a {
    font-size: 18px;
    margin-right: 15px;
}

.contact .responsive-map {
    overflow: hidden;
    padding-bottom: 50%;
    position: relative;
    height: auto;
}

.contact .responsive-map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: none;
}

.contact .contact-form .btn-primary:hover {
    background-color: #333333;
}

.mailsendbtn {
    display: inline-block;
    position: relative;
}

.mailsendbtn .loading {
    display: none;
    background: #ffffff;
    text-align: center;
    position: absolute;
    right: 343px;
    top: 5px;
    /* right: -45px;
    top: 8px; */
    font-size: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.25);
}

.loading img {
    margin-top: 4px;
}

@media only screen and (max-width:767px) {
    .mailsendbtn .loading {
        right: 5px;
        width: 35px;
        height: 35px;
    }

    .loading img {
        margin-top: 8px;
    }
}

.error_msg {
    margin: 4px 0 0;
    display: block;
    font-size: 14px;
    color: #ff4141;
}

/* Back To Top Scroll Arrow */
.back-to-top {
    display: none;
    background-color: var(--nav-bg);
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 25px;
    line-height: 40px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 20px;
    text-align: center;
    box-shadow: 0 0 2px #f2f2f2;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 998;
}

.back-to-top:hover {
    background-color: #000000;
    color: #ffffff;
    transform: scale(1.1);
}

.back-to-top i {
    margin-top: 25%;
}


/*-----------------------------------------
* 14. Inner Pages
* -----------------------------------------*/
/* Breadcrumb */
.breadcrumb {
    position: relative;
    background-color: #f0f0f0;
    margin: 0;
    padding: 40px 0;
    border-radius: 0;
}

.breadcrumb .bread-list {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 2px;
    background-color: #ffffff;
}

/* 01. Not Found Page */
.not-found-page h1 {
    font-size: 150px;
    font-weight: 300;
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: -5px -5px 4px rgba(201, 202, 201, 0.68);
}

.not-found-page .search-btn {
    font-size: 20px;
    padding: 10px 20px;
}

.not-found-page .animate-ziro {
    position: relative;
    top: 15px;
    -webkit-animation: movetext 1s infinite;
    animation: movetext 1s infinite;
}

@keyframes movetext {
    50% {
        bottom: 10px;
        top: 0px;
    }
}

/* 02. Coming Soon Page */
.coming-soon-page .main-wrapper {
    background-image: url('../images/banners/bg1.jpg');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.coming-soon-page .main-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.coming-soon {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 30px 20px;
}

.coming-soon .text-logo {
    position: relative;
    color: #ffffff;

    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1px;
    margin: 0 0 25px;
    display: inline-block;
}

.coming-soon h2 {
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 15px;
}

.coming-soon .sub-title {
    font-size: 18px;
}

.coming-soon .newsletter-form .input-group {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon .countdown li {
    background-color: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    margin: 0 2px 5px;
    padding: 5px;
}

.coming-soon .countdown .digit {
    color: #ffffff;
    font-size: 28px;
    line-height: 28px;
    font-weight: 400;
    display: block;
}

.coming-soon .countdown .smalltext {
    margin: 7px 0 0;
    line-height: 14px;
    font-size: 14px;
    color: #dddddd;
    display: block;

}

.coming-soon .social-icon li a {
    font-size: 20px;
    color: #ffffff;
    margin: 0 10px;
}


/*-----------------------------------------
* 15. Styles Switcher CSS
* -----------------------------------------*/
.switcher-wrapper {
    position: fixed;
    top: 150px;
    right: -202px;
    z-index: 1024;
    width: 202px;
    background-color: #ffffff;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px 0 0 8px;
    -webkit-transition: ease .5s;
    transition: ease .5s;
}

.switcher-wrapper.open {
    right: 0;
}

.switcher-wrapper .switcher-trigger {
    position: absolute;
    background-color: #444444;
    color: #ffffff;
    width: 40px;
    height: 40px;
    right: 202px;
    top: 10px;
    border-radius: 6px 0 0 6px;
    border: 0;
    font-size: 20px;
    text-align: center;
}

.switcher-wrapper .switcher-inner h6 {
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    padding: 15px 0;
    margin: 0;
    border-bottom: 1px solid #dddddd;
}

.switcher-wrapper .switcher-inner .color-list {
    margin: 0 0 -10px -10px;
}

.switcher-wrapper .switcher-inner .color-list li {
    position: relative;
    padding: 0 0 10px 10px;
    display: inline-block
}

.switcher-wrapper .switcher-inner .color-list li button {
    position: relative;
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 10px;
    -webkit-transition: .3s;
    transition: .3s;
    font-size: 0px;
    color: #ffffff;
}

.switcher-wrapper .switcher-inner .color-list li button:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
}

.switcher-wrapper .switcher-inner .green button {
    background: #79d70f;
}

.switcher-wrapper .switcher-inner .pink button {
    background: #ff1e56;
}

.switcher-wrapper .switcher-inner .blue button {
    background: #40bad5;
}

.switcher-wrapper .switcher-inner .orange button {
    background: #ff7315;
}

.switcher-wrapper .switcher-inner .purple button {
    background: #9818d6;
}

.switcher-wrapper .switcher-inner .yellow button {
    background: #ffd31d;
}

.switcher-wrapper .switcher-inner .magenta button {
    background: #ff00ff;
}

.switcher-wrapper .switcher-inner .red button {
    background: #ff5d56;
}


/*-----------------------------------------
* 16. Responsive CSS
* -----------------------------------------*/
/* Large devices (desktops, 992px and up) */
@media (min-width:992px) {
    .container {
        max-width: 700px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width:1200px) {
    .container {
        max-width: 1000px;
    }
}

/* Below minimum 1366px */
@media (min-width:1366px) {
    .container {
        max-width: 1045px;
    }
}

/* Below minimum 1520px */
@media (min-width:1520px) {
    .container {
        max-width: 1140px;
    }
}

/* Large devices (desktops, less than 1200px) */
@media only screen and (max-width:1199px) {
    .banner-section .banner-text.ml-lg-5 {
        margin-left: 0 !important;
        margin-top: 1.5rem !important;
    }

    .banner-section .banner-inner {
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .banner-section .banner-inner .center-picture {
        max-width: 250px;
    }

    .banner-section .social-links {
        -ms-flex-pack: center;
        justify-content: center;
    }

    .about .skill-item.mt-4 {
        margin-top: 1.5rem !important;
    }

    .education-title {
        margin-top: 25px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media only screen and (max-width:991px) {


    /* .site-header {
        background-color: transparent;
        backdrop-filter: none;
    }

    .site-header.menu-open {
        backdrop-filter: blur(10px);
    } */


    /* Header Section */
    .site-header {
        background-color: transparent;
        backdrop-filter: blur(10px);
        max-width: 100%;
        /* max-width: 350px; */
        right: 0;
        width: 100%;
        padding: 25px;
        -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.4);
        box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.4);
        transition: all .5s ease-in-out;
    }

    .site-header.mobile-menu-hide {
        bottom: 100%;
        opacity: 0;
        visibility: hidden;
    }

    .navbar-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: auto;
        margin-top: 10px;
    }

    /* Navigation */
    .navigation .navbar-nav .nav-item .nav-link {
        width: 100%;
        height: 60px;
        border-radius: 50px;

    }

    .navigation .navbar-nav .nav-item .nav-link i {
        font-size: 15px;
    }

    .navigation .navbar-nav .nav-item .nav-link .link-text {
        display: block;
        font-size: 14px;
        padding: 0 0 0 25px;
        /* padding: 0 0 0 20px; */
    }

    .site-header .closeNav-btn {
        position: absolute;
        font-size: 15px;
        font-weight: 500;

        z-index: 1024;
        top: 25px;
        right: 20px;
        color: #fff;
        background-color: var(--brand-color);
        padding: 6px 9px;
        border-radius: 50%;
        line-height: 0;
    }

    .site-header .closeNav-btn i {
        font-size: 30px;
    }

    .site-header .closeNav-btn i:hover {
        color: #c0c0c0;
    }

    a#closeNav {
        color: #c0c0c0;
    }

    /* Menu Toggle */
    .menu-toggle-line {
        position: fixed;
        /* left: 10px; */
        right: 20px;
        top: 20px;
        z-index: 1024;
        height: 50px;
        width: 50px;
        border-radius: 50%;
        padding: 5px 0 0;
        border: none;
    }

    /* .menu-toggle-line.open:after {
        content: "";
        background: rgba(0, 0, 0, 0.5);
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        -webkit-transition: all .15s ease-in;
        transition: all .15s ease-in;
    } */

    .menu-toggle-line span {
        height: 2px;
        width: 26px;
        background: #ffffff;
        display: block;
        margin: 0 auto 6px;
        transform-origin: 10px 0;
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
    }

    .menu-toggle-line.open span:nth-child(1) {
        -webkit-transform: rotate(45deg) translate(6px, 1px);
        transform: rotate(45deg) translate(6px, 1px);
    }

    .menu-toggle-line.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle-line.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg) translate(6px, -3px);
        transform: rotate(-45deg) translate(6px, -3px);
    }

    #theme-toggle {
        display: none !important;
    }

    #whatsapp-btn {
        bottom: 170px !important;
    }

    .back-to-top {
        bottom: 100px;
        right: 20px;
    }
}

/* Small devices (landscape phones, less than 768px */
@media only screen and (max-width:767px) {
    body {
        font-size: 14px;
        line-height: 22px;
    }

    .btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    .section-spacing {
        padding: 40px 0;
    }

    .content-block {
        margin-bottom: 40px;
    }

    .section-title h1 {
        font-size: 36px;
        margin: 0 0 45px;
    }

    .banner-section .banner-text h3 {
        font-size: 25px;
        text-transform: none;
    }

    .counter-box,
    .service .card-body {
        padding: 20px;
    }

    .portfolio-details,
    .work-details {
        padding: 20px;
    }

    .portfolio-details h5,
    .work-details h5,
    .work .card h5 {
        font-size: 18px;
    }

    .popup-detail-title {
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .section-title h4,
    .portfolio-content h4 {
        font-size: 20px;
    }

    .coming-soon .text-logo {
        font-size: 40px;
        margin: 0 0 20px;
    }

    .coming-soon h2 {
        font-size: 30px;
    }

    .coming-soon .sub-title {
        font-size: 15px;
    }

    .coming-soon .countdown li {
        width: 55px;
        height: 55px;
    }

    .coming-soon .countdown .digit {
        font-size: 20px;
        line-height: 20px;
    }

    .coming-soon .countdown .smalltext {
        font-size: 11px;
        line-height: 11px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media only screen and (max-width:575px) {
    .section-title h1 {
        font-size: 32px;
        padding-bottom: 4px;
    }

    .section-subtitle {
        font-size: 22px;
        margin-bottom: 30px !important;
    }

    .banner-section .banner-inner .info-button .btn {
        width: 75%;
        margin-bottom: 15px;
    }

    .banner-section .banner-inner .center-picture {
        min-width: 200px;
        max-width: 250px;
    }

    .about-details ul {
        float: none !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .portfolio #portfolio-flters li {
        width: 45%;
    }

    button.mfp-arrow {
        display: none !important;
    }

    /* .mfp-arrow-left {
        left: -20px;
    }

    .mfp-arrow-right {
        right: -20px;
    } */

    .coming-soon .newsletter-form .input-group {
        display: inline-block;
    }

    .coming-soon .input-group .form-control {
        border-radius: 30px;
        width: 100%;
        margin: 0 0 15px;
    }

    .coming-soon .input-group .input-group-append .btn {
        border-radius: 30px;
        margin: 0 auto;
    }
}

/* Custom GLow Button  */

.glow-on-hover {
    position: relative;
    font-size: 15px;
    font-weight: bolder;
    letter-spacing: 0.5px;
    padding: 12px 34px;

    border: none;
    overflow: hidden;
    border-radius: 26px;
    color: #fff;
    background: var(--brand-color);
    cursor: pointer;
    z-index: 0;
}

/* Hover effect for desktop */
.glow-on-hover:hover {
    color: #fff !important;
    background: #f9f9f9;
    transform: scale(1.05);
}

/* Always apply hover effect on mobile */
@media (max-width: 768px) {
    .glow-on-hover {
        color: #fff !important;
        background: #f9f9f9;
    }

    .glow-on-hover:before {
        opacity: 1;
        /* Ensures glow effect is visible */

    }
}

/* Glow effect */
.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    /* filter: blur(5px); */
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    /* border-radius: 26px; */
}

/* Ensures glow effect is always visible on mobile */
@media (max-width: 768px) {
    .glow-on-hover:before {
        opacity: 1;
    }
}

.glow-on-hover:active {
    color: #ffffff;
}

.glow-on-hover:active:after {
    background: transparent;
}

/* Hover glow effect */
.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 95%;
    height: 95%;
    left: 0;
    top: 0;
    border-radius: 26px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}




.body-2 {
    font-size: 18px;
}

@media (max-width: 768px) {
    .body-2 {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Form submission msg  */

#success-message {
    display: none;
    color: green;
    font-weight: bold;
    margin-top: 10px;
}

.btn-2 {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 12px 34px;
    border: none;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: none;
    color: #ffffff;
    background-color: var(--brand-color);
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-2:hover {
    color: #ffffff;
    background-color: #666666;
}

/* Download CV for mobile  */

.download-cv {
    display: flex;
    justify-content: left;
}

@media (max-width: 768px) {

    .about-text h4 {
        text-align: center !important;
    }

    .about-text p {
        text-align: center !important;
    }

    .download-cv {
        display: flex;
        justify-content: center;
    }
}


/* ===========================
   FLOATING DARK MODE BUTTON
=========================== */

#theme-toggle {
    position: fixed;
    top: 20px;
    /* bottom: 25px; */
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--nav-bg);
    color: var(--text-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 999;
}

#theme-toggle:hover {
    transform: scale(1.1);
}

/* ===========================
   FLOATING WHATSAPP BUTTON (LIVE GRADIENT)
=========================== */

#whatsapp-btn {
    position: fixed;
    bottom: 110px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: linear-gradient(45deg, #25D366, #08C972, #00873f, #10B352);
    background-size: 400% 400%;
    animation: gradientMove 4s ease infinite;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.4);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 998;
}

#whatsapp-btn img {
    width: 28px;
    height: 28px;
    /* filter: brightness(0) invert(1); make icon white */
}

/* Show / Hide transition */
#whatsapp-btn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

#whatsapp-btn.hide {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

#whatsapp-btn:hover {
    transform: scale(1.1);
}


/* Animated Gradient Keyframes */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.studio .card-body {
    padding: 25px;
    border-radius: 15px;
    -webkit-transition: cubic-bezier(0.57, 0.11, 0.27, 0.9) .3s;
    transition: cubic-bezier(0.57, 0.11, 0.27, 0.9) .3s;
    border: 1px solid #dddddd;
    height: -webkit-fill-available;
}

.studio .card-body:hover {
    background-color: var(--cardhover-bg);
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    box-shadow: 0 0 10px #004aad5e;
    /* box-shadow: 0 0 10px rgba(33, 33, 33, 0.2); */
}

.dark-mode .studio .card-body:hover {
    box-shadow: 0 0 25px var(--brand-color);
}

.studio .card-body h4 {
    text-transform: none;
}

.studio .card-body h4 span {
    color: var(--brand-color);
}


/* ===============================
   Mobile Sticky Navigation
================================ */

.mobile-sticky-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 85px;
    background: var(--bg-color);
    display: flex;
    border-top: 1px solid var(--cardhover-bg);
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.08);
    z-index: 999;
    overflow: hidden;
    /* required for nav-level ripple */
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-sticky-nav {
        display: none;
    }
}


/* ===============================
   Nav Items
================================ */

.mobile-sticky-nav .m-nav-item {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 11px;
    font-family: 'Lexend';
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: 10px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s ease, transform 0.15s ease;
}

.mobile-sticky-nav .m-nav-item i {
    font-size: 22px;
    margin-bottom: 5px;
}

/* Press feedback */
.mobile-sticky-nav .m-nav-item:active {
    transform: scale(0.9);
}

/* Active state */
.mobile-sticky-nav .m-nav-item.active {
    color: var(--brand-color);
}

/* CTA Highlight */
.mobile-sticky-nav .m-nav-item.highlight {
    color: var(--brand-color);
    font-weight: 600;
}

/* ===============================
   Icon Bounce (iOS-style)
================================ */

.mobile-sticky-nav .m-nav-item.bounce i {
    animation: iosBounce 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes iosBounce {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(0.85);
    }

    70% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* Optional pop for active icon on load */
.mobile-sticky-nav .m-nav-item.active i {
    animation: pop 0.25s ease;
}

@keyframes pop {
    50% {
        transform: scale(1.15);
    }
}

/* ===============================
   NAV-LEVEL RIPPLE (GLOBAL)
================================ */

.mobile-sticky-nav .nav-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgb(103 58 183 / 27%);
    transform: scale(0);
    animation: navRipple 0.7s ease-out;
    pointer-events: none;
}

@keyframes navRipple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* hide seo footer  */

.mobile-sticky-nav.hide-at-bottom {
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

/* ===============================
   Sticky Nav Visibility Control
================================ */

/* Default: hidden */
.mobile-sticky-nav {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Show when allowed */
.mobile-sticky-nav.nav-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Hide when footer appears */
.mobile-sticky-nav.hide-at-bottom {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    pointer-events: none;
}
