/*******************************/
/********* General CSS *********/
/*******************************/
:root {
    --bg-primary:    #0a0a0f;
    --bg-surface:    #121218;
    --bg-elevated:   #1a1a28;
    --accent-violet: #7B2FBE;
    --accent-bright: #9D4EDD;
    --accent-cyan:   #00D2FF;
    --accent-blue:   #1F51FF;
    --text-primary:  #FFFFFF;
    --text-secondary:#B0B0CC;
    --border:        #2a2a42;
    --glow-violet:   rgba(123, 47, 190, 0.45);
    --glow-cyan:     rgba(0, 210, 255, 0.3);
}

body {
    color: var(--text-secondary);
    background: var(--bg-primary);
    font-family: 'Montserrat', sans-serif;
}

.about, .experience, .portfolio, .footer, .section-header {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
}

a {
    color: var(--text-secondary);
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: var(--accent-cyan);
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    background: var(--accent-violet);
    border: 2px solid var(--accent-violet);
    border-radius: 0;
    box-shadow: inset 0 0 0 50px var(--accent-violet), 0 0 16px var(--glow-violet);
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.btn:hover {
    color: var(--accent-cyan);
    background: transparent;
    box-shadow: inset 0 0 0 0 var(--accent-violet), 0 0 20px var(--glow-violet);
    border-color: var(--accent-cyan);
}

#loader {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid var(--border);
    border-top: 5px solid var(--accent-violet);
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    box-shadow: 0 0 20px var(--glow-violet);
}

@-webkit-keyframes spin {
    0%   { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px 0;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    z-index: 9;
    background: var(--accent-violet);
    box-shadow: 0 0 16px var(--glow-violet);
}

.back-to-top i {
    color: #ffffff;
}

.back-to-top:hover i {
    color: var(--accent-cyan);
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .6);
}

.navbar .navbar-brand {
    margin: 0;
    font-size: 45px;
    line-height: 0px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: var(--bg-elevated);
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        padding: 30px 60px;
        background: transparent !important;
        border-bottom: 1px dashed rgba(123, 47, 190, .3);
        z-index: 9;
    }

    .navbar.nav-sticky {
        padding: 10px 60px;
        background: rgba(10, 10, 15, 0.95) !important;
        border-bottom: 1px solid var(--accent-violet);
        box-shadow: 0 0 30px var(--glow-violet);
        backdrop-filter: blur(10px);
    }

    .navbar .navbar-brand {
        color: #ffffff;
    }

    .navbar.nav-sticky .navbar-brand {
        color: var(--accent-cyan);
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 10px 8px 10px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
    }

    .navbar-light.nav-sticky .navbar-nav .nav-link,
    .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
        color: var(--text-secondary);
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--accent-cyan);
        text-shadow: 0 0 10px var(--glow-cyan);
    }

    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active {
        color: var(--accent-cyan);
        text-shadow: 0 0 10px var(--glow-cyan);
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 15px;
        background: rgba(10, 10, 15, 0.98) !important;
        border-bottom: 1px solid var(--accent-violet);
    }

    .navbar .navbar-brand {
        color: var(--accent-cyan);
    }

    .navbar .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.4);
    }

    .navbar .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar .navbar-nav {
        margin-top: 15px;
    }

    .navbar a.nav-link {
        padding: 8px 5px;
        color: #ffffff;
    }

    .navbar a.nav-link:hover,
    .navbar a.nav-link.active {
        color: var(--accent-cyan);
    }

    .navbar .dropdown-menu {
        box-shadow: none;
        background: rgba(20, 20, 30, 0.98);
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    padding: 120px 0 0 0;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero::before {
    content: none;
}

.hero .container-fluid {
    padding: 0;
}

.hero .hero-image {
    position: relative;
    text-align: right;
    padding-right: 75px;
}

.hero .hero-image img {
    max-width: 80%;
    max-height: 80%;
}

.hero .hero-content {
    position: relative;
    padding-left: 75px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hero .hero-text p {
    color: var(--accent-cyan);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 0 12px var(--glow-cyan);
}

.hero .hero-text h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 0 30px var(--glow-violet), 0 0 60px rgba(123,47,190,.2);
}

.hero .hero-text h2 {
    display: inline-block;
    margin: 0;
    height: 35px;
    color: var(--accent-bright);
    font-size: 35px;
    font-weight: 600;
    text-shadow: 0 0 16px var(--glow-violet);
}

.hero .hero-text .typed-text {
    display: none;
}

.hero .hero-text .typed-cursor {
    font-size: 35px;
    font-weight: 300;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--glow-cyan);
}

.hero .hero-btn .btn {
    margin-top: 35px;
    color: var(--accent-violet);
    background: #ffffff;
    box-shadow: inset 0 0 0 50px #ffffff;
    border-color: #ffffff;
}

.hero .hero-btn .btn:hover {
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ffffff, 0 0 20px var(--glow-cyan);
    border-color: var(--accent-cyan);
}

.hero .hero-btn .btn:first-child {
    margin-right: 10px;
}

@media (max-width: 991.98px) {
    .hero { padding-top: 60px; }
    .hero .hero-content { padding: 0 15px; }
    .hero .hero-text p { font-size: 20px; }
    .hero .hero-text h1 { font-size: 45px; }
    .hero .hero-text h2 { font-size: 25px; height: 25px; }
    .hero .hero-btn .btn { padding: 12px 30px; letter-spacing: 1px; }
}

@media (max-width: 767.98px) {
    .hero { padding-top: 60px; padding-bottom: 60px; }
    .hero, .hero .hero-text, .hero .hero-btn { width: 100%; text-align: left; }
    .hero .hero-text p  { font-size: 18px; }
    .hero .hero-text h1 { font-size: 35px; }
    .hero .hero-text h2 { font-size: 22px; height: 22px; }
    .hero .hero-btn .btn { padding: 10px 15px; letter-spacing: 1px; }
}

@media (max-width: 575.98px) {
    .hero .hero-text p  { font-size: 16px; }
    .hero .hero-text h1 { font-size: 30px; }
    .hero .hero-text h2 { font-size: 18px; height: 18px; }
    .hero .hero-btn .btn { padding: 8px 10px; letter-spacing: 0; }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    margin-bottom: 45px;
}

.section-header p {
    display: inline-block;
    margin: 0 30px;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--bg-primary);
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--glow-cyan);
}

.section-header p::before {
    position: absolute;
    content: "";
    height: 3px;
    top: 11px;
    right: 0;
    left: -30px;
    background: linear-gradient(90deg, var(--accent-violet), var(--accent-cyan));
    z-index: -1;
}

.section-header p::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    top: 11px;
    left: 3px;
    background: var(--accent-cyan);
    z-index: 1;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 45px;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 30px var(--glow-violet);
}

@media (max-width: 767.98px) {
    .section-header h2 { font-size: 30px; }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    margin: -45px 0 45px 0;
    background: linear-gradient(135deg, rgba(6,6,12,.98) 0%, rgba(26,10,50,.96) 60%, rgba(0,20,60,.95) 100%);
}

.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(106,13,173,.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(0,210,255,.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about .col-lg-6 {
    padding: 0;
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    height: 100%;
}

.about .about-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-content {
    padding: 0 60px;
}

.about .about-text p {
    font-size: 16px;
    color: var(--text-secondary);
}

.about .skills {
    margin-bottom: 30px;
}

.about .skill-name {
    margin-top: 15px;
}

.about .skill-name p {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.about .skill-name p:last-child {
    float: right;
}

.about .progress {
    height: 10px;
    border-radius: 10px;
    background: var(--border);
}

.about .progress .progress-bar {
    width: 0px;
    background: linear-gradient(90deg, var(--accent-violet), var(--accent-cyan));
    border-radius: 10px;
    transition: 2s;
    box-shadow: 0 0 10px var(--glow-violet);
}

.about .about-text a.btn {
    margin-top: 15px;
}

@media (max-width: 991.98px) {
    .about .about-content { padding: 45px 15px 0 15px; }
}


/*******************************/
/******* Experience CSS ********/
/*******************************/
.experience {
    position: relative;
    padding: 45px 0 15px 0;
    background: var(--bg-primary);
}

.experience .timeline {
    position: relative;
    width: 100%;
}

.experience .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-violet), var(--accent-cyan));
    box-shadow: 0 0 12px var(--glow-violet);
    top: 0; bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.experience .timeline .timeline-item {
    position: relative;
    background: inherit;
    width: 50%;
    margin-bottom: 30px;
}

.experience .timeline .timeline-item.left {
    left: 0;
    padding-right: 30px;
}

.experience .timeline .timeline-item.right {
    left: 50%;
    padding-left: 30px;
}

.experience .timeline .timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 48px;
    right: -8px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-violet);
    border-radius: 16px;
    z-index: 1;
    box-shadow: 0 0 12px var(--glow-violet);
}

.experience .timeline .timeline-item.right::after {
    left: -8px;
}

.experience .timeline .timeline-item::before {
    content: '';
    position: absolute;
    width: 0; height: 0;
    top: 46px;
    right: 10px;
    z-index: 1;
    border: 10px solid;
    border-color: transparent transparent transparent var(--border);
}

.experience .timeline .timeline-item.right::before {
    left: 10px;
    border-color: transparent var(--border) transparent transparent;
}

.experience .timeline .timeline-date {
    position: absolute;
    width: 100%;
    top: 44px;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
    text-shadow: 0 0 10px var(--glow-cyan);
}

.experience .timeline .timeline-item.left .timeline-date {
    text-align: left;
    left: calc(100% + 55px);
}

.experience .timeline .timeline-item.right .timeline-date {
    text-align: right;
    right: calc(100% + 55px);
}

.experience .timeline .timeline-text {
    padding: 30px;
    background: var(--bg-surface);
    position: relative;
    border-right: 3px solid var(--accent-violet);
    box-shadow: 0 0 30px rgba(0, 0, 0, .4), inset 0 0 30px rgba(123,47,190,.04);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.experience .timeline .timeline-item.right .timeline-text {
    border-right: 1px solid var(--border);
    border-left: 3px solid var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 0, 0, .4), inset 0 0 30px rgba(0,210,255,.04);
}

.experience .timeline .timeline-text h2 {
    margin: 0 0 5px 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 0 15px var(--glow-violet);
}

.experience .timeline .timeline-text h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: var(--accent-bright);
}

.experience .timeline .timeline-text p {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: var(--text-secondary);
}

/* Skills Grid Styles */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.skill-category {
    padding: 10px;
    background: var(--bg-elevated);
    border-radius: 5px;
    border-left: 3px solid var(--accent-violet);
}

.skill-category strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-primary);
    font-size: 14px;
}

.skill-category span {
    font-size: 13px;
    margin-right: 8px;
    color: var(--accent-cyan);
}

/* Education Highlights Styles */
.education-highlights {
    margin: 15px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
}

.highlight-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--accent-violet);
}

.highlight-item span {
    font-size: 14px;
    color: var(--text-secondary);
}

@media (max-width: 767.98px) {
    .experience .timeline::after { left: 8px; }
    .experience .timeline .timeline-item { width: 100%; padding-left: 38px; }
    .experience .timeline .timeline-item.left { padding-right: 0; }
    .experience .timeline .timeline-item.right { left: 0%; padding-left: 38px; }
    .experience .timeline .timeline-item.left::after,
    .experience .timeline .timeline-item.right::after { left: 0; }
    .experience .timeline .timeline-item.left::before,
    .experience .timeline .timeline-item.right::before { left: 18px; border-color: transparent var(--border) transparent transparent; }
    .experience .timeline .timeline-item.left .timeline-date,
    .experience .timeline .timeline-item.right .timeline-date { position: relative; top: 0; right: auto; left: 0; text-align: left; margin-bottom: 10px; }
    .experience .timeline .timeline-item.left .timeline-text,
    .experience .timeline .timeline-item.right .timeline-text { border-right: none; border-left: 3px solid var(--accent-violet); }
    .skills-grid { grid-template-columns: 1fr; gap: 10px; }
    .skill-category { padding: 8px; }
    .highlight-item { padding: 6px 0; }
    .highlight-item span { font-size: 13px; }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background: var(--bg-primary);
}

.service .service-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    box-shadow: inset 0 0 0 0 transparent;
    transition: ease-out 0.5s;
}

.service .service-item:hover {
    box-shadow: inset 800px 0 0 0 rgba(123,47,190,.15), 0 0 30px var(--glow-violet);
    border-color: var(--accent-violet);
}

.service .service-icon {
    position: relative;
    width: 150px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-violet);
    background: var(--bg-elevated);
    box-shadow: 0 0 20px var(--glow-violet);
}

.service .service-icon i {
    position: relative;
    font-size: 60px;
    color: var(--accent-violet);
    transition: .3s;
    text-shadow: 0 0 20px var(--glow-violet);
}

.service .service-item:hover i {
    font-size: 75px;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px var(--glow-cyan);
}

.service .service-text {
    text-align: justify;
    position: relative;
    width: calc(100% - 120px);
    padding: 0 30px;
}

.service .service-text h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    transition: 1s;
    color: var(--text-primary);
}

.service .service-text p {
    margin: 0;
    font-size: 16px;
    transition: 1s;
    color: var(--text-secondary);
}

.service .service-item:hover .service-text h3,
.service .service-item:hover .service-text p {
    color: #ffffff;
}

@media (max-width: 575.98px) {
    .service .service-text h3 { font-size: 16px; margin-bottom: 5px; }
    .service .service-text p { font-size: 14px; }
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0 15px 0;
    background: var(--bg-primary);
}

.portfolio #portfolio-filter {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-filter li {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: var(--accent-violet);
    border: 2px solid var(--accent-violet);
    border-radius: 0;
    box-shadow: inset 0 0 0 50px var(--accent-violet), 0 0 12px var(--glow-violet);
    transition: ease-out 0.3s;
}

.portfolio #portfolio-filter li:hover,
.portfolio #portfolio-filter li.filter-active {
    color: var(--accent-cyan);
    background: transparent;
    box-shadow: inset 0 0 0 0 var(--accent-violet), 0 0 12px var(--glow-cyan);
    border-color: var(--accent-cyan);
}

/* Technology Filter Badges Section */
.tech-filter-section {
    margin: 30px 0;
    padding: 25px;
    background: var(--bg-surface);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .4);
    border: 1px solid var(--border);
}

.tech-filter-section h5 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.tech-filter-section h5 i {
    margin-right: 10px;
    color: var(--accent-violet);
    font-size: 20px;
}

.tech-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

@keyframes badge-float {
    0%   { transform: translateY(0px)  scale(1);    box-shadow: 0 5px 18px rgba(0,0,0,.4); }
    50%  { transform: translateY(-5px) scale(1.02); box-shadow: 0 12px 28px rgba(0,0,0,.3); }
    100% { transform: translateY(0px)  scale(1);    box-shadow: 0 5px 18px rgba(0,0,0,.4); }
}

.tech-badge-filter {
    display: inline-flex;
    align-items: center;
    background: var(--bg-elevated);
    color: var(--text-secondary);
    padding: 16px 34px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    animation: badge-float 4s ease-in-out infinite;
}

.tech-badge-filter:nth-child(2)  { animation-delay: 0.4s; }
.tech-badge-filter:nth-child(3)  { animation-delay: 0.8s; }
.tech-badge-filter:nth-child(4)  { animation-delay: 1.2s; }
.tech-badge-filter:nth-child(5)  { animation-delay: 1.6s; }
.tech-badge-filter:nth-child(6)  { animation-delay: 2.0s; }
.tech-badge-filter:nth-child(7)  { animation-delay: 2.4s; }
.tech-badge-filter:nth-child(8)  { animation-delay: 2.8s; }
.tech-badge-filter:nth-child(9)  { animation-delay: 3.2s; }
.tech-badge-filter:nth-child(10) { animation-delay: 3.6s; }

.tech-badge-filter::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123,47,190,.2), transparent);
    transition: left 0.7s ease;
}

.tech-badge-filter:hover::before { left: 100%; }

.tech-badge-filter:hover {
    background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-blue) 100%);
    color: #ffffff;
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 24px var(--glow-violet);
    animation-play-state: paused;
}

.tech-badge-filter.active {
    background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-blue) 100%);
    color: #ffffff;
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 24px var(--glow-violet);
    animation-play-state: paused;
}

.tech-badge-filter i {
    margin-right: 10px;
    font-size: 18px;
    transition: transform 0.4s ease;
}

.tech-badge-filter:hover i,
.tech-badge-filter.active i { transform: scale(1.2); }

.clear-tech-filters {
    display: block;
    margin: 0 auto;
    background: transparent;
    border: 2px solid var(--accent-violet);
    color: var(--accent-violet);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.clear-tech-filters.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.clear-tech-filters:hover {
    background: var(--accent-violet);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--glow-violet);
}

.clear-tech-filters.visible:hover { transform: translateY(-2px) scale(1); }
.clear-tech-filters i { margin-right: 5px; }

/* Formations Section Styles */
.formations {
    position: relative;
    padding: 45px 0 15px 0;
    background: var(--bg-surface);
}

.formation-card {
    background: var(--bg-elevated);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .4);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid var(--border);
}

.formation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 0 30px var(--glow-violet);
    border-color: var(--accent-violet);
}

.formation-card.featured {
    border-color: var(--accent-violet);
    box-shadow: 0 0 30px var(--glow-violet);
    transform: scale(1.05);
}

.formation-card.featured:hover { transform: scale(1.05) translateY(-10px); }

.formation-header {
    position: relative;
    padding: 30px 30px 20px 30px;
    background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-blue) 100%);
    color: #ffffff;
    text-align: center;
}

.formation-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.formation-icon i { font-size: 35px; color: #ffffff; }

.formation-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(0, 210, 255, 0.15);
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.formation-content { padding: 30px; }

.formation-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-align: center;
}

.formation-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.formation-details { margin-bottom: 25px; }

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.detail-item i { width: 20px; margin-right: 10px; color: var(--accent-violet); text-align: center; }

.formation-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-surface);
    border-radius: 15px;
    border: 1px solid var(--border);
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-cyan);
    display: block;
    text-shadow: 0 0 10px var(--glow-cyan);
}

.price-original {
    font-size: 16px;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-left: 10px;
}

.formation-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-blue) 100%);
    border: none;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--glow-violet);
}

.formation-btn:hover {
    background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent-cyan) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--glow-violet);
    color: #ffffff;
}

/* Formation Modal Styles */
.modal-content {
    border: 1px solid var(--accent-violet);
    border-radius: 20px;
    background: var(--bg-surface);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6), 0 0 40px var(--glow-violet);
}

.modal-header {
    background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-blue) 100%);
    color: #ffffff;
    border-radius: 20px 20px 0 0;
    border: none;
    padding: 25px 30px;
}

.modal-title { font-size: 20px; font-weight: 600; margin: 0; color: #ffffff; }
.modal-title i { margin-right: 10px; }
.close { color: #ffffff; opacity: 0.8; font-size: 28px; }
.close:hover { opacity: 1; color: var(--accent-cyan); }
.modal-body { padding: 30px; background: var(--bg-surface); }

.formation-info {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-elevated);
    border-radius: 15px;
    border: 1px solid var(--border);
}

.formation-info h6 { color: var(--accent-cyan); font-size: 18px; font-weight: 600; margin-bottom: 5px; }

.formation-form .form-group { margin-bottom: 20px; }

.formation-form label { font-weight: 600; color: var(--text-primary); margin-bottom: 8px; font-size: 14px; }

.formation-form .form-control {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.formation-form .form-control:focus {
    border-color: var(--accent-violet);
    box-shadow: 0 0 0 3px var(--glow-violet);
    background: var(--bg-elevated);
}

.formation-form .form-control.is-invalid { border-color: #ff4466; }
.formation-form .invalid-feedback { display: block; font-size: 12px; margin-top: 5px; color: #ff4466; }

.form-check { margin-bottom: 25px; }
.form-check-input:checked { background-color: var(--accent-violet); border-color: var(--accent-violet); }
.terms-link { color: var(--accent-cyan); text-decoration: none; }
.terms-link:hover { text-decoration: underline; }

.form-actions { display: flex; gap: 15px; justify-content: flex-end; }
.form-actions .btn { padding: 10px 25px; border-radius: 25px; font-weight: 600; }

.btn-secondary { background: #3a3a55; border-color: #3a3a55; color: #fff; }
.btn-secondary:hover { background: #4a4a65; border-color: #4a4a65; }
.btn-primary { background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-blue) 100%); border: none; }
.btn-primary:hover { background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent-cyan) 100%); transform: translateY(-2px); box-shadow: 0 4px 15px var(--glow-violet); }

/* Success Modal */
.success-modal { border-radius: 20px; }
.success-modal .modal-body { padding: 40px 30px; background: var(--bg-surface); }
.success-icon { margin-bottom: 20px; }
.success-icon i { font-size: 60px; color: var(--accent-cyan); text-shadow: 0 0 20px var(--glow-cyan); }
.success-modal h4 { color: var(--text-primary); font-weight: 600; margin-bottom: 15px; }
.success-modal p { color: var(--text-secondary); margin-bottom: 25px; line-height: 1.6; }

@media (max-width: 768px) {
    .formation-card.featured { transform: none; }
    .formation-card.featured:hover { transform: translateY(-10px); }
    .formation-header { padding: 25px 20px 15px 20px; }
    .formation-content { padding: 25px 20px; }
    .formation-content h3 { font-size: 20px; }
    .modal-body { padding: 20px; }
    .form-actions { flex-direction: column; }
    .form-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
    .formation-icon { width: 60px; height: 60px; }
    .formation-icon i { font-size: 25px; }
    .formation-content h3 { font-size: 18px; }
    .price { font-size: 24px; }
    .modal-header { padding: 20px; }
    .modal-title { font-size: 18px; }
}

/* Tech Badge Styles */
.tech-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-blue) 100%);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin: 2px 4px;
    box-shadow: 0 2px 8px var(--glow-violet);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    transition: left 0.5s;
}

.tech-badge:hover::before { left: 100%; }
.tech-badge:hover { transform: translateY(-2px); box-shadow: 0 4px 12px var(--glow-violet); }
.tech-badge i { margin-right: 5px; font-size: 11px; }

/* Active Filter Indicator */
.active-filters {
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.active-filters h5 { color: var(--text-primary); font-size: 14px; font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; }
.active-filters h5 i { margin-right: 8px; color: var(--accent-violet); }

.clear-filters {
    background: transparent;
    border: 1px solid var(--accent-violet);
    color: var(--accent-violet);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.clear-filters:hover { background: var(--accent-violet); color: #ffffff; transform: translateY(-1px); }

@media (max-width: 768px) {
    .tech-filter-section { margin: 20px 0; padding: 20px 15px; }
    .tech-filter-section h5 { font-size: 16px; margin-bottom: 15px; }
    .tech-badges-container { gap: 8px; margin-bottom: 15px; }
    .tech-badge-filter { padding: 6px 12px; font-size: 12px; }
    .tech-badge-filter i { font-size: 12px; margin-right: 4px; }
    .clear-tech-filters { padding: 6px 16px; font-size: 13px; }
}

@media (max-width: 480px) {
    .tech-filter-section { margin: 15px 0; padding: 15px 10px; }
    .tech-filter-section h5 { font-size: 14px; margin-bottom: 12px; }
    .tech-badges-container { gap: 6px; margin-bottom: 12px; }
    .tech-badge-filter { padding: 5px 10px; font-size: 11px; }
    .tech-badge-filter i { font-size: 11px; margin-right: 3px; }
    .clear-tech-filters { padding: 5px 12px; font-size: 12px; }
}

.portfolio .portfolio-item {
    position: relative;
    margin-bottom: 30px;
    transition: all 0.6s ease;
    opacity: 1;
    transform: translateY(0);
}

/* Portfolio Container Layout */
.portfolio-container { display: flex; flex-wrap: wrap; gap: 0; }
.portfolio-container .portfolio-item { flex: 0 0 33.333333%; max-width: 33.333333%; padding: 0 15px; }

@media (max-width: 991.98px) { .portfolio-container .portfolio-item { flex: 0 0 50%; max-width: 50%; } }
@media (max-width: 767.98px) { .portfolio-container .portfolio-item { flex: 0 0 100%; max-width: 100%; } }

/* Flip Card Styles */
.project-card {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,.4);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px var(--glow-violet), 0 0 0 1px var(--accent-violet);
    border-color: var(--accent-violet);
}

.project-card .project-image { width: 100%; height: 200px; overflow: hidden; }
.project-card .project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-card:hover .project-image img { transform: scale(1.05); }

.project-card .project-title { padding: 16px 18px; }
.project-card .project-title h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.project-card .project-title p { font-size: 13px; color: var(--text-secondary); margin: 0; }

.flip-card { background-color: transparent; width: 100%; height: 350px; perspective: 1000px; }

.flip-card-inner {
    position: relative;
    width: 100%; height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%; height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .4);
    overflow: hidden;
}

.flip-card-front {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.flip-card-back {
    background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-blue) 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.project-image { width: 100%; height: 200px; margin-bottom: 15px; border-radius: 8px; overflow: hidden; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.flip-card:hover .project-image img { transform: scale(1.05); }

.project-title h3 { font-size: 20px; font-weight: 600; color: var(--text-primary); margin: 0 0 8px 0; }
.project-title p { font-size: 14px; color: var(--text-secondary); margin: 0; font-style: italic; }

.technologies h4 { font-size: 18px; font-weight: 600; margin: 0 0 20px 0; color: #ffffff; }

.tech-list { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 20px; }

.tech-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.tech-item:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-2px); }
.tech-item i { margin-right: 5px; font-size: 14px; }

.technologies .btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.technologies .btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--glow-cyan);
}

/* Stage Card Specific Styles */
.stage-card { margin-bottom: 30px; }
.stage-image { width: 100%; height: 180px; margin-bottom: 15px; border-radius: 8px; overflow: hidden; }
.stage-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.flip-card:hover .stage-image img { transform: scale(1.05); }
.stage-title h3 { font-size: 18px; font-weight: 600; color: var(--text-primary); margin: 0 0 8px 0; }
.stage-title p { font-size: 13px; color: var(--text-secondary); margin: 0 0 15px 0; font-style: italic; }
.stage-meta { margin-top: 10px; }
.stage-meta p { font-size: 12px; color: var(--text-secondary); margin: 5px 0; display: flex; align-items: center; }
.stage-meta i, .project-meta i { margin-right: 8px; width: 15px; color: var(--accent-violet); }
.project-meta { margin-top: 10px; }
.project-meta p { font-size: 12px; color: var(--text-secondary); margin: 5px 0; display: flex; align-items: center; }

@media (max-width: 768px) {
    .flip-card { height: 300px; }
    .project-image, .stage-image { height: 150px; }
    .project-title h3, .stage-title h3 { font-size: 18px; }
    .project-title p, .stage-title p { font-size: 13px; }
    .tech-item { font-size: 11px; padding: 5px 10px; }
    .technologies h4 { font-size: 16px; }
    .stage-meta p { font-size: 11px; }
}


/*******************************/
/********* Banner CSS **********/
/*******************************/
.banner {
    position: relative;
    width: 100%;
    margin: 45px 0;
    padding: 90px 0;
    background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-blue) 100%);
    box-shadow: 0 0 60px var(--glow-violet);
}

.banner .container { max-width: 750px; text-align: center; }
.banner .section-header { margin-bottom: 20px; }
.banner .section-header p { color: rgba(255,255,255,.8); background: transparent; }
.banner .section-header p::after { display: none; }
.banner .section-header h2 { color: #ffffff; text-shadow: 0 0 20px var(--glow-violet); }
.banner .section-header h2 span { color: var(--accent-cyan); font-size: 50px; text-shadow: 0 0 20px var(--glow-cyan); }
.banner .banner-text p { font-size: 18px; color: #ffffff; }
.banner .banner-text .btn { margin-top: 15px; color: var(--accent-violet); background: #ffffff; box-shadow: inset 0 0 0 50px #ffffff; }
.banner .banner-text .btn:hover { color: #ffffff; background: transparent; box-shadow: inset 0 0 0 0 #ffffff; border-color: #ffffff; }


/*******************************/
/********* Pricing CSS *********/
/*******************************/
.price {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background: var(--bg-primary);
}

.price .row { padding: 0 15px; }
.price .col-md-4 { padding: 0; }

.price .price-item {
    position: relative;
    margin-bottom: 30px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
}

.price .featured-item { box-shadow: 0 0 30px var(--glow-violet); border-color: var(--accent-violet); z-index: 1; }
.price .price-header, .price .price-body, .price .price-footer { position: relative; text-align: center; }
.price .price-header { padding: 45px 0 30px 0; color: var(--text-secondary); }
.price .price-item.featured-item .price-header { color: var(--accent-cyan); }
.price .price-title h2 { font-size: 25px; font-weight: 400; text-transform: uppercase; color: var(--text-primary); }
.price .price-prices h2 { font-size: 45px; font-weight: 700; margin-left: 10px; color: var(--text-primary); }
.price .price-prices h2 small { position: absolute; font-size: 18px; font-weight: 400; margin-top: 9px; margin-left: -12px; }
.price .price-prices h2 span { margin-left: 1px; font-size: 18px; font-weight: 400; }
.price .price-item.featured-item h2 { color: var(--accent-cyan); text-shadow: 0 0 10px var(--glow-cyan); }
.price .price-body { padding: 0 0 20px 0; }
.price .price-description ul { margin: 0; padding: 0; list-style: none; }
.price .price-description ul li { padding: 0 0 20px 0; color: var(--text-secondary); }
.price .price-item .price-action { padding-bottom: 45px; }
.price .price-item .price-action .btn { color: #ffffff; background: var(--bg-elevated); box-shadow: inset 0 0 0 50px var(--bg-elevated); border-color: var(--border); }
.price .price-item .price-action .btn:hover { color: var(--accent-cyan); background: transparent; box-shadow: inset 0 0 0 0 var(--bg-elevated); border-color: var(--accent-cyan); }
.price .price-item.featured-item .price-action .btn { color: #ffffff; background: var(--accent-violet); box-shadow: inset 0 0 0 50px var(--accent-violet), 0 0 16px var(--glow-violet); }
.price .price-item.featured-item .price-action .btn:hover { color: var(--accent-cyan); background: transparent; box-shadow: inset 0 0 0 0 var(--accent-violet); border-color: var(--accent-cyan); }


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team { position: relative; width: 100%; padding: 45px 0 15px 0; background: var(--bg-primary); }

.team .team-item {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: inset 0 0 0 0 transparent;
    transition: ease-out 0.5s;
}

.team .team-img { position: relative; width: 50%; overflow: hidden; }
.team .team-img img { position: relative; width: 100%; transition: .5s; }
.team .team-text { position: relative; width: 50%; padding: 0 30px; }
.team .team-text h2 { color: var(--accent-cyan); font-size: 18px; font-weight: 600; margin-bottom: 5px; transition: 1s; text-shadow: 0 0 10px var(--glow-cyan); }
.team .team-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 15px; transition: 1s; color: var(--text-primary); }
.team .team-text p { margin-bottom: 20px; transition: 1s; color: var(--text-secondary); }

.team .team-social { position: relative; display: flex; align-items: center; justify-content: flex-start; }
.team .team-social a.btn { width: 35px; height: 35px; padding: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: normal; margin-right: 5px; }
.team .team-item:hover { box-shadow: inset 800px 0 0 0 rgba(123,47,190,.2), 0 0 30px var(--glow-violet); border-color: var(--accent-violet); }
.team .team-item:hover .team-img img { transform: scale(1.2); }
.team .team-item:hover .team-text h2, .team .team-item:hover .team-text h4, .team .team-item:hover .team-text p { color: #ffffff; }
.team .team-item:hover .team-social a.btn { background: rgba(255,255,255,.1); border-color: var(--accent-cyan); }

@media(max-width: 575.98px) {
    .team .team-text { padding: 0 15px; }
    .team .team-text h2 { font-size: 16px; margin-bottom: 0; }
    .team .team-text h4 { margin-bottom: 5px; }
    .team .team-text p { font-size: 14px; line-height: 18px; margin-bottom: 10px; }
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 45px 0;
    padding: 90px 0;
    background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-blue) 100%);
    box-shadow: 0 0 60px var(--glow-violet);
}

.testimonial .container { max-width: 900px; }
.testimonial .testimonial-icon { margin-bottom: 45px; text-align: center; }
.testimonial .testimonial-icon i { font-size: 60px; color: rgba(255,255,255,.5); }
.testimonial .testimonial-item { position: relative; margin: 0 15px; text-align: center; }
.testimonial .testimonial-img { position: relative; margin-bottom: 15px; z-index: 1; }
.testimonial .testimonial-item img { margin: 0 auto; width: 120px; padding: 10px; border: 5px dotted rgba(255,255,255,.6); border-radius: 100px; }

.testimonial .testimonial-text {
    position: relative;
    margin-top: -70px;
    padding: 65px 35px 30px 35px;
    text-align: center;
    background: var(--bg-surface);
    border-radius: 500px;
    border: 1px solid var(--border);
}

.testimonial .testimonial-item p { font-size: 18px; font-style: italic; color: var(--text-secondary); }
.testimonial .testimonial-text h3 { color: var(--accent-cyan); font-size: 18px; font-weight: 600; margin-bottom: 10px; text-shadow: 0 0 10px var(--glow-cyan); }
.testimonial .testimonial-text h4 { color: var(--text-secondary); font-size: 14px; margin-bottom: 0; }
.testimonial .owl-dots { margin-top: 15px; text-align: center; }
.testimonial .owl-dot { display: inline-block; margin: 0 5px; width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.3); }
.testimonial .owl-dot.active { background: var(--accent-cyan); box-shadow: 0 0 10px var(--glow-cyan); }


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: var(--bg-surface);
}

.contact .container-fluid {
    background: linear-gradient(135deg, rgba(106,13,173,.3) 0%, rgba(31,81,255,.2) 100%);
}

.contact .contact-form {
    position: relative;
    padding: 90px 0 90px 45px;
    background: transparent;
}

.contact .contact-form input {
    color: #ffffff;
    padding: 15px 0;
    background: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(123,47,190,.5);
}

.contact .contact-form textarea {
    color: #ffffff;
    height: 90px;
    padding: 15px 0;
    background: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(123,47,190,.5);
}

.contact .contact-form .form-control::placeholder { color: var(--text-secondary); opacity: 1; }
.contact .contact-form .form-control:-ms-input-placeholder,
.contact .contact-form .form-control::-ms-input-placeholder { color: var(--text-secondary); }

.contact .contact-form .btn { margin-top: 35px; color: var(--accent-violet); background: #ffffff; box-shadow: inset 0 0 0 50px #ffffff; }
.contact .contact-form .btn:hover { color: #ffffff; background: transparent; box-shadow: inset 0 0 0 0 #ffffff; border-color: var(--accent-cyan); }
.contact .help-block ul { margin: 0; padding: 0; list-style-type: none; font-size: 14px; font-style: italic; color: #ff4466; }

@media (max-width: 767.98px) {
    .contact .container-fluid { background: none; }
    .contact .contact-form { padding: 90px 0; }
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog { position: relative; width: 100%; padding: 45px 0 15px 0; background: var(--bg-primary); }
.blog .blog-item { position: relative; margin-bottom: 30px; }
.blog .blog-img { position: relative; width: 100%; overflow: hidden; }
.blog .blog-img img { width: 100%; transition: .5s; }
.blog .blog-item:hover img { transform: scale(1.1); }

.blog .blog-text {
    position: relative;
    padding: 30px;
    background: var(--bg-surface);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.blog .blog-text h2 { font-size: 25px; font-weight: 600; color: var(--text-primary); }
.blog .blog-text p { margin-bottom: 10px; color: var(--text-secondary); }
.blog .blog-item a.btn { margin-top: 10px; padding: 8px 15px; }
.blog .blog-item a.btn i { margin-left: 5px; }
.blog .blog-meta { position: relative; display: flex; margin-bottom: 15px; }
.blog .blog-meta p { margin: 0 10px 0 0; font-size: 13px; color: var(--text-secondary); }
.blog .blog-meta i { color: var(--accent-violet); margin-right: 5px; }
.blog .blog-meta p:last-child { margin: 0; }


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    background: var(--bg-surface);
    border-top: 1px solid var(--accent-violet);
    box-shadow: 0 -4px 30px var(--glow-violet);
}

.footer .container-fluid { padding: 60px 0 0 0; }
.footer .footer-info { position: relative; width: 100%; text-align: center; }
.footer .footer-info h2 { margin-bottom: 20px; font-size: 30px; font-weight: 700; color: #ffffff; text-shadow: 0 0 20px var(--glow-violet); }
.footer .footer-info h3 { margin-bottom: 25px; font-size: 22px; font-weight: 600; color: var(--accent-cyan); text-shadow: 0 0 10px var(--glow-cyan); }

.footer .footer-menu { width: 100%; display: flex; justify-content: center; }
.footer .footer-menu p { color: var(--text-secondary); font-size: 22px; font-weight: 600; line-height: 20px; padding: 0 15px; border-right: 1px solid var(--border); }
.footer .footer-menu p:last-child { border: none; }

.footer .footer-social { position: relative; margin-top: 15px; }
.footer .footer-social a { display: inline-block; }
.footer .footer-social a i { margin-right: 15px; font-size: 20px; color: var(--text-secondary); transition: .3s; }
.footer .footer-social a:last-child i { margin: 0; }
.footer .footer-social a:hover i { color: var(--accent-cyan); text-shadow: 0 0 10px var(--glow-cyan); }

.footer .copyright { position: relative; text-align: center; margin-top: 30px; padding-top: 25px; padding-bottom: 25px; }

.footer .copyright::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    top: 0; left: 25%;
    background: linear-gradient(90deg, transparent, var(--accent-violet), transparent);
}

.footer .copyright p { margin: 0; color: var(--text-secondary); }
.footer .copyright .col-md-6:last-child p { text-align: right; }
.footer .copyright p a { color: var(--accent-cyan); font-weight: 600; text-shadow: 0 0 8px var(--glow-cyan); }
.footer .copyright p a:hover { color: #ffffff; }

@media (max-width: 575.98px) {
    .footer .footer-info h2 { margin-bottom: 20px; font-size: 20px; font-weight: 600; }
    .footer .footer-info h3 { margin-bottom: 20px; font-size: 16px; }
    .footer .footer-menu p { font-size: 16px; line-height: 16px; padding: 0 5px; }
}


/*******************************/
/*** Cyberpunk Global Extras ***/
/*******************************/

/* Service cards dark */
.svc-section { border-bottom: none; }
.svc-icon-wrap { box-shadow: 0 0 20px var(--glow-violet) !important; }
.svc-header h3 { color: var(--text-primary) !important; }
.svc-tag { background: rgba(123,47,190,.2) !important; color: var(--accent-cyan) !important; border: 1px solid var(--accent-violet); }
.svc-desc { color: var(--text-secondary) !important; }
.svc-feat { color: var(--text-secondary) !important; }
.svc-feat i { color: var(--accent-cyan) !important; }
.svc-cta { box-shadow: 0 0 16px var(--glow-violet); }
.svc-cta:hover { box-shadow: 0 8px 20px var(--glow-violet); }
.svc-divider { border-top: 1px solid var(--border) !important; }

/* Skills section dark */
.skill-pill {
    background: var(--bg-elevated) !important;
    border-color: var(--border) !important;
    color: var(--text-secondary) !important;
}
.skill-pill:hover {
    background: var(--accent-violet) !important;
    color: #fff !important;
    border-color: var(--accent-violet) !important;
    box-shadow: 0 4px 12px var(--glow-violet) !important;
}
.skill-group-title { color: var(--text-primary) !important; }
.skill-group-title i { color: var(--accent-violet) !important; }
.skills-divider { border-top: 1px solid var(--border) !important; }

/* member-img */
.member-img { box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 20px var(--glow-violet) !important; border: 1px solid var(--accent-violet); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-violet); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-bright); }

/* Selection */
::selection { background: var(--accent-violet); color: #fff; }
