/* ==================== BASE STYLES ==================== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

/* Global Variables */
:root {
    --bg-color: #0f0715;
    --snd-bf-color: #140c1c;
    --text-color: #dddddd;
    --main-color: #8750f7;
    --tj-black-2: #050709;
    --tj-theme-primary: #7343d2;
    --tj-theme-secondary: #2a1454;
    --tj-theme-accent-1: #0a0a0a;
    --tj-white: #ffffff;
    --tj-fz-sub-title: 18px;
    --tj-fw-bold: 700;
    --tj-ff-russo: 'Russo One', sans-serif;
    
    /* Font Sizes */
    --tj-fz-btn: 15px;
    
    /* Font Weights */
    --tj-fw-medium: 500;
    --tj-fw-sbold: 600;
}

.russo-one-regular {
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

:root {
    --tj-ff-russo: "Russo One", sans-serif;
    --tj-theme-secondary: #2a1454;
}


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Nunito", sans-serif;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

/* Section Base Styling */
section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

/* ==================== HEADER SECTION ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.3s ease;
}

.header.sticky {
    background: var(--bg-color);
    padding: 1.5rem 9%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: bounceInDown 1s;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.header.sticky-out {
    animation: bounceInUp 1s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.header.sticky .navbar {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 1rem 3rem;
}

.header.sticky .navbar a {
    color: #a0a0a0;
}

.header.sticky .navbar a:hover,
.header.sticky .navbar a.active {
    color: var(--text-color);
}

.header.sticky .navbar a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background: var(--main-color);
    bottom: -2px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.header.sticky .navbar a:hover::before,
.header.sticky .navbar a.active::before {
    transform-origin: left;
    transform: scaleX(1);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 700;
    cursor: pointer;
}

.logo-img-header {
    width: 4.5rem;
    height: auto;
    margin-right: 1rem;
}

.navbar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4rem;
    background: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 2.2rem 6rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.navbar a {
    font-size: 2rem;
    color: #a0a0a0;
    font-weight: 700;
    transition: all 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 2px;
}

.navbar a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background: var(--main-color);
    bottom: -2px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.navbar a:hover::before,
.navbar a.active::before {
    transform-origin: left;
    transform: scaleX(1);
}

.navbar a:hover,
.navbar a.active {
    color: #ffffff;
}

.header:not(.sticky) .navbar a {
    color: #a0a0a0;
}

.header:not(.sticky) .navbar a:hover,
.header:not(.sticky) .navbar a.active {
    color: #ffffff;
}

.github-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.github-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.github-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.github-btn:hover::before {
    left: 100%;
}

.github-btn:hover i {
    animation: githubBounce 0.8s cubic-bezier(0.28, 0.84, 0.42, 1);
}

.github-btn:active {
    transform: translateY(0);
}

@keyframes githubBounce {
    0% {
        transform: scale(1) translateY(0);
    }
    20% {
        transform: scale(1.1) translateY(-6px) rotate(-10deg);
    }
    40% {
        transform: scale(1.1) translateY(-6px) rotate(10deg);
    }
    60% {
        transform: scale(1.1) translateY(-6px) rotate(-10deg);
    }
    80% {
        transform: scale(1.1) translateY(-6px) rotate(10deg);
    }
    100% {
        transform: scale(1) translateY(0) rotate(0);
    }
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
    cursor: pointer;
}

.theme-icons {
    display: flex;
    align-items: center;
    font-size: 2.2rem;
    color: var(--text-color);
    cursor: pointer;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.theme-icons::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-icons i {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.theme-icons:hover {
    box-shadow: 0 0 15px var(--main-color);
}

.theme-icons:hover::before {
    opacity: 0.15;
    transform: scale(1);
}

.theme-icons:hover i {
    color: var(--main-color);
    transform: rotate(360deg);
}

.theme-icons:active {
    transform: scale(0.95);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        transform: translateY(0px);
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes bounceInUp {
    0%, 10%, 35%, 50%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    10% {
        transform: translate3d(0, 0px, 0);
    }
    35% {
        transform: translate3d(0, -10px, 0);
    }
    50% {
        transform: translate3d(0, 2px, 0);
    }
    80% {
        transform: translate3d(0, -90px, 0);
    }
    to {
        transform: translate3d(0, -3000px, 0);
    }
}

/* ==================== HOME SECTION ==================== */
.home {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 0 9%;
    width: 100%;
    min-height: 100vh;
    background: var(--bg-color);
    overflow: hidden;
    z-index: 1;
}

.home::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 322px;
    height: 308px;
    border-radius: 50%;
    background: var(--main-color);
    background: -o-linear-gradient(
        190deg,
        var(--main-color) 0%,
        rgba(115, 67, 210, 0) 100%
    );
    background: linear-gradient(
        260deg,
        var(--main-color) 0%,
        rgba(115, 67, 210, 0) 100%
    );
    -webkit-filter: blur(150px);
    filter: blur(150px);
    margin-right: -5%;
    margin-top: -5%;
    z-index: -1;
}

.home-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    gap: 4rem;
}

.home-left {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.home-content {
    width: 100%;
}

/* SVG Intro Text Styles */
.home .intro_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.home .intro_text svg {
    position: absolute;
	width: 100%;
	height: 100%;
	left: 46%;
	top: 55%;
	transform: translate(-50%, -50%) scale(1);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: -1;
	animation: 3s pulsate infinite alternate ease-in-out;
}

.home .intro_text svg text {
    text-transform: uppercase;
    stroke-width: 1.2;
    stroke: var(--main-color);
    fill: transparent;
    font-size: 240px;
    font-family: 'Russo One', sans-serif !important;
    opacity: 0;
}

.home .intro_text svg text.animate-stroke {
    animation: stroke 4s ease-in-out;
    opacity: 0.1;
}

@keyframes stroke {
    0% {
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 50%;
        stroke-width: 1;
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        stroke-dashoffset: 100%;
        stroke-dasharray: 100% 0;
        stroke-width: 1;
        opacity: 0.1;
    }
}

@keyframes pulsate {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.02);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.95);
    }
}



.home-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Updated Hero Image Styles for Home Section */
.home-right {
    position: relative;
}

.home-right::before {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--main-color);
    background: linear-gradient(260deg, var(--main-color) 0%, rgba(115, 67, 210, 0) 100%);
    filter: blur(150px);
    z-index: -1;
}

.home-right img {
    border-radius: 38px;
    transform: rotate(4.29deg);
    position: relative;
    border: 2px solid var(--tj-theme-secondary, #2a1454);
    transition: 0.3s;
    width: 50%;
    max-width: 100%;
    height: 30% !important;
    object-fit: contain;
}

.home-right img:hover {
    border: 2px solid var(--main-color);
    transform: rotate(0);
}

.hero-content-box {
    width: 100%;
}

.hero-sub-title {
    font-size: 24px;
    font-weight: var(--tj-fw-medium);
    display: block;
    margin-bottom: 15px;
    color: var(--text-color);
    opacity: 0.9;
}

.hero-title {
    font-size: 140px;
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: -4px;
    position: relative;
}

.hero-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--tj-theme-primary);
}

.hero-title .solid {
    color: var(--text-color);
}

.hero-content-box .lead {
    max-width: 550px;
    width: 100%;
    margin-bottom: 0;
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.85;
}

.typed-text {
    color: var(--tj-theme-primary);
    font-weight: var(--tj-fw-bold);
    font-size: 24px;
}

.hero-content-box .button-box {
    margin-top: 50px;
    gap: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tj-btn-secondary {
    text-decoration: none;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    font-size: var(--tj-fz-btn);
    line-height: 1;
    font-weight: var(--tj-fw-medium);
    color: var(--tj-theme-primary);
    border-radius: 50px;
    padding: 17px 35px;
    border: 1px solid var(--tj-theme-primary);
    transition: 0.3s;
    letter-spacing: 1px;
}

/* Secondary Button Hover Effects */
.tj-btn-secondary:hover {
    background: var(--tj-theme-primary);
    color: var(--tj-white);
}

.tj-btn-secondary i {
    transition: 0.3s;
}

.social-icons {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.social-icons li a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--tj-theme-primary);
    border-radius: 50%;
    font-size: 18px;
    color: var(--tj-theme-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons li a:hover {
    border: 1px solid var(--tj-theme-primary);
    color: var(--tj-white);
}

/* Responsive Styles */
@media only screen and (max-width: 1199px) {
    .hero-title {
        font-size: 120px;
    }
    .hero-title .outline {
        -webkit-text-stroke: 1.8px var(--tj-theme-primary);
    }
    .hero-sub-title {
        font-size: 22px;
    }
    .hero-content-box .lead,
    .typed-text {
        font-size: 22px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-title {
        font-size: 100px;
        letter-spacing: -3px;
    }
    .hero-title .outline {
        -webkit-text-stroke: 1.5px var(--tj-theme-primary);
    }
    .hero-sub-title {
        font-size: 20px;
    }
    .hero-content-box .lead,
    .typed-text {
        font-size: 20px;
    }
    .hero-content-box .button-box {
        margin-top: 30px;
        gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-sub-title {
        margin-bottom: 10px;
        font-size: 20px;
        text-align: center;
    }
    .hero-title {
        font-size: 80px;
        margin-bottom: 1rem;
        text-align: center;
        letter-spacing: -2px;
    }
    .hero-title .outline {
        -webkit-text-stroke: 1.2px var(--tj-theme-primary);
    }
    .hero-content-box .lead {
        text-align: center;
        font-size: 18px;
    }
    .typed-text {
        font-size: 18px;
    }
    .hero-content-box .button-box {
        margin-top: 20px;
        gap: 15px;
        justify-content: center;
        flex-direction: column;
    }
    .social-icons {
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    .hero-sub-title {
        font-size: 18px;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-content-box .lead,
    .typed-text {
        font-size: 16px;
    }
    .tj-btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/* ==================== BUTTON STYLES ==================== */

/* PRIMARY BUTTON - Gradient Background with Animation */
.tj-btn-primary {
    text-decoration: none;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    font-size: var(--tj-fz-btn);
    line-height: 1;
    font-weight: var(--tj-fw-bold);
    color: var(--tj-white);
    text-transform: capitalize;
    background-size: 200%;
    background-image: linear-gradient(
        to right,
        var(--tj-theme-primary) 0%,
        var(--tj-theme-secondary) 51%,
        var(--tj-theme-primary) 100%
    );
    border: none;
    border-radius: 50px;
    padding: 17px 35px;
    transition: 0.4s;
}

/* Primary Button Icon Animation */
.tj-btn-primary i {
    transform: rotate(-45deg);
    transition: 0.4s;
}

/* Primary Button Hover Effects */
.tj-btn-primary:hover {
    background-position: -100%;
}

.tj-btn-primary:hover i {
    transform: rotate(0);
}

/* SECONDARY BUTTON - Border Style */
.tj-btn-secondary {
    text-decoration: none;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    font-size: var(--tj-fz-btn);
    line-height: 1;
    font-weight: var(--tj-fw-medium);
    color: var(--tj-theme-primary);
    border-radius: 50px;
    padding: 17px 35px;
    border: 1px solid var(--tj-theme-primary);
    transition: 0.3s;
    letter-spacing: 1px;
}

/* Secondary Button Hover Effects */
.tj-btn-secondary:hover {
    background: var(--tj-theme-primary);
    color: var(--tj-white);
}

.tj-btn-secondary i {
    transition: all 0.3s ease;
}

.tj-btn-secondary:hover i {
    animation: messageWiggle 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes messageWiggle {
    0% {
        transform: translateY(0) rotate(0);
    }
    30% {
        transform: translateY(-6px) rotate(-12deg);
    }
    60% {
        transform: translateY(-4px) rotate(10deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

/* PRIMARY BUTTON 2 - Advanced Icon Animation */
.tj-btn-primary-2 {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    background: var(--tj-theme-primary);
    color: var(--tj-white);
    font-size: var(--tj-fz-btn);
    font-weight: var(--tj-fw-sbold);
    border-radius: 50px;
    padding: 17px 30px;
    line-height: 1;
}

/* Advanced Icon Animation Container */
.tj-btn-primary-2 .icon_box {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    padding: 0 4px;
    transform: rotate(-45deg);
}

.tj-btn-primary-2 .icon_box .icon_first,
.tj-btn-primary-2 .icon_box .icon_second {
    transition: all 0.3s ease-in-out 0s;
}

.tj-btn-primary-2 .icon_box .icon_second {
    position: absolute;
    transform: translateX(-150%);
}

/* Primary Button 2 Hover Effects */
.tj-btn-primary-2:hover .icon_box .icon_first {
    transform: translateX(150%);
}

.tj-btn-primary-2:hover .icon_box .icon_second {
    transform: translateX(0%);
}

.tj-btn-primary-2 i {
    display: inline-flex;
    line-height: 1;
}

.tj-btn-primary-2:hover {
    color: var(--tj-white);
    background-color: var(--tj-theme-primary);
}

/* ==================== SOCIAL ICON STYLES ==================== */

.social-icons {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-icons li a {
    color: var(--tj-theme-primary);
    width: 35px;
    height: 35px;
    border: 1px solid var(--tj-theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    z-index: 1;
}

/* Social Icon Transition */
.social-icons li a i {
    transition: 0.3s;
}

/* Social Icon Background Animation */
.social-icons li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tj-theme-primary);
    transform: scale(0);
    transition: 0.3s;
    border-radius: 50%;
    z-index: -1;
}

/* Social Icon Hover Effects */
.social-icons li a:hover {
    border: 1px solid var(--tj-theme-primary);
    color: var(--tj-white);
}

.social-icons li a:hover::before {
    transform: scale(1.1);
}

.lead {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 1rem;
}

.typed-text {
    color: var(--tj-theme-primary);
    font-weight: 600;
}

.typed-cursor {
    color: var(--tj-theme-primary);
}

/* ==================== ABOUT SECTION ==================== */
.about {
    background: var(--tj-black-2);
    padding: 10rem 9% 6rem;
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, var(--tj-black-2), var(--snd-bf-color));
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.about-heading {
    text-align: center;
    margin-bottom: 5rem;
}

.about-heading h2 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.about-heading h2 span {
    color: var(--main-color);
}

.tagline {
    font-size: 1.8rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 60rem;
    margin: 0 auto;
    margin-bottom: 3rem;
    font-style: italic;
    line-height: 1.6;
}

.about-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
    margin-bottom: 6rem;
}

/* Left Side - Circular Image */
.about-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.circle-border {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.circle-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(89, 178, 244, 0.2) 0%, rgba(89, 178, 244, 0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.circle-border:hover .profile-image {
    transform: scale(1.05);
}

.circle-border:hover .circle-glow {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

/* Right Side - Content */
.about-text-content {
    flex: 1;
}

.about-text p {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    background: var(--main-color);
    color: var(--text-color);
    border: 2px solid var(--main-color);
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: transparent;
    color: var(--main-color);
    transform: translateY(-3px);
}

.btn-talk {
    background: var(--main-color);
    color: var(--bg-color);
    border: 2px solid var(--main-color);
}

.btn-talk:hover {
    background: transparent;
    color: var(--main-color);
    transform: translateY(-3px);
}

.btn-work {
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.btn-work:hover {
    background: var(--main-color);
    color: var(--bg-color);
    transform: translateY(-3px);
}

.btn-download, .btn-projects {
    text-decoration: none;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    font-size: var(--tj-fz-btn);
    line-height: 1;
    font-weight: var(--tj-fw-medium);
    border-radius: 50px;
    padding: 17px 35px;
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-download {
    background: var(--tj-theme-primary);
    color: var(--tj-white);
    border: 1px solid var(--tj-theme-primary);
}

.btn-download:hover {
    background: transparent;
    color: var(--tj-theme-primary);
}

.btn-projects {
    background: transparent;
    color: var(--tj-theme-primary);
    border: 1px solid var(--tj-theme-primary);
}

.btn-projects:hover {
    background: var(--tj-theme-primary);
    color: var(--tj-white);
}

.btn-download i, .btn-projects i {
    transition: all 0.3s ease;
}

.btn-download:hover i {
    animation: downloadBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-projects:hover i {
    animation: projectsSpin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes downloadBounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes projectsSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Stats Cards */
.about-stats {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 5rem;
}

.stat-card {
    flex: 1;
    background: var(--bg-color);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    min-height: 150px;
    border: none;
    transition: all 0.3s ease-in-out;
}

.stat-card::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 1px solid var(--main-color);
    border-left: 1px solid var(--main-color);
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    border-radius: 12px;
    z-index: 1;
}

.stat-card::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    border-radius: 12px;
    z-index: 1;
}

.stat-card:hover::before,
.stat-card:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.stat-content {
    display: flex;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 2;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

.stat-text {
    flex: 1;
}

.stat-text h4 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 1.4rem;
    color: #a0a0a0;
    margin-bottom: 0;
}

.stat-number {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    margin-left: 1.5rem;
}

.stat-number span {
    font-size: 3rem;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1;
}

.stat-number i {
    font-size: 1.4rem;
    color: var(--main-color);
    transition: transform 0.3s ease;
    margin-top: auto;
}

.stat-card:hover .stat-number i {
    transform: translateX(5px);
}

/* ==================== SKILLS SECTION ==================== */
.skills {
    background: var(--snd-bf-color);
    padding: 10rem 9% 6rem;
    position: relative;
}

.skills::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, var(--snd-bf-color), var(--tj-black-2));
    z-index: 1;
}

.skills-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.skills-heading {
    text-align: center;
    margin-bottom: 5rem;
}

.skills-heading h2 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.skills-heading h2 span {
    color: var(--main-color);
}

.skills-description {
    font-size: 1.8rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 60rem;
    margin: 0 auto;
    margin-bottom: 3rem;
    font-style: italic;
    line-height: 1.6;
}

/* Skills Grid Container */
.skills-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.skill-category {
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    transition: border-color 0.3s ease;
}

.skill-category:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

.category-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color), #3f0071);
    border-radius: 2px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Skill card styles */
.skill-card {
    text-align: center;
    position: relative;
}

.skill-inner {
    border-radius: 25px;
    padding: 30px 15px;
    background: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.skill-card:hover .skill-inner {
    border-color: var(--main-color);
    transform: translateY(-5px);
}

/* Progress Bar Styles */
.progress-container {
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.progress-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 8px;
}

.progress-value {
    color: #808080;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.7;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.skill-card:hover .progress-value {
    color: var(--text-color);
    opacity: 1;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #808080;
    border-radius: 4px;
    width: 0%;
    position: relative;
    transition: all 0.3s ease;
}

.skill-card:hover .progress-fill {
    background: var(--main-color);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.15) 50%, 
        rgba(255, 255, 255, 0) 100%);
    animation: shimmer 2s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover .progress-fill::after {
    opacity: 1;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.skill-card:hover .icon-box {
    opacity: 1;
    transform: scale(1.1);
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.skill-card:hover .icon-box img {
    filter: grayscale(0%);
}



.skill-name {
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Toggle Container */
.toggle-container {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 50px;
    margin: 3rem auto;
    max-width: fit-content;
}

.toggle-button {
    padding: 1rem 2rem;
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.6rem;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.toggle-button:hover {
    color: rgba(255, 255, 255, 0.8);
}

.toggle-button.active {
    color: #ffffff;
}

.toggle-indicator {
    position: absolute;
    height: calc(100% - 1rem);
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    background: var(--main-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Content Toggle */
.skills-content, .certifications-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.skills-content.active, .certifications-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Certifications Content */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.certificate-card {
    background: var(--bg-color);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(89, 178, 244, 0.2);
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--main-color);
}

.certificate-preview {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 250px;
}

.certificate-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.certificate-preview:hover .certificate-image {
    transform: scale(1.05);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.certificate-preview:hover .certificate-overlay {
    opacity: 1;
}

.certificate-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--main-color);
}

.certificate-overlay span {
    font-size: 1.6rem;
    font-weight: 600;
}

.certificate-info {
    padding: 2rem;
}

.certificate-info h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.certificate-info .issuer {
    font-size: 1.4rem;
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.certificate-info .description {
    font-size: 1.5rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Certificate Modal */
.certificate-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-modal.show {
    opacity: 1;
}

.modal-container {
    background: var(--snd-bf-color);
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(89, 178, 244, 0.2);
}

.certificate-modal.show .modal-container {
    transform: scale(1);
}

.modal-header {
    padding: 1.8rem 2.5rem;
    background: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(89, 178, 244, 0.1);
}

.modal-title {
    font-size: 2.2rem;
    color: var(--main-color);
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.close-modal {
    color: var(--text-color);
    font-size: 2.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--main-color);
    transform: rotate(90deg);
    background: rgba(89, 178, 244, 0.1);
}

.modal-body {
    display: flex;
    height: calc(100% - 70px);
    overflow: hidden;
}

.certificate-display {
    width: 55%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.05);
}

.certificate-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.certificate-border-decoration {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    border: 2px dashed rgba(89, 178, 244, 0.3);
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
}

.certificate-details {
    width: 45%;
    padding: 2.5rem;
    background: var(--bg-color);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.details-content {
    flex: 1;
}

.certificate-details h4 {
    font-size: 2rem;
    color: var(--main-color);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.certificate-details h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color), rgba(89, 178, 244, 0.5));
    border-radius: 3px;
}

.issuer-info, .description-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.issuer-info i, .description-container i {
    color: var(--main-color);
    font-size: 1.8rem;
    margin-right: 1.2rem;
    margin-top: 0.3rem;
}

.certificate-issuer {
    font-size: 1.6rem;
    color: #a0a0a0;
    font-weight: 600;
    flex: 1;
    margin: 0;
}

.certificate-description {
    font-size: 1.5rem;
    color: var(--text-color);
    line-height: 1.7;
    flex: 1;
    margin: 0;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-size: 1.8rem;
}

/* ==================== EDUCATION SECTION ==================== */
        .timeline-section {
            background: var(--tj-black-2);
            padding: 10rem 9% 6rem;
            position: relative;
            max-width: none;
            margin: 0;
        }

        .timeline-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 300px;
            background: linear-gradient(to bottom, var(--tj-black-2), var(--snd-bf-color));
            z-index: 1;
        }

        /* EDUCATION SECTION HEADING/DESCRIPTION CONSISTENCY */
        .education-heading h2 {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
        }

        .education-heading h2 span {
            color: var(--main-color);
            background: none;
            -webkit-text-fill-color: initial;
        }

        .education-description {
            font-size: 1.8rem;
            color: var(--text-color);
            opacity: 0.8;
            max-width: 60rem;
            margin: 0 auto;
            margin-bottom: 3rem;
            font-style: italic;
            line-height: 1.6;
            text-align: center;
        }

        .timeline-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-top: 60px;
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .timeline-column {
            position: relative;
        }

        .column-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .column-title {
            font-size: 3rem !important;  
            font-weight: var(--tj-fw-bold);
            color: var(--text-color);  
            margin-bottom: 15px;
            animation: slideInLeft 1s ease-out;
            position: relative;
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
        }

        .column-title i {
            font-size: 2.8rem;
            color: var(--main-color);
}

        .column-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--main-color), rgba(89, 178, 244, 0.5));
            border-radius: 3px;
}

        .timeline-column:nth-child(2) .column-title {
            animation: slideInRight 1s ease-out;
        }

        /* Individual timeline lines for each column */
        .timeline-column::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 80px;
            width: 4px;
            background: linear-gradient(to bottom, var(--tj-theme-primary), var(--main-color));
            border-radius: 2px;
            height: 0;
            animation: growLine 2s ease-out 0.5s forwards;
            z-index: 1;
        }

        /* Shorter timeline for experience column */
        .timeline-column:first-child::before {
            height: 0;
            animation: growExperienceLine 2s ease-out 0.5s forwards;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
            z-index: 2;
        }

        .timeline-item:nth-child(2) { animation-delay: 0.8s; }
        .timeline-item:nth-child(3) { animation-delay: 1.2s; }
        .timeline-item:nth-child(4) { animation-delay: 1.6s; }
        .timeline-item:nth-child(5) { animation-delay: 2s; }

        /* Dots positioned perfectly centered on timeline lines */
        .timeline-dot {
            position: absolute;
            left: 14px;
            top: 20px;
            width: 16px;
            height: 16px;
            background: var(--tj-white);
            border: 4px solid var(--tj-theme-primary);
            border-radius: 50%;
            z-index: 3;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .timeline-dot:hover {
            transform: scale(1.3);
            border-color: var(--main-color);
            box-shadow: 0 0 20px rgba(116, 67, 210, 0.8);
        }

        /* Content styling for both columns */
        .timeline-content {
            background: var(--snd-bf-color);
            padding: 25px;
            border-radius: 15px;
            margin-left: 60px;
            box-shadow: 0 10px 30px rgba(0,0,0, .3), 
                        0 1px 8px rgba(0,0,0, .2),
                        inset 0 1px 0 rgba(255,255,255, .1);
            border-left: 4px solid var(--tj-theme-primary);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            border: 1px solid rgba(255,255,255, .1);
            backdrop-filter: blur(10px);
        }

        .timeline-content::before {
            content: '';
            background: inherit;
            width: 20px;
            height: 20px;
            display: block;
            position: absolute;
            left: -12px;
            top: 20px;
            transform: rotate(45deg);
            border-radius: 0 0 0 2px;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(116, 67, 210, 0.2),
                        0 5px 15px rgba(0,0,0, .4),
                        inset 0 1px 0 rgba(255,255,255, .2);
            border-left: 4px solid var(--main-color);
        }

        /* No experience section styling */
        .no-experience {
            text-align: center;
            padding: 25px;
            background: var(--snd-bf-color);
            border-radius: 15px;
            margin: 20px 0 20px 60px;
            border-left: 4px solid var(--tj-theme-primary);
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 30px rgba(0,0,0, .3), 
                        0 1px 8px rgba(0,0,0, .2),
                        inset 0 1px 0 rgba(255,255,255, .1);
            border: 1px solid rgba(255,255,255, .1);
            backdrop-filter: blur(10px);
        }

        .no-experience::before {
            content: '';
            background: inherit;
            width: 20px;
            height: 20px;
            display: block;
            position: absolute;
            left: -12px;
            top: 20px;
            transform: rotate(45deg);
            border-radius: 0 0 0 2px;
        }

        .no-experience-icon {
            font-size: 2.5rem;
            color: var(--tj-theme-primary);
            margin-bottom: 12px;
        }

        .no-experience h3 {
            color: var(--tj-white);
            margin-bottom: 8px;
            font-size: 2rem;
        }

        .no-experience p {
            color: var(--text-color);
            opacity: 0.9;
            line-height: 1.5;
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .timeline-date {
            font-size: 1.6em;
            color: var(--tj-theme-primary);
            font-weight: var(--tj-fw-bold);
            margin-bottom: 8px;
        }

        .timeline-title {
            font-size: 1.9rem;
            font-weight: var(--tj-fw-bold);
            color: var(--tj-white);
            margin-bottom: 8px;
        }

        .timeline-company {
            font-size: 1.7rem;
            color: var(--main-color);
            margin-bottom: 10px;
            font-weight: var(--tj-fw-sbold);
        }

        .timeline-description {
            color: var(--text-color);
            opacity: 0.9;
            line-height: 1.6;
            font-size: 1.5rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes growLine {
            from {
                height: 0;
            }
            to {
                height: calc(100% - 80px);
            }
        }

        @keyframes growExperienceLine {
            from {
                height: 0;
            }
            to {
                height: 280px;
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(116, 67, 210, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(116, 67, 210, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(116, 67, 210, 0);
            }
        }

        .timeline-item.animate {
            opacity: 1;
            transform: translateY(0);
        }


/* ==================== PROJECTS SECTION ==================== */
.projects {
    background: var(--snd-bf-color);
    padding: 10rem 9% 6rem;
    position: relative;
}

.projects::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, var(--snd-bf-color), var(--tj-black-2));
    z-index: 1;
}

.projects-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.projects-heading {
    text-align: center;
    margin-bottom: 5rem;
}

.projects-heading h2 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.projects-heading h2 span {
    color: var(--main-color);
}

.projects-description {
    font-size: 1.8rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 60rem;
    margin: 0 auto;
    margin-bottom: 3rem;
    font-style: italic;
    line-height: 1.6;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.project-card {
    aspect-ratio: 1/1;
    background: var(--tj-black-2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card.filtered-out {
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
}

.card-background {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    opacity: 0.8;
    z-index: 1;
}

.hover-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--main-color) 0%, #3f0071 100%);
    height: 100px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: 3;
}

.project-card:hover .hover-overlay {
    transform: translateY(0);
    opacity: 1;
}


.hover-content {
    display: flex;
    flex-direction: column;
}

.hover-title {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.hover-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.hover-arrow {
    color: #fff;
    font-size: 22px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-card:hover .hover-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-card:hover .hover-arrow {
    transform: rotate(-45deg) translate(4px, -4px);
}

.project-card:hover .card-background {
    opacity: 0.6;
}

/* Project Modal Styles */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 40px;
}

.project-modal-content {
    background: var(--tj-black-2);
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: projectModalFadeIn 0.4s ease-out;
}

@keyframes projectModalFadeIn {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.project-modal-header {
    padding: 35px 30px;
    background: linear-gradient(rgba(17, 17, 17, 0.85), rgba(17, 17, 17, 0.85)), 
                url('../images/six.jpg') center/cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    color: var(--text-color);
}

.project-modal-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.project-modal-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.project-modal-section {
    margin-bottom: 30px;
}

.project-modal-section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.project-modal-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

.project-modal-text li {
    margin-bottom: 8px;
}

.meta-label {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 4px;
}

.meta-value {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
}

.close-project-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 1000;
}

.close-project-modal:hover {
    background: var(--main-color);
    transform: rotate(180deg);
    cursor: pointer;
}

.project-modal-body {
    padding: 30px;
    color: #ddd;
    background: var(--tj-black-2);
}

.project-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.meta-item {
    margin-bottom: 15px;
}

.meta-label {
    font-size: 14px;
    color: var(--main-color);
    margin-bottom: 5px;
}

.meta-value {
    font-size: 16px;
    font-weight: 500;
}

.project-modal-section {
    margin-bottom: 30px;
}

.project-modal-section-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--main-color);
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.project-modal-text {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Project Live Preview Button */
.project-live-preview-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: var(--main-color);
    color: var(--text-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--main-color);
}

.project-live-preview-btn:hover {
    background: transparent;
    color: var(--main-color);
}

/* Project GitHub Button Styles */
.project-github-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: var(--main-color);
    color: var(--text-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--main-color);
}

.project-github-btn:hover {
    background: transparent;
    color: var(--main-color);
}

.project-github-btn i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.project-github-btn:hover i {
    animation: gitSpin 0.6s ease;
}

@keyframes gitSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.carousel-container {
    margin: 20px 0;
}

.swiper {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

/* Custom pagination dots */
.swiper-pagination {
    position: static;
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
    background: var(--main-color);
    opacity: 0.3;
    transition: all 0.3s ease;
    position: relative;
}

.swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--main-color);
    opacity: 1;
    transform: scale(1.2);
}

.swiper-pagination-bullet-active::after {
    opacity: 0.3;
}

.swiper-pagination-bullet:hover {
    background: var(--main-color);
    opacity: 0.7;
}

.swiper-pagination-bullet:hover::after {
    opacity: 0.2;
}

.project-modal-footer {
    padding: 20px 30px;
    background: var(--tj-black-2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-modal-tech {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-tech-tag {
    background: rgba(89, 178, 244, 0.2);
    color: var(--main-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.more-projects-wrapper {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
}

.more-projects-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: var(--main-color);
    color: var(--tj-white);
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.more-projects-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.no-projects-message {
    grid-column: 1/-1;
    text-align: center;
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin: 2rem 0;
}

.no-projects-message h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.no-projects-message p {
    font-size: 1.6rem;
    color: var(--text-color-light);
    opacity: 0.8;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    min-height: 100vh;
    padding: 6rem 9% 2rem;
    background: var(--tj-black-2);
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-heading {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-heading h2 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-heading h2 span {
    color: var(--main-color);
}

.contact-heading .tagline {
    font-size: 1.8rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 60rem;
    margin: 0 auto;
    margin-bottom: 3rem;
    font-style: italic;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out both;
}

.section-header h2 {
    color: #f3f4f6;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    color: #9ca3af;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Cards */
.contact-info-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--text-color);
    position: relative;
    text-align: left;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.contact-info-header h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 80px;
    height: 3px;
    background: var(--main-color);
    border-radius: 3px;
    animation: underlineGrow 0.6s ease forwards;
    transform-origin: left;
}

.info-card-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Contact Info Styles */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.contact-icon i {
    font-size: 20px;
}

.contact-icon:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.contact-details p {
    color: var(--text-color-light);
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 3px;
}

.contact-info-sub{
    font-size: 1.8rem !important;
}

.contact-details a {
    color: var(--text-color-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--main-color);
}

.social-section {
    margin-top: 50px;
    position: relative;
}

.social-title {
    font-size: 1.8rem;
    color: var(--text-color-light);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    pointer-events: all;
}

.social-link {
    height: 50px;
    background: transparent;
    border: 2px solid #444;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 0 15px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    width: 50px;
}

.social-link:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.social-link .icon {
    font-size: 18px;
    transition: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.social-link .icon i {
    font-size: 18px;
}

.social-link .text {
    margin-left: 10px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.05s,
                transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.05s;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
}

.social-link.expanded {
    width: 130px;
    padding: 0 20px;
}

.social-link.expanded .text {
    opacity: 1;
    transform: translateX(0);
}

/* Icons using text/symbols */
.email-icon::before,
.phone-icon::before,
.address-icon::before,
.dribbble-icon::before,
.behance-icon::before,
.twitter-icon::before,
.linkedin-icon::before {
    content: none;
}

/* Contact Form Styles */
.contact-form {
    background: rgba(17, 24, 39, 0.4);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInRight 0.8s ease-out both;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form:hover {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 30px rgba(139, 92, 246, 0.1);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
}

.contact-form h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    position: relative;
    text-align: center;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.contact-form h1::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.5rem;
    width: 80px;
    height: 3px;
    background: var(--main-color);
    border-radius: 3px;
    animation: underlineGrow 0.6s ease forwards;
    transform-origin: center;
}

@keyframes underlineGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    background: var(--bg-color);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group label {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    padding: 0 0.5rem;
    font-size: 1.6rem;
    color: #a0a0a0;
    pointer-events: none;
    transition: 0.3s ease all;
    background: var(--bg-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--main-color);
    outline: none;
}

.form-group input:focus ~ label,
.form-group select:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -1.2rem;
    left: 1rem;
    font-size: 1.2rem;
    color: var(--main-color);
    background: var(--bg-color);
    padding: 0 0.8rem;
}

.form-group.valid input,
.form-group.valid textarea,
.form-group.valid select {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.1);
}

.form-group.invalid input,
.form-group.invalid textarea,
.form-group.invalid select {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.1);
}

.validation-message {
    position: absolute;
    bottom: -20px;
    left: 20px;
    font-size: 0.8rem;
    color: #ef4444;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.validation-message.show {
    opacity: 1;
    transform: translateY(0);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 50px;
}

textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.send-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.6rem; /* Increased from 1rem */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 160px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.send-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.send-btn:hover:not(:disabled)::before {
    left: 100%;
}

.send-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.send-btn:active:not(:disabled) {
    transform: translateY(0);
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
}

.success-message.show {
    transform: translateX(0);
    opacity: 1;
}

.char-counter {
    position: absolute;
    bottom: 8px;
    right: 16px;
    font-size: 0.75rem;
    color: #6b7280;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group:focus-within .char-counter {
    opacity: 1;
}

.send-btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group select {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    background: var(--bg-color);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
}

.form-group select:required:invalid {
    color: #a0a0a0;
}
/* ==================== FOOTER SECTION ==================== */
        .footer {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem 0 1rem;
            position: relative;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 9%;
        }

        .footer-content {
            padding-bottom: 2rem;
            text-align: center;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        
        .brand-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            height: 60px;
            width: 60px;
        }
        
        .logo-img-footer {
            width: 100px;
            height: 100px;
            object-fit: contain;
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }
        
        .brand-logo:hover .logo-img-footer {
            transform: scale(1.05);
        }

        .footer-status {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .status-text {
            color: #00ff88;
            font-size: 1.5rem;
            font-weight: 500;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.4; }
            100% { opacity: 1; }
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 1.8rem;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: #a0a0a0;
            text-decoration: none;
            font-size: 1.4rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.3rem 0;
        }

        .footer-nav a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--main-color);
            transition: width 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--main-color);
        }

        .footer-nav a:hover::before {
            width: 100%;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .footer-bottom-center {
            text-align: center;
        }

        .footer-bottom-center p {
            color: #a0a0a0;
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
        }

        .footer-subtitle {
            font-size: 1.2rem !important;
            color: #666 !important;
            font-style: italic;
        }